{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/mLKA4f9owSnrLfW6o9Ta/jJ8vw0BUAQBnx2qeyKPy/MagicFormPro.js", "ssg:https://framerusercontent.com/modules/iQzCddwwJ27CQVoKfINc/pUozo8wMep2BON4wKjTH/f9z7v91ro.js", "ssg:https://framerusercontent.com/modules/rY68DDp9Afj9JtA4rVO1/6AaEBKTlsYQXHQ7Yjsmz/jYkXtflJ5.js", "ssg:https://framerusercontent.com/modules/1PKUZShkXXKfF93GubRX/I5n4bTAnYbLz3YWHnGvg/XNVvgS1rM.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import React,{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import*as PhosphorIcons from\"phosphor-react\";import{CheckCircle,Warning,Eye,EyeSlash,CaretDown,ArrowLeft,PaperPlaneTilt as Icon}from\"phosphor-react\";/*\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export function MagicFormPro(props){const[formValues,setFormValues]=React.useState({});const[validationErrors,setValidationErrors]=React.useState({});const[inputValues,setInputValues]=React.useState({});const[toastVisible,setToastVisible]=useState(false);const[fieldActive,setFieldActive]=useState({});const[showPassword,setShowPassword]=useState({});const[isHovered,setIsHovered]=useState(false);const[activeHoverField,setActiveHoverField]=useState(null);const[windowWidth,setWindowWidth]=React.useState(0) // Set initial state to 0\n;const[currentStep,setCurrentStep]=useState(1);const isHigherThanStep1=currentStep>1;React.useEffect(()=>{// Now we're in the browser, we can safely access `window`\nsetWindowWidth(window.innerWidth);const handleResize=()=>setWindowWidth(window.innerWidth);window.addEventListener(\"resize\",handleResize);// Don't forget to clean up the event listener on component unmount\nreturn()=>window.removeEventListener(\"resize\",handleResize);},[]) // Empty dependency array means this effect runs once on mount\n;const handleIconClick=()=>{};const handleFieldActive=(fieldName,isActive)=>{setFieldActive(prevState=>({...prevState,[fieldName]:isActive}));};const countries=[{code:\"US\",name:\"United States\",dialCode:\"+1\",flag:\"\uD83C\uDDFA\uD83C\uDDF8\"},{code:\"GB\",name:\"United Kingdom\",dialCode:\"+44\",flag:\"\uD83C\uDDEC\uD83C\uDDE7\"},{code:\"CA\",name:\"Canada\",dialCode:\"+1\",flag:\"\uD83C\uDDE8\uD83C\uDDE6\"},{code:\"AU\",name:\"Australia\",dialCode:\"+61\",flag:\"\uD83C\uDDE6\uD83C\uDDFA\"},{code:\"IN\",name:\"India\",dialCode:\"+91\",flag:\"\uD83C\uDDEE\uD83C\uDDF3\"},{code:\"CN\",name:\"China\",dialCode:\"+86\",flag:\"\uD83C\uDDE8\uD83C\uDDF3\"},{code:\"JP\",name:\"Japan\",dialCode:\"+81\",flag:\"\uD83C\uDDEF\uD83C\uDDF5\"},{code:\"DE\",name:\"Germany\",dialCode:\"+49\",flag:\"\uD83C\uDDE9\uD83C\uDDEA\"},{code:\"FR\",name:\"France\",dialCode:\"+33\",flag:\"\uD83C\uDDEB\uD83C\uDDF7\"},{code:\"IT\",name:\"Italy\",dialCode:\"+39\",flag:\"\uD83C\uDDEE\uD83C\uDDF9\"},{code:\"RU\",name:\"Russia\",dialCode:\"+7\",flag:\"\uD83C\uDDF7\uD83C\uDDFA\"},{code:\"BR\",name:\"Brazil\",dialCode:\"+55\",flag:\"\uD83C\uDDE7\uD83C\uDDF7\"},{code:\"ES\",name:\"Spain\",dialCode:\"+34\",flag:\"\uD83C\uDDEA\uD83C\uDDF8\"},{code:\"MX\",name:\"Mexico\",dialCode:\"+52\",flag:\"\uD83C\uDDF2\uD83C\uDDFD\"},{code:\"ZA\",name:\"South Africa\",dialCode:\"+27\",flag:\"\uD83C\uDDFF\uD83C\uDDE6\"},{code:\"NL\",name:\"Netherlands\",dialCode:\"+31\",flag:\"\uD83C\uDDF3\uD83C\uDDF1\"},{code:\"TR\",name:\"Turkey\",dialCode:\"+90\",flag:\"\uD83C\uDDF9\uD83C\uDDF7\"},{code:\"SA\",name:\"Saudi Arabia\",dialCode:\"+966\",flag:\"\uD83C\uDDF8\uD83C\uDDE6\"},{code:\"SE\",name:\"Sweden\",dialCode:\"+46\",flag:\"\uD83C\uDDF8\uD83C\uDDEA\"},{code:\"CH\",name:\"Switzerland\",dialCode:\"+41\",flag:\"\uD83C\uDDE8\uD83C\uDDED\"},{code:\"EG\",name:\"Egypt\",dialCode:\"+20\",flag:\"\uD83C\uDDEA\uD83C\uDDEC\"},{code:\"AR\",name:\"Argentina\",dialCode:\"+54\",flag:\"\uD83C\uDDE6\uD83C\uDDF7\"},{code:\"SG\",name:\"Singapore\",dialCode:\"+65\",flag:\"\uD83C\uDDF8\uD83C\uDDEC\"},{code:\"MY\",name:\"Malaysia\",dialCode:\"+60\",flag:\"\uD83C\uDDF2\uD83C\uDDFE\"}];const hasMoreSteps=()=>{const nextSteps=props.inputTypes.filter(input=>input.step===`Step ${currentStep+1}`);return nextSteps.length>0;};const getTotalSteps=()=>{const steps=props.inputTypes.map(input=>input.step);const uniqueSteps=[...new Set(steps)] // Remove duplicates\n;return uniqueSteps.length;};const goBackOneStep=()=>{console.log(\"goBackOneStep is called\") // Debugging line\n;if(currentStep>1){setCurrentStep(currentStep-1);}};const StepIndicator=({step,isCurrent,isCompleted})=>{let backgroundColor;if(isCurrent)backgroundColor=props.stepStyle.current;else if(isCompleted)backgroundColor=props.stepStyle.previous;else backgroundColor=props.stepStyle.next // Or any color for future steps\n;const handleClick=()=>{if(!isCurrent&&isCompleted)setCurrentStep(step);};return /*#__PURE__*/ _jsx(motion.div,{onClick:handleClick,style:{height:\"14px\",width:\"14px\",borderRadius:\"50%\",backgroundColor,margin:\"8px\",cursor:isCompleted?\"pointer\":\"default\"},whileHover:step<currentStep?{scale:1.25}:{}});};const Slider=({currentStep,totalSteps})=>{const progress=currentStep/totalSteps*100;return /*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\"},children:[/*#__PURE__*/ _jsx(\"div\",{style:{height:\"10px\",width:\"100%\",backgroundColor:props.stepStyle.next,borderRadius:\"5px\"},children:/*#__PURE__*/ _jsx(\"div\",{style:{height:\"100%\",width:`${progress}%`,backgroundColor:props.stepStyle.current,borderRadius:\"5px\",transition:\"width 0.3s ease-in-out\"}})}),currentStep>1&&/*#__PURE__*/ _jsx(\"div\",{style:{marginTop:8,display:\"flex\",flexDirection:\"row\",alignItems:\"center\",justifyContent:\"space-between\"},children:/*#__PURE__*/ _jsxs(\"div\",{onClick:e=>{goBackOneStep();},style:{cursor:\"pointer\",display:\"flex\",flexDirection:\"row\",gap:4,alignItems:\"center\"},children:[/*#__PURE__*/ _jsx(ArrowLeft,{weight:\"bold\",style:{...props.stepStyle.font,color:props.stepStyle.current}}),/*#__PURE__*/ _jsx(\"p\",{style:{...props.stepStyle.font,color:props.stepStyle.current},children:\"Go back\"})]})}),\" \"]});};const buttonAlignmentStyles={Left:{alignSelf:\"flex-start\",width:\"auto\"},Right:{alignSelf:\"flex-end\",width:\"auto\"},Center:{alignSelf:\"center\",width:\"100%\"}}[props.buttonStyle.buttonAlignment||\"center\"];const validate=step=>{let errors={};props.inputTypes.forEach(field=>{// Only validate fields in the current step\nif(field.step===`Step ${step}`){if(field.required&&(!formValues[field.name]||formValues[field.name]===\"\")){errors={...errors,[field.name]:field.validationMessage||\"defaultError\"};}else if(field.type===\"email\"&&formValues[field.name]&&!validateEmail(formValues[field.name])){errors={...errors,[field.name]:\"Invalid email format\"};}}});setValidationErrors(prevErrors=>({...prevErrors,...errors}));return Object.keys(errors).length===0;};const validateEmail=email=>{// Email validation regular expression\nconst emailRegex=/^[\\w-]+(\\.[\\w-]+)*@([\\w-]+\\.)+[a-zA-Z]{2,7}$/;return emailRegex.test(email);};const handleSubmit=async event=>{event.preventDefault();if(hasMoreSteps()){// If there are more steps, validate the current step.\nif(validate(currentStep)){// If validation passes, increment the step.\nsetCurrentStep(currentStep+1);setValidationErrors({});}}else{// If there are no more steps, validate the last step.\nif(validate(currentStep)){// ...submission logic...\nlet submitUrl=\"\";if(props.formProvider===\"formspark\"){submitUrl=`https://submit-form.com/${props.formId}`;}else if(props.formProvider===\"formspree\"){submitUrl=`https://formspree.io/${props.formId}`;}else if(props.formProvider===\"messagebird\"){submitUrl=props.formId;}else if(props.formProvider===\"basin\"){submitUrl=`https://usebasin.com/f/${props.formId}`;}else if(props.formProvider===\"formcarry\"){submitUrl=`https://formcarry.com/s/${props.formId}`;}else if(props.formProvider===\"custom\"){submitUrl=props.formId;}else if(props.formProvider===\"zapier\"){submitUrl=props.formId;}if(submitUrl){try{const response=await fetch(submitUrl,{method:\"POST\",headers:{\"Content-Type\":props.formProvider===\"zapier\"?\"text/plain\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(formValues)});if(response.ok){// Form submission was successful\nhandleFormSuccess();}else{// Form submission failed\nconsole.log(\"Form submission failed\");}}catch(error){console.log(error);}}console.log(formValues);}}};const handleFormSuccess=()=>{// If the request was successful, clear the form\nsetFormValues({});setCurrentStep(1);if(props.success.afterSubmit===\"redirect\"){window.location.href=props.success.redirectURL;}else{setToastVisible(true);setTimeout(()=>setToastVisible(false),3e3);}};const handleChange=event=>{const{name,value,type,checked}=event.target;if(type===\"checkbox\"){const checkboxValues=formValues[name]||[];if(checked){checkboxValues.push(value);}else{const index=checkboxValues.indexOf(value);if(index>-1){checkboxValues.splice(index,1);}}setFormValues({...formValues,[name]:checkboxValues});}else{setFormValues({...formValues,[name]:value});}setValidationErrors({...validationErrors,[name]:\"\"});};const renderInputTypes=()=>{const inputsForStep=props.inputTypes.filter(input=>input.step===`Step ${currentStep}`);return inputsForStep.map((field,index)=>{const error=validationErrors[field.name];const ErrorMessage=({field,validationErrors,errorColor})=>{if(validationErrors[field.name]&&validationErrors[field.name]!==\"defaultError\"){return /*#__PURE__*/ _jsxs(\"div\",{style:{paddingTop:\"4px\",display:\"flex\",flexDirection:\"row\",justifyContent:\"start\",alignItems:\"center\",color:errorColor,gap:\"8px\"},children:[/*#__PURE__*/ _jsx(Warning,{size:\"18px\",weight:\"fill\",color:errorColor}),/*#__PURE__*/ _jsx(\"p\",{style:{fontSize:\"14px\"},children:validationErrors[field.name]})]});}return null // Return null if there's no need to render anything\n;};const defaultStyle={appearance:\"none\",borderStyle:\"solid\",outline:\"none\",\"::-moz-focus-inner\":{border:\"0\"},\"::-moz-focus-outer\":{border:\"0\"}};const defaultInputStyle={backgroundColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverColor:props.inputStyle.styling.backgroundColor,borderWidth:props.inputStyle.styling.borderWidth.isMixed?`${props.inputStyle.styling.borderWidth.borderTopWidth}px ${props.inputStyle.styling.borderWidth.borderRightWidth}px ${props.inputStyle.styling.borderWidth.borderBottomWidth}px ${props.inputStyle.styling.borderWidth.borderLeftWidth}px`:`${props.inputStyle.styling.borderWidth.defaultValue}px`,outline:props.inputStyle.styling.extraColorStyles.useOutline===false?\"0px\":validationErrors[field.name]&&validationErrors[field.name]!==\"\"&&activeHoverField===field.name?`1.5px solid ${props.inputStyle.styling.extraColorStyles.errorColor}` // set error color if field is hovered and there are validation errors\n:!validationErrors[field.name]||validationErrors[field.name]===\"\"?fieldActive[field.name]?`1.5px solid ${props.inputStyle.styling.extraColorStyles.activeColor}` // set active color if field is active\n:activeHoverField===field.name?`1.5px solid ${props.inputStyle.styling.borderColor}` // set error color if\n:\"none\" // if field is neither active nor hovered\n:\"none\",borderColor:validationErrors[field.name]?props.inputStyle.styling.extraColorStyles.errorColor:fieldActive[field.name]?props.inputStyle.styling.extraColorStyles.activeColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverBorderColor:props.inputStyle.styling.borderColor,paddingLeft:props.inputStyle.styling.iconPosition===\"left\"&&field.toggleIcon?parseInt(props.inputStyle.styling.paddingLeft)+parseInt(props.inputStyle.styling.iconSize)*1.5:props.inputStyle.styling.paddingLeft};const iconPadding={paddingLeft:props.inputStyle.styling.iconPosition===\"left\"&&field.toggleIcon?parseInt(props.inputStyle.styling.paddingLeft)+parseInt(props.inputStyle.styling.iconSize)*1.5:props.inputStyle.styling.paddingLeft};console.log(\"Checkbox BorderWidth:\",props.inputStyle.checkboxStyle.borderWidth);const radioStyle={padding:\"12px\",gap:\"12px\",borderColor:props.inputStyle.styling.borderColor,display:\"flex\",alignItems:\"center\",margin:\"0px\",borderRadius:props.inputStyle.checkboxStyle.borderRadius,borderStyle:\"solid\",borderWidth:props.inputStyle.checkboxStyle.borderWidth,marginBottom:props.inputStyle.checkboxStyle.marginBottom};const iconStyle={position:\"absolute\",top:\"50%\",transform:\"translateY(-50%)\"};const selectStyle={appearance:\"none\",backgroundImage:\"none\",backgroundRepeat:\"no-repeat\",\"&::-ms-expand\":{display:\"none\"}};const widthStyle=windowWidth<=420?{gridColumn:\"span 2\"}:field.width===\"50% Width\"?{gridColumn:\"span 1\"}:{gridColumn:\"span 2\"};const formStyle={display:\"flex\",flexDirection:\"column\"};const IconComponent=PhosphorIcons[field.icon];const renderInput=(type,field,showIcon=false,renderIcon)=>{const sharedStyles={...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultStyle,paddingLeft:props.inputStyle.styling.paddingLeft};const widthStyle=windowWidth<=420?{gridColumn:\"span 2\"}:field.width===\"50% Width\"?{gridColumn:\"span 1\"}:{gridColumn:\"span 2\"};const inputType=type===\"password\"&&showPassword[field.name]?\"text\":type;const defaultIconComponent=showIcon?/*#__PURE__*/ _jsx(IconComponent,{style:{[props.inputStyle.styling.iconPosition]:props.inputStyle.styling.iconPosition===\"left\"?\"12px\":props.inputStyle.styling.paddingRight,...props.inputStyle.fontStyle,...iconStyle,color:props.inputStyle.styling.iconColor,fontSize:props.inputStyle.styling.iconSize}}):null;return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:[/*#__PURE__*/ _jsx(\"input\",{type:inputType,name:field.name,value:formValues[field.name]||\"\",placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{...sharedStyles,...defaultInputStyle,...iconPadding}}),field.toggleIcon&&(renderIcon?renderIcon():defaultIconComponent)]}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});};const passwordIcon=()=>{return showPassword[field.name]?/*#__PURE__*/ _jsx(EyeSlash,{style:iconStyles,onClick:()=>setShowPassword({...showPassword,[field.name]:!showPassword[field.name]})}):/*#__PURE__*/ _jsx(Eye,{style:iconStyles,onClick:()=>setShowPassword({...showPassword,[field.name]:!showPassword[field.name]})});};const iconStyles={[props.inputStyle.styling.iconPosition]:props.inputStyle.styling.iconPosition===\"left\"?\"12px\":props.inputStyle.styling.paddingRight,...props.inputStyle.fontStyle,...iconStyle,color:props.inputStyle.styling.iconColor,fontSize:props.inputStyle.styling.iconSize};switch(field.type){case\"text\":return renderInput(\"text\",field,true);case\"email\":return renderInput(\"email\",field,true);case\"url\":return renderInput(\"url\",field,true);case\"password\":return renderInput(\"password\",field,false,passwordIcon);// Add this case in your switch statement.\ncase\"number\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsx(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:/*#__PURE__*/ _jsx(\"input\",{type:\"number\",name:field.name,value:formValues[field.name]||\"\",placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultInputStyle,...defaultStyle,paddingLeft:props.inputStyle.styling.paddingLeft}})}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"date\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsx(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:/*#__PURE__*/ _jsx(\"input\",{type:\"date\",name:field.name,value:formValues[field.name]||\"\",placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultInputStyle,...defaultStyle,...selectStyle,paddingLeft:props.inputStyle.styling.paddingLeft}})}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"radio\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,gridColumn:\"span 2\"},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),field.options.map((option,optionIndex)=>{var ref;/*#__PURE__*/ return _jsx(\"label\",{htmlFor:option,children:/*#__PURE__*/ _jsxs(\"div\",{onMouseEnter:()=>setActiveHoverField(option),onMouseLeave:()=>setActiveHoverField(null),style:{backgroundColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverColor:props.inputStyle.styling.backgroundColor,...activeHoverField===option&&formValues[field.name]!==option&&{outline:`1.5px solid ${props.inputStyle.styling.borderColor}`},...((ref=formValues[field.name])===null||ref===void 0?void 0:ref.includes(option))&&{outline:`1.5px solid ${props.inputStyle.styling.extraColorStyles.activeColor}`},...radioStyle},children:[/*#__PURE__*/ _jsx(\"input\",{type:\"radio\",id:option,name:field.name,value:option,checked:formValues[field.name]===option,onChange:handleChange,style:{flexShrink:0,width:props.inputStyle.checkboxStyle.size,height:props.inputStyle.checkboxStyle.size,marginTop:\"0px\",accentColor:props.inputStyle.checkboxStyle.accent,colorScheme:props.inputStyle.checkboxStyle.colorScheme}}),/*#__PURE__*/ _jsx(\"span\",{style:{paddingLeft:\"8px\",...props.inputStyle.checkboxStyle.font,color:props.inputStyle.checkboxStyle.color},children:option})]})},optionIndex);}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"select\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:[/*#__PURE__*/ _jsxs(\"select\",{name:field.name,value:formValues[field.name]||\"\",onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{gridColumn:\"span 2\",...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultStyle,...defaultInputStyle,...selectStyle,paddingLeft:props.inputStyle.styling.paddingLeft},children:[/*#__PURE__*/ _jsx(\"option\",{value:\"\",children:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`}),field.options.map((option,optionIndex)=>/*#__PURE__*/ _jsx(\"option\",{value:option,children:option},optionIndex))]}),/*#__PURE__*/ _jsx(CaretDown,{style:{...props.inputStyle.fontStyle,...iconStyle,right:props.inputStyle.styling.paddingRight,color:props.inputStyle.styling.iconColor,fontSize:13,weight:\"bold\"}})]}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"textarea\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsx(\"textarea\",{name:field.name,placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,value:formValues[field.name]||\"\",onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{resize:\"none\",gridColumn:\"span 2\",...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultStyle,...defaultInputStyle,paddingLeft:props.inputStyle.styling.paddingLeft},rows:field.rows}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"checkbox\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,gridColumn:\"span 2\"},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),field.options.map((option,optionIndex)=>{var ref,ref1;/*#__PURE__*/ return _jsx(\"label\",{htmlFor:option,children:/*#__PURE__*/ _jsxs(\"div\",{onMouseEnter:()=>setActiveHoverField(option),onMouseLeave:()=>setActiveHoverField(null),style:{backgroundColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverColor:props.inputStyle.styling.backgroundColor,...activeHoverField===option&&formValues[field.name]!==option&&{outline:`1.5px solid ${props.inputStyle.styling.borderColor}`},...((ref=formValues[field.name])===null||ref===void 0?void 0:ref.includes(option))&&{outline:`1.5px solid ${props.inputStyle.styling.extraColorStyles.activeColor}`},...radioStyle},children:[/*#__PURE__*/ _jsx(\"input\",{type:\"checkbox\",id:option,name:field.name,value:option,checked:(ref1=formValues[field.name])===null||ref1===void 0?void 0:ref1.includes(option),onChange:handleChange,style:{flexShrink:0,width:props.inputStyle.checkboxStyle.size,height:props.inputStyle.checkboxStyle.size,marginTop:\"0px\",accentColor:props.inputStyle.checkboxStyle.accent,colorScheme:props.inputStyle.checkboxStyle.colorScheme}}),/*#__PURE__*/ _jsx(\"span\",{style:{paddingLeft:\"8px\",...props.inputStyle.checkboxStyle.font,color:props.inputStyle.checkboxStyle.color},children:option})]})},optionIndex);}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});default:return null;}});};return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",height:\"100%\",alignItems:\"center\",justifyContent:\"center\"},children:[/*#__PURE__*/ _jsxs(\"form\",{onSubmit:handleSubmit,style:{width:\"100%\",height:\"100%\",justifyContent:\"space-between\",flexDirection:\"column\",display:toastVisible?\"none\":\"flex\",pointerEvents:toastVisible?\"none\":\"auto\",...props.containerStyle},transition:{duration:.3},children:[/*#__PURE__*/ _jsx(\"div\",{style:{...props.containerStyle,display:\"grid\",maxWidth:\"100%\",gridTemplateColumns:\"1fr 1fr\"},children:renderInputTypes()}),/*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",width:\"100%\",...props.stepStyle},children:[/*#__PURE__*/ _jsxs(motion.button,{type:\"submit\",style:{cursor:\"pointer\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",gap:8,appearance:\"none\",borderStyle:\"solid\",outline:\"none\",boxShadow:\"none\",\"::-moz-focus-inner\":{border:\"0\"},\"::-moz-focus-outer\":{border:\"0\"},...props.buttonStyle.fontStyle.font,...props.buttonStyle.fontStyle,...props.buttonStyle.styling,...buttonAlignmentStyles},whileTap:{scale:.99},whileHover:{backgroundColor:props.buttonStyle.styling.hoverColor},onClick:handleSubmit,children:[props.buttonStyle.styling.showIcon&&/*#__PURE__*/ _jsx(Icon,{}),\" \",hasMoreSteps()?props.buttonStyle.buttonNext:props.buttonStyle.buttonSubmit]}),getTotalSteps()>1&&/*#__PURE__*/ _jsx(\"div\",{style:{display:\"flex\",justifyContent:\"center\"},children:props.stepStyle.stepIndicatorType===\"slider\"?/*#__PURE__*/ _jsx(Slider,{currentStep:currentStep,totalSteps:getTotalSteps()}):Array.from({length:getTotalSteps()},(_,i)=>/*#__PURE__*/ _jsx(StepIndicator,{step:i+1,isCurrent:currentStep===i+1,isCompleted:currentStep>i+1},i+1))})]})]}),toastVisible&&/*#__PURE__*/ _jsxs(motion.div,{initial:{opacity:0,y:100},style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",flexDirection:\"column\",marginTop:\"40px\",width:\"100%\"},animate:{opacity:1,y:0},transition:{duration:.3},children:[/*#__PURE__*/ _jsx(CheckCircle,{size:props.success.toastIcon,weight:\"fill\",color:props.success.iconColor}),/*#__PURE__*/ _jsxs(\"div\",{style:{textAlign:\"center\",marginTop:\"12px\"},children:[/*#__PURE__*/ _jsx(\"p\",{style:{...props.success.toastFontTitle.font,...props.success.toastFontTitle,paddingBottom:\"4px\"},children:props.success.messageTitle}),/*#__PURE__*/ _jsx(\"p\",{style:{...props.success.toastFontText.font,...props.success.toastFontText},children:props.success.messageText})]})]})]});}const iconNames=Object.keys(PhosphorIcons);addPropertyControls(MagicFormPro,{formProvider:{type:ControlType.Enum,title:\"Send to\",options:[\"formspark\",\"formspree\",\"formcarry\",\"basin\",\"zapier\",\"messagebird\",\"custom\",],optionTitles:[\"Formspark\",\"Formspree\",\"Formcarry\",\"Basin\",\"Zapier\",\"Messagebird\",\"Custom\",],defaultValue:\"formcarry\"},formId:{type:ControlType.String,title:\"ID/URL\",defaultValue:\"\",placeholder:\"mdovqgln\",description:\"Enter the ID or URL endpoint from your provider.\"},inputTypes:{type:ControlType.Array,propertyControl:{type:ControlType.Object,controls:{type:{type:ControlType.Enum,title:\"Input Type\",options:[\"text\",\"email\",\"number\",\"url\",\"date\",\"textarea\",\"password\",\"select\",\"radio\",\"checkbox\",],optionTitles:[\"Text input\",\"Email input\",\"Number input\",\"URL input\",\"Date input\",\"TextArea input\",\"Password input\",\"Dropdown\",\"Radio input\",\"Checkbox\",]},step:{type:ControlType.Enum,title:\"Step\",options:[\"Step 1\",\"Step 2\",\"Step 3\",\"Step 4\",\"Step 5\",\"Step 6\",],defaultValue:\"Step 1\"},name:{type:ControlType.String,title:\"Value\",placeholder:\"fieldName\",description:\"The value you enter here will be used in the response.\"},showLabel:{type:ControlType.Boolean,title:\"Display Label\",defaultValue:true},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Label\",hidden(props){return!props.showLabel;}},placeholder:{type:ControlType.String,title:\"Placeholder\",defaultValue:\"Enter Text\",hidden:props=>[\"radio\",\"date\",\"checkbox\"].includes(props.type)},options:{type:ControlType.Array,title:\"Options\",defaultValue:[\"Option 1\",\"Option 2\"],hidden:props=>props.type!==\"radio\"&&props.type!==\"select\"&&props.type!==\"checkbox\",propertyControl:{type:ControlType.String}},rows:{type:ControlType.Number,title:\"Rows\",defaultValue:3,hidden:props=>props.type!==\"textarea\"},required:{type:ControlType.Boolean,title:\"Required\",defaultValue:false},validationMessage:{title:\"Validation Message\",type:ControlType.String,defaultValue:\"\",hidden:props=>props.required===false,description:\"Leave this field empty to only show error on the border\"},toggleIcon:{type:ControlType.Boolean,title:\"Show icon\",defaultValue:true,hidden:props=>[\"password\",\"number\",\"select\",\"textarea\",\"radio\",\"date\",\"checkbox\",].includes(props.type)},icon:{type:ControlType.Enum,title:\"Select icon\",options:iconNames,defaultValue:iconNames[0],hidden:props=>[\"password\",\"select\",\"number\",\"date\",\"textarea\",\"radio\",\"checkbox\",].includes(props.type)||!props.toggleIcon},width:{type:ControlType.Enum,title:\"Width\",options:[\"Full Width\",\"50% Width\"],optionTitles:[\"Full Width\",\"1/2 Width\"],defaultValue:\"Full Width\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",hidden:props=>[\"radio\",\"checkbox\",\"textarea\"].includes(props.type),propertyControl:{type:ControlType.String}}}}},containerStyle:{type:ControlType.Object,title:\"Container\",controls:{gap:{type:ControlType.Number,title:\"Gap\",defaultValue:8}}},stepStyle:{type:ControlType.Object,title:\"Steps\",controls:{stepIndicatorType:{type:ControlType.Enum,title:\"Use\",options:[\"slider\",\"circle\"],optionTitles:[\"Slider\",\"Circle\"],defaultValue:\"slider\"},gap:{type:ControlType.Number,title:\"Gap\",defaultValue:16},current:{type:ControlType.Color,title:\"Current step\",defaultValue:\"#2266ff\"},previous:{type:ControlType.Color,title:\"Previous step\",defaultValue:\"#2266ff50\",hidden:props=>props.stepIndicatorType===\"slider\"},next:{type:ControlType.Color,title:\"Next step\",defaultValue:\"#eeeeee\"},font:{type:ControlType.Font,controls:\"extended\",hidden:props=>props.stepIndicatorType===\"circle\"}}},inputStyle:{type:ControlType.Object,title:\"Inputs\",controls:{styling:{type:ControlType.Object,title:\"Styling\",controls:{backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#fafafa\"},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#dddddd\"},borderWidth:{type:ControlType.FusedNumber,title:\"Border width\",defaultValue:1,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"borderTopWidth\",\"borderRightWidth\",\"borderBottomWidth\",\"borderLeftWidth\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:10},padding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:0,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},iconPosition:{type:ControlType.Enum,title:\"Position\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],defaultValue:\"right\"},iconSize:{type:ControlType.Number,title:\"Icon size\",defaultValue:24,min:0,step:1},iconColor:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#000000\"},extraColorStyles:{type:ControlType.Object,title:\"Active / Error\",controls:{hoverColor:{type:ControlType.Color,title:\"Hover bg Color\",defaultValue:\"#ffffff\"},hoverBorderColor:{type:ControlType.Color,title:\"Hover border\",defaultValue:\"#2266FF25\"},activeColor:{type:ControlType.Color,title:\"Active Color\",defaultValue:\"#2266ff\"},errorColor:{type:ControlType.Color,title:\"Error Color\",defaultValue:\"#ff0020\"},useOutline:{type:ControlType.Boolean,title:\"Use outline\",defaultValue:true,description:\"This will place a larger outline around the input when selected/hovered/error\"}}}}},checkboxStyle:{type:ControlType.Object,title:\"Checkbox/Radio\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Label color\",defaultValue:\"#000000\"},colorScheme:{type:ControlType.Enum,title:\"Mode\",options:[\"light\",\"dark\"],optionTitles:[\"Light\",\"Dark\"],defaultValue:\"light\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\"},accent:{type:ControlType.Color,title:\"Active color\",defaultValue:\"#2266ff\"},borderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:1},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:10},size:{type:ControlType.Number,title:\"Size\",defaultValue:14,min:0,step:1},marginBottom:{type:ControlType.Number,title:\"Space between\",defaultValue:4}}},fontStyle:{type:ControlType.Object,title:\"Fonts\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"},labelStyle:{type:ControlType.Object,title:\"Label\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#828282\"},padding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:0,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}}},buttonStyle:{type:ControlType.Object,title:\"Button\",controls:{buttonSubmit:{type:ControlType.String,title:\"Submit text\",defaultValue:\"Submit\"},buttonNext:{type:ControlType.String,title:\"Next step text\",defaultValue:\"Continue\"},buttonAlignment:{type:ControlType.Enum,options:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",title:\"Button Alignment\"},styling:{type:ControlType.Object,title:\"Styling\",controls:{borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:10},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#2266FF\"},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#2266FF\"},borderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:1},padding:{type:ControlType.Number,title:\"Padding\",defaultValue:16},marginTop:{type:ControlType.Number,title:\"Margin Top\",defaultValue:8},hoverColor:{type:ControlType.Color,title:\"Hover\",defaultValue:\"#2266FF\"},showIcon:{type:ControlType.Boolean,title:\"Show Icon\",defaultValue:true}}},fontStyle:{type:ControlType.Object,title:\"Font\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"}}}}},success:{type:ControlType.Object,title:\"Success\",controls:{afterSubmit:{title:\"On Success\",type:ControlType.Enum,options:[\"redirect\",\"toast\"],optionTitles:[\"Redirect to another page\",\"Show a toast message\",],defaultValue:\"toast\"},redirectURL:{title:\"Redirect URL\",type:ControlType.Link,hidden:props=>props.afterSubmit!==\"redirect\"},messageTitle:{type:ControlType.String,title:\"Title\",defaultValue:\"Thank you\",hidden:props=>props.success.afterSubmit!==\"toast\"},messageText:{type:ControlType.String,title:\"Body\",defaultValue:\"We will be in touch shortly\",hidden:props=>props.success.afterSubmit!==\"toast\"},toastIcon:{type:ControlType.Number,title:\"Size icon\",defaultValue:32},iconColor:{type:ControlType.Color,title:\"Color icon\",defaultValue:\"#2266ff\",hidden:props=>props.success.afterSubmit!==\"toast\"},toastFontTitle:{type:ControlType.Object,title:\"Title font\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"}}},toastFontText:{type:ControlType.Object,title:\"Text font\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"}}}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"MagicFormPro\":{\"type\":\"reactComponent\",\"name\":\"MagicFormPro\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MagicFormPro.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Playfair Display-500\"]);export const fonts=[{family:\"Playfair Display\",moduleAsset:{localModuleIdentifier:\"local-module:css/f9z7v91ro:default\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\",weight:\"500\"}];export const css=['.framer-XAdu8 .framer-styles-preset-1pkgc8z:not(.rich-text-wrapper), .framer-XAdu8 .framer-styles-preset-1pkgc8z.rich-text-wrapper h4 { --framer-font-family: \"Playfair Display\", serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.015625em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #1b1b1b); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-XAdu8 .framer-styles-preset-1pkgc8z:not(.rich-text-wrapper), .framer-XAdu8 .framer-styles-preset-1pkgc8z.rich-text-wrapper h4 { --framer-font-family: \"Playfair Display\", serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.015625em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #1b1b1b); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-XAdu8 .framer-styles-preset-1pkgc8z:not(.rich-text-wrapper), .framer-XAdu8 .framer-styles-preset-1pkgc8z.rich-text-wrapper h4 { --framer-font-family: \"Playfair Display\", serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.015625em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #1b1b1b); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-XAdu8\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Barlow-600\"]);export const fonts=[{family:\"Barlow\",moduleAsset:{localModuleIdentifier:\"local-module:css/jYkXtflJ5:default\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\",weight:\"600\"}];export const css=['.framer-tPSQk .framer-styles-preset-x2j49s:not(.rich-text-wrapper), .framer-tPSQk .framer-styles-preset-x2j49s.rich-text-wrapper h3 { --framer-font-family: \"Barlow\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #e4a853; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-tPSQk\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7aa0232)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{MagicFormPro}from\"https://framerusercontent.com/modules/mLKA4f9owSnrLfW6o9Ta/jJ8vw0BUAQBnx2qeyKPy/MagicFormPro.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iQzCddwwJ27CQVoKfINc/pUozo8wMep2BON4wKjTH/f9z7v91ro.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rY68DDp9Afj9JtA4rVO1/6AaEBKTlsYQXHQ7Yjsmz/jYkXtflJ5.js\";const MagicFormProFonts=getFonts(MagicFormPro);const cycleOrder=[\"L2fQSkE_G\",\"SGW63zoAz\"];const variantClassNames={L2fQSkE_G:\"framer-v-t99dwh\",SGW63zoAz:\"framer-v-op7bj9\"};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 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 humanReadableVariantMap={Gray:\"L2fQSkE_G\",White:\"SGW63zoAz\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"L2fQSkE_G\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"L2fQSkE_G\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-QNycZ\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-t99dwh\",className),\"data-border\":true,\"data-framer-name\":\"Gray\",layoutDependency:layoutDependency,layoutId:\"L2fQSkE_G\",ref:ref,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-57644229-9aea-4671-a3e2-529f7b58afe0, rgb(221, 217, 214)) /* {\"name\":\"Neutral / 03\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-636a3fe4-9f0f-4ae1-a43c-60a743a1245b, rgb(245, 242, 238))\",...style},variants:{SGW63zoAz:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"}},...addPropertyOverrides({SGW63zoAz:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1iin68\",\"data-framer-name\":\"Form Text Block\",layoutDependency:layoutDependency,layoutId:\"A69IkqlZY\",children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-18yf5g7\",\"data-framer-name\":\"Title Block\",layoutDependency:layoutDependency,layoutId:\"W3TmQfqoB\",children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{className:\"framer-styles-preset-x2j49s\",\"data-styles-preset\":\"jYkXtflJ5\",style:{\"--framer-text-alignment\":\"left\"},children:\"ROOMS & SUITES\"})}),className:\"framer-itfeoi\",\"data-framer-name\":\"Subtitle\",layoutDependency:layoutDependency,layoutId:\"EkUfxvako\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h4,{className:\"framer-styles-preset-1pkgc8z\",\"data-styles-preset\":\"f9z7v91ro\",style:{\"--framer-text-alignment\":\"left\"},children:\"Book A Room\"})}),className:\"framer-i9g8sd\",\"data-framer-name\":\"Form Title\",layoutDependency:layoutDependency,layoutId:\"KBCbexn4F\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-13neqbi\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:442,layoutDependency:layoutDependency,layoutId:\"xCO2RvPd6\",svg:'<svg width=\"442\" height=\"4\" viewBox=\"-1 -1 442 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.00112867\" y1=\"0.500001\" x2=\"440\" y2=\"1.49323\" stroke=\"#DDD9D6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-zl930a-container\",layoutDependency:layoutDependency,layoutId:\"K6fSA8s_y-container\",children:/*#__PURE__*/ _jsx(MagicFormPro,{buttonStyle:{buttonAlignment:\"Center\",buttonNext:\"Continue\",buttonSubmit:\"Check Availability\",fontStyle:{color:'var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255)) /* {\"name\":\"Neutral / 01\"} */',font:{fontFamily:'\"Barlow\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"150%\",textAlign:\"center\"}},styling:{backgroundColor:'var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(170, 132, 83)) /* {\"name\":\"Primary\"} */',borderColor:\"rgba(194, 212, 255, 0.5)\",borderRadius:0,borderWidth:0,hoverColor:\"rgb(0, 0, 0)\",marginTop:2,padding:20,showIcon:false}},containerStyle:{gap:16},formId:\"https://hooks.zapier.com/hooks/catch/6631447/3hpqc7b/\",formProvider:\"zapier\",height:\"100%\",id:\"K6fSA8s_y\",inputStyle:{checkboxStyle:{accent:\"rgb(34, 102, 255)\",borderRadius:0,borderWidth:0,color:'var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(27, 27, 27)) /* {\"name\":\"Neutral / 07\"} */',colorScheme:\"light\",font:{fontFamily:'\"Barlow\", \"Barlow Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"150%\"},marginBottom:16,size:14},fontStyle:{color:'var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(27, 27, 27)) /* {\"name\":\"Neutral / 07\"} */',font:{fontFamily:'\"Barlow\", \"Barlow Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0px\",lineHeight:\"150%\"},labelStyle:{color:\"rgb(31, 31, 31)\",font:{fontFamily:'\"Inter-Medium\", \"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.3px\",lineHeight:\"100%\",textAlign:\"left\"},isMixed:true,padding:0,paddingBottom:8,paddingLeft:0,paddingRight:0,paddingTop:8}},styling:{backgroundColor:'var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255)) /* {\"name\":\"Neutral / 01\"} */',borderBottomWidth:0,borderColor:\"rgb(228, 228, 228)\",borderLeftWidth:0,borderRadius:0,borderRightWidth:0,borderTopWidth:0,borderWidth:0,extraColorStyles:{activeColor:\"rgb(56, 116, 255)\",errorColor:\"rgb(255, 0, 32)\",hoverBorderColor:\"rgb(199, 216, 255)\",hoverColor:\"rgb(245, 248, 255)\",useOutline:false},iconColor:'var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(27, 27, 27)) /* {\"name\":\"Neutral / 07\"} */',iconPosition:\"right\",iconSize:20,isMixed:true,padding:16,paddingBottom:18,paddingLeft:24,paddingRight:24,paddingTop:18}},inputTypes:[{icon:\"CalendarBlank\",label:\"Check In\",name:\"Check in\",options:[\"Option 1\",\"Option 2\"],placeholder:\"Check in\",required:true,rows:3,showLabel:true,step:\"Step 1\",toggleIcon:true,type:\"date\",validationMessage:\"\",width:\"Full Width\"},{icon:\"CalendarBlank\",label:\"Check Out\",name:\"Check out\",options:[\"Option 1\",\"Option 2\"],placeholder:\"Enter lastname...\",required:true,rows:3,showLabel:true,step:\"Step 1\",toggleIcon:true,type:\"date\",validationMessage:\"\",width:\"Full Width\"},{icon:\"Envelope\",label:\"Adult\",name:\"email\",options:[\"1\",\"2\",\"3\",\"4\"],placeholder:\"Adult\",required:false,rows:3,showLabel:false,step:\"Step 1\",toggleIcon:true,type:\"select\",validationMessage:\"\",width:\"50% Width\"},{icon:\"Activity\",label:\"\",name:\"\",options:[\"1\",\"2\",\"3\",\"4\"],placeholder:\"Children\",required:false,rows:3,showLabel:false,step:\"Step 1\",toggleIcon:true,type:\"select\",validationMessage:\"\",width:\"50% Width\"}],layoutId:\"K6fSA8s_y\",stepStyle:{current:\"rgb(34, 102, 255)\",font:{fontFamily:'\"Inter-SemiBold\", \"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:16,next:\"rgb(238, 238, 238)\",previous:\"rgba(34, 102, 255, 0.31)\",stepIndicatorType:\"slider\"},style:{width:\"100%\"},success:{afterSubmit:\"toast\",iconColor:\"rgb(34, 102, 255)\",messageText:\"Thank you\",messageTitle:\"Thank you\",toastFontText:{color:\"rgb(0, 0, 0)\",font:{}},toastFontTitle:{color:\"rgb(0, 0, 0)\",font:{}},toastIcon:32},width:\"100%\",...addPropertyOverrides({SGW63zoAz:{inputStyle:{checkboxStyle:{accent:\"rgb(34, 102, 255)\",borderRadius:0,borderWidth:0,color:'var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(27, 27, 27)) /* {\"name\":\"Neutral / 07\"} */',colorScheme:\"light\",font:{fontFamily:'\"Barlow\", \"Barlow Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"150%\"},marginBottom:16,size:14},fontStyle:{color:'var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(27, 27, 27)) /* {\"name\":\"Neutral / 07\"} */',font:{fontFamily:'\"Barlow\", \"Barlow Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0px\",lineHeight:\"150%\"},labelStyle:{color:\"rgb(31, 31, 31)\",font:{fontFamily:'\"Inter-Medium\", \"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.3px\",lineHeight:\"100%\",textAlign:\"left\"},isMixed:true,padding:0,paddingBottom:8,paddingLeft:0,paddingRight:0,paddingTop:8}},styling:{backgroundColor:'var(--token-636a3fe4-9f0f-4ae1-a43c-60a743a1245b, rgb(245, 242, 238)) /* {\"name\":\"Neutral / 02\"} */',borderBottomWidth:0,borderColor:\"rgb(228, 228, 228)\",borderLeftWidth:0,borderRadius:0,borderRightWidth:0,borderTopWidth:0,borderWidth:0,extraColorStyles:{activeColor:\"rgb(56, 116, 255)\",errorColor:\"rgb(255, 0, 32)\",hoverBorderColor:\"rgb(199, 216, 255)\",hoverColor:\"rgb(245, 248, 255)\",useOutline:false},iconColor:'var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(27, 27, 27)) /* {\"name\":\"Neutral / 07\"} */',iconPosition:\"right\",iconSize:20,isMixed:true,padding:16,paddingBottom:18,paddingLeft:24,paddingRight:24,paddingTop:18}}}},baseVariant,gestureVariant)})})]})})})});});const css=['.framer-QNycZ [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-QNycZ .framer-18qqvq4 { display: block; }\",\".framer-QNycZ .framer-t99dwh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; max-width: 520px; overflow: visible; padding: 40px 40px 40px 40px; position: relative; width: 520px; }\",\".framer-QNycZ .framer-1iin68 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QNycZ .framer-18yf5g7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QNycZ .framer-itfeoi, .framer-QNycZ .framer-i9g8sd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QNycZ .framer-13neqbi { flex: none; height: 4px; position: relative; width: 100%; }\",\".framer-QNycZ .framer-zl930a-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QNycZ .framer-t99dwh, .framer-QNycZ .framer-1iin68, .framer-QNycZ .framer-18yf5g7 { gap: 0px; } .framer-QNycZ .framer-t99dwh > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-QNycZ .framer-t99dwh > :first-child, .framer-QNycZ .framer-1iin68 > :first-child, .framer-QNycZ .framer-18yf5g7 > :first-child { margin-top: 0px; } .framer-QNycZ .framer-t99dwh > :last-child, .framer-QNycZ .framer-1iin68 > :last-child, .framer-QNycZ .framer-18yf5g7 > :last-child { margin-bottom: 0px; } .framer-QNycZ .framer-1iin68 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-QNycZ .framer-18yf5g7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 587.5\n * @framerIntrinsicWidth 520\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"520px\",null,null]},\"SGW63zoAz\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"520px\",null,null]}}}\n */ const FramerXNVvgS1rM=withCSS(Component,css,\"framer-QNycZ\");export default FramerXNVvgS1rM;FramerXNVvgS1rM.displayName=\"Cta Form Block\";FramerXNVvgS1rM.defaultProps={height:587.5,width:520};addPropertyControls(FramerXNVvgS1rM,{variant:{options:[\"L2fQSkE_G\",\"SGW63zoAz\"],optionTitles:[\"Gray\",\"White\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXNVvgS1rM,[{family:\"Barlow\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/XNVvgS1rM:default\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf\",weight:\"400\"},{family:\"Barlow\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/XNVvgS1rM:default\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\",weight:\"600\"},...MagicFormProFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXNVvgS1rM\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"520px\\\",null,null]},\\\"SGW63zoAz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"520px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"520\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"587.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XNVvgS1rM.map"],
  "mappings": "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",
  "names": ["MagicFormPro", "props", "formValues", "setFormValues", "e", "validationErrors", "setValidationErrors", "inputValues", "setInputValues", "toastVisible", "setToastVisible", "ye", "fieldActive", "setFieldActive", "showPassword", "setShowPassword", "isHovered", "setIsHovered", "activeHoverField", "setActiveHoverField", "windowWidth", "setWindowWidth", "currentStep", "setCurrentStep", "isHigherThanStep1", "window", "handleResize", "handleIconClick", "handleFieldActive", "fieldName", "isActive", "prevState", "countries", "hasMoreSteps", "input", "getTotalSteps", "steps", "goBackOneStep", "StepIndicator", "step", "isCurrent", "isCompleted", "backgroundColor", "handleClick", "p", "motion", "Slider", "totalSteps", "progress", "u", "Dr", "buttonAlignmentStyles", "validate", "errors", "field", "validateEmail", "prevErrors", "email", "handleSubmit", "event", "submitUrl", "handleFormSuccess", "error", "handleChange", "name", "value", "type", "checked", "checkboxValues", "index", "renderInputTypes", "ErrorMessage", "errorColor", "X0", "defaultStyle", "defaultInputStyle", "iconPadding", "radioStyle", "iconStyle", "selectStyle", "widthStyle", "formStyle", "IconComponent", "index_esm_exports", "renderInput", "showIcon", "renderIcon", "sharedStyles", "inputType", "defaultIconComponent", "passwordIcon", "Xj", "iconStyles", "Uj", "option", "optionIndex", "ref", "du", "ref1", "jB", "_", "i", "mm", "iconNames", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MagicFormProFonts", "getFonts", "MagicFormPro", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "SVG", "css", "FramerXNVvgS1rM", "withCSS", "XNVvgS1rM_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
