{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/IQzDFpniaD3AmKydBXP4/Cs0w5Su72eeuirGvKldQ/PhoneNumberInput.js", "ssg:https://framerusercontent.com/modules/tN5l0aqIzWiUvVuvMcpG/RdY9lsnI2r5TMVIafxNF/TextInput.js", "ssg:https://framerusercontent.com/modules/WibOXaqCzpP4UdS8zaxu/q09hwDBmvnIXncHlJGVW/V3pF12ixo.js", "ssg:https://framerusercontent.com/modules/yspaSyw8uFCAM3r6IDUy/0TDjCAiLEOkfOw67gRcX/wvzStXWo8.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef,useId}from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// totalPages\n// pageHistory\n// logicConfig\n// isEndPage\n// previousPage()\n// nextPage()\nexport const useMultiStepFormStore=createStore({});export const HIDDEN_CLASS_NAME=\"framerforms-hidden\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";export const useInstanceId=()=>{const id=useId();const cleanId=id.replace(/:/g,\"\");const instanceId=`superfields-${cleanId}`;return instanceId;};export const HiddenInput=/*#__PURE__*/forwardRef(({name,required,value,setInvalid,onSetValueEvent,noPrefill=false,disabled=false},parentRef)=>{const internalRef=useRef(null);const ref=parentRef||internalRef;useEffect(()=>{if(ref.current){ref.current.addEventListener(\"framerFormsSetValue\",onSetValueEvent);}return()=>{if(ref.current){ref.current.removeEventListener(\"framerFormsSetValue\",onSetValueEvent);}};},[onSetValueEvent]);return /*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":!!onSetValueEvent,\"data-framerforms-no-prefill\":noPrefill,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,disabled:disabled,onInvalid:event=>{event.preventDefault();setInvalid(true);}});});const HideElementComponent=/*#__PURE__*/forwardRef(({},ref)=>{return /*#__PURE__*/_jsx(\"div\",{ref:ref,className:HIDDEN_CLASS_NAME});});export const HideElement=withCSS(HideElementComponent,[`div:has(> .${HIDDEN_CLASS_NAME}) { display: none; }`,`.${HIDDEN_CLASS_NAME} { display: none; }`],HIDDEN_CLASS_NAME);HideElement.displayName=\"FramerForms/Hide Element\";export const HiddenComponentLabel=/*#__PURE__*/forwardRef(({text,subtext=\"\",children=null,...otherProps},ref)=>{const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=useInstanceId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,...otherProps,ref:ref,className:CANVAS_HIDDEN_CLASS_NAME,style:{backgroundColor:\"rgba(187, 187, 187, 0.15)\",borderRadius:10,padding:\"12px 16px\",fontFamily:\"Inter\",fontWeight:500,fontSize:12,color:\"#999\",display:\"flex\",flexDirection:\"column\",gap:4,alignItems:\"center\",textAlign:\"center\",width:\"100%\",height:\"100%\",textWrap:\"nowrap\"},children:[children,text,subtext&&/*#__PURE__*/_jsx(\"span\",{style:{opacity:.7,whiteSpace:\"pre\",lineHeight:1.4},children:subtext}),/*#__PURE__*/_jsx(Border,{width:\"1px\",style:\"solid\",borderColor:\"rgba(136, 136, 136, 0.1)\"}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                        [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                            display: none !important;\n                        }`}})]}):/*#__PURE__*/_jsxs(\"div\",{...otherProps,ref:ref,className:HIDDEN_CLASS_NAME,children:[/*#__PURE__*/_jsx(HideElement,{}),children]});});HiddenComponentLabel.displayName=\"FramerForms/Hidden Component Label\";export function iconProp({size=16,buttonTitle=\"Icon\",controls={}}={}){return{type:ControlType.Object,buttonTitle,optional:true,defaultValue:{color:\"#999\",size},controls:{image:{type:ControlType.Image},color:{type:ControlType.Color,optional:true,defaultValue:\"#999\"},size:{type:ControlType.Number,defaultValue:size,min:1,step:1,displayStepper:true},...controls}};}export function Icon({image,color,size,style={},defaultImage}){return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:color,backgroundImage:color?\"none\":image?`url('${image}')`:defaultImage,maskImage:image?`url('${image}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"FramerForms/Icon\";export function Border({width,style,transition=null,borderColor=\"inherit\",opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"FramerForms/Border\";export function createBackground(fill,on=null,focused=null,invalid=null){if(fill){const onOff=typeof on==\"boolean\";if(fill.type==\"color\"){let color=invalid&&fill.colorInvalid||focused&&fill.colorFocus||(onOff?on?fill.colorOn:fill.colorOff:fill.color);return{backgroundColor:color,backgroundImage:\"none\"};}else{const colorA=invalid&&fill.colorAInvalid||focused&&fill.colorAFocus||(onOff?on?fill.colorAOn:fill.colorAOff:fill.colorA);const colorB=invalid&&fill.colorBInvalid||focused&&fill.colorBFocus||(onOff?on?fill.colorBOn:fill.colorBOff:fill.colorB);return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function fillProp({onOff=false,focus=true,invalid=true,optional=false,hidden=null,color=\"rgba(187, 187, 187, 0.15)\",colorA=\"#BBB\",colorB=\"#676767\",colorOn=\"rgba(70, 160, 219, 0.2)\",colorAOn=\"#66C2FF\",colorBOn=\"#0099FF\",colorOff=\"rgba(187, 187, 187, 0.15)\",colorAOff=\"#BBB\",colorBOff=\"#676767\"}={}){return{type:ControlType.Object,optional,hidden,icon:\"color\",defaultValue:{type:\"color\",...onOff?{colorOn,colorOff}:{color,colorA,colorB}},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"linearGradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!==\"color\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!==\"color\"}}:{color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!==\"color\"}},...focus?{colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"color\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"color\"}}:{},...onOff?{colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!==\"linearGradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!==\"linearGradient\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!==\"linearGradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!==\"linearGradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!==\"linearGradient\"}},...focus?{colorAFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"linearGradient\"},colorBFocus:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},...invalid?{colorAInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"linearGradient\"},colorBInvalid:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"linearGradient\"}}};}export function borderProp({onOff=false,focus=true,invalid=true,defaultValue=true,color=\"rgba(136, 136, 136, 0.1)\",colorOn=\"#0099FF\",colorOff=\"rgba(136, 136, 136, 0.1)\",colorFocus=\"#0099FF\",colorInvalid=\"#FF5A6F\",hidden=null}={}){return{type:ControlType.Object,optional:true,hidden,defaultValue:defaultValue?{color,colorOn,colorOff,colorFocus,colorInvalid,width:\"1px\"}:undefined,controls:{...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn},colorOff:{type:ControlType.Color,defaultValue:colorOff}}:{color:{type:ControlType.Color,defaultValue:color}},...focus?{colorFocus:{type:ControlType.Color,defaultValue:colorFocus,optional:true,title:\"Focus\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,defaultValue:colorInvalid,optional:true,title:\"Invalid\"}}:{},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function shadowsProp({invalid=true,onOff=false}={}){return{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{...onOff?{on:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 153, 255, 0.5) 0px 2px 4px 0px\"},off:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}}:{default:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}},focus:{type:ControlType.BoxShadow},invalid:invalid?{type:ControlType.BoxShadow}:null}};}export function useCanvasState(ref){const[totalPages,setTotalPages]=useState(1);useEffect(()=>{const element=ref.current;let pages=null;function updateState(){setTotalPages(pages?pages.children.length:1);}if(element){const multiStepForms=document.querySelectorAll(\"div[data-framerforms-multi-step-form]\");for(const multiStepForm of multiStepForms){const form=multiStepForm.closest(\"form\")||multiStepForm.parentElement.parentElement.parentElement;if(form&&isAncestor(form,element)){pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');}}}updateState();if(pages){const observer=new MutationObserver((mutationsList,observer)=>{for(let mutation of mutationsList){if(mutation.type===\"childList\"){updateState();}}});observer.observe(pages,{childList:true});return()=>observer.disconnect();}},[]);return{page:0,totalPages};}export function isAncestor(ancestorElement,descendantElement){if(!ancestorElement||!descendantElement){return false;}let currentElement=descendantElement;while(currentElement!==null){if(currentElement===ancestorElement){return true;}currentElement=currentElement.parentElement;}return false;}export function getFormInfo(element){const form=element===null||element===void 0?void 0:element.closest(\"form\");let formId=null;let pages=null;if(form){formId=form.getAttribute(\"framerforms-id\");pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');if(!formId){formId=uuid();form.setAttribute(\"framerforms-id\",formId);}}return{form,formId,pages};}function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}\nexport const __FramerMetadata__ = {\"exports\":{\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useInstanceId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{Border,createBackground,parsePadding,fillProp,borderProp,shadowsProp,useInstanceId,HiddenInput}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function PhoneNumberInput(props){const{countryCodeOptions,border,shadows}=props;const id=useInstanceId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasCC=!!countryCodeOptions;const ccConnected=hasCC&&countryCodeOptions?.style!==\"split\";const phoneFormat=props.format==\"custom\"?props.customFormat==\"\"?\"XXXXXXXXXX\":props.customFormat:props.format;const countryCodeFormat=hasCC?countryCodeOptions.format==\"custom\"?countryCodeOptions.customFormat==\"\"?\"X\":countryCodeOptions.customFormat:countryCodeOptions.format:\"\";const maxDigits=countXCharacters(phoneFormat);const defaultCountryCode=String(countryCodeOptions?.defaultCountryCode)??\"1\";const[countryCode,setCountryCode]=useState(defaultCountryCode);const[phoneNumber,setPhoneNumber]=useState(\"\");const[countryCodeFocused,setCountryCodeFocused]=useState(false);const[phoneNumberFocused,setPhoneNumberFocused]=useState(false);const[invalid,setInvalid]=useState(false);const countryCodeInputRef=useRef(null);const phoneNumberInputRef=useRef(null);const[pt,pr,pb,pl]=parsePadding(props.padding);const[tl,tr,br,bl]=parsePadding(props.radius);const[bwt,bwr,bwb,bwl]=parsePadding(border?.width);useEffect(()=>{if(invalid){props.invalidEvent?.();}},[invalid]);const isComplete=phoneNumber.length===maxDigits;function onPhoneNumberChange(event){const unformatted=unformatValue(event.target.value).substring(0,maxDigits);const formattedValue=formatPhoneNumber(phoneNumber,phoneFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setPhoneNumber(unformatted.slice(0,-1));}else{setPhoneNumber(unformatted);}}function onCountryCodeChange(event){const unformatted=unformatValue(event.target.value).substring(0,3);const formattedValue=formatCountryCode(countryCode,countryCodeFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setCountryCode(unformatted.slice(0,-1));}else{setCountryCode(unformatted);}}function onCountryCodeFocus(){setCountryCodeFocused(true);if(invalid){setInvalid(false);}const lastChar=countryCodeFormat.slice(-1);if(lastChar!=\"X\"&&lastChar!=\"x\"){const countryCodeInput=countryCodeInputRef.current;if(countryCodeInput){const formattedValue=formatCountryCode(countryCode,countryCodeFormat);const cursorPosition=Math.max(countryCodeFormat.lastIndexOf(\"X\"),countryCodeFormat.lastIndexOf(\"x\"))+countryCode.length;setTimeout(()=>countryCodeInput.setSelectionRange(cursorPosition,cursorPosition),5);}}props.focusEvent?.();}function onPhoneNumberKeyDown(event){if(hasCC&&phoneNumber===\"\"){if(event.key===\"Backspace\"){countryCodeInputRef.current?.focus();}if(event.key===\"ArrowLeft\"){countryCodeInputRef.current?.focus();event.preventDefault();}}}function onCountryCodeKeyDown(event){if(hasCC){if(event.key===\"ArrowRight\"&&event.target.selectionStart===event.target.value.length){phoneNumberInputRef.current?.focus();event.preventDefault();}}}function onCountryCodeBlur(event){if(countryCode.length===0){setCountryCode(defaultCountryCode);}setCountryCodeFocused(false);props.blurEvent?.();}function onPhoneNumberFocus(){setPhoneNumberFocused(true);props.focusEvent?.();if(invalid){setInvalid(false);}}function onPhoneNumberBlur(){setPhoneNumberFocused(false);props.blurEvent?.();}return /*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,id:id,style:{display:\"flex\",flexDirection:\"row\",gap:countryCodeOptions?.style==\"split\"?countryCodeOptions.gap:0,...props.style},children:[/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required||phoneNumber.length>0&&!isComplete,value:isComplete?hasCC?`+${countryCode} ${phoneNumber}`:phoneNumber:\"\",setInvalid:setInvalid}),hasCC&&/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,countryCodeFocused,invalid),boxShadow:invalid&&shadows?.invalid||countryCodeFocused&&shadows?.focus||shadows?.default},style:{position:\"relative\",borderRadius:ccConnected?px(tl,0,0,bl):props.radius,backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:countryCodeInputRef,value:formatCountryCode(isCanvas?countryCodeOptions.defaultCountryCode:countryCode,countryCodeFormat),onChange:onCountryCodeChange,onFocus:onCountryCodeFocus,onBlur:onCountryCodeBlur,onKeyDown:onCountryCodeKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,width:countryCodeOptions.width+pl,height:\"100%\",margin:0,display:\"block\",padding:px(pt,0,pb,pl),...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&border?.colorInvalid||border.color,width:ccConnected?px(bwt,0,bwb,bwl):border.width,opacity:countryCodeFocused&&border?.colorFocus?0:1,transition:props.transition}),border?.colorFocus&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:countryCodeFocused?1:0,transition:props.transition})]}),/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,phoneNumberFocused,invalid),boxShadow:invalid&&shadows?.invalid||phoneNumberFocused&&shadows?.focus||shadows?.default},style:{position:\"relative\",borderRadius:ccConnected?px(0,tr,br,0):props.radius,flex:1,backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:phoneNumberInputRef,autoFocus:props.autoFocus,value:formatPhoneNumber(phoneNumber,phoneFormat),onChange:onPhoneNumberChange,onFocus:onPhoneNumberFocus,onBlur:onPhoneNumberBlur,onKeyDown:onPhoneNumberKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,margin:0,display:\"block\",padding:props.padding,width:\"100%\",height:\"100%\",textOverflow:\"ellipsis\",...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&border?.colorInvalid||border.color,width:ccConnected?px(bwt,bwr,bwb,0):border.width,opacity:phoneNumberFocused&&border?.colorFocus?0:1,transition:props.transition}),border?.colorFocus&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:phoneNumberFocused?1:0,transition:props.transition})]}),countryCodeOptions?.style==\"divider\"&&/*#__PURE__*/_jsx(motion.div,{animate:{opacity:border?.colorFocus&&(countryCodeFocused||phoneNumberFocused)?0:1},style:{position:\"absolute\",width:countryCodeOptions.divider.width,left:countryCodeOptions.width+pl-Math.round(countryCodeOptions.divider.width/2),top:countryCodeOptions.divider.inset,bottom:countryCodeOptions.divider.inset,backgroundColor:countryCodeOptions.divider.color},initial:false,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                    #${id} input::placeholder {\n                        color: ${props.placeholderColor};\n                    }\n                    #${id} input:focus {\n                        outline: none;\n                    }`}})]});}PhoneNumberInput.displayName=\"Phone Number Input\";addPropertyControls(PhoneNumberInput,{name:{type:ControlType.String,defaultValue:\"Phone Number\",preventLocalization:true},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},countryCodeOptions:{type:ControlType.Object,optional:true,defaultValue:{defaultCountryCode:1,format:\"+1\",width:40},title:\"Country Code\",controls:{defaultCountryCode:{title:\"Default\",type:ControlType.Number,min:0,max:999,step:1,defaultValue:1},format:{title:\"Format\",type:ControlType.Enum,defaultValue:\"+1\",options:[\"+X\",\"(X)\",\"(+X)\",\"X\",\"custom\"],optionTitles:[\"+1\",\"(1)\",\"(+1)\",\"1\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"+X\",description:\"*X* -> country code\",preventLocalization:true,hidden:props=>props.format!==\"custom\"},width:{type:ControlType.Number,defaultValue:45,min:1,step:1},style:{type:ControlType.Enum,defaultValue:\"divider\",options:[\"connected\",\"divider\",\"split\"],optionTitles:[\"Connected\",\"Divider\",\"Split\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},divider:{type:ControlType.Object,hidden:props=>props.style!==\"divider\",controls:{color:{type:ControlType.Color,defaultValue:\"rgba(136, 136, 136, 0.15)\"},width:{type:ControlType.Number,defaultValue:1,min:1,step:1,displayStepper:true},inset:{type:ControlType.Number,defaultValue:8,min:0,step:1,displayStepper:true}}},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1,hidden:props=>props.style!==\"split\"}}},format:{type:ControlType.Enum,defaultValue:\"(XXX) XXX - XXXX\",options:[\"(XXX) XXX - XXXX\",\"(XXX) XXX-XXXX\",\"XXX-XXX-XXXX\",\"XXX.XXX.XXXX\",\"XXX XXX XXXX\",\"XXXXXXXXXXX\",\"XX XXXX XXXX\",\"custom\"],optionTitles:[\"(123) 456 - 7890\",\"(123) 456-7890\",\"123-456-7890\",\"123.456.7890\",\"123 456 7890\",\"1234567890\",\"12 3456 7890\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"(XXX) XXX - XXXX\",description:\"*X* -> phone number\",preventLocalization:true,hidden:props=>props.format!==\"custom\"},placeholder:{type:ControlType.String,defaultValue:\"\",placeholder:\"Auto\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp({invalid:true}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp({invalid:true}),shadows:shadowsProp(),bgBlur:{type:ControlType.Number,min:0,max:100,step:1,displayStepper:true,title:\"BG Blur\"},transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});function formatPhoneNumber(phoneNumber,format){if(!phoneNumber){return\"\";}let index=0// Tracks the position in the replacements string\n;let cutOffIndex=null// To determine where to slice the template after replacement\n;const result=format.replace(/[Xx]/g,(match,offset)=>{if(index<phoneNumber.length){return phoneNumber[index++];}else{if(phoneNumber.length<10&&cutOffIndex===null){// Set cut-off index at the first unmatched Xx after all replacements are used\ncutOffIndex=offset;}return\"\";}});// Slice the template to remove the part after the last valid replacement if necessary\nreturn cutOffIndex!==null?result.slice(0,cutOffIndex):result;}function replaceXWithNumbers(input){let count=1;return input.replace(/[Xx]/g,()=>{let number=count%10;if(number===0)number=0;count++;return number;});}function formatCountryCode(countryCode,format){return format.replace(/[Xx]/,countryCode);}function unformatValue(value){return value.replace(/\\D/g,\"\");}function isLastCharacterANumber(str){if(str.length===0)return false// Check if the string is empty\n;const lastChar=str[str.length-1]// Get the last character\n;return!isNaN(lastChar)&&!isNaN(parseFloat(lastChar))// Check if it's a numeric value\n;}const px=(a,b,c,d)=>`${a}px ${b}px ${c}px ${d}px`;function countXCharacters(str){// Convert the string to lowercase to count both 'X' and 'x'\nconst lowercaseStr=str.toLowerCase();// Use a regular expression to match 'x' characters\nconst xRegex=/x/g;// Use the match() method to find all occurrences of 'x'\nconst matches=lowercaseStr.match(xRegex);// Return the count of matches, or 0 if no matches found\nreturn matches?matches.length:0;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PhoneNumberInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhoneNumberInput.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState}from\"react\";import{motion}from\"framer\";import{createBackground,Border,parsePadding,fillProp,borderProp,shadowsProp,useInstanceId}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function TextInput(props){const{type,textAreaHeight,shadows,border}=props;const id=useInstanceId();const Element=type==\"textArea\"?\"textarea\":\"input\";const[focused,setFocused]=useState(false);const[invalid,setInvalid]=useState(false);let attributes={};let styles={};if(type==\"textArea\"){const[pt,pr,pb,pl]=parsePadding(props.padding);const heightMode=textAreaHeight.mode;const autoHeightSupported=typeof CSS!==\"undefined\"?CSS.supports(\"field-sizing\",\"content\"):true;attributes.rows=heightMode==\"fixed\"?textAreaHeight.lines:1;styles={display:\"block\",minHeight:heightMode==\"auto\"&&!autoHeightSupported?`calc(${textAreaHeight.fallbackLines}lh + ${pt+pb}px)`:heightMode!==\"fixed\"?`calc(${textAreaHeight.minLines}lh + ${pt+pb}px)`:undefined,maxHeight:heightMode!==\"fixed\"?`calc(${textAreaHeight.maxLines}lh + ${pt+pb}px)`:undefined,fieldSizing:heightMode==\"auto\"&&autoHeightSupported?\"content\":undefined,resize:heightMode==\"resizable\"?\"vertical\":\"none\"};}const onFocus=()=>{setFocused(true);props.focusEvent?.();if(invalid){setInvalid(false);}};const onBlur=()=>{setFocused(false);props.blurEvent?.();};const onInvalid=event=>{event.preventDefault();setInvalid(true);props.invalidEvent?.();};return /*#__PURE__*/_jsxs(motion.div,{\"data-framerforms\":true,id:id,onFocus:onFocus,onBlur:onBlur,animate:{...createBackground(props.fill,null,focused,invalid),boxShadow:invalid&&shadows?.invalid||focused&&shadows?.focus||shadows?.default,borderColor:invalid&&border?.colorInvalid||focused&&border?.colorFocus||border?.color},style:{borderRadius:props.radius,overflow:type==\"textArea\"&&props.textAreaScrollbar==\"auto\"?\"hidden\":\"visible\",backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined,...props.style},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(Element,{name:props.name,required:props.required,autoFocus:props.autoFocus,placeholder:props.placeholder,minLength:props.minLengthEnabled?props.minLength:undefined,maxLength:props.maxLengthEnabled?props.maxLength:undefined,defaultValue:props.value,onInvalid:onInvalid,style:{display:\"block\",padding:props.padding,color:props.color,background:\"none\",border:\"none\",textOverflow:\"ellipsis\",...styles,...props.font,...props.style},...attributes}),/*#__PURE__*/_jsx(Border,{...props.border,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                    #${id} ${Element}::placeholder {\n                        color: ${props.placeholderColor};\n                    }\n                    #${id} ${Element}:focus {\n                        appearance: none;\n                        outline: none;\n                        border: none;\n                        display: none;\n                    }`}}),type==\"textArea\"&&props.textAreaScrollbar==\"hidden\"&&/*#__PURE__*/_jsx(\"style\",{children:`#${id} textarea::-webkit-scrollbar {\n                        display: none; /* WebKit browsers (Chrome, Safari) */\n                    }\n                    #${id} textarea {\n                        -ms-overflow-style: none; /* IE and Edge */\n                        scrollbar-width: none; /* Firefox */\n                    }`})]});}TextInput.displayName=\"Text Input\";addPropertyControls(TextInput,{name:{type:ControlType.String,defaultValue:\"Text\",preventLocalization:true},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},minLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Min Length\"},minLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.minLengthEnabled},maxLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Max Length\"},maxLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.maxLengthEnabled},value:{type:ControlType.String,placeholder:\"Default Value\"},type:{type:ControlType.Enum,defaultValue:\"input\",options:[\"textArea\",\"input\"],optionTitles:[\"Yes\",\"No\"],displaySegmentedControl:true,title:\"Text Area\"},textAreaHeight:{type:ControlType.Object,title:\"Height\",controls:{mode:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"resizable\",\"fixed\"],optionTitles:[\"Auto\",\"Resizable\",\"Fixed\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},minLines:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},maxLines:{type:ControlType.Number,defaultValue:8,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},lines:{type:ControlType.Number,defaultValue:5,min:1,step:1,displayStepper:true,hidden:props=>props.mode!==\"fixed\"},fallbackLines:{type:ControlType.Number,defaultValue:5,min:1,step:1,title:\"Fallback\",description:\"Auto height is [not supported on all browsers](https://caniuse.com/mdn-css_properties_field-sizing_content). Fallback is used when auto height is not supported.\",hidden:props=>props.mode!==\"auto\"}},hidden:props=>props.type!=\"textArea\"},textAreaScrollbar:{type:ControlType.Enum,defaultValue:\"hidden\",options:[\"auto\",\"hidden\"],optionTitles:[\"Auto\",\"Hidden\"],displaySegmentedControl:true,title:\"Scrollbar\",hidden:props=>props.type!=\"textArea\"},placeholder:{type:ControlType.String,defaultValue:\"Write here...\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp(),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp(),shadows:shadowsProp(),bgBlur:{type:ControlType.Number,min:0,max:100,step:1,displayStepper:true,title:\"BG Blur\"},transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextInput\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextInput.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormBooleanInput,FormContainer,FormPlainTextInput,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import PhoneNumberInput from\"https://framerusercontent.com/modules/IQzDFpniaD3AmKydBXP4/Cs0w5Su72eeuirGvKldQ/PhoneNumberInput.js\";import TextInput from\"https://framerusercontent.com/modules/tN5l0aqIzWiUvVuvMcpG/RdY9lsnI2r5TMVIafxNF/TextInput.js\";import Button from\"https://framerusercontent.com/modules/mde2iilYqR1hzIL8HGqb/OMe0wZHP6KfNMe2uATgO/hrAK4hmlw.js\";import Checkbox from\"https://framerusercontent.com/modules/INeluVgoXoRq07CUDSJb/8oF2wgLz5iKp11LzkyMz/QlqrxLeX_.js\";const PhoneNumberInputFonts=getFonts(PhoneNumberInput);const TextInputFonts=getFonts(TextInput);const ButtonFonts=getFonts(Button);const CheckboxFonts=getFonts(Checkbox);const cycleOrder=[\"WN2B5n7C6\",\"Y0cQPlfiy\",\"W9tiej1Kw\"];const serializationHash=\"framer-CSntN\";const variantClassNames={W9tiej1Kw:\"framer-v-aov3ni\",WN2B5n7C6:\"framer-v-17uakvf\",Y0cQPlfiy:\"framer-v-e5k2mn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"WN2B5n7C6\",\"Variant 2\":\"Y0cQPlfiy\",\"Variant 3\":\"W9tiej1Kw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WN2B5n7C6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WN2B5n7C6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"W9tiej1Kw\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"W9tiej1Kw\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(FormContainer,{...restProps,...gestureHandlers,action:\"https://api.framer.com/forms/v1/forms/a7fa8226-b984-4c58-8d67-b15d8c0df700/submit\",className:cx(scopingClassNames,\"framer-17uakvf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WN2B5n7C6\",nodeId:\"WN2B5n7C6\",redirectUrl:{webPageId:\"xKjUxbsjr\"},ref:refBinding,style:{...style},...addPropertyOverrides({W9tiej1Kw:{\"data-framer-name\":\"Variant 3\"},Y0cQPlfiy:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1p2w0wo\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5tEx7cyUbe\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Vorname und Nachname\"})}),className:\"framer-hmoff5\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5h8QtBb0Hh\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-tph5x8\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5a0vsnDt9N\",placeholder:\"Geben Sie Ihren Vor- und Nachnamen ein\",style:{\"--framer-input-background\":\"rgb(255, 255, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(205, 205, 205)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"3px\",\"--framer-input-border-radius-bottom-right\":\"3px\",\"--framer-input-border-radius-top-left\":\"3px\",\"--framer-input-border-radius-top-right\":\"3px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"1px 1px 5px 0px rgba(0, 0, 0, 0.10000000149011612)\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-m7gmol\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5ugbv8Xjv8\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"E-Mail-Adresse\"})}),className:\"framer-kg3d04\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5hxsWjE8KR\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-u5osp3\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5vO6UJrXlp\",placeholder:\"Geben Sie Ihre Adresse@email.de ein\",style:{\"--framer-input-background\":\"rgb(255, 255, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(205, 205, 205)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"3px\",\"--framer-input-border-radius-bottom-right\":\"3px\",\"--framer-input-border-radius-top-left\":\"3px\",\"--framer-input-border-radius-top-right\":\"3px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"1px 1px 5px 0px rgba(0, 0, 0, 0.10000000149011612)\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-2qya\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5wE6KU9WEx\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Telefonnummer\"})}),className:\"framer-1yhdw0u\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5hiaL5KI9Y\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r2l2vg-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5SBb1a5VU7-container\",nodeId:\"UAAxPR1u5SBb1a5VU7\",rendersWithMotion:true,scopeId:\"V3pF12ixo\",children:/*#__PURE__*/_jsx(PhoneNumberInput,{autoFocus:false,bgBlur:0,border:{color:\"rgba(136, 136, 136, 0.1)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(153, 153, 153)\",countryCodeOptions:{customFormat:\"+X\",defaultCountryCode:49,divider:{color:\"rgba(136, 136, 136, 0.15)\",inset:8,width:1},format:\"+X\",gap:8,style:\"divider\",width:40},customFormat:\"(XXX) XXX - XXXX\",fill:{color:\"var(--token-c2b3aec0-c729-4514-bbd2-cd12e16dcb52, rgb(255, 255, 255))\",colorA:\"rgb(187, 187, 187)\",colorB:\"rgb(103, 103, 103)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Palanquin\", \"Palanquin Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.2em\"},format:\"XXX XXX XXXX\",height:\"100%\",id:\"UAAxPR1u5SBb1a5VU7\",layoutId:\"UAAxPR1u5SBb1a5VU7\",name:\"Phone Number\",padding:\"12px\",placeholder:\"\",placeholderColor:\"rgb(153, 153, 153)\",radius:\"3px\",required:false,style:{width:\"100%\"},transition:{duration:0,type:\"tween\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1obj7zx\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5nrOwgS4Tw\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Nachricht\"})}),className:\"framer-gj4iy7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5pqbey7M0b\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q9u0hp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5PU0fO9Mvl-container\",nodeId:\"UAAxPR1u5PU0fO9Mvl\",rendersWithMotion:true,scopeId:\"V3pF12ixo\",children:/*#__PURE__*/_jsx(TextInput,{autoFocus:false,bgBlur:0,border:{color:\"rgba(136, 136, 136, 0.1)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(153, 153, 153)\",fill:{color:\"var(--token-c2b3aec0-c729-4514-bbd2-cd12e16dcb52, rgb(255, 255, 255))\",colorA:\"rgb(187, 187, 187)\",colorB:\"rgb(103, 103, 103)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Palanquin\", \"Palanquin Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"UAAxPR1u5PU0fO9Mvl\",layoutId:\"UAAxPR1u5PU0fO9Mvl\",maxLength:100,maxLengthEnabled:false,minLength:100,minLengthEnabled:false,name:\"Text Area\",padding:\"12px\",placeholder:\"Bitte beschreibe dein Anliegen\",placeholderColor:\"rgb(153, 153, 153)\",radius:\"3px\",required:false,style:{width:\"100%\"},textAreaHeight:{fallbackLines:5,lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:\"hidden\",transition:{duration:0,type:\"tween\"},type:\"textArea\",value:\"\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-5a46fu\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5jfTtWpVaq\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-1g25o21\",defaultChecked:false,inputName:\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5fzdb0Fzdw\",style:{\"--framer-input-background\":\"var(--token-c2b3aec0-c729-4514-bbd2-cd12e16dcb52, rgb(255, 255, 255))\",\"--framer-input-boolean-checked-background\":\"rgb(0, 153, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-color\":\"rgb(255, 255, 255)\"},type:\"checkbox\"}),/*#__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\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Elektronische Einwilligung f\\xfcr SmartTent.de*\"})}),className:\"framer-aqfpxt\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5TFFoCwerk\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1gkgwzp\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5pSYAtNnTm\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-1wnfxgt\",defaultChecked:false,inputName:\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5iZKUS1Xp5\",style:{\"--framer-input-background\":\"var(--token-c2b3aec0-c729-4514-bbd2-cd12e16dcb52, rgb(255, 255, 255))\",\"--framer-input-boolean-checked-background\":\"rgb(0, 153, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-color\":\"rgb(255, 255, 255)\"},type:\"checkbox\"}),/*#__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\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Telekommunikationseinwilligung f\\xfcr SmartTent.de*\"})}),className:\"framer-12uw95a\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5ftMQPsjXI\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({W9tiej1Kw:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+16+779.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ygwqu8-container\",layoutDependency:layoutDependency,layoutId:\"UAAxPR1u5Oen1o7UJX-container\",nodeId:\"UAAxPR1u5Oen1o7UJX\",rendersWithMotion:true,scopeId:\"V3pF12ixo\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"UAAxPR1u5Oen1o7UJX\",layoutId:\"UAAxPR1u5Oen1o7UJX\",style:{height:\"100%\",width:\"100%\"},variant:\"vzx0cw4Tx\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-sq191e\",layoutDependency:layoutDependency,layoutId:\"a8NdKJxB2\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Vorname und Nachname\"})}),className:\"framer-y03w9l\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Bmo7tEZv8\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-13izm11\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"HnLAPyN6E\",placeholder:\"Geben Sie Ihren Vor- und Nachnamen ein\",style:{\"--framer-input-background\":\"rgb(255, 255, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(205, 205, 205)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"3px\",\"--framer-input-border-radius-bottom-right\":\"3px\",\"--framer-input-border-radius-top-left\":\"3px\",\"--framer-input-border-radius-top-right\":\"3px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"1px 1px 5px 0px rgba(0, 0, 0, 0.10000000149011612)\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-v7x437\",layoutDependency:layoutDependency,layoutId:\"o_aRhQGbC\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"E-Mail-Adresse\"})}),className:\"framer-111i18u\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yPPqn7N6S\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-12t9fkl\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"HU7zZIWVc\",placeholder:\"Geben Sie Ihre Adresse@email.pl ein\",style:{\"--framer-input-background\":\"rgb(255, 255, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(205, 205, 205)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"3px\",\"--framer-input-border-radius-bottom-right\":\"3px\",\"--framer-input-border-radius-top-left\":\"3px\",\"--framer-input-border-radius-top-right\":\"3px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"1px 1px 5px 0px rgba(0, 0, 0, 0.10000000149011612)\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\",...addPropertyOverrides({Y0cQPlfiy:{placeholder:\"Geben Sie Ihre Adresse@email.de ein\"}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-64vj5\",layoutDependency:layoutDependency,layoutId:\"i8JjdXiT_\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Telefonnummer\"})}),className:\"framer-15e6j5c\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"TSjv29b7J\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-pxurig\",inputName:\"Telephone\",layoutDependency:layoutDependency,layoutId:\"gA7xGbuIm\",placeholder:\"+49\",style:{\"--framer-input-background\":\"rgb(255, 255, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(205, 205, 205)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"3px\",\"--framer-input-border-radius-bottom-right\":\"3px\",\"--framer-input-border-radius-top-left\":\"3px\",\"--framer-input-border-radius-top-right\":\"3px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"1px 1px 5px 0px rgba(0, 0, 0, 0.10000000149011612)\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"tel\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1cb49gi\",layoutDependency:layoutDependency,layoutId:\"KJBr2weRq\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Nachricht\"})}),className:\"framer-7hbi4g\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"XB0GfxCn6\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-4w7eac\",inputName:\"Mesage\",layoutDependency:layoutDependency,layoutId:\"xMTyHemet\",placeholder:\"Bitte beschreibe dein Anliegen\",style:{\"--framer-input-background\":\"rgb(255, 255, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(205, 205, 205)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"3px\",\"--framer-input-border-radius-bottom-right\":\"3px\",\"--framer-input-border-radius-top-left\":\"3px\",\"--framer-input-border-radius-top-right\":\"3px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"1px 1px 5px 0px rgba(0, 0, 0, 0.10000000149011612)\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ht65gj\",layoutDependency:layoutDependency,layoutId:\"AlJkOTYMJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-45bd59\",layoutDependency:layoutDependency,layoutId:\"I2N4cLYyy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+16+305.6+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pfthwf-container\",layoutDependency:layoutDependency,layoutId:\"qBqEH2vRb-container\",nodeId:\"qBqEH2vRb\",rendersWithMotion:true,scopeId:\"V3pF12ixo\",children:/*#__PURE__*/_jsx(Checkbox,{height:\"100%\",id:\"qBqEH2vRb\",layoutId:\"qBqEH2vRb\",style:{height:\"100%\",width:\"100%\"},variant:\"znKbL5fMK\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g0ok0r\",layoutDependency:layoutDependency,layoutId:\"WfaHUPLaM\",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\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Elektronische Einwilligung f\\xfcr SmartTent.de*\"})}),className:\"framer-j5r942\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ijU_uZkDv\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},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\":\"9px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(122, 190, 227))\"},children:\"Expandieren\"})}),className:\"framer-1yc279o\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rW8dCo04x\",style:{\"--extracted-r6o4lv\":\"rgb(122, 190, 227)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19q8rsd\",layoutDependency:layoutDependency,layoutId:\"ukwTGm4P1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+16+305.6+0+52+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nksqda-container\",layoutDependency:layoutDependency,layoutId:\"MkYwFYywp-container\",nodeId:\"MkYwFYywp\",rendersWithMotion:true,scopeId:\"V3pF12ixo\",children:/*#__PURE__*/_jsx(Checkbox,{height:\"100%\",id:\"MkYwFYywp\",layoutId:\"MkYwFYywp\",style:{height:\"100%\",width:\"100%\"},variant:\"znKbL5fMK\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2k6zx\",layoutDependency:layoutDependency,layoutId:\"O2_6O2zk4\",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\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Telekommunikationseinwilligung f\\xfcr SmartTent.de*\"})}),className:\"framer-cres08\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"d28yJ_AXW\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},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\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(122, 190, 227))\"},children:\"Expandieren\"})}),className:\"framer-1g7y6hb\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mfM6K0Jqt\",style:{\"--extracted-r6o4lv\":\"rgb(122, 190, 227)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+16+425.6,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2uw389-container\",layoutDependency:layoutDependency,layoutId:\"affX4BTyB-container\",nodeId:\"affX4BTyB\",rendersWithMotion:true,scopeId:\"V3pF12ixo\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"affX4BTyB\",layoutId:\"affX4BTyB\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"F3cblwm3g\",success:\"SaPXCk4oA\"},\"vzx0cw4Tx\"),width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CSntN.framer-95ou53, .framer-CSntN .framer-95ou53 { display: block; }\",\".framer-CSntN.framer-17uakvf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 406px; }\",\".framer-CSntN .framer-1p2w0wo, .framer-CSntN .framer-m7gmol, .framer-CSntN .framer-2qya, .framer-CSntN .framer-1obj7zx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-CSntN .framer-hmoff5, .framer-CSntN .framer-kg3d04, .framer-CSntN .framer-1yhdw0u, .framer-CSntN .framer-gj4iy7, .framer-CSntN .framer-aqfpxt, .framer-CSntN .framer-y03w9l, .framer-CSntN .framer-111i18u, .framer-CSntN .framer-15e6j5c, .framer-CSntN .framer-7hbi4g, .framer-CSntN .framer-j5r942, .framer-CSntN .framer-1yc279o, .framer-CSntN .framer-cres08, .framer-CSntN .framer-1g7y6hb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-CSntN .framer-tph5x8, .framer-CSntN .framer-u5osp3 { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Palanquin\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 4px 4px 4px 8px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-CSntN .framer-r2l2vg-container, .framer-CSntN .framer-q9u0hp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CSntN .framer-5a46fu, .framer-CSntN .framer-1gkgwzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-CSntN .framer-1g25o21, .framer-CSntN .framer-1wnfxgt { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-CSntN .framer-12uw95a { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-CSntN .framer-ygwqu8-container, .framer-CSntN .framer-2uw389-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-CSntN .framer-sq191e, .framer-CSntN .framer-v7x437, .framer-CSntN .framer-64vj5, .framer-CSntN .framer-1cb49gi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-CSntN .framer-13izm11, .framer-CSntN .framer-12t9fkl, .framer-CSntN .framer-pxurig, .framer-CSntN .framer-4w7eac { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Chakra Petch\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 4px 4px 4px 8px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-CSntN .framer-ht65gj { 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-CSntN .framer-45bd59, .framer-CSntN .framer-19q8rsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CSntN .framer-pfthwf-container, .framer-CSntN .framer-nksqda-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-CSntN .framer-g0ok0r, .framer-CSntN .framer-1f2k6zx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CSntN.framer-17uakvf, .framer-CSntN .framer-1p2w0wo, .framer-CSntN .framer-m7gmol, .framer-CSntN .framer-2qya, .framer-CSntN .framer-1obj7zx, .framer-CSntN .framer-5a46fu, .framer-CSntN .framer-1gkgwzp, .framer-CSntN .framer-sq191e, .framer-CSntN .framer-v7x437, .framer-CSntN .framer-64vj5, .framer-CSntN .framer-1cb49gi, .framer-CSntN .framer-ht65gj, .framer-CSntN .framer-45bd59, .framer-CSntN .framer-g0ok0r, .framer-CSntN .framer-19q8rsd, .framer-CSntN .framer-1f2k6zx { gap: 0px; } .framer-CSntN.framer-17uakvf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-CSntN.framer-17uakvf > :first-child, .framer-CSntN .framer-1p2w0wo > :first-child, .framer-CSntN .framer-m7gmol > :first-child, .framer-CSntN .framer-2qya > :first-child, .framer-CSntN .framer-1obj7zx > :first-child, .framer-CSntN .framer-sq191e > :first-child, .framer-CSntN .framer-v7x437 > :first-child, .framer-CSntN .framer-64vj5 > :first-child, .framer-CSntN .framer-1cb49gi > :first-child, .framer-CSntN .framer-ht65gj > :first-child, .framer-CSntN .framer-g0ok0r > :first-child, .framer-CSntN .framer-1f2k6zx > :first-child { margin-top: 0px; } .framer-CSntN.framer-17uakvf > :last-child, .framer-CSntN .framer-1p2w0wo > :last-child, .framer-CSntN .framer-m7gmol > :last-child, .framer-CSntN .framer-2qya > :last-child, .framer-CSntN .framer-1obj7zx > :last-child, .framer-CSntN .framer-sq191e > :last-child, .framer-CSntN .framer-v7x437 > :last-child, .framer-CSntN .framer-64vj5 > :last-child, .framer-CSntN .framer-1cb49gi > :last-child, .framer-CSntN .framer-ht65gj > :last-child, .framer-CSntN .framer-g0ok0r > :last-child, .framer-CSntN .framer-1f2k6zx > :last-child { margin-bottom: 0px; } .framer-CSntN .framer-1p2w0wo > *, .framer-CSntN .framer-m7gmol > *, .framer-CSntN .framer-2qya > *, .framer-CSntN .framer-1obj7zx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CSntN .framer-5a46fu > *, .framer-CSntN .framer-1gkgwzp > *, .framer-CSntN .framer-45bd59 > *, .framer-CSntN .framer-19q8rsd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CSntN .framer-5a46fu > :first-child, .framer-CSntN .framer-1gkgwzp > :first-child, .framer-CSntN .framer-45bd59 > :first-child, .framer-CSntN .framer-19q8rsd > :first-child { margin-left: 0px; } .framer-CSntN .framer-5a46fu > :last-child, .framer-CSntN .framer-1gkgwzp > :last-child, .framer-CSntN .framer-45bd59 > :last-child, .framer-CSntN .framer-19q8rsd > :last-child { margin-right: 0px; } .framer-CSntN .framer-sq191e > *, .framer-CSntN .framer-v7x437 > *, .framer-CSntN .framer-64vj5 > *, .framer-CSntN .framer-1cb49gi > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-CSntN .framer-ht65gj > *, .framer-CSntN .framer-g0ok0r > *, .framer-CSntN .framer-1f2k6zx > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498\n * @framerIntrinsicWidth 406\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Y0cQPlfiy\":{\"layout\":[\"fixed\",\"auto\"]},\"W9tiej1Kw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerV3pF12ixo=withCSS(Component,css,\"framer-CSntN\");export default FramerV3pF12ixo;FramerV3pF12ixo.displayName=\"Form\";FramerV3pF12ixo.defaultProps={height:498,width:406};addPropertyControls(FramerV3pF12ixo,{variant:{options:[\"WN2B5n7C6\",\"Y0cQPlfiy\",\"W9tiej1Kw\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerV3pF12ixo,[{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/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\"},{family:\"Palanquin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/palanquin/v16/9XUnlJ90n1fBFg7ceXwsc1FMzLC2Zw.woff2\",weight:\"400\"},{family:\"Chakra Petch\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIf6MapbsEk7TDLdtEz1BwkmnaBhSL7Y1Q.woff2\",weight:\"400\"}]},...PhoneNumberInputFonts,...TextInputFonts,...ButtonFonts,...CheckboxFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV3pF12ixo\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"498\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"406\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y0cQPlfiy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W9tiej1Kw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V3pF12ixo.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={t4vedq_iZ:{hover:true}};const serializationHash=\"framer-OIxNH\";const variantClassNames={t4vedq_iZ:\"framer-v-m39l3h\"};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 transition1={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"t4vedq_iZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();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__*/_jsx(Link,{href:\"Link do Ebooka\",nodeId:\"t4vedq_iZ\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-m39l3h\",className,classNames)} framer-1ez29c2`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"t4vedq_iZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(159deg, rgba(255, 203, 5, 1) 0%, rgba(255, 203, 5, 1) 100%)\",backgroundColor:\"rgb(255, 203, 5)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 100px 80px 0px rgba(0, 0, 0, 0.07000000029802322)\",...style},variants:{\"t4vedq_iZ-hover\":{background:'linear-gradient(159deg, var(--token-c2b3aec0-c729-4514-bbd2-cd12e16dcb52, rgb(255, 255, 255)) /* {\"name\":\"Yellow\"} */ 0%, rgb(255, 230, 128) 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 2.767256498336792px 2.2138051986694336px 0px rgba(0, 0, 0, 0.019680192694067955), 0px 6.650102138519287px 5.32008171081543px 0px rgba(0, 0, 0, 0.028272492811083794), 0px 12.521552085876465px 10.017241477966309px 0px rgba(0, 0, 0, 0.03500000014901161), 0px 22.3363094329834px 17.869047164916992px 0px rgba(0, 0, 0, 0.04172750562429428), 0px 41.777610778808594px 33.422088623046875px 0px rgba(0, 0, 0, 0.05031980574131012), 0px 100px 80px 0px rgba(0, 0, 0, 0.07000000029802322)\"}},...addPropertyOverrides({\"t4vedq_iZ-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTYwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 44, 44))\"},children:\"melden Sie sich an\"})}),className:\"framer-guxnmn\",\"data-framer-name\":\"Button\",fonts:[\"GF;Chakra Petch-600\"],layoutDependency:layoutDependency,layoutId:\"gFQLj4hQg\",style:{\"--extracted-r6o4lv\":\"rgb(44, 44, 44)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OIxNH.framer-1ez29c2, .framer-OIxNH .framer-1ez29c2 { display: block; }\",\".framer-OIxNH.framer-m39l3h { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 51px; justify-content: center; overflow: visible; padding: 10px 18px 10px 18px; position: relative; text-decoration: none; width: 177px; }\",\".framer-OIxNH .framer-guxnmn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OIxNH.framer-m39l3h { gap: 0px; } .framer-OIxNH.framer-m39l3h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OIxNH.framer-m39l3h > :first-child { margin-left: 0px; } .framer-OIxNH.framer-m39l3h > :last-child { margin-right: 0px; } }\",\".framer-OIxNH.framer-v-m39l3h.hover.framer-m39l3h { gap: 0px; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OIxNH.framer-v-m39l3h.hover.framer-m39l3h { gap: 0px; } .framer-OIxNH.framer-v-m39l3h.hover.framer-m39l3h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-OIxNH.framer-v-m39l3h.hover.framer-m39l3h > :first-child { margin-left: 0px; } .framer-OIxNH.framer-v-m39l3h.hover.framer-m39l3h > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51\n * @framerIntrinsicWidth 177\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bFd4ClV83\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwvzStXWo8=withCSS(Component,css,\"framer-OIxNH\");export default FramerwvzStXWo8;FramerwvzStXWo8.displayName=\"Button_newsletter\";FramerwvzStXWo8.defaultProps={height:51,width:177};addFonts(FramerwvzStXWo8,[{explicitInter:true,fonts:[{family:\"Chakra Petch\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeQI5FRZXE3AY00g.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwvzStXWo8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"177\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bFd4ClV83\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"51\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wvzStXWo8.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "useInstanceId", "ae", "HiddenInput", "Y", "name", "required", "value", "setInvalid", "onSetValueEvent", "noPrefill", "disabled", "parentRef", "internalRef", "pe", "ref", "ue", "p", "event", "HideElementComponent", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "u", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "createBackground", "fill", "on", "focused", "invalid", "onOff", "colorA", "colorB", "parsePadding", "padding", "parsedValues", "value", "fillProp", "focus", "optional", "hidden", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "ControlType", "props", "borderProp", "defaultValue", "colorFocus", "colorInvalid", "shadowsProp", "PhoneNumberInput", "props", "countryCodeOptions", "border", "shadows", "id", "useInstanceId", "isCanvas", "RenderTarget", "hasCC", "ccConnected", "phoneFormat", "countryCodeFormat", "maxDigits", "countXCharacters", "defaultCountryCode", "countryCode", "setCountryCode", "ye", "phoneNumber", "setPhoneNumber", "countryCodeFocused", "setCountryCodeFocused", "phoneNumberFocused", "setPhoneNumberFocused", "invalid", "setInvalid", "countryCodeInputRef", "pe", "phoneNumberInputRef", "pt", "pr", "pb", "pl", "parsePadding", "tl", "tr", "br", "bl", "bwt", "bwr", "bwb", "bwl", "ue", "isComplete", "onPhoneNumberChange", "event", "unformatted", "unformatValue", "formattedValue", "formatPhoneNumber", "isLastCharacterANumber", "onCountryCodeChange", "formatCountryCode", "onCountryCodeFocus", "lastChar", "countryCodeInput", "cursorPosition", "onPhoneNumberKeyDown", "onCountryCodeKeyDown", "onCountryCodeBlur", "onPhoneNumberFocus", "onPhoneNumberBlur", "u", "p", "HiddenInput", "motion", "createBackground", "px", "replaceXWithNumbers", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "format", "index", "cutOffIndex", "result", "match", "offset", "input", "count", "number", "value", "str", "a", "b", "c", "d", "lowercaseStr", "xRegex", "matches", "TextInput", "props", "type", "textAreaHeight", "shadows", "border", "id", "useInstanceId", "Element", "focused", "setFocused", "ye", "invalid", "setInvalid", "attributes", "styles", "pt", "pr", "pb", "pl", "parsePadding", "heightMode", "autoHeightSupported", "onFocus", "onBlur", "onInvalid", "event", "u", "motion", "createBackground", "p", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "PhoneNumberInputFonts", "getFonts", "PhoneNumberInput", "TextInputFonts", "TextInput", "ButtonFonts", "hrAK4hmlw_default", "CheckboxFonts", "QlqrxLeX_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "FormContainer", "formState", "u", "l", "RichText2", "FormPlainTextInput2", "ComponentViewportProvider", "SmartComponentScopedContainer", "FormBooleanInput", "css", "FramerV3pF12ixo", "withCSS", "V3pF12ixo_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerwvzStXWo8", "withCSS", "wvzStXWo8_default", "addFonts"]
}
