{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/qvIVcSrDhUYM1fyUe7AS/LdIS4mBpKb02TTbxBirP/Signup_form_v2.js", "ssg:https://framerusercontent.com/modules/zynm1H9JP5hV4Yqu8vDQ/Ct6iINJTBmAjd7CQrthw/en__QqDCH.js", "ssg:https://framerusercontent.com/modules/ZOO9HkIbDgEQ2O8fUtYO/woYUubSOlT2ZBssJTv8E/Daw1GfU3f.js", "ssg:https://framerusercontent.com/modules/7OrNASIUiZLLzixembN8/DnjH0rpxGEbKTDwhW2bV/Q6MDeJDKd.js", "ssg:https://framerusercontent.com/modules/zOyfuJsF2OYF6lmgCH1O/LPqO9bl9AEXz5OUC0CqE/H4knTZ4f1.js", "ssg:https://framerusercontent.com/modules/gxP1I84SBJ4gpXlW2tzw/BYBXs1unWQeCYxHAgTLq/hYzKl9ldb.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";var FieldType;(function(FieldType){FieldType[\"Text\"]=\"text\";FieldType[\"Number\"]=\"number\";FieldType[\"Email\"]=\"email\";FieldType[\"Url\"]=\"url\";FieldType[\"Tel\"]=\"tel\";FieldType[\"TextArea\"]=\"textarea\";FieldType[\"Select\"]=\"select\";FieldType[\"Checkbox\"]=\"checkbox\";FieldType[\"Radio\"]=\"radio\";FieldType[\"Time\"]=\"time\";FieldType[\"Week\"]=\"week\";FieldType[\"Month\"]=\"month\";FieldType[\"Date\"]=\"date\";FieldType[\"DateTimeLocal\"]=\"datetime-local\";FieldType[\"Password\"]=\"password\";FieldType[\"Hidden\"]=\"hidden\";})(FieldType||(FieldType={}));function hasMinMaxStep(type){return[\"time\",\"week\",\"number\",\"date\",\"datetime-local\"].includes(type);}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * Form\n * By Joel Whitaker (Alphi.dev)\n * Based on INPUT by Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Form=withCSS(function Form({klaviyoList,redirectAs,link,inputs,button,styles,extraHeaders,extraFields,style,onSubmit}){const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[getFocus,setFocus]=useState(null);const{paddingPerSide:labelPaddingPerSide,paddingTop:labelPaddingTop,paddingRight:labelPaddingRight,paddingBottom:labelPaddingBottom,paddingLeft:labelPaddingLeft,padding:labelPadding,borderRadius:labelBorderRadius,borderObject:labelBorderObject,shadowObject:labelShadowObject}=styles.label;const{paddingPerSide:inputPaddingPerSide,paddingTop:inputPaddingTop,paddingRight:inputPaddingRight,paddingBottom:inputPaddingBottom,paddingLeft:inputPaddingLeft,padding:inputPadding,borderRadius:inputBorderRadius,borderObject:inputBorderObject,focusObject:inputFocusObject,shadowObject:inputShadowObject}=styles.input;const{paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,paddingBottom:buttonPaddingBottom,paddingLeft:buttonPaddingLeft,padding:buttonPadding,borderRadius:buttonBorderRadius,borderObject:buttonBorderObject,shadowObject:buttonShadowObject}=styles.button;const labelPaddingValue=labelPaddingPerSide?`${labelPaddingTop}px ${labelPaddingRight}px ${labelPaddingBottom}px ${labelPaddingLeft}px`:`${labelPadding}px ${labelPadding}px ${labelPadding}px ${labelPadding}px`;const inputPaddingValue=inputPaddingPerSide?`${inputPaddingTop}px ${inputPaddingRight}px ${inputPaddingBottom}px ${inputPaddingLeft}px`:`${inputPadding}px ${inputPadding}px ${inputPadding}px ${inputPadding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${buttonPaddingTop}px ${buttonPaddingRight}px ${buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${buttonPadding}px ${buttonPadding}px ${buttonPadding}px ${buttonPadding}px`;const onSuccess=()=>{/* Reset */setLoading(false);setFocus(null);return;};const handleChange=useCallback(event=>{setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);setError(false);const webhook=\"https://api.timeline.com/webhooks/subscribe?list=\";const url=webhook+klaviyoList;const headers=new Headers({\"Content-Type\":\"application/json\",Accept:\"application/json\"});if(extraHeaders){for(const[key,value]of Object.entries(extraHeaders)){headers.append(key,value);}}const formData=new FormData(event.target);const bodyObject={};for(const[name,value]of formData){bodyObject[name]=value;}if(extraFields){for(const[key,value]of Object.entries(extraFields)){bodyObject[key]=value;}}const requestOptions={method:\"POST\",headers:headers,body:JSON.stringify(bodyObject)};console.log([requestOptions]);fetch(url,requestOptions).then(response=>{const statusCode=response.status;console.log(\"Status code: \"+statusCode);if(statusCode===204||statusCode>=200&&statusCode<300){return{statusCode,data:null};}else{throw new Error(\"An error occurred submitting the form\");}}).then(({statusCode,data})=>{// Reset state\nsetLoading(false);event.target.reset();// Handle success\nonSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(\"Error:\",error);setError(true);setLoading(false);formControls.start(\"error\");});},[onSubmit,isLoading]);// Animation\nconst formControls=useAnimationControls();// Label Box Shadow Styles\nconst labelShadowStyles=styles.label.shadowObject?`${labelShadowObject.shadowX}px ${labelShadowObject.shadowY}px ${labelShadowObject.shadowBlur}px ${labelShadowObject.shadowColor}`:null;const labelBorderStyles=styles.label.borderObject?`inset 0 0 0 ${labelBorderObject.borderWidth}px ${labelBorderObject.borderColor}`:null;// Input Box Shadow Styles\nconst inputFocusStylesFrom=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthFrom}px ${inputFocusObject.focusColor}`:null;const inputFocusStylesTo=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthTo}px ${inputFocusObject.focusColor}`:null;const inputShadowStyles=styles.input.shadowObject?`${inputShadowObject.shadowX}px ${inputShadowObject.shadowY}px ${inputShadowObject.shadowBlur}px ${inputShadowObject.shadowColor}`:null;const inputBorderStyles=styles.input.borderObject?`inset 0 0 0 ${inputBorderObject.borderWidth}px ${inputBorderObject.borderColor}`:null;// Button Box Shadow Styles\nconst buttonShadowStyles=styles.button.shadowObject?`${buttonShadowObject.shadowX}px ${buttonShadowObject.shadowY}px ${buttonShadowObject.shadowBlur}px ${buttonShadowObject.shadowColor}`:null;const buttonBorderStyles=styles.button.borderObject?`inset 0 0 0 ${buttonBorderObject.borderWidth}px ${buttonBorderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},focused:{boxShadow:dynamicBoxShadow(inputFocusStylesTo,inputShadowStyles,inputBorderStyles)}};const label=input=>{if(!input.label){return null;}return /*#__PURE__*/_jsx(\"label\",{htmlFor:input.name,style:{marginBottom:\"12px\",alignSelf:\"flex-start\",padding:labelPaddingValue,borderRadius:labelBorderRadius,fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color,boxShadow:dynamicBoxShadow(labelShadowStyles,labelBorderStyles)},children:input.label});};const getInputSpan=input=>{return input.gridColumn>styles.form.columns?styles.form.columns:input.gridColumn;};const getButtonSpan=()=>{const totalSpan=inputs.reduce((sum,input)=>sum+Number(input.gridColumn),0);const shouldBeInline=totalSpan===styles.form.columns-1;return shouldBeInline?1:styles.form.columns;};const baseInput=input=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/_jsx(motion.input,{name:input.name,type:input.type,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},min:input.min,max:input.max,step:input.step})]});};const textareaInput=input=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/_jsx(motion.textarea,{name:input.name,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3}})]});};const optionsHMTL=options=>{return options.map(option=>{return /*#__PURE__*/_jsx(\"option\",{value:option.value,children:option.text});});};const selectInput=input=>{let options=[];if(input.placeholder){options.push({text:input.placeholder,value:\"\"});}options=options.concat(input.options);return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{...selectChevron,borderColor:`${styles.input.color} transparent transparent transparent`}}),/*#__PURE__*/_jsx(motion.select,{name:input.name,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},disabled:isLoading,children:optionsHMTL(options)})]})]});};function checkboxInput(input){return /*#__PURE__*/_jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/_jsx(motion.input,{name:input.name,type:\"checkbox\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}function radioInput(input){return /*#__PURE__*/_jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/_jsx(motion.input,{name:input.name,type:\"radio\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}const inputsHTML=inputs.map(input=>{let inputElement=null;if(input.type===\"select\"){inputElement=selectInput(input);}else if(input.type===\"textarea\"){inputElement=textareaInput(input);}else if(input.type===\"checkbox\"){inputElement=checkboxInput(input);}else if(input.type===\"radio\"){inputElement=radioInput(input);}else{inputElement=baseInput(input);}return inputElement;});return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":styles.input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gridTemplateColumns:styles.form.columns>1&&getButtonSpan()===1?\"1fr auto\":`repeat(${styles.form.columns}, 1fr)`,gap:`${styles.form.rowGap}px ${styles.form.columnGap}px`,background:styles.form.fill},onSubmit:handleSubmit,method:\"POST\",children:[inputsHTML,/*#__PURE__*/_jsxs(\"div\",{className:\"convert-goal\",style:{display:\"flex\",gridColumn:`span ${getButtonSpan()}`},children:[!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,padding:buttonPadding,color:styles.input.color}),button.shouldAppear&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/_jsxs(\"div\",{style:{height:\"100%\",display:\"flex\",position:\"relative\",alignSelf:styles.button.align},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:\"100%\",height:\"100%\",cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:buttonBorderRadius,fontWeight:\"normal\",fontSize:16,...styles.button.font,background:styles.button.fill,color:styles.button.color,zIndex:1,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:buttonBorderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:styles.button.color,background:styles.button.fill,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)},children:/*#__PURE__*/_jsx(Spinner,{color:styles.button.color})})]})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.inputPaddingPerSide?props.inputPaddingRight:props.inputPadding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};const basePropertyControls={klaviyoList:{title:\"Klaviyo List ID\",type:ControlType.String},inputs:{title:\"Inputs\",type:ControlType.Array,control:{type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String},name:{title:\"Name\",type:ControlType.String},placeholder:{title:\"Placeholder\",type:ControlType.String,hidden:props=>props.type===\"checkbox\"},type:{type:ControlType.Enum,options:Object.values(FieldType),optionTitles:Object.keys(FieldType)},options:{type:ControlType.Array,title:\"Options\",control:{type:ControlType.Object,title:\"Option\",controls:{text:{type:ControlType.String,title:\"Text\"},value:{type:ControlType.String,title:\"Value\"}}},hidden:props=>props.type!==\"select\"},min:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},max:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},step:{type:ControlType.Number,hidden:props=>!hasMinMaxStep(props.type)},value:{type:ControlType.String},required:{type:ControlType.Boolean},gridColumn:{title:\"Grid Col\",type:ControlType.Enum,defaultValue:1,displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"2\",\"3\"],optionTitles:[\"1\",\"2\",\"3\"]}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Submit\"}}},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},styles:{type:ControlType.Object,controls:{form:{type:ControlType.Object,controls:{columns:{title:\"Columns\",type:ControlType.Enum,options:[\"1\",\"2\",\"3\"],displaySegmentedControl:true},rowGap:{title:\"Row gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},columnGap:{title:\"Col Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8}}},label:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"transparent\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},input:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},align:{title:\"Align\",type:ControlType.Enum,segmentedControlDirection:\"vertical\",options:[\"flex-start\",\"center\",\"flex-end\",\"stretch\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Stretch\"],defaultValue:\"stretch\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}}}}};addPropertyControls(Form,basePropertyControls);const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const selectChevron={position:\"absolute\",top:\"50%\",right:\"12px\",transform:\"translateY(-50%)\",width:\"0\",height:\"0\",borderStyle:\"solid\",borderWidth:\"5px 5px 0 5px\",pointerEvents:\"none\"};function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}Form.defaultProps={url:\"\",styles:{form:{columns:1,rowGap:8,columnGap:8},label:{color:\"#000\"},input:{borderObject:{borderColor:\"#ccc\"}},button:{}},inputs:[{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:\"email\",required:false}]};export default Form;export{basePropertyControls};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Form\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"300\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"basePropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Signup_form_v2.map", "// Generated by Framer (f5febb9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"SliDVpKfZ\",\"SjGVR1if9\",\"yyAfkxnIU\",\"Xq14MG_Dy\",\"DOPBwmpMl\"];const serializationHash=\"framer-Eitud\";const variantClassNames={DOPBwmpMl:\"framer-v-1i363yn\",SjGVR1if9:\"framer-v-16585ij\",SliDVpKfZ:\"framer-v-cqq7fs\",Xq14MG_Dy:\"framer-v-kegtps\",yyAfkxnIU:\"framer-v-55qezq\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Amazon Prime\":\"Xq14MG_Dy\",\"Official Longevity Partner\":\"SjGVR1if9\",\"Prime Big Deal Days\":\"yyAfkxnIU\",\"Prime Day\":\"SliDVpKfZ\",Amazon:\"DOPBwmpMl\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"SliDVpKfZ\"};};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({cycleOrder,defaultVariant:\"SliDVpKfZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Xq14MG_Dy\")return true;return false;};const isDisplayed1=()=>{if([\"SjGVR1if9\",\"yyAfkxnIU\",\"Xq14MG_Dy\",\"DOPBwmpMl\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"SjGVR1if9\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"DOPBwmpMl\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"yyAfkxnIU\")return true;return false;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cqq7fs\",className,classNames),\"data-framer-name\":\"Prime Day\",layoutDependency:layoutDependency,layoutId:\"SliDVpKfZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderTopLeftRadius:8,boxShadow:\"0px 6px 24px 0px rgba(0, 0, 0, 0.05999999865889549), 0px 1px 4px 0px rgba(0, 0, 0, 0.05999999865889549), 0px 0px 0px 1px rgba(0, 0, 0, 0.019999999552965164)\",...style},...addPropertyOverrides({DOPBwmpMl:{\"data-framer-name\":\"Amazon\"},SjGVR1if9:{\"data-framer-name\":\"Official Longevity Partner\"},Xq14MG_Dy:{\"data-framer-name\":\"Amazon Prime\"},yyAfkxnIU:{\"data-framer-name\":\"Prime Big Deal Days\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12uneaw\",\"data-framer-name\":\"Amazon Prime_logo_(2024) (1)\",fill:\"black\",intrinsicHeight:2724,intrinsicWidth:4606,layoutDependency:layoutDependency,layoutId:\"okpnswrzD\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 4605.7 2723.6\"><path d=\"M2246 2723.1a2591.3 2591.3 0 0 1-591.4-83.5 2159.7 2159.7 0 0 1-516.8-208.3A1728.5 1728.5 0 0 1 679.1 2060c-55.6-63.6-86-106.3-101-141.4a93 93 0 0 1-9-35.5c-1.2-22.7 6-36.6 23.6-45.2 6.3-3.2 7-3.3 18.6-3.3a51 51 0 0 1 19 2.3c20.3 6.6 46.1 22.7 79.5 49.4a2069.6 2069.6 0 0 0 372.5 240.3c147.7 74.5 292.3 128.2 473.7 176a3157 3157 0 0 0 627.8 98.4c72.8 4.1 93.8 4.6 189.5 4.6 105.9 0 154.2-1.5 242-7.5 361.5-24.8 718.7-108.9 984.8-231.8a2156 2156 0 0 0 63-31c45.1-22.7 57-28.2 75.7-35 26.3-9.4 44.4-6.3 59.7 10.2a50.4 50.4 0 0 1 14.8 38.5c-5.1 41.5-59 100.4-163.7 179.3-249.6 188-594.4 319.3-974.8 371.2a2718 2718 0 0 1-263.5 22.6 3806 3806 0 0 1-165.4 1zm1615-239.4a51.1 51.1 0 0 1-26.8-24c-7.7-16.8-5.3-31.5 10.4-64.1a572 572 0 0 1 31.9-56.5c41.2-68.3 82.6-159.4 102.1-224.6 19.6-65.4 22-102.6 8-123.8-12-18.2-50.5-29.6-113.2-33.7-24.5-1.6-103.2-.6-126.7 1.5-52.5 4.9-89 10.2-138 20.1-35 7.1-41.8 8-66.5 8-23.9 0-28.8-.7-38.5-5.5a41 41 0 0 1-21-41.6c2.5-13.7 11.4-26.6 27.8-40.3 41.9-35 107.4-69 178.7-92.6a654.9 654.9 0 0 1 232.5-33.3 596 596 0 0 1 133 19.4c71.2 18.4 114.3 42 129.3 71 11.5 22.3 15.8 44.9 15.7 83.6a617 617 0 0 1-33.6 195.2 608 608 0 0 1-156.5 249.2c-53 52.3-89.7 80-119.5 90a57.3 57.3 0 0 1-29 2zm-3838.6-729a39.2 39.2 0 0 1-19.9-17.9l-2.3-4.2-.2-656.5c-.2-594.8-.1-657 1.3-661.9 2-6.9 10.3-16 18.3-19.8l5.6-2.8h181l4.7 2.2a34.4 34.4 0 0 1 16.7 17.1c3.6 7.7 4.7 12.9 19.3 84.5l10.3 50.7h10l4.5-9.7a318.5 318.5 0 0 1 38.7-63.3 322.1 322.1 0 0 1 65.6-59.3 278.7 278.7 0 0 1 218.2-40.6c76.2 16.7 145 67.4 195 143.7 48.3 73.8 82.2 179.6 93 290.7 3.2 33 3.7 42.2 4.2 89.7a905 905 0 0 1-6.7 140.3c-16 127.7-59.3 238.2-122 311a470.3 470.3 0 0 1-46 44.7 285.6 285.6 0 0 1-137 60c-19.6 3-66.8 3.3-85.5.5-72.7-10.9-127.5-44.7-175.8-108.5a491.5 491.5 0 0 1-36-56.4c-2.7-4.7-2.8-4.8-7.7-4.8h-5l-.2 224.3-.3 224.2-3 5.3a40.6 40.6 0 0 1-18.1 16.6c-4.2 1.4-16 1.6-110.8 1.6-86.6 0-106.8-.3-109.9-1.4zM466 1231c38-7.3 68.2-28.8 92-65.5 30-46 47.6-113 52.9-201.8 1.6-26.5.7-105.1-1.5-127.7-4.6-48-12.1-87-23-118.7-25.2-73.5-64.5-114.7-120.4-126a222 222 0 0 0-57.3 0c-45.8 9.2-80.6 38.3-106.3 88.7a346 346 0 0 0-31 94c-12.9 65.2-15.2 163.8-5.5 239.4 8.2 64.1 25.4 116.1 50.7 153.6 27 39.7 60.5 60.9 104.7 66 10.8 1.3 32.9.3 44.7-2zm3677.3 224.4-15.5-1.5a408 408 0 0 1-207.3-78.7 477 477 0 0 1-78.6-75.9c-64-80.8-103.7-183.6-115.5-299.8-3.1-30.9-3.8-50-3.3-92.7a661 661 0 0 1 10.3-120.8c37.3-212.7 172.2-371.6 348-409.8 32.2-7 57.7-9.6 94.4-9.6a382 382 0 0 1 144.5 26.1 505.2 505.2 0 0 1 51.3 24.9 426.6 426.6 0 0 1 135 127.6 588 588 0 0 1 85.6 210.8c10.3 51.4 14 96.8 13.5 167-.3 42.6-.4 43.6-2.6 47.6a31.6 31.6 0 0 1-22.1 17c-4.6 1.1-57.6 1.4-293.5 1.4h-287.8l.6 6.8c8 86.2 23.8 142.4 51.7 184.1 23.3 35 51.9 55 90 63.2 12.2 2.6 41.2 3.6 55.8 2 39.6-4.6 68.5-18 92.6-43.3 19.4-20.3 32.7-45.7 42.3-80.8 4.9-18 6-20.7 10.8-26 5.2-5.8 11-8.3 19.3-8.3 9 0 197.8 42.2 205.6 45.9a24 24 0 0 1 14 25.3c-2 15.6-24.8 68.7-42.6 99.7a387 387 0 0 1-161.5 154.2 437.6 437.6 0 0 1-148.5 41.8c-13.6 1.5-76 2.8-86.5 1.8zm192.1-648.6c-1.3-14-5.7-42.5-9.1-59.7-16.1-79.3-48.4-134.1-92.4-157a133.2 133.2 0 0 0-117.6-.3 133 133 0 0 0-37.5 28.2 173.4 173.4 0 0 0-32.7 43.2c-19 34.3-33.3 80.5-41.2 133.8-1.1 7.4-2 14.7-2 16.3v2.7H4336l-.7-7.2zm-3283 621.4a39 39 0 0 1-18-18.8c-1.4-4.3-1.6-47.8-1.6-499.4 0-447.5.2-495 1.6-499.3a29.4 29.4 0 0 1 15.6-16.3l6.3-2.9 87.5-.3c91-.3 95.3-.2 103.1 3.8 5.5 2.8 12.4 11 14.8 17.7 1.2 3.2 7.8 33.5 14.6 67.3l13 63.8c.6 2 1 2.3 5.6 2l5-.3 5.3-12a330.4 330.4 0 0 1 42.2-71.5c9.5-11.9 30-32 42-41.1 46.7-35.6 96.4-52 158.3-51.9 42 0 79 7.2 113 21.8 11.2 4.8 17.3 9.7 21 16.5 2.4 4.8 2.6 6.1 2.6 16.2 0 11-.1 11.3-24.8 111-13.6 55-25.5 102-26.3 104.2-2 5.2-7.2 10.8-12.2 13a31 31 0 0 1-11.2 1.6c-8.5 0-9.2-.2-43.7-14.2-36.1-14.7-63.3-23.2-84.3-26.2a267.2 267.2 0 0 0-55 .4 142 142 0 0 0-51.7 18.9c-12 7.4-30.7 26-39.5 39.3-24.3 36.9-35.3 79.5-37.8 145.5-.5 13.5-.9 151.7-1 307 0 312.7.6 286.5-6.4 296.1a23.8 23.8 0 0 1-9.2 7.5l-5.9 2.9-108.5.3-108.5.2zm745 1.4c-9.8-3-16.1-9-19.3-18-1.7-4.9-1.8-27.7-1.8-501.1v-496l2.6-5.5c3.3-7 8-11.5 15-14.9l5.4-2.6 105.5-.3c109.3-.3 114.3-.1 122 3.8a30 30 0 0 1 11.8 12.8c1.7 3.5 1.8 30 2 500.7.2 453.3.1 497.4-1.3 502.5a23 23 0 0 1-7.3 11.1c-9.5 9.5-.6 9-123.6 8.8-83.4 0-108-.3-111-1.3zm449.3 0c-8.3-3-15.6-9.5-20-17.8l-2.4-4.3v-994l2.4-5.3a28.2 28.2 0 0 1 15.1-14.1l5.5-2.6h91c84.7 0 91.4.1 95.6 1.8a32 32 0 0 1 19 19.5c1.7 4.6 10.5 46.2 27 128l1 5.2h10.5l3.5-8.8a413.7 413.7 0 0 1 25.1-49.7c40.4-64.6 98.8-104.9 169.8-117 47.2-8.1 99.7-4.2 142.8 10.6 56.5 19.4 103.7 58 138.5 113.4a431.7 431.7 0 0 1 23.4 44.8l2.9 6.7h10l8-12.2c35.9-55 80.4-100.5 124.5-127.2a295 295 0 0 1 194.4-37 258.8 258.8 0 0 1 171.2 103c12 16 21.3 31.3 31.4 51.9 25.9 52.6 42 112.8 48.5 181.7 3.4 35.7 3.7 63.6 3.3 384.3l-.3 317-2.6 5.5a27.7 27.7 0 0 1-14.1 15.1l-5.3 2.4h-219l-4.3-2.3a41.3 41.3 0 0 1-15.7-15.4l-3-5.3-.5-320c-.6-340.2-.4-324.1-5-351-9.7-57.3-35.1-97.2-73.5-115.6-19-9.1-37.6-12.5-63.8-11.6-37 1.3-64.6 12.7-88.1 36.2-28.2 28.1-44.5 69.5-52.3 132.5-1.5 12.3-1.7 42-2.2 321.5l-.6 308-2.6 5.5a27.7 27.7 0 0 1-14.1 15.1l-5.3 2.4h-219l-5.2-3a40.5 40.5 0 0 1-15.4-15.6l-2.4-4.4-.5-320c-.6-340.2-.4-324.1-5-351-9.7-57.3-35.1-97.2-73.5-115.6-19-9.1-37.6-12.5-63.8-11.6-37 1.3-64.6 12.7-88.1 36.2-28.2 28.1-44.5 69.5-52.3 132.5-1.5 12.3-1.7 42-2.2 321.5l-.6 308-2.6 5.5a27.7 27.7 0 0 1-14.1 15.1l-5.3 2.4-108 .2c-86.6.2-108.7 0-111.6-1zM1887.8 309a154 154 0 0 1-94-46.7 139.7 139.7 0 0 1-37-72c-3-15-3.8-44-1.6-60.8 6-45 26.5-79 62.3-103C1869-8 1944.5-9 1995.4 24.2a154 154 0 0 1 48.3 49.5c21.5 36.4 26 93 11.1 137.5a147.5 147.5 0 0 1-85.6 88c-23.8 9.2-54 12.9-81.4 9.8z\" fill=\"#0779ff\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12c2oww\",\"data-framer-name\":\"amazon_prime_day_seeklogo_2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ncb9eX_ia\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 111.724 36\"><path d=\"M 69.641 29.917 C 64.738 33.579 57.6 35.503 51.455 35.503 C 42.828 35.503 35.131 32.338 29.234 27 C 28.8 26.566 29.234 26.007 29.731 26.317 C 36.062 30.041 43.883 32.214 51.952 32.214 C 57.414 32.214 63.372 31.034 68.897 28.738 C 69.703 28.366 70.448 29.297 69.641 29.917 Z\" fill=\"rgb(52,62,71)\"></path><path d=\"M 71.628 27.621 C 71.007 26.814 67.345 27.248 65.731 27.434 C 65.234 27.434 65.172 27.062 65.607 26.752 C 68.524 24.766 73.241 25.324 73.8 26.007 C 74.359 26.69 73.676 31.283 70.945 33.517 C 70.51 33.828 70.138 33.703 70.324 33.207 C 70.945 31.717 72.31 28.428 71.628 27.621 Z\" fill=\"rgb(52,62,71)\"></path><path d=\"M 4.717 10.303 C 4.717 9.993 4.966 9.807 5.214 9.745 C 5.959 9.497 6.89 9.31 7.634 9.745 C 8.69 10.303 8.752 11.979 8.752 13.034 C 8.752 14.09 8.752 15.641 7.572 16.138 C 6.952 16.448 6.083 16.324 5.462 16.262 C 5.028 16.262 4.717 16.138 4.717 15.579 L 4.717 10.366 Z M 4.221 7.697 C 4.097 7.014 3.91 6.393 3.103 6.393 L 0.931 6.393 C 0.372 6.393 0 6.89 0 7.386 L 0 23.648 C 0 24.207 0.372 24.641 0.931 24.641 L 3.848 24.641 C 4.283 24.641 4.779 24.269 4.717 23.772 L 4.717 18.621 L 4.779 18.621 C 5.834 19.428 7.014 19.614 8.317 19.614 C 8.876 19.614 9.372 19.49 9.931 19.303 C 12.538 18.248 13.531 15.207 13.531 12.6 C 13.531 9.186 11.979 6.083 8.193 5.959 C 6.766 5.959 5.09 6.455 4.283 7.697 C 4.283 7.759 4.283 7.697 4.283 7.697 Z M 46.179 7.448 C 46.055 7.262 45.931 7.076 45.745 6.89 C 43.883 5.152 40.159 6.083 38.359 7.572 L 38.172 6.952 C 37.986 6.579 37.738 6.393 37.303 6.393 L 35.007 6.393 C 34.51 6.393 34.138 6.828 34.138 7.324 L 34.138 18.497 C 34.138 18.993 34.572 19.366 35.007 19.366 L 37.862 19.366 C 38.359 19.366 38.793 18.993 38.731 18.497 L 38.731 10.428 C 38.731 9.993 38.979 9.745 39.352 9.683 C 39.972 9.559 41.214 9.31 41.71 9.807 C 41.897 9.993 41.959 10.303 41.959 10.614 L 41.959 18.434 C 41.959 18.931 42.331 19.366 42.828 19.366 L 45.745 19.366 C 46.241 19.366 46.676 18.931 46.676 18.434 L 46.676 10.241 C 46.676 9.745 47.172 9.683 47.545 9.621 C 48.6 9.497 49.903 9.248 49.903 10.738 L 49.903 18.683 C 49.966 19.055 50.338 19.428 50.772 19.428 L 53.814 19.428 C 54.248 19.428 54.621 18.993 54.621 18.559 L 54.621 9.683 C 54.621 4.903 48.972 5.524 46.179 7.51 Z M 61.386 11.359 C 61.014 11.359 61.014 11.11 61.076 10.862 C 61.262 9.807 61.945 9 63.062 9 C 64.303 9 64.8 9.621 64.862 10.862 C 64.862 11.11 64.862 11.359 64.49 11.359 Z M 62.503 6.083 C 58.034 6.455 56.359 10.055 56.793 14.152 C 57.041 16.759 58.407 18.745 61.014 19.49 C 63.062 20.048 66.041 19.862 67.966 19.117 C 68.4 18.931 68.524 18.559 68.524 18.124 L 68.524 16.883 C 68.524 16.759 68.4 16.51 68.276 16.386 C 68.09 16.138 67.779 16.076 67.469 16.076 C 65.793 16.324 62.131 16.945 61.262 14.959 C 61.014 14.462 61.138 14.028 61.759 14.028 L 67.841 14.028 C 68.834 14.028 68.772 12.724 68.834 12.041 C 68.897 10.986 68.772 9.683 68.338 8.69 C 67.283 6.393 64.862 5.834 62.566 6.021 Z M 23.586 6.269 C 21.91 6.269 20.917 7.2 19.8 8.255 L 19.49 7.138 C 19.366 6.641 18.993 6.393 18.497 6.393 L 16.262 6.393 C 15.766 6.393 15.331 6.89 15.393 7.386 L 15.393 18.497 C 15.393 18.993 15.89 19.366 16.324 19.366 L 19.241 19.366 C 19.676 19.366 20.11 18.931 20.11 18.497 L 20.11 11.172 C 21.724 10.614 22.034 10.49 23.772 10.552 C 24.269 10.552 24.641 10.179 24.641 9.683 L 24.641 7.324 C 24.641 6.703 24.269 6.331 23.648 6.331 Z M 27.993 0.062 C 27.186 0.186 26.503 0.745 26.255 1.552 C 26.007 2.297 26.069 3.166 26.566 3.786 C 27 4.345 27.621 4.593 28.303 4.655 C 29.11 4.717 29.917 4.655 30.538 4.097 C 31.531 3.29 31.531 1.428 30.538 0.621 C 29.855 0 28.862 -0.062 27.993 0.062 Z M 27.31 6.393 C 26.752 6.393 26.379 6.766 26.379 7.324 L 26.379 18.497 C 26.379 18.931 26.814 19.366 27.248 19.366 L 30.041 19.366 C 30.724 19.366 31.097 18.931 31.034 18.248 L 31.034 7.324 C 31.034 6.828 30.662 6.393 30.166 6.393 Z\" fill=\"rgb(0,169,224)\"></path><path d=\"M 79.324 1.552 L 79.324 6.828 L 79.262 6.828 C 78.145 6.269 77.214 6.021 75.972 6.021 C 72.186 6.083 70.572 9.745 70.634 13.097 C 70.634 16.697 72.497 19.924 76.531 19.676 C 77.71 19.676 78.766 19.179 79.634 18.434 C 79.759 19.117 80.007 19.428 80.752 19.428 L 83.11 19.428 C 83.545 19.303 83.979 19.055 83.979 18.559 L 83.979 1.614 C 83.979 1.055 83.669 0.745 83.11 0.683 L 80.131 0.683 C 79.697 0.683 79.324 1.117 79.324 1.49 Z M 79.324 15.331 C 79.324 15.952 79.076 16.076 78.517 16.2 C 75.972 16.634 75.352 15.021 75.352 12.848 C 75.476 10.552 75.786 9.186 78.517 9.621 C 78.952 9.683 79.324 9.683 79.324 10.303 L 79.324 15.393 Z M 98.441 7.759 L 102.848 19.179 C 102.972 19.552 103.034 19.738 102.848 20.172 C 102.476 20.917 101.545 21.414 100.738 21.414 L 99.931 21.414 C 99.372 21.476 99 21.786 99 22.407 L 99 23.772 C 99 24.579 99.621 24.703 100.241 24.766 C 102.662 25.138 104.524 24.89 105.952 22.717 C 106.634 21.662 106.883 20.793 107.317 19.676 L 111.6 7.883 C 111.848 7.2 111.6 6.455 110.731 6.455 L 108.186 6.455 C 107.379 6.455 107.131 6.703 106.945 7.386 L 105.145 15.083 L 103.097 7.2 C 102.972 6.703 102.6 6.455 102.103 6.455 L 99.186 6.455 C 98.503 6.455 98.255 7.2 98.441 7.759 Z M 86.524 7.697 L 86.524 9.124 C 86.524 9.621 87.083 9.993 87.517 9.869 C 88.883 9.559 90.248 9.372 91.614 9.434 C 92.731 9.434 93.103 9.931 93.103 11.11 L 93.103 11.979 C 91.986 11.731 90.807 11.669 89.69 11.793 C 87.455 12.103 85.593 13.531 85.593 15.952 C 85.593 18.372 87.331 19.862 89.69 19.862 C 92.048 19.862 92.359 19.428 93.476 18.434 L 93.538 18.434 C 93.538 18.372 93.538 18.434 93.538 18.434 C 93.538 19.055 93.972 19.428 94.593 19.366 L 96.641 19.366 C 97.014 19.366 97.51 19.055 97.51 18.621 L 97.51 10.241 C 97.51 7.448 94.779 5.959 91.614 5.959 C 90.31 5.959 88.945 6.207 87.703 6.579 C 87.145 6.703 86.524 6.952 86.524 7.634 Z M 93.166 15.766 C 93.166 16.448 91.738 16.945 91.179 16.945 C 90.31 16.945 89.752 16.572 89.752 15.641 C 89.752 14.71 90.372 14.214 91.366 14.214 L 92.421 14.214 C 92.979 14.214 93.166 14.4 93.166 14.959 Z\" fill=\"rgb(52,62,71)\"></path></svg>',svgContentId:12474490491,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n3c7jz\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:92,layoutDependency:layoutDependency,layoutId:\"pl6K_vim1\",svg:'<svg width=\"92\" height=\"43\" viewBox=\"-1 -1 92 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.42969 0H0.429688V41H2.42969V0ZM11.6998 5.28969C11.6998 7.58638 12.9325 8.81906 14.4896 8.81906C16.0466 8.81906 17.2793 7.58638 17.2793 5.28969C17.2793 3.00598 16.0466 1.77329 14.4896 1.77329C12.9325 1.77329 11.6998 3.00598 11.6998 5.28969ZM18.9791 5.28969C18.9791 8.18326 17.2534 10.1685 14.4896 10.1685C11.7258 10.1685 10 8.18326 10 5.28969C10 2.38315 11.7258 0.423828 14.4896 0.423828C17.2534 0.423828 18.9791 2.38315 18.9791 5.28969ZM49.1846 6.87272H50.7676C50.3653 8.98775 48.8861 10.1685 46.7062 10.1685C43.9554 10.1685 42.3594 8.22219 42.3594 5.26374C42.3594 2.30529 44.0462 0.423828 46.7841 0.423828C48.8731 0.423828 50.3653 1.60461 50.7416 3.71964H49.1586C48.8602 2.43505 47.9649 1.77329 46.7322 1.77329C45.24 1.77329 44.0592 2.993 44.0592 5.26374C44.0592 7.54745 45.214 8.81906 46.7192 8.81906C48.0038 8.81906 48.8861 8.17028 49.1846 6.87272ZM68.8393 8.61172V0.592773H67.1914V10.0001H73.5754V8.61172H68.8393ZM47.6697 18.5769C47.2674 16.5657 45.8141 15.4238 43.6991 15.4238C40.8964 15.4238 39.1836 17.3442 39.1836 20.2637C39.1836 23.2222 40.7926 25.1685 43.4656 25.1685C44.7631 25.1685 45.7882 24.7014 46.3461 23.871L46.398 24.9998H47.6956V20.0821H43.764V21.4705H46.1645V21.6521C46.1645 23.326 44.7631 23.8191 43.6472 23.8191C41.9863 23.8191 40.8834 22.5475 40.8834 20.2637C40.8834 17.9541 42.0512 16.7733 43.6602 16.7733C44.9058 16.7733 45.7882 17.4221 46.0996 18.5769H47.6697ZM80.8008 15.5928H82.6823L85.0179 19.7969L87.4184 15.5928H89.2739L85.8094 21.3669V25.0001H84.1615V21.341L80.8008 15.5928ZM13.4762 30.5928H10.375V40.0001H12.0229V36.4448H13.5021C15.721 36.4448 17.4727 35.9258 17.4727 33.5512C17.4727 30.9172 15.5393 30.5928 13.4762 30.5928ZM12.0229 31.9163H13.4762C14.631 31.9163 15.7599 32.046 15.7599 33.5642C15.7599 34.9137 14.7997 35.0953 13.554 35.0953H12.0229V31.9163ZM17.625 40.0001L21.1284 30.5928H22.8672L26.3965 40.0001H24.5929L23.8533 37.911H20.0385L19.3118 40.0001H17.625ZM21.9329 32.5002L20.5186 36.5356H23.3602L21.9329 32.5002ZM31.987 36.0296L33.9723 40.0001H35.8278L33.6738 35.7311C34.8546 35.3289 35.4385 34.5114 35.4385 33.3047C35.4385 31.2156 34.0112 30.5928 31.2474 30.5928H28.25V40.0001H29.8979V36.0425H31.4939H31.4941C31.6627 36.0425 31.8313 36.0425 31.987 36.0296ZM29.8979 31.9163H31.4809C32.7785 31.9163 33.7517 32.085 33.7517 33.3177C33.7517 34.4465 32.9472 34.732 31.5328 34.732H29.8979V31.9163ZM39.7475 40.0001V31.9682H36.7891V30.5928H44.3539V31.9682H41.3954V40.0001H39.7475ZM51.853 40.0001H54.0588V30.5928H52.4628V38.1057L48.4793 30.5928H46.2734V40.0001H47.8694V32.4872L51.853 40.0001ZM56.8594 40.0001V30.5928H63.5159V31.9682H58.5073V34.4855H63.2434V35.8479H58.5073V38.6117H63.5159V40.0001H56.8594ZM71.4762 40.0001L69.4909 36.0296C69.3352 36.0425 69.1666 36.0425 68.998 36.0425H68.9978H67.4018V40.0001H65.7539V30.5928H68.7513C71.5151 30.5928 72.9424 31.2156 72.9424 33.3047C72.9424 34.5114 72.3585 35.3289 71.1777 35.7311L73.3317 40.0001H71.4762ZM68.9848 31.9163H67.4018V34.732H69.0367C70.4511 34.732 71.2556 34.4465 71.2556 33.3177C71.2556 32.085 70.2824 31.9163 68.9848 31.9163ZM74.9702 16.9682V25.0001H76.6181V16.9682H79.5765V15.5928H72.0117V16.9682H74.9702ZM70.0854 15.5928V25.0001H68.4375V15.5928H70.0854ZM60.1266 15.5928H58.3359L61.5928 25.0001H63.3575L66.5755 15.5928H64.8367L62.5141 23.0538L60.1266 15.5928ZM50.3789 25.0001V15.5928H57.0354V16.9682H52.0268V19.4855H56.7629V20.8479H52.0268V23.6117H57.0354V25.0001H50.3789ZM36.7541 25.0001H34.5483L30.5648 17.4872V25.0001H28.9688V15.5928H31.1746L35.1581 23.1057V15.5928H36.7541V25.0001ZM22.0521 23.8191C20.495 23.8191 19.2623 22.5864 19.2623 20.2897C19.2623 18.006 20.495 16.7733 22.0521 16.7733C23.6091 16.7733 24.8418 18.006 24.8418 20.2897C24.8418 22.5864 23.6091 23.8191 22.0521 23.8191ZM22.0521 25.1685C24.8159 25.1685 26.5416 23.1833 26.5416 20.2897C26.5416 17.3832 24.8159 15.4238 22.0521 15.4238C19.2883 15.4238 17.5625 17.3832 17.5625 20.2897C17.5625 23.1833 19.2883 25.1685 22.0521 25.1685ZM12.0229 15.5928V23.6117H16.759V25.0001H10.375V15.5928H12.0229ZM56.5703 10.0001L60.0737 0.592773H61.8125L65.3418 10.0001H63.5382L62.7986 7.91103H58.9838L58.2571 10.0001H56.5703ZM60.8782 2.50019L59.4639 6.53561H62.3055L60.8782 2.50019ZM54.7065 10.0001V0.592773H53.0586V10.0001H54.7065ZM39.9292 10.0001V0.592773H38.2812V10.0001H39.9292ZM29.8438 10.0001V0.592773H36.4094V1.96819H31.4917V4.48546H36.124V5.84791H31.4917V10.0001H29.8438ZM21.4102 0.592773V10.0001H23.0581V5.84791H27.6904V4.48546H23.0581V1.96819H27.9758V0.592773H21.4102Z\" fill=\"#272724\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amtrn4\",layoutDependency:layoutDependency,layoutId:\"OTo0Hbsv7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-147mz3e\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oP_wQDMBT\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0 0 L 12 0 L 0 12 Z\" fill=\"var(--token-3700eb8c-980e-4183-b71c-89c6af813eb0, rgba(0, 0, 0, 0.12)) /* {&quot;name&quot;:&quot;blackAlpha.250&quot;} */\"></path></svg>',svgContentId:10445623548,withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7v2e6e\",\"data-framer-name\":\"Amazon 2024\",fill:\"black\",intrinsicHeight:505,intrinsicWidth:1507,layoutDependency:layoutDependency,layoutId:\"ujAermTh5\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1506.571\" height=\"504.545\" viewBox=\"0 0 398.614 133.494\"><path style=\"fill:#171d27;fill-rule:nonzero;stroke:none;stroke-width:5.11043167;fill-opacity:1\" d=\"M-108.757 152.115c-3.86 0-7.258-.842-10.194-2.528-2.935-1.74-5.219-4.132-6.85-7.176-1.63-3.099-2.446-6.66-2.446-10.683 0-4.839 1.196-9.08 3.588-12.722 2.446-3.642 5.899-6.442 10.357-8.4 4.512-1.956 9.786-2.935 15.82-2.935 2.773 0 5.03.19 6.769.57v-1.712c0-4.132-.761-7.203-2.284-9.215-1.522-2.066-3.832-3.099-6.931-3.099-5.002 0-8.21 2.637-9.623 7.91-.435 1.523-1.332 2.175-2.691 1.958l-11.09-1.958c-.816-.163-1.387-.516-1.713-1.06-.272-.543-.3-1.277-.082-2.202 1.414-5.545 4.404-9.84 8.97-12.884 4.622-3.1 10.412-4.649 17.37-4.649 8.264 0 14.543 2.23 18.838 6.687 4.35 4.458 6.524 10.955 6.524 19.49v41.02a2.12 2.12 0 0 1-.652 1.55c-.38.38-.87.57-1.468.57h-10.601c-1.305 0-2.12-.707-2.447-2.12l-1.63-7.665h-.653c-1.468 3.588-3.67 6.36-6.606 8.317-2.881 1.958-6.306 2.936-10.275 2.936zm-1.713-22.345c0 2.882.734 5.193 2.202 6.932 1.523 1.686 3.561 2.528 6.116 2.528 3.371 0 5.954-1.495 7.748-4.485 1.794-3.044 2.69-7.394 2.69-13.047v-4.323a24.625 24.625 0 0 0-4.321-.408c-4.458 0-7.992 1.17-10.602 3.507-2.555 2.283-3.833 5.382-3.833 9.296zm46.157-44.852c0-.598.19-1.087.571-1.467a2.117 2.117 0 0 1 1.55-.653h10.764c.598 0 1.088.19 1.468.571.435.38.707.897.816 1.55l1.63 7.991h.653c1.468-3.75 3.56-6.605 6.28-8.562 2.772-2.012 6.034-3.018 9.785-3.018 4.023 0 7.476 1.06 10.357 3.18 2.936 2.121 5.192 5.138 6.769 9.053h.652c2.392-4.132 5.084-7.204 8.074-9.215 2.99-2.012 6.333-3.018 10.03-3.018 4.023 0 7.503 1.088 10.438 3.262 2.99 2.175 5.274 5.274 6.85 9.297 1.577 4.023 2.366 8.78 2.366 14.271v40.367c0 .598-.218 1.114-.653 1.55-.38.38-.87.57-1.468.57H9.571a2.28 2.28 0 0 1-1.55-.57 2.274 2.274 0 0 1-.57-1.55v-39.062c0-3.97-.76-7.013-2.283-9.134-1.523-2.12-3.724-3.18-6.606-3.18-3.153 0-5.572 1.25-7.258 3.751-1.63 2.501-2.446 6.116-2.446 10.846v36.78c0 .597-.218 1.113-.653 1.548-.38.381-.87.571-1.468.571H-26.31c-.597 0-1.114-.19-1.549-.57a2.274 2.274 0 0 1-.57-1.55v-39.062c0-3.97-.762-7.013-2.284-9.134-1.523-2.12-3.724-3.18-6.605-3.18-3.154 0-5.573 1.25-7.259 3.751-1.63 2.501-2.446 6.116-2.446 10.846v36.78c0 .597-.217 1.113-.652 1.548-.381.381-.87.571-1.468.571h-13.048c-.598 0-1.115-.19-1.55-.57a2.276 2.276 0 0 1-.57-1.55zm97.533 46.81c0-4.839 1.197-9.08 3.589-12.722 2.446-3.642 5.898-6.442 10.357-8.4 4.512-1.956 9.786-2.935 15.82-2.935 2.773 0 5.03.19 6.769.57v-1.712c0-4.132-.762-7.203-2.284-9.215-1.522-2.066-3.832-3.099-6.931-3.099-5.002 0-8.21 2.637-9.623 7.91-.435 1.523-1.332 2.175-2.691 1.958l-11.091-1.958c-.816-.163-1.387-.516-1.713-1.06-.271-.543-.299-1.277-.081-2.202 1.413-5.545 4.403-9.84 8.97-12.884 4.621-3.1 10.411-4.649 17.37-4.649 8.264 0 14.543 2.23 18.838 6.687 4.35 4.458 6.524 10.955 6.524 19.49v41.02a2.12 2.12 0 0 1-.652 1.55c-.38.38-.87.57-1.468.57H74.322c-1.305 0-2.12-.707-2.447-2.12l-1.631-7.665h-.652c-1.468 3.588-3.67 6.36-6.606 8.317-2.881 1.958-6.306 2.936-10.275 2.936-3.969 0-7.258-.842-10.194-2.528-2.936-1.74-5.219-4.132-6.85-7.176-1.631-3.099-2.447-6.66-2.447-10.683zM51 129.77c0 2.882.733 5.193 2.201 6.932 1.522 1.686 3.561 2.528 6.116 2.528 3.371 0 5.953-1.495 7.748-4.485 1.793-3.044 2.69-7.394 2.69-13.047v-4.323a24.627 24.627 0 0 0-4.322-.408c-4.457 0-7.991 1.17-10.6 3.507-2.556 2.283-3.833 5.382-3.833 9.296zm44.852 8.89c0-1.196.326-2.23.978-3.1l27.89-39.06H98.623c-.598 0-1.114-.19-1.55-.571a2.277 2.277 0 0 1-.57-1.55v-9.46c0-.598.19-1.087.57-1.467a2.117 2.117 0 0 1 1.55-.653h42.895c.598 0 1.088.218 1.468.653.435.38.652.87.652 1.467v9.868c0 1.196-.326 2.229-.978 3.099l-25.28 34.74a26.439 26.439 0 0 1 4.648-.408c3.914 0 7.503.353 10.765 1.06 3.316.653 6.74 1.74 10.275 3.262 1.25.544 1.875 1.468 1.875 2.773v9.378c0 .87-.271 1.468-.815 1.794-.544.272-1.223.245-2.04-.081-4.076-1.523-7.692-2.583-10.845-3.18-3.099-.653-6.497-.98-10.194-.98-3.697 0-7.23.327-10.764.98-3.48.652-7.34 1.712-11.58 3.18-.816.272-1.495.272-2.04 0-.542-.327-.814-.898-.814-1.713zm52.68-21.937c0-6.633 1.278-12.64 3.833-18.023 2.556-5.436 6.062-9.677 10.52-12.721 4.513-3.1 9.514-4.649 15.005-4.649 5.491 0 10.547 1.55 15.005 4.649 4.513 3.044 8.047 7.285 10.602 12.721 2.61 5.383 3.914 11.39 3.914 18.023 0 6.632-1.305 12.667-3.914 18.104-2.555 5.382-6.09 9.623-10.602 12.722-4.458 3.044-9.46 4.566-15.005 4.566s-10.492-1.522-15.005-4.566c-4.458-3.1-7.964-7.34-10.52-12.722-2.555-5.437-3.832-11.472-3.832-18.104zm17.941 0c0 6.904.979 12.232 2.936 15.983 1.958 3.697 4.784 5.546 8.481 5.546s6.552-1.849 8.563-5.546c2.012-3.75 3.017-9.079 3.017-15.983 0-6.905-1.005-12.205-3.017-15.902-2.011-3.752-4.866-5.627-8.563-5.627-3.697 0-6.523 1.875-8.48 5.627-1.958 3.697-2.937 8.997-2.937 15.902zm49.745-31.805c0-.598.19-1.087.572-1.467a2.116 2.116 0 0 1 1.549-.653h10.764c.598 0 1.088.19 1.468.571.435.38.707.897.816 1.55l1.63 7.991h.653c1.468-3.697 3.615-6.55 6.443-8.562 2.88-2.012 6.252-3.018 10.112-3.018 4.131 0 7.692 1.088 10.682 3.262 3.045 2.175 5.383 5.274 7.014 9.297 1.63 4.023 2.446 8.78 2.446 14.271v40.367a2.12 2.12 0 0 1-.652 1.55c-.38.38-.87.57-1.468.57h-13.048a2.28 2.28 0 0 1-1.55-.57 2.276 2.276 0 0 1-.57-1.55v-39.062c0-3.97-.816-7.013-2.447-9.134-1.63-2.12-3.941-3.18-6.931-3.18-3.317 0-5.845 1.25-7.584 3.751-1.74 2.501-2.61 6.116-2.61 10.846v36.78c0 .597-.217 1.113-.652 1.548-.381.381-.87.571-1.468.571h-13.048a2.28 2.28 0 0 1-1.55-.57 2.274 2.274 0 0 1-.57-1.55z\" transform=\"translate(128.247 -81.33)\"/><path style=\"fill:#ff6201;fill-rule:nonzero;stroke:none;stroke-width:5.11043167;fill-opacity:1\" d=\"M-82.904 160.023c-1.033.816-1.25 2.175-.652 4.078.543 1.685 1.82 3.778 3.832 6.279 8.1 10.004 17.75 18.321 28.95 24.954 11.2 6.633 23.188 11.526 35.964 14.679 12.83 3.208 25.932 4.811 39.306 4.811 17.126 0 33.436-2.5 48.93-7.502 15.494-4.948 28.434-11.906 38.818-20.877 3.642-3.207 5.464-5.762 5.464-7.665 0-.707-.3-1.414-.897-2.12-.816-.816-1.795-1.088-2.936-.816-1.142.271-2.746.951-4.812 2.039-9.949 5.219-22.072 9.378-36.37 12.477-14.244 3.153-29.114 4.73-44.608 4.73-19.191 0-37.73-2.61-55.617-7.83-17.886-5.218-33.734-13.373-47.543-24.464-2.012-1.576-3.643-2.583-4.893-3.018-1.196-.434-2.175-.353-2.936.245z\" transform=\"translate(128.247 -81.33)\"/><path style=\"fill:#ff6201;fill-rule:nonzero;stroke:none;stroke-width:5.11043167;fill-opacity:1\" d=\"M98.296 164.105c-1.142 1.088-1.441 2.23-.897 3.426.38.87 1.114 1.359 2.202 1.468 1.087.163 2.636.054 4.648-.326a75.424 75.424 0 0 1 10.193-1.469c3.534-.217 6.606-.163 9.216.163 2.61.381 4.24 1.034 4.893 1.958.979 1.468.625 4.566-1.06 9.297-1.631 4.73-3.86 9.323-6.688 13.781-1.087 1.794-1.74 3.208-1.957 4.241-.217 1.033.055 1.903.816 2.61.489.489 1.033.733 1.63.733 1.578 0 3.86-1.386 6.851-4.159 5.382-4.675 9.16-10.22 11.335-16.636 1.196-3.316 1.93-6.795 2.202-10.438.272-3.642-.136-6.252-1.223-7.829-1.033-1.522-3.317-2.773-6.85-3.75a38.682 38.682 0 0 0-10.52-1.47c-6.905 0-13.456 1.632-19.653 4.894-2.284 1.25-3.996 2.42-5.138 3.506z\" transform=\"translate(128.247 -81.33)\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qe6wbw\",\"data-framer-name\":\"Prime-big-deals-logo-cut\",fill:\"black\",intrinsicHeight:366,intrinsicWidth:779,layoutDependency:layoutDependency,layoutId:\"F3goan2aj\",svg:'<svg width=\"779\" height=\"366\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#0779FF\"><path d=\"M380.538 75.605c0-2.894 0-6.029-.723-8.923-2.654-12.539-9.41-21.943-22.197-25.802-14.235-4.099-28.47-.482-37.638 11.334-.482.724-1.206 1.206-1.93 1.93-.724-.965-1.206-1.448-1.689-2.171-9.168-12.54-25.574-15.433-39.085-10.851-6.273 2.17-11.339 6.27-15.441 11.333-.483.724-1.206 1.206-2.171 2.17-.724-2.41-1.207-4.581-1.689-6.51-.483-1.93-1.207-4.1-1.689-5.788-4.102-.964-21.232-.482-23.644.724 0 .964-.242 2.17-.242 3.376v95.009c0 4.822.483 5.305 5.067 5.305h23.403c1.206 0 2.413-.241 4.101-.483 0-1.688.483-3.376.483-4.822V96.584c0-4.34 0-8.681.724-12.78.724-4.1 1.93-9.646 5.549-13.263 6.273-6.029 15.441-3.617 17.612 4.822 0 .724.483 1.688.483 2.412 0 3.135.482 6.27.482 9.404v55.945c0 1.205.483 2.17.724 3.134.965.242 1.207.483 1.448.483h27.504c2.654 0 3.378-.965 3.378-3.617V87.903c0-5.788 1.206-11.334 4.825-16.157 2.896-3.617 6.515-5.064 11.099-4.099 4.343.723 6.755 3.617 7.479 7.716.724 2.894.965 5.788.965 8.923v56.908c0 1.688.241 3.376.483 5.064.965.242 1.447.483 1.93.483h27.263c2.413 0 3.136-.965 3.378-3.376V75.363l-.242.242Zm143.795 71.136c2.171 0 3.86.241 5.308.241h51.149c6.514 0 13.028-.965 19.542-2.894 11.098-3.376 19.543-9.887 24.368-20.497 3.378-7.716 3.619-15.915 2.654-24.355-1.448-12.539-8.203-21.22-20.025-25.802-1.448-.482-2.895-1.205-4.584-1.929 1.206-.964 2.171-1.447 2.895-2.17 2.171-1.93 4.343-3.617 6.273-5.787 4.584-5.306 6.755-11.575 7.479-18.327 1.448-14.71-4.101-28.213-18.336-35.206-6.032-2.894-12.546-4.582-19.301-4.823h-53.32c-1.207 0-2.172.241-3.619.482 0 3.376-.724 6.27-.724 9.163v122.017c0 3.135.482 6.028.482 9.645l-.241.242Zm68.761-48.228c1.448 5.787 1.448 11.574-2.654 16.638-1.689 2.412-4.101 4.1-6.997 4.582-2.653.482-5.307 1.206-8.203 1.206h-14.234c-.965 0-2.172-.241-3.619-.483V87.662c1.447 0 2.412-.483 3.619-.483h15.682c2.413 0 5.067.483 7.238 1.447 4.584 1.447 7.721 4.823 8.927 9.646l.241.24ZM558.11 31.235c5.067 0 9.892-.482 14.718 0 13.511 1.447 15.682 14.227 11.822 22.667-1.689 3.617-4.826 5.787-8.686 6.993-6.031 1.688-12.063.965-17.854.723-1.447-3.376-1.206-27.49 0-30.624v.24ZM103.563 229.934c-5.308-15.192-14.476-26.767-29.193-33.519-8.927-4.099-18.336-6.028-28.228-6.028H4.162c-1.207 0-2.655 0-4.344.482 0 1.929-.482 3.617-.482 5.546v129.251c0 1.929.482 3.858.724 6.269 2.171 0 3.86.242 5.308.242h39.326c5.067 0 10.375-.483 15.2-1.447 22.438-4.341 36.914-17.845 43.911-39.547 3.86-12.057 4.584-24.355 4.101-36.894-.482-8.199-1.689-16.398-4.343-24.355Zm-30.158 37.617c-.483 4.823-1.206 9.646-2.654 14.469-3.86 13.021-13.028 20.014-26.54 20.738H34.079c-1.206-3.617-1.206-79.335 0-83.193 6.756-.242 13.27-.965 19.543 1.446 9.168 3.376 14.476 10.128 17.371 19.292 2.654 8.922 3.378 18.085 2.413 27.248Zm402.433-66.313c-10.133-7.234-21.956-10.61-34.26-10.851-14.959-.241-29.917 0-44.876 0-1.206 0-2.412.241-3.86.482 0 2.412-.483 4.341-.483 6.511v130.456c0 1.206.483 2.412.724 4.1 2.172 0 3.619.241 5.067.241h37.396c5.549 0 11.34-.482 16.648-1.447 22.679-3.858 37.155-17.362 44.393-39.065 5.79-17.603 5.79-35.688 2.171-53.774-3.136-14.95-10.374-27.489-22.92-36.412v-.241Zm-9.41 66.314c-.482 5.063-1.206 9.886-2.654 14.709-3.86 12.78-13.028 19.773-26.298 20.497h-8.927c-.482 0-.965-.241-1.688-.482v-81.747c.482-.241.723-.482.965-.723 6.031-.482 11.822-.723 17.853.965 9.892 2.893 15.683 10.127 18.578 19.532 2.654 8.922 3.378 18.085 2.413 27.249h-.242Zm226.551-134.797c11.823 10.61 31.848 11.574 43.67 1.688.724-.483 1.447-.965 2.654-1.93.482 4.582-.483 8.44-1.689 12.299-1.448 4.099-4.102 6.993-7.962 8.922-6.514 3.135-18.819 2.411-25.092-5.788-.965-1.205-1.93-2.17-2.895-3.134-5.067 1.688-20.025 9.886-21.714 12.057.483 1.205.965 2.411 1.689 3.617 3.86 6.51 8.927 11.815 15.924 14.95 14.717 6.752 30.158 7.234 45.358 1.688 7.238-2.652 13.511-6.993 18.577-13.021 6.756-8.44 10.616-18.327 10.616-29.178.241-29.419 0-59.08 0-88.498 0-1.206-.241-2.412-.482-3.617-1.207-.242-1.931-.483-2.654-.483-5.308 0-10.857-.482-16.165-.482-4.343 0-4.826.724-5.791 4.582-.724 2.652-1.447 5.305-2.171 8.68-1.206-1.446-1.689-2.17-2.413-2.893-11.822-15.674-33.777-15.674-45.841-7.716-7.961 5.305-13.028 12.78-15.923 21.461-4.826 14.227-5.308 28.454-1.689 42.923 2.171 9.163 6.755 17.121 13.752 23.39l.241.483Zm19.784-57.15c2.172-5.064 5.549-8.681 11.581-8.922 5.549 0 9.41 2.17 12.064 6.751.723 1.447 1.447 3.135 1.93 4.582 2.171 8.681 2.412 17.362 0 26.043-.483 1.688-1.207 3.376-2.172 4.823-5.549 8.44-17.854 7.716-22.196-1.447-1.93-3.858-2.654-7.958-2.896-12.057v-4.823c-.241-5.546.242-10.61 2.413-15.433l-.724.483ZM.302 146.499c.965 0 1.689.483 2.413.483h26.78c.965 0 1.93-.483 3.137-.724 0-1.929.241-3.376.241-4.823v-27.972c0-1.447.241-2.893.483-4.581 1.206 0 2.17-.241 3.136-.483 4.825 0 9.65-.241 14.235-.482 7.238-.482 14.235-1.688 20.99-4.582 13.27-5.305 22.197-14.709 26.298-28.454 3.378-11.575 3.378-23.39.241-34.965-3.377-12.78-11.098-21.944-22.92-27.972-8.203-4.1-16.889-6.27-25.816-6.27-15.2-.241-30.4 0-45.6 0-1.205 0-2.17.241-3.86.482 0 3.135-.482 6.029-.482 8.681v128.769c0 1.205.483 2.17.724 3.376v-.483Zm32.812-112.37c2.895 0 5.308-.242 7.72 0 3.62.24 7.48.482 10.858 1.446 7.48 1.93 12.063 7.234 13.752 14.951.965 4.823.965 9.404 0 14.227-1.448 7.717-6.273 12.298-13.51 14.71-6.033 1.929-12.305 1.205-18.82 1.205 0-1.447-.482-2.411-.482-3.617V37.746c0-.965 0-1.93.241-3.376l.241-.241Zm661.795 193.393c-1.93-.241-3.378-.723-5.067-.723h-23.644c-3.137 0-3.619.723-4.584 3.617 0 .723-.241 1.447-.483 2.17-4.343 17.603-8.444 35.206-12.787 53.051-.241 1.205-.724 2.411-.965 3.617-.965-.724-1.206-1.688-1.448-2.412-3.377-12.056-6.755-24.113-9.891-36.17-1.931-6.752-3.619-13.263-5.55-20.015-.482-1.929-1.206-3.376-3.619-3.376h-23.403c-2.171 0-4.342.241-7.238.482.483 2.412.724 4.1 1.448 5.788 10.375 30.624 20.508 61.49 30.882 92.115.965 2.652 1.689 5.305 2.413 7.958-2.171 3.617-5.308 5.305-9.168 5.305-3.137 0-6.032-.724-8.927-2.171-1.206-.723-2.413-.964-3.378-1.447-.724.483-1.206.724-1.447 1.206-3.378 5.788-6.997 11.575-10.375 17.603-.724 1.206-.482 2.653.483 3.617l2.895 2.171c7.72 5.064 16.165 6.752 25.333 6.028 9.409-.723 17.612-4.34 24.368-11.333 5.549-6.029 9.168-13.022 11.581-20.738 6.273-20.256 12.787-40.512 19.06-60.767 4.101-13.263 8.203-26.767 12.304-40.03.483-1.446.483-2.893.965-4.822l.242-.724Z\"/><path d=\"M589.717 240.303c-5.55-7.476-13.27-11.816-22.197-14.228-10.375-2.652-20.99-2.652-31.606 0-11.581 3.135-20.508 9.887-26.298 20.738-.724 1.206-.965 2.894-1.689 4.582 6.997 3.617 13.752 6.993 20.266 10.61.724.241 1.689 0 2.654 0 .724-1.206 1.448-2.652 2.172-3.617 4.825-7.716 16.165-10.61 24.126-6.028 5.067 2.893 8.445 9.886 6.756 14.95-.965 0-1.689.241-2.654.241h-16.406c-7.238 0-14.235 1.447-20.99 4.341-6.997 3.135-12.546 7.957-15.683 14.95-2.895 6.029-3.619 12.299-2.654 18.809 1.207 8.922 5.067 16.398 12.305 21.703 8.203 6.028 17.371 7.957 27.263 6.993 10.133-.724 18.578-4.823 24.609-13.263.242-.482.724-.723 1.689-1.205 1.207 4.099 2.172 7.716 3.378 11.815h18.095c3.378 0 4.102-.723 4.102-4.34v-65.831c0-7.717-2.413-14.951-7.238-21.462v.242Zm-32.33 67.76c-4.102 3.376-11.822 3.617-16.406.964-3.861-2.411-5.55-6.028-5.308-10.61.241-4.34 2.654-7.716 6.755-9.404.483 0 .965-.483 1.448-.483 6.755-1.688 13.752-.482 21.231-.964 0 8.199-1.206 15.433-7.479 20.497h-.241Zm-255.02-51.604c-2.172-13.022-9.41-22.185-21.473-27.49-13.511-6.028-27.746-5.787-41.739-1.688-10.616 3.135-18.578 10.369-23.644 20.256-.724 1.205-.724 2.652-1.448 4.34 7.721 3.617 14.476 8.199 22.197 11.093.965-1.206 1.688-2.171 2.171-3.135 3.136-5.546 8.203-8.44 14.476-9.163 10.375-1.206 18.095 6.269 17.371 16.879-1.447 0-2.654 0-4.101.241-4.826 0-9.651-.241-14.235 0-5.549.483-11.098.965-16.165 2.412-10.857 2.894-19.06 9.163-22.92 20.256-1.689 5.063-1.689 10.127-1.448 15.191.724 9.164 4.825 16.398 12.063 21.944 8.204 6.27 17.854 8.199 27.746 7.234 9.892-.964 18.336-4.823 24.368-13.262.241-.483.724-.724 1.689-1.447a230.305 230.305 0 0 0 2.171 8.681c.724 2.652 1.207 3.134 3.861 3.376h15.682c2.895 0 3.619-.724 3.86-3.617v-63.179c0-2.894-.241-6.028-.723-8.922h.241Zm-36.673 49.192c-4.101 4.823-10.616 6.511-16.647 4.341-4.343-1.447-7.479-5.546-7.479-10.369 0-4.823 2.171-8.681 6.514-10.61 1.689-.724 3.619-1.206 5.549-1.447h14.717c.724 0 1.448.241 2.654.482 0 6.511-.965 12.539-5.067 17.362l-.241.241Zm152-159.875c10.615 4.582 21.714 5.064 33.053 2.653 12.787-2.653 21.955-9.887 28.228-21.221.724-1.205 1.207-2.893 1.689-4.34-7.238-4.341-14.476-7.958-22.196-11.575-1.207 1.688-2.172 2.894-3.137 4.341-6.031 9.163-21.714 11.333-28.952 2.652-3.136-3.858-4.825-8.199-5.549-13.021 0-.483 0-1.206.483-1.93 1.447 0 2.654-.241 3.86-.241 17.13 0 34.26.241 51.148.483 1.931 0 3.619-.483 5.55-.724.241-1.447.482-1.929.482-2.652 1.206-12.78-.482-25.32-6.273-36.895-4.584-9.404-11.822-16.397-21.714-20.496-6.755-2.894-13.752-3.376-20.749-3.135-17.854.723-31.123 8.922-39.085 24.596-9.409 18.326-9.409 37.618-1.93 56.668 4.584 11.815 13.028 20.255 24.85 25.078l.242-.241Zm16.888-81.505c4.343-.482 7.962.482 11.34 3.135 3.619 2.893 6.755 9.645 6.755 14.71-3.619.964-29.434.964-32.088 0 0-7.476 5.549-16.88 13.993-17.845Zm-243.44 169.762c-12.787-10.61-27.745-11.574-43.187-7.475-15.441 4.099-25.333 14.709-30.399 29.419-5.791 16.397-5.549 32.795.724 49.192 4.825 12.54 13.752 21.462 26.298 26.285 10.133 3.858 20.507 4.34 31.123 2.411 12.305-2.411 21.955-9.163 28.228-20.015.965-1.688 2.654-3.617 1.689-6.51-6.755-3.617-13.752-7.235-20.749-10.852-.723.483-1.206.724-1.689.965-.723.964-1.447 1.929-1.93 2.894-6.273 9.645-21.472 11.333-28.952 2.893-3.377-3.617-4.825-8.199-5.549-13.021 0-.483 0-1.206.483-2.171 1.689 0 3.619-.241 5.308-.241h50.183c1.689 0 3.378 0 5.067-.241.241-1.206.723-1.929.723-2.652 1.448-14.951-.965-29.419-9.409-42.2-2.171-3.135-4.825-6.269-7.962-8.681Zm-14.235 33.519h-28.952c-.241 0-.723 0-1.206-.483 0-7.234 5.308-17.362 14.476-18.085 4.825-.482 8.927.964 12.305 4.34 2.895 3.135 5.066 8.44 5.549 13.263-.724.241-1.448.723-2.172.723v.242Zm592.552 10.368c-4.584-3.858-9.892-5.787-15.441-7.234-5.79-1.688-11.822-2.893-17.612-4.581-2.654-.724-5.549-1.688-7.962-3.135-4.584-2.894-4.584-8.681 0-11.575 1.689-1.206 3.619-1.929 5.549-2.411 9.168-1.447 16.648 1.446 22.197 8.922.723.964 1.689 1.929 2.171 2.893 2.172-.241 14.959-6.269 18.578-8.681.965-.723 1.689-1.688 2.412-2.411-4.825-9.887-11.58-17.121-21.231-21.22-13.511-5.546-27.505-5.788-41.257-.965-18.336 6.511-24.127 20.497-21.714 38.341.965 6.27 4.343 11.093 9.41 14.71 2.653 1.929 5.79 3.617 8.926 4.582 7.962 2.411 16.165 4.34 24.127 6.751a20.445 20.445 0 0 1 7.238 3.618c3.137 2.411 3.378 6.51.965 9.404-1.447 1.447-3.136 2.894-5.066 3.617-8.686 3.135-18.819-.241-24.368-8.199-.724-1.205-1.689-2.411-2.654-3.858-7.721 2.894-14.476 6.993-21.473 11.092.241 1.206.482 1.93.724 2.412 4.343 9.163 11.098 15.915 20.266 20.014 13.27 5.788 27.263 6.029 41.016 1.93 17.13-5.305 26.056-19.05 24.368-36.895-.724-6.993-3.619-12.78-8.927-17.362l-.242.241ZM138.065 146.499c0-2.17.241-3.858.241-5.546v-53.05c0-5.305.724-10.61 3.378-15.192 1.93-3.617 5.308-5.546 8.686-5.064 3.86.723 5.549 3.617 6.273 6.993.482 2.17.724 4.582 1.206 6.752 0 1.206.724 2.17.965 2.894h1.206c6.756-2.17 13.511-4.582 20.267-6.752 1.448-.483 1.93-1.447 1.93-3.135 0-6.752-.965-13.504-3.619-20.015-2.171-5.305-5.549-9.886-10.616-12.539-8.444-4.582-21.955-3.376-29.193 6.029-1.93 2.41-3.378 4.822-5.308 7.957-.482-1.206-.724-2.17-.965-2.894l-2.171-7.957c-.483-1.93-1.448-2.894-3.619-2.894-5.791 0-11.822 0-17.613.241-1.206 0-2.171.483-3.619.724v99.108c0 4.099.483 4.582 4.584 4.582h24.368c1.207 0 2.172-.242 3.619-.483v.241Zm209.179 43.888c-10.857 0-21.232-.241-32.089 0 0 2.17-.241 3.858-.241 5.546v131.18c0 4.34.483 4.823 4.584 4.823h23.644c1.207 0 2.413-.241 4.102-.483 0-1.929.482-3.376.482-5.063V195.451c0-1.688-.241-3.135-.482-5.064ZM665.957 42.569c-8.686 0-17.371-.241-26.057-.483-1.206 0-2.171.724-3.377.965 0 1.447-.242 2.411-.242 3.376V142.4c0 4.1.483 4.582 4.584 4.582h23.886c1.206 0 2.412-.241 3.86-.482 0-1.447.241-2.653.241-3.859V46.668c0-1.206-.241-2.411-.482-3.617-.965-.241-1.689-.482-2.413-.482Zm-479.157.723c0 1.206-.241 2.17-.241 3.135V142.4c0 3.858.723 4.582 4.584 4.582h24.126c1.207 0 2.413-.241 3.619-.482 0-1.447.483-2.894.483-4.1V46.668c0-1.206-.241-2.411-.483-3.617-3.377-1.206-28.228-1.206-32.088 0v.24Zm466.612-10.128c2.654 0 6.273-.723 9.65-2.652 10.375-5.547 11.099-20.738.965-27.008-6.755-4.34-13.993-4.582-21.231-.965-9.892 4.823-11.581 17.604-3.86 25.32 3.619 3.617 8.203 5.064 14.234 5.064l.242.241Zm-450.689 0c4.102 0 7.479-.723 10.616-2.652 10.133-5.547 10.857-20.497.965-26.767-6.997-4.34-14.235-4.581-21.473-.964-9.65 4.822-11.581 17.603-3.86 25.078 3.86 3.858 8.444 5.305 13.511 5.305h.241Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h779v366H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Eitud.framer-1c7815m, .framer-Eitud .framer-1c7815m { display: block; }\",\".framer-Eitud.framer-cqq7fs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-Eitud .framer-12uneaw { aspect-ratio: 1.6908957415565344 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 68px; }\",\".framer-Eitud .framer-12c2oww { flex: none; height: 36px; position: relative; width: 112px; }\",\".framer-Eitud .framer-n3c7jz { flex: none; height: 43px; position: relative; width: 92px; }\",\".framer-Eitud .framer-1amtrn4 { bottom: -12px; flex: none; height: 12px; overflow: visible; position: absolute; right: 0px; width: 12px; z-index: 1; }\",\".framer-Eitud .framer-147mz3e { flex: none; height: 12px; left: 0px; position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 12px; }\",\".framer-Eitud .framer-7v2e6e { aspect-ratio: 2.984158415841584 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 505px); position: relative; width: 107px; }\",\".framer-Eitud .framer-qe6wbw { aspect-ratio: 2.128415300546448 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Eitud.framer-cqq7fs { gap: 0px; } .framer-Eitud.framer-cqq7fs > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Eitud.framer-cqq7fs > :first-child { margin-left: 0px; } .framer-Eitud.framer-cqq7fs > :last-child { margin-right: 0px; } }\",\".framer-Eitud.framer-v-16585ij.framer-cqq7fs { padding: 12px 16px 12px 12px; }\",\".framer-Eitud.framer-v-55qezq.framer-cqq7fs { padding: 14px 16px 12px 16px; }\",\".framer-Eitud.framer-v-kegtps.framer-cqq7fs { padding: 12px 16px 12px 16px; }\",\".framer-Eitud.framer-v-1i363yn.framer-cqq7fs { padding: 18px 16px 12px 16px; }\",\".framer-Eitud.framer-v-1i363yn .framer-1amtrn4 { order: 4; }\",\".framer-Eitud.framer-v-1i363yn .framer-7v2e6e { height: var(--framer-aspect-ratio-supported, 36px); order: 3; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 151.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"SjGVR1if9\":{\"layout\":[\"auto\",\"auto\"]},\"yyAfkxnIU\":{\"layout\":[\"auto\",\"auto\"]},\"Xq14MG_Dy\":{\"layout\":[\"auto\",\"auto\"]},\"DOPBwmpMl\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameren__QqDCH=withCSS(Component,css,\"framer-Eitud\");export default Frameren__QqDCH;Frameren__QqDCH.displayName=\"_Helpers/ Ribbon\";Frameren__QqDCH.defaultProps={height:60,width:151.5};addPropertyControls(Frameren__QqDCH,{variant:{options:[\"SliDVpKfZ\",\"SjGVR1if9\",\"yyAfkxnIU\",\"Xq14MG_Dy\",\"DOPBwmpMl\"],optionTitles:[\"Prime Day\",\"Official Longevity Partner\",\"Prime Big Deal Days\",\"Amazon Prime\",\"Amazon\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Frameren__QqDCH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameren__QqDCH\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SjGVR1if9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yyAfkxnIU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Xq14MG_Dy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DOPBwmpMl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"60\",\"framerIntrinsicWidth\":\"151.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./en__QqDCH.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2OQ8yQj03G7DfTqqE2LD/2XTGlJjjeegBUfHPqRSI/WjbQggkDi.js\";import _HelpersIcons from\"https://framerusercontent.com/modules/4jOtUmRvARRTYW2LLOZP/gHPopHeeXPzj3npum9fW/EuxeZmOqY.js\";const _HelpersIconsFonts=getFonts(_HelpersIcons);const _HelpersIconsControls=getPropertyControls(_HelpersIcons);const enabledGestures={r1_I3eHR0:{hover:true}};const cycleOrder=[\"r1_I3eHR0\"];const serializationHash=\"framer-f1SRI\";const variantClassNames={r1_I3eHR0:\"framer-v-r5cakn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.05,ease:[.44,0,.56,1],type:\"tween\"};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(React.Fragment);const humanReadableEnumMap={\"Add To Calendar - Dark\":\"E3m2913QT\",\"Add To Calendar\":\"I119:60717;20973:39532;18895:570006\",\"Google Calendar\":\"RV9hlvcHS\",Apple:\"Nfx0Sj_9m\",Office365:\"g1AnEkHI4\",Outlook:\"gQxVWwiu2\"};const getProps=({height,icon,id,label,link,showLeadingIcon,width,...props})=>{return{...props,eocAoiur9:showLeadingIcon??props.eocAoiur9??true,jxGWkPdX8:link??props.jxGWkPdX8,mc27o8Klq:label??props.mc27o8Klq??\"Label\",yxmQewGU3:humanReadableEnumMap[icon]??icon??props.yxmQewGU3??\"I119:60717;20973:39532;18895:570006\"};};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,mc27o8Klq,eocAoiur9,yxmQewGU3,jxGWkPdX8,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r1_I3eHR0\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:jxGWkPdX8,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-r5cakn\",className,classNames)} framer-t0ejmn`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"r1_I3eHR0\",ref:ref??ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{\"r1_I3eHR0-hover\":{backgroundColor:\"var(--token-f659abef-c145-4043-9151-56df6ba73e07, rgba(0, 0, 0, 0.04))\"}},...addPropertyOverrides({\"r1_I3eHR0-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[eocAoiur9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-121bc27-container\",layoutDependency:layoutDependency,layoutId:\"VC9tS_dfQ-container\",children:/*#__PURE__*/_jsx(_HelpersIcons,{height:\"100%\",id:\"VC9tS_dfQ\",layoutId:\"VC9tS_dfQ\",style:{height:\"100%\",width:\"100%\"},variant:yxmQewGU3,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xln2i5\",\"data-styles-preset\":\"WjbQggkDi\",children:\"Label\"})}),className:\"framer-1s9ol9i\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I119:62601;18895:486550\",style:{\"--framer-paragraph-spacing\":\"12px\"},text:mc27o8Klq,verticalAlignment:\"center\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f1SRI.framer-t0ejmn, .framer-f1SRI .framer-t0ejmn { display: block; }\",\".framer-f1SRI.framer-r5cakn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 200px; }\",\".framer-f1SRI .framer-121bc27-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-f1SRI .framer-1s9ol9i { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f1SRI.framer-r5cakn { gap: 0px; } .framer-f1SRI.framer-r5cakn > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-f1SRI.framer-r5cakn > :first-child { margin-left: 0px; } .framer-f1SRI.framer-r5cakn > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38.5\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ebapEVGUe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mc27o8Klq\":\"label\",\"eocAoiur9\":\"showLeadingIcon\",\"yxmQewGU3\":\"icon\",\"jxGWkPdX8\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDaw1GfU3f=withCSS(Component,css,\"framer-f1SRI\");export default FramerDaw1GfU3f;FramerDaw1GfU3f.displayName=\"_Helpers/ Dropdown menu/ Dropdown item\";FramerDaw1GfU3f.defaultProps={height:38.5,width:200};addPropertyControls(FramerDaw1GfU3f,{mc27o8Klq:{defaultValue:\"Label\",displayTextArea:false,title:\"Label\",type:ControlType.String},eocAoiur9:{defaultValue:true,title:\"Show leading icon\",type:ControlType.Boolean},yxmQewGU3:_HelpersIconsControls?.[\"variant\"]&&{..._HelpersIconsControls[\"variant\"],defaultValue:\"I119:60717;20973:39532;18895:570006\",description:undefined,hidden:undefined,title:\"Icon\"},jxGWkPdX8:{title:\"Link\",type:ControlType.Link}});addFonts(FramerDaw1GfU3f,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},..._HelpersIconsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDaw1GfU3f\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"38.5\",\"framerIntrinsicWidth\":\"200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ebapEVGUe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"mc27o8Klq\\\":\\\"label\\\",\\\"eocAoiur9\\\":\\\"showLeadingIcon\\\",\\\"yxmQewGU3\\\":\\\"icon\\\",\\\"jxGWkPdX8\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2OQ8yQj03G7DfTqqE2LD/2XTGlJjjeegBUfHPqRSI/WjbQggkDi.js\";import _HelpersIcons from\"https://framerusercontent.com/modules/4jOtUmRvARRTYW2LLOZP/gHPopHeeXPzj3npum9fW/EuxeZmOqY.js\";const _HelpersIconsFonts=getFonts(_HelpersIcons);const _HelpersIconsControls=getPropertyControls(_HelpersIcons);const enabledGestures={\"I119:60717;20973:39532\":{hover:true,pressed:true},NZDKWReHt:{hover:true,pressed:true}};const cycleOrder=[\"I119:60717;20973:39532\",\"RxhemNqT8\",\"NZDKWReHt\",\"ynnHLBZwf\",\"hvJYVmufl\",\"o3FUosr7d\"];const serializationHash=\"framer-B6ruy\";const variantClassNames={\"I119:60717;20973:39532\":\"framer-v-wrfwed\",hvJYVmufl:\"framer-v-9zb8nu\",NZDKWReHt:\"framer-v-sx2fay\",o3FUosr7d:\"framer-v-qnffox\",RxhemNqT8:\"framer-v-1320xnr\",ynnHLBZwf:\"framer-v-1c7vzvs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.44,0,.56,1],type:\"tween\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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 humanReadableEnumMap={\"Add To Calendar - Dark\":\"E3m2913QT\",\"Add To Calendar\":\"I119:60717;20973:39532;18895:570006\",\"Google Calendar\":\"RV9hlvcHS\",Apple:\"Nfx0Sj_9m\",Close:\"Ij9URxB8n\",Office365:\"g1AnEkHI4\",Outlook:\"gQxVWwiu2\"};const humanReadableVariantMap={\"Active - Dark\":\"ynnHLBZwf\",\"Default - Dark\":\"NZDKWReHt\",Active:\"RxhemNqT8\",Default:\"I119:60717;20973:39532\",Disabled:\"o3FUosr7d\",Selected:\"hvJYVmufl\"};const getProps=({click,height,icon,id,label,showIcon,width,...props})=>{return{...props,sfQTdyDWE:humanReadableEnumMap[icon]??icon??props.sfQTdyDWE??\"I119:60717;20973:39532;18895:570006\",TcizxZOAl:showIcon??props.TcizxZOAl??true,TPbM_4Zh8:click??props.TPbM_4Zh8,variant:humanReadableVariantMap[props.variant]??props.variant??\"I119:60717;20973:39532\",YRFlvnLZa:label??props.YRFlvnLZa??\"Add to calendar\"};};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,TPbM_4Zh8,YRFlvnLZa,TcizxZOAl,sfQTdyDWE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I119:60717;20973:39532\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzxyirk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(TPbM_4Zh8){const res=await TPbM_4Zh8(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=isSet(YRFlvnLZa);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wrfwed\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39532\",onTap:onTapzxyirk,ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3700eb8c-980e-4183-b71c-89c6af813eb0, rgba(0, 0, 0, 0.12))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:53,borderBottomRightRadius:53,borderTopLeftRadius:53,borderTopRightRadius:53,...style},variants:{\"I119:60717;20973:39532-hover\":{backgroundColor:\"var(--token-f659abef-c145-4043-9151-56df6ba73e07, rgba(0, 0, 0, 0.04))\"},\"I119:60717;20973:39532-pressed\":{backgroundColor:\"var(--token-3a76f31b-2b73-4429-a138-948ba3bcfd7c, rgba(0, 0, 0, 0.06))\"},\"NZDKWReHt-hover\":{backgroundColor:\"var(--token-99f2a0f8-31bf-4732-a434-3843f9a8354d, rgba(255, 255, 255, 0.06))\"},\"NZDKWReHt-pressed\":{backgroundColor:\"var(--token-66774320-9b67-4d08-8b9c-41409dad1e71, rgba(255, 255, 255, 0.08))\"},hvJYVmufl:{backgroundColor:\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\"},NZDKWReHt:{\"--border-color\":\"var(--token-a484e248-5d79-4e10-a37f-ff8eb8aa8bbd, rgba(255, 255, 255, 0.24))\"},o3FUosr7d:{\"--border-color\":\"var(--token-3a76f31b-2b73-4429-a138-948ba3bcfd7c, rgba(0, 0, 0, 0.06))\",backgroundColor:\"var(--token-f659abef-c145-4043-9151-56df6ba73e07, rgba(0, 0, 0, 0.04))\"},RxhemNqT8:{\"--border-color\":\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\"},ynnHLBZwf:{\"--border-color\":\"var(--token-a484e248-5d79-4e10-a37f-ff8eb8aa8bbd, rgba(255, 255, 255, 0.24))\"}},...addPropertyOverrides({\"I119:60717;20973:39532-hover\":{\"data-framer-name\":undefined},\"I119:60717;20973:39532-pressed\":{\"data-framer-name\":undefined},\"NZDKWReHt-hover\":{\"data-framer-name\":undefined},\"NZDKWReHt-pressed\":{\"data-framer-name\":undefined},hvJYVmufl:{\"data-framer-name\":\"Selected\"},NZDKWReHt:{\"data-framer-name\":\"Default - Dark\"},o3FUosr7d:{\"data-framer-name\":\"Disabled\"},RxhemNqT8:{\"data-framer-name\":\"Active\"},ynnHLBZwf:{\"data-framer-name\":\"Active - Dark\"}},baseVariant,gestureVariant),children:[TcizxZOAl&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yiwsg2\",\"data-framer-name\":\"leading-icon\",layoutDependency:layoutDependency,layoutId:\"n_mODqFib\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||44)-24-20)/2)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15082da-container\",layoutDependency:layoutDependency,layoutId:\"VpwY8B57D-container\",children:/*#__PURE__*/_jsx(_HelpersIcons,{height:\"100%\",id:\"VpwY8B57D\",layoutId:\"VpwY8B57D\",style:{height:\"100%\",width:\"100%\"},variant:sfQTdyDWE,width:\"100%\"})})})}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dt4xxn\",\"data-framer-name\":\"inner\",layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39532;18895:570007\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xln2i5\",\"data-styles-preset\":\"WjbQggkDi\",children:\"Add to calendar\"})}),className:\"framer-bt0b3k\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39532;18895:570008\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:YRFlvnLZa,variants:{hvJYVmufl:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},NZDKWReHt:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},o3FUosr7d:{\"--extracted-r6o4lv\":\"var(--token-a4c5d89a-0c3e-463a-b93e-26f9aa45b421, rgba(0, 0, 0, 0.38))\"},ynnHLBZwf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hvJYVmufl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xln2i5\",\"data-styles-preset\":\"WjbQggkDi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Add to calendar\"})})},NZDKWReHt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xln2i5\",\"data-styles-preset\":\"WjbQggkDi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Add to calendar\"})})},o3FUosr7d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xln2i5\",\"data-styles-preset\":\"WjbQggkDi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4c5d89a-0c3e-463a-b93e-26f9aa45b421, rgba(0, 0, 0, 0.38)))\"},children:\"Add to calendar\"})})},ynnHLBZwf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xln2i5\",\"data-styles-preset\":\"WjbQggkDi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Add to calendar\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B6ruy.framer-kkoqvm, .framer-B6ruy .framer-kkoqvm { display: block; }\",\".framer-B6ruy.framer-wrfwed { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-B6ruy .framer-1yiwsg2 { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-B6ruy .framer-15082da-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-B6ruy .framer-1dt4xxn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: min-content; }\",\".framer-B6ruy .framer-bt0b3k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B6ruy.framer-wrfwed, .framer-B6ruy .framer-1dt4xxn { gap: 0px; } .framer-B6ruy.framer-wrfwed > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-B6ruy.framer-wrfwed > :first-child, .framer-B6ruy .framer-1dt4xxn > :first-child { margin-left: 0px; } .framer-B6ruy.framer-wrfwed > :last-child, .framer-B6ruy .framer-1dt4xxn > :last-child { margin-right: 0px; } .framer-B6ruy .framer-1dt4xxn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,'.framer-B6ruy[data-border=\"true\"]::after, .framer-B6ruy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 170.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"RxhemNqT8\":{\"layout\":[\"auto\",\"auto\"]},\"NZDKWReHt\":{\"layout\":[\"auto\",\"auto\"]},\"ynnHLBZwf\":{\"layout\":[\"auto\",\"auto\"]},\"hvJYVmufl\":{\"layout\":[\"auto\",\"auto\"]},\"o3FUosr7d\":{\"layout\":[\"auto\",\"auto\"]},\"wdxriEme3\":{\"layout\":[\"auto\",\"auto\"]},\"B_j2dRCT4\":{\"layout\":[\"auto\",\"auto\"]},\"zSsUVYzs3\":{\"layout\":[\"auto\",\"auto\"]},\"ZrBayBByr\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"TPbM_4Zh8\":\"click\",\"YRFlvnLZa\":\"label\",\"TcizxZOAl\":\"showIcon\",\"sfQTdyDWE\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQ6MDeJDKd=withCSS(Component,css,\"framer-B6ruy\");export default FramerQ6MDeJDKd;FramerQ6MDeJDKd.displayName=\"Button/ Pill Button\";FramerQ6MDeJDKd.defaultProps={height:44,width:170.5};addPropertyControls(FramerQ6MDeJDKd,{variant:{options:[\"I119:60717;20973:39532\",\"RxhemNqT8\",\"NZDKWReHt\",\"ynnHLBZwf\",\"hvJYVmufl\",\"o3FUosr7d\"],optionTitles:[\"Default\",\"Active\",\"Default - Dark\",\"Active - Dark\",\"Selected\",\"Disabled\"],title:\"Variant\",type:ControlType.Enum},TPbM_4Zh8:{title:\"Click\",type:ControlType.EventHandler},YRFlvnLZa:{defaultValue:\"Add to calendar\",displayTextArea:false,title:\"Label\",type:ControlType.String},TcizxZOAl:{defaultValue:true,title:\"Show icon\",type:ControlType.Boolean},sfQTdyDWE:_HelpersIconsControls?.[\"variant\"]&&{..._HelpersIconsControls[\"variant\"],defaultValue:\"I119:60717;20973:39532;18895:570006\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerQ6MDeJDKd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},..._HelpersIconsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQ6MDeJDKd\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"TPbM_4Zh8\\\":\\\"click\\\",\\\"YRFlvnLZa\\\":\\\"label\\\",\\\"TcizxZOAl\\\":\\\"showIcon\\\",\\\"sfQTdyDWE\\\":\\\"icon\\\"}\",\"framerIntrinsicHeight\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RxhemNqT8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NZDKWReHt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ynnHLBZwf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hvJYVmufl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"o3FUosr7d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wdxriEme3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"B_j2dRCT4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zSsUVYzs3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZrBayBByr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"170.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/7a13TahbFsdf1BXWIve2/aYd77aJZtElRNjcY4Pt2/nqyX6wnsK.js\";import _HelpersDropdownMenuDropdownItem from\"https://framerusercontent.com/modules/ZOO9HkIbDgEQ2O8fUtYO/woYUubSOlT2ZBssJTv8E/Daw1GfU3f.js\";import ButtonPillButton from\"https://framerusercontent.com/modules/7OrNASIUiZLLzixembN8/DnjH0rpxGEbKTDwhW2bV/Q6MDeJDKd.js\";const ButtonPillButtonFonts=getFonts(ButtonPillButton);const _HelpersDropdownMenuDropdownItemFonts=getFonts(_HelpersDropdownMenuDropdownItem);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"I119:60717;20973:40121\",\"vbRUa4Jb2\",\"kkllNzHZg\",\"V9sx7tPon\"];const serializationHash=\"framer-SuZpe\";const variantClassNames={\"I119:60717;20973:40121\":\"framer-v-f00kfb\",kkllNzHZg:\"framer-v-1mmbw1z\",V9sx7tPon:\"framer-v-sdp5q3\",vbRUa4Jb2:\"framer-v-1iaal9n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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(React.Fragment);const humanReadableVariantMap={\"Desktop - Dark\":\"kkllNzHZg\",\"Mobile - Dark\":\"V9sx7tPon\",Desktop:\"I119:60717;20973:40121\",Mobile:\"vbRUa4Jb2\"};const getProps=({calenarLinkApple,calendarIconDay,calendarIconWeekdayName,calendarLinkGoogleCalendar,calendarLinkMicrosoft365,calendarLinkOutlookCom,date,height,id,width,...props})=>{return{...props,bdrNQFK0h:date??props.bdrNQFK0h??\"October 8 \u2014 9\",eqpZkyUc9:calendarIconWeekdayName??props.eqpZkyUc9??\"Tue\",GTsw1MWnI:calendarIconDay??props.GTsw1MWnI??\"16\",KmsqdbgxI:calendarLinkMicrosoft365??props.KmsqdbgxI,ne4HaVmtc:calendarLinkOutlookCom??props.ne4HaVmtc,oB649SysJ:calenarLinkApple??props.oB649SysJ,RpM_2p3dK:calendarLinkGoogleCalendar??props.RpM_2p3dK,variant:humanReadableVariantMap[props.variant]??props.variant??\"I119:60717;20973:40121\"};};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,bdrNQFK0h,eqpZkyUc9,GTsw1MWnI,oB649SysJ,RpM_2p3dK,KmsqdbgxI,ne4HaVmtc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I119:60717;20973:40121\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const TPbM_4Zh8izu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"vbRUa4Jb2\",\"V9sx7tPon\"].includes(baseVariant))return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-f00kfb\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:40121\",ref:ref??ref1,style:{...style},...addPropertyOverrides({kkllNzHZg:{\"data-framer-name\":\"Desktop - Dark\"},V9sx7tPon:{\"data-framer-name\":\"Mobile - Dark\"},vbRUa4Jb2:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w3owv8\",\"data-framer-name\":\"event-inner\",layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39524\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n2ckrf\",\"data-framer-name\":\"Frame 883\",layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39525\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ce3z3v\",\"data-framer-name\":\"date-icon\",layoutDependency:layoutDependency,layoutId:\"facmAa1qQ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6dy49d\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"NcmVLz4q9\",style:{backgroundColor:\"var(--token-ff9f16d7-8218-44b2-9c4c-9c9c128b037c, rgba(0, 0, 0, 0.08))\"},variants:{V9sx7tPon:{backgroundColor:\"var(--token-a484e248-5d79-4e10-a37f-ff8eb8aa8bbd, rgba(255, 255, 255, 0.24))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b0z1l3\",\"data-framer-name\":\"date-icon-inner\",layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39526\",style:{backgroundColor:\"rgb(252, 252, 250)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 6px 24px 0px rgba(0, 0, 0, 0.05999999865889549), 0px 1px 4px 0px rgba(0, 0, 0, 0.05999999865889549), 0px 0px 0px 1px rgba(0, 0, 0, 0.019999999552965164)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bSDCtg==\",\"--framer-font-family\":'\"Suisse Intl Medium \\xb6\", \"Suisse Intl Medium \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-30c76ad7-ea4e-4be2-9644-1ac9e8951a05, rgb(209, 6, 6)))\"},children:\"Tue\"})}),className:\"framer-18cy7qf\",\"data-framer-name\":\"Mon\",fonts:[\"CUSTOM;Suisse Intl Medium \\xb6\"],layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39527\",style:{\"--extracted-r6o4lv\":\"var(--token-30c76ad7-ea4e-4be2-9644-1ac9e8951a05, rgb(209, 6, 6))\",\"--framer-paragraph-spacing\":\"0px\"},text:eqpZkyUc9,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({V9sx7tPon:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bSDCtg==\",\"--framer-font-family\":'\"Suisse Intl Medium \\xb6\", \"Suisse Intl Medium \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-30c76ad7-ea4e-4be2-9644-1ac9e8951a05, rgb(209, 6, 6)))\"},children:\"Tue\"})})},vbRUa4Jb2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bSDCtg==\",\"--framer-font-family\":'\"Suisse Intl Medium \\xb6\", \"Suisse Intl Medium \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-30c76ad7-ea4e-4be2-9644-1ac9e8951a05, rgb(209, 6, 6)))\"},children:\"Tue\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bSDCtg==\",\"--framer-font-family\":'\"Suisse Intl Medium \\xb6\", \"Suisse Intl Medium \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.005em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"16\"})}),className:\"framer-1gc2b1j\",\"data-framer-name\":\"25\",fonts:[\"CUSTOM;Suisse Intl Medium \\xb6\"],layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39528\",style:{\"--extracted-r6o4lv\":\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",\"--framer-paragraph-spacing\":\"0px\"},text:GTsw1MWnI,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({V9sx7tPon:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bSDCtg==\",\"--framer-font-family\":'\"Suisse Intl Medium \\xb6\", \"Suisse Intl Medium \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.005em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"16\"})})},vbRUa4Jb2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bSDCtg==\",\"--framer-font-family\":'\"Suisse Intl Medium \\xb6\", \"Suisse Intl Medium \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.005em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"16\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-unovdl\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"vvIYWVJc4\",style:{backgroundColor:\"var(--token-ff9f16d7-8218-44b2-9c4c-9c9c128b037c, rgba(0, 0, 0, 0.08))\"},variants:{V9sx7tPon:{backgroundColor:\"var(--token-a484e248-5d79-4e10-a37f-ff8eb8aa8bbd, rgba(255, 255, 255, 0.24))\"}}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"October 8 \u2014 9\"})}),className:\"framer-1ivlw62\",\"data-framer-name\":\"Oct 25 \u2014 27\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39530\",style:{\"--extracted-r6o4lv\":\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",\"--framer-paragraph-spacing\":\"12px\"},text:bdrNQFK0h,variants:{kkllNzHZg:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},V9sx7tPon:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kkllNzHZg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"October 8 \u2014 9\"})})},V9sx7tPon:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"October 8 \u2014 9\"})})},vbRUa4Jb2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"October 8 \u2014 9\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+41.75,...addPropertyOverrides({V9sx7tPon:{y:(componentViewport?.y||0)+0+0+0+227.5},vbRUa4Jb2:{y:(componentViewport?.y||0)+0+0+0+227.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-47g23h-container\",id:`${layoutId}-47g23h`,layoutDependency:layoutDependency,layoutId:\"GOzanzk_w-container\",ref:ref2,children:[/*#__PURE__*/_jsx(ButtonPillButton,{height:\"100%\",id:\"GOzanzk_w\",layoutId:\"GOzanzk_w\",sfQTdyDWE:\"I119:60717;20973:39532;18895:570006\",TcizxZOAl:true,TPbM_4Zh8:TPbM_4Zh8izu9gt({overlay}),variant:overlay.visible?\"RxhemNqT8\":\"I119:60717;20973:39532\",width:\"100%\",YRFlvnLZa:\"Add to calendar\",...addPropertyOverrides({kkllNzHZg:{sfQTdyDWE:\"E3m2913QT\",variant:overlay.visible?\"NZDKWReHt\":\"NZDKWReHt\"},V9sx7tPon:{sfQTdyDWE:\"E3m2913QT\",variant:overlay.visible?\"RxhemNqT8\":\"NZDKWReHt\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-47g23h`,offsetX:-26.4375,offsetY:4,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({V9sx7tPon:{offsetX:.6562582340557128,offsetY:8.499994795769453},vbRUa4Jb2:{offsetX:.6562582340557128,offsetY:8.499994795769453}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1sks21q\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"AyZ2RhAhv\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"200px\",y:(componentViewport?.y||0)+0+0+41.75+-84+8+0,...addPropertyOverrides({V9sx7tPon:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+0},vbRUa4Jb2:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nem3ku-container\",layoutDependency:layoutDependency,layoutId:\"O_7mVwxRu-container\",children:/*#__PURE__*/_jsx(_HelpersDropdownMenuDropdownItem,{eocAoiur9:true,height:\"100%\",id:\"O_7mVwxRu\",jxGWkPdX8:oB649SysJ,layoutId:\"O_7mVwxRu\",mc27o8Klq:\"Apple\",style:{width:\"100%\"},width:\"100%\",yxmQewGU3:\"Nfx0Sj_9m\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"200px\",y:(componentViewport?.y||0)+0+0+41.75+-84+8+38,...addPropertyOverrides({V9sx7tPon:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+38},vbRUa4Jb2:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+38}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bg6fla-container\",layoutDependency:layoutDependency,layoutId:\"NAjaB5_Wu-container\",children:/*#__PURE__*/_jsx(_HelpersDropdownMenuDropdownItem,{eocAoiur9:true,height:\"100%\",id:\"NAjaB5_Wu\",jxGWkPdX8:RpM_2p3dK,layoutId:\"NAjaB5_Wu\",mc27o8Klq:\"Google Calendar\",style:{width:\"100%\"},width:\"100%\",yxmQewGU3:\"RV9hlvcHS\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"200px\",y:(componentViewport?.y||0)+0+0+41.75+-84+8+76,...addPropertyOverrides({V9sx7tPon:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+76},vbRUa4Jb2:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+76}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-58cm64-container\",layoutDependency:layoutDependency,layoutId:\"lIEsyrnQZ-container\",children:/*#__PURE__*/_jsx(_HelpersDropdownMenuDropdownItem,{eocAoiur9:true,height:\"100%\",id:\"lIEsyrnQZ\",jxGWkPdX8:KmsqdbgxI,layoutId:\"lIEsyrnQZ\",mc27o8Klq:\"Microsoft 365\",style:{width:\"100%\"},width:\"100%\",yxmQewGU3:\"g1AnEkHI4\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"200px\",y:(componentViewport?.y||0)+0+0+41.75+-84+8+114,...addPropertyOverrides({V9sx7tPon:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+114},vbRUa4Jb2:{y:(componentViewport?.y||0)+0+0+0+227.5+-84+8+114}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ylzlua-container\",layoutDependency:layoutDependency,layoutId:\"lBhexVVEz-container\",children:/*#__PURE__*/_jsx(_HelpersDropdownMenuDropdownItem,{eocAoiur9:true,height:\"100%\",id:\"lBhexVVEz\",jxGWkPdX8:ne4HaVmtc,layoutId:\"lBhexVVEz\",mc27o8Klq:\"Outlook.com\",style:{width:\"100%\"},width:\"100%\",yxmQewGU3:\"gQxVWwiu2\"})})})]})})})]})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SuZpe.framer-1n26t0r, .framer-SuZpe .framer-1n26t0r { display: block; }\",\".framer-SuZpe.framer-f00kfb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 444px; }\",\".framer-SuZpe .framer-1w3owv8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SuZpe .framer-1n2ckrf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SuZpe .framer-ce3z3v { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SuZpe .framer-6dy49d, .framer-SuZpe .framer-unovdl { flex: 1 0 0px; height: 1px; position: relative; width: 1px; }\",\".framer-SuZpe .framer-b0z1l3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: flex-start; overflow: visible; padding: 6px 12px 4px 12px; position: relative; width: 40px; }\",\".framer-SuZpe .framer-18cy7qf, .framer-SuZpe .framer-1gc2b1j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SuZpe .framer-1ivlw62 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-SuZpe .framer-47g23h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SuZpe .framer-1sks21q { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SuZpe .framer-nem3ku-container, .framer-SuZpe .framer-bg6fla-container, .framer-SuZpe .framer-58cm64-container, .framer-SuZpe .framer-ylzlua-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SuZpe.framer-f00kfb, .framer-SuZpe .framer-1w3owv8, .framer-SuZpe .framer-1n2ckrf, .framer-SuZpe .framer-ce3z3v, .framer-SuZpe .framer-b0z1l3, .framer-SuZpe .framer-1sks21q { gap: 0px; } .framer-SuZpe.framer-f00kfb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SuZpe.framer-f00kfb > :first-child, .framer-SuZpe .framer-b0z1l3 > :first-child, .framer-SuZpe .framer-1sks21q > :first-child { margin-top: 0px; } .framer-SuZpe.framer-f00kfb > :last-child, .framer-SuZpe .framer-b0z1l3 > :last-child, .framer-SuZpe .framer-1sks21q > :last-child { margin-bottom: 0px; } .framer-SuZpe .framer-1w3owv8 > *, .framer-SuZpe .framer-1n2ckrf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-SuZpe .framer-1w3owv8 > :first-child, .framer-SuZpe .framer-1n2ckrf > :first-child, .framer-SuZpe .framer-ce3z3v > :first-child { margin-left: 0px; } .framer-SuZpe .framer-1w3owv8 > :last-child, .framer-SuZpe .framer-1n2ckrf > :last-child, .framer-SuZpe .framer-ce3z3v > :last-child { margin-right: 0px; } .framer-SuZpe .framer-ce3z3v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SuZpe .framer-b0z1l3 > * { margin: 0px; margin-bottom: calc(-4px / 2); margin-top: calc(-4px / 2); } .framer-SuZpe .framer-1sks21q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-SuZpe.framer-v-1iaal9n .framer-1w3owv8, .framer-SuZpe.framer-v-sdp5q3 .framer-1w3owv8 { flex-direction: column; gap: 24px; }\",\".framer-SuZpe.framer-v-1iaal9n .framer-1n2ckrf, .framer-SuZpe.framer-v-sdp5q3 .framer-1n2ckrf { flex: none; flex-direction: column; width: 100%; }\",\".framer-SuZpe.framer-v-1iaal9n .framer-ce3z3v, .framer-SuZpe.framer-v-sdp5q3 .framer-ce3z3v { gap: 16px; width: 100%; }\",\".framer-SuZpe.framer-v-1iaal9n .framer-b0z1l3, .framer-SuZpe.framer-v-sdp5q3 .framer-b0z1l3 { height: 60px; padding: 10px 12px 4px 12px; width: 60px; }\",\".framer-SuZpe.framer-v-1iaal9n .framer-1ivlw62, .framer-SuZpe.framer-v-sdp5q3 .framer-1ivlw62 { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SuZpe.framer-v-1iaal9n .framer-1w3owv8, .framer-SuZpe.framer-v-1iaal9n .framer-1n2ckrf, .framer-SuZpe.framer-v-1iaal9n .framer-ce3z3v { gap: 0px; } .framer-SuZpe.framer-v-1iaal9n .framer-1w3owv8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SuZpe.framer-v-1iaal9n .framer-1w3owv8 > :first-child, .framer-SuZpe.framer-v-1iaal9n .framer-1n2ckrf > :first-child { margin-top: 0px; } .framer-SuZpe.framer-v-1iaal9n .framer-1w3owv8 > :last-child, .framer-SuZpe.framer-v-1iaal9n .framer-1n2ckrf > :last-child { margin-bottom: 0px; } .framer-SuZpe.framer-v-1iaal9n .framer-1n2ckrf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SuZpe.framer-v-1iaal9n .framer-ce3z3v > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-SuZpe.framer-v-1iaal9n .framer-ce3z3v > :first-child { margin-left: 0px; } .framer-SuZpe.framer-v-1iaal9n .framer-ce3z3v > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SuZpe.framer-v-sdp5q3 .framer-1w3owv8, .framer-SuZpe.framer-v-sdp5q3 .framer-1n2ckrf, .framer-SuZpe.framer-v-sdp5q3 .framer-ce3z3v { gap: 0px; } .framer-SuZpe.framer-v-sdp5q3 .framer-1w3owv8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SuZpe.framer-v-sdp5q3 .framer-1w3owv8 > :first-child, .framer-SuZpe.framer-v-sdp5q3 .framer-1n2ckrf > :first-child { margin-top: 0px; } .framer-SuZpe.framer-v-sdp5q3 .framer-1w3owv8 > :last-child, .framer-SuZpe.framer-v-sdp5q3 .framer-1n2ckrf > :last-child { margin-bottom: 0px; } .framer-SuZpe.framer-v-sdp5q3 .framer-1n2ckrf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SuZpe.framer-v-sdp5q3 .framer-ce3z3v > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-SuZpe.framer-v-sdp5q3 .framer-ce3z3v > :first-child { margin-left: 0px; } .framer-SuZpe.framer-v-sdp5q3 .framer-ce3z3v > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 444\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vbRUa4Jb2\":{\"layout\":[\"fixed\",\"auto\"]},\"kkllNzHZg\":{\"layout\":[\"fixed\",\"auto\"]},\"V9sx7tPon\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bdrNQFK0h\":\"date\",\"eqpZkyUc9\":\"calendarIconWeekdayName\",\"GTsw1MWnI\":\"calendarIconDay\",\"oB649SysJ\":\"calenarLinkApple\",\"RpM_2p3dK\":\"calendarLinkGoogleCalendar\",\"KmsqdbgxI\":\"calendarLinkMicrosoft365\",\"ne4HaVmtc\":\"calendarLinkOutlookCom\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH4knTZ4f1=withCSS(Component,css,\"framer-SuZpe\");export default FramerH4knTZ4f1;FramerH4knTZ4f1.displayName=\"_Helpers/ Event (Add to calendar)\";FramerH4knTZ4f1.defaultProps={height:44,width:444};addPropertyControls(FramerH4knTZ4f1,{variant:{options:[\"I119:60717;20973:40121\",\"vbRUa4Jb2\",\"kkllNzHZg\",\"V9sx7tPon\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop - Dark\",\"Mobile - Dark\"],title:\"Variant\",type:ControlType.Enum},bdrNQFK0h:{defaultValue:\"October 8 \u2014 9\",displayTextArea:false,title:\"Date\",type:ControlType.String},eqpZkyUc9:{defaultValue:\"Tue\",displayTextArea:false,title:\"Calendar Icon - Weekday name\",type:ControlType.String},GTsw1MWnI:{defaultValue:\"16\",displayTextArea:false,title:\"Calendar icon - Day\",type:ControlType.String},oB649SysJ:{title:\"Calenar Link - Apple\",type:ControlType.Link},RpM_2p3dK:{title:\"Calendar Link - Google Calendar\",type:ControlType.Link},KmsqdbgxI:{title:\"Calendar Link - Microsoft 365\",type:ControlType.Link},ne4HaVmtc:{title:\"Calendar Link - Outlook.com\",type:ControlType.Link}});addFonts(FramerH4knTZ4f1,[{explicitInter:true,fonts:[{family:\"Suisse Intl Medium \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/nXLCYCAlQK0J8QVs36H77AnIbEU.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonPillButtonFonts,..._HelpersDropdownMenuDropdownItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH4knTZ4f1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"bdrNQFK0h\\\":\\\"date\\\",\\\"eqpZkyUc9\\\":\\\"calendarIconWeekdayName\\\",\\\"GTsw1MWnI\\\":\\\"calendarIconDay\\\",\\\"oB649SysJ\\\":\\\"calenarLinkApple\\\",\\\"RpM_2p3dK\\\":\\\"calendarLinkGoogleCalendar\\\",\\\"KmsqdbgxI\\\":\\\"calendarLinkMicrosoft365\\\",\\\"ne4HaVmtc\\\":\\\"calendarLinkOutlookCom\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vbRUa4Jb2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kkllNzHZg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V9sx7tPon\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"444\",\"framerIntrinsicHeight\":\"44\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b5638f1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Form from\"https://framerusercontent.com/modules/qvIVcSrDhUYM1fyUe7AS/LdIS4mBpKb02TTbxBirP/Signup_form_v2.js\";import{addClassHeroPrimary,lineClamp1}from\"https://framerusercontent.com/modules/38BUhTOXdmoRine1OvjI/jWThqZwhq8E8ztab7m2j/Default.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/IxrVhXytLilh5y23Dts1/zXZkctQ7eeBsLp6zH30d/J0pws7G2G.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/RZqKvAhc9zLTnP6c4Wsr/BwFqaTv3px69FkKtUR3z/JRr2OxFwh.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7a13TahbFsdf1BXWIve2/aYd77aJZtElRNjcY4Pt2/nqyX6wnsK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/PML0LPdbHgO4MBR8ut5Q/sOG2tdOil9CvZxaxeD70/RnirqrEoF.js\";import _HelpersRibbon from\"https://framerusercontent.com/modules/zynm1H9JP5hV4Yqu8vDQ/Ct6iINJTBmAjd7CQrthw/en__QqDCH.js\";import _HelpersIcons from\"https://framerusercontent.com/modules/4jOtUmRvARRTYW2LLOZP/gHPopHeeXPzj3npum9fW/EuxeZmOqY.js\";import _HelpersEventAddToCalendar from\"https://framerusercontent.com/modules/zOyfuJsF2OYF6lmgCH1O/LPqO9bl9AEXz5OUC0CqE/H4knTZ4f1.js\";import _Helpers1DoctorRecommended from\"https://framerusercontent.com/modules/VlqAnjoFWbjmNLi8kyNv/RxcGVyNUZNHyRt6h2DRz/Id0j3LBns.js\";import ButtonPrimaryButton,*as ButtonPrimaryButtonInfo from\"https://framerusercontent.com/modules/kFI1JLfrUUkQ0RPXcllK/CXe60Et3nppjMUqbtgdr/IGwo2cGgH.js\";import _HelpersEyebrow from\"https://framerusercontent.com/modules/F5Eb9ucNwXz7tsWJA6Ik/pz0xYMPbxS3ZOtYykZRY/roDsM1InP.js\";const _HelpersEyebrowFonts=getFonts(_HelpersEyebrow);const _HelpersEventAddToCalendarFonts=getFonts(_HelpersEventAddToCalendar);const _HelpersIconsFonts=getFonts(_HelpersIcons);const FormFonts=getFonts(Form);const MotionDivWithFX=withFX(motion.div);const RichTextLineClamp11z0vhbq=withCodeBoundaryForOverrides(RichText,{nodeId:\"f3JjIMuXY\",override:lineClamp1,scopeId:\"hYzKl9ldb\"});const ButtonPrimaryButtonFonts=getFonts(ButtonPrimaryButton);const ButtonPrimaryButtonAddClassHeroPrimary120jt58WithMappedReactPropsm9okk4=withMappedReactProps(withCodeBoundaryForOverrides(ButtonPrimaryButton,{nodeId:\"IhDvrch2U\",override:addClassHeroPrimary,scopeId:\"hYzKl9ldb\"}),ButtonPrimaryButtonInfo);const _Helpers1DoctorRecommendedFonts=getFonts(_Helpers1DoctorRecommended);const VideoFonts=getFonts(Video);const _HelpersRibbonFonts=getFonts(_HelpersRibbon);const ButtonPrimaryButtonControls=getPropertyControls(ButtonPrimaryButton);const _HelpersRibbonControls=getPropertyControls(_HelpersRibbon);const _HelpersEyebrowControls=getPropertyControls(_HelpersEyebrow);const cycleOrder=[\"A4R0baMxT\",\"QowTyigCo\",\"aRTd2l5R4\",\"nS5emHlTw\",\"mQcL7msgf\",\"CIOjWFAIf\"];const serializationHash=\"framer-WDPS0\";const variantClassNames={A4R0baMxT:\"framer-v-19dg5is\",aRTd2l5R4:\"framer-v-1lh26ju\",CIOjWFAIf:\"framer-v-mpqr54\",mQcL7msgf:\"framer-v-153wph9\",nS5emHlTw:\"framer-v-gif82n\",QowTyigCo:\"framer-v-mio69g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Primary - Dark\":\"PUWQGrrlY\",\"Primary Amazon - Dark\":\"xOTwzCeMI\",\"Primary Amazon\":\"PlN6K_4Ly\",\"Primary Small Amazon\":\"WBk4ujdEw\",\"Small - Dark\":\"jrVzNWCrV\",Default:\"a6y79AK5r\",Small:\"noAjNobxA\"};const humanReadableEnumMap1={\"Amazon Prime\":\"Xq14MG_Dy\",\"Official Longevity Partner\":\"SjGVR1if9\",\"Prime Big Deal Days\":\"yyAfkxnIU\",\"Prime Day\":\"SliDVpKfZ\",Amazon:\"DOPBwmpMl\"};const humanReadableEnumMap2={\"Powered by Mitopure - Dark\":\"OUPW7kwlu\",\"Powered by Mitopure\":\"LvliYmt1t\",New:\"i4ydsknsb\",Reviews:\"GPyHpbxIi\"};const humanReadableVariantMap={\"Desktop - Dark\":\"mQcL7msgf\",\"Desktop - Signup\":\"aRTd2l5R4\",\"Mobile - Dark\":\"CIOjWFAIf\",\"Mobile - Signup\":\"nS5emHlTw\",Desktop:\"A4R0baMxT\",Mobile:\"QowTyigCo\"};const getProps=({benefit1,benefit2,benefit3,benefit4,buttonType,calenarLinkApple,calendarIconDay,calendarIconWeekdayName,calendarLinkGoogleCalendar,calendarLinkMicrosoft365,calendarLinkOutlookCom,cTALabel,cTALink,date,description,eyebrowType,headline,height,id,klaviyoListID,productBasePrice,productDiscountedPrice,productImage,productName,ribbonVariant,show1DoctorRecommendedBadge,showBenefit3,showBenefit4,showBenefitsSection,showDescription,showEyebrow,showRibbon,video,videoPosterImage,width,...props})=>{return{...props,AmibkUlLO:klaviyoListID??props.AmibkUlLO??\"WB9KCC\",aMLdhMPnV:showBenefitsSection??props.aMLdhMPnV,B7GugmwuS:benefit3??props.B7GugmwuS??\"Noticeable difference in less than two weeks\",BSNiUaTqZ:cTALabel??props.BSNiUaTqZ??\"Buy now\",cffX5tKGI:productImage??props.cffX5tKGI??{src:\"https://framerusercontent.com/images/gX3zxPkhnuoHqeZGecfbbIGPI.png\",srcSet:\"https://framerusercontent.com/images/gX3zxPkhnuoHqeZGecfbbIGPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/gX3zxPkhnuoHqeZGecfbbIGPI.png 540w\"},e62xWpUhF:benefit4??props.e62xWpUhF??\"Noticeable difference in less than two weeks\",eCFegX6m9:calendarIconDay??props.eCFegX6m9??\"16\",eV_SB1g2n:showBenefit4??props.eV_SB1g2n,evib3eTAe:date??props.evib3eTAe??\"October 8 \u2014 9\",GmeBA0K1G:calendarLinkMicrosoft365??props.GmeBA0K1G,H1F8zYNQb:benefit2??props.H1F8zYNQb??\"Pure, delicious, high-grade ingredients\",HZEIgnAcn:showDescription??props.HZEIgnAcn??true,ICX7tprbW:showBenefit3??props.ICX7tprbW,llJqYDJnl:productBasePrice??props.llJqYDJnl??\"$125\",LuFC6OYpm:benefit1??props.LuFC6OYpm??\"Clinically-proven ingredient, science-backed results\",N8s5lsld2:calendarLinkGoogleCalendar??props.N8s5lsld2,oTbF9Fdzc:show1DoctorRecommendedBadge??props.oTbF9Fdzc??true,qGV_Yppfo:humanReadableEnumMap[buttonType]??buttonType??props.qGV_Yppfo??\"a6y79AK5r\",r9gqhHlkd:video??props.r9gqhHlkd??\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",sgEZw0D7T:calenarLinkApple??props.sgEZw0D7T,sH3ytnAzc:calendarLinkOutlookCom??props.sH3ytnAzc,sic4pOCRt:calendarIconWeekdayName??props.sic4pOCRt??\"Tue\",sukr1BEWc:productDiscountedPrice??props.sukr1BEWc??\"$100\",sZ8RSPBGF:videoPosterImage??props.sZ8RSPBGF,TfbTfw4wC:description??props.TfbTfw4wC??\"Mitopure users are going from fatigued to fired up as their bodies undergo a cellular revolution thanks to this breakthrough discovery.\",tMdeAipDl:cTALink??props.tMdeAipDl,TZYv2IKaj:productName??props.TZYv2IKaj??\"Mitopure Softgels\",U8QkZIweD:showEyebrow??props.U8QkZIweD??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"A4R0baMxT\",VI3Hzd8uf:headline??props.VI3Hzd8uf??\"Discover the Secret to Timeless Vitality\",xedyrjl9w:humanReadableEnumMap2[eyebrowType]??eyebrowType??props.xedyrjl9w??\"GPyHpbxIi\",ZNC1BikxB:showRibbon??props.ZNC1BikxB,ZNEMkW2iP:humanReadableEnumMap1[ribbonVariant]??ribbonVariant??props.ZNEMkW2iP??\"SliDVpKfZ\"};};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,AmibkUlLO,VI3Hzd8uf,HZEIgnAcn,TfbTfw4wC,aMLdhMPnV,LuFC6OYpm,H1F8zYNQb,ICX7tprbW,B7GugmwuS,eV_SB1g2n,e62xWpUhF,r9gqhHlkd,sZ8RSPBGF,TZYv2IKaj,cffX5tKGI,qGV_Yppfo,tMdeAipDl,BSNiUaTqZ,llJqYDJnl,sukr1BEWc,oTbF9Fdzc,ZNC1BikxB,ZNEMkW2iP,sgEZw0D7T,N8s5lsld2,GmeBA0K1G,sH3ytnAzc,U8QkZIweD,xedyrjl9w,eCFegX6m9,sic4pOCRt,evib3eTAe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"A4R0baMxT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSubmittxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"mQcL7msgf\",\"CIOjWFAIf\"].includes(baseVariant))return true;return false;};const visible=isSet(evib3eTAe);const isDisplayed1=value=>{if(baseVariant===\"aRTd2l5R4\")return value;if(baseVariant===\"nS5emHlTw\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"aRTd2l5R4\")return true;return false;};const isDisplayed3=()=>{if([\"aRTd2l5R4\",\"nS5emHlTw\"].includes(baseVariant))return true;return false;};const visible1=isSet(TfbTfw4wC);const isDisplayed4=(value,value1)=>{if([\"aRTd2l5R4\",\"nS5emHlTw\"].includes(baseVariant))return value1;return value;};const ref1=React.useRef(null);const ref2=React.useRef(null);const visible2=isSet(TZYv2IKaj);const isDisplayed5=value=>{if([\"aRTd2l5R4\",\"nS5emHlTw\"].includes(baseVariant))return false;return value;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19dg5is\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"A4R0baMxT\",ref:refBinding,style:{...style},...addPropertyOverrides({aRTd2l5R4:{\"data-framer-name\":\"Desktop - Signup\"},CIOjWFAIf:{\"data-framer-name\":\"Mobile - Dark\"},mQcL7msgf:{\"data-framer-name\":\"Desktop - Dark\"},nS5emHlTw:{\"data-framer-name\":\"Mobile - Signup\"},QowTyigCo:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rvabih\",\"data-framer-name\":\"section-wrapper\",layoutDependency:layoutDependency,layoutId:\"PNHSorTuC\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{CIOjWFAIf:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s00a8o\",\"data-framer-name\":\"hero-container\",layoutDependency:layoutDependency,layoutId:\"oVTeJ2KVw\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jwe58i\",layoutDependency:layoutDependency,layoutId:\"VcgcEboY2\",style:{backgroundColor:\"var(--token-26fa2803-13b4-4ab9-8a8d-77e3d0828973, rgb(242, 242, 240))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{CIOjWFAIf:{backgroundColor:\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},mQcL7msgf:{backgroundColor:\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\"},nS5emHlTw:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},QowTyigCo:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/j0pkA75IkNrCwoTY0V3RtzQ.jpg\",srcSet:\"https://framerusercontent.com/images/j0pkA75IkNrCwoTY0V3RtzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/j0pkA75IkNrCwoTY0V3RtzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/j0pkA75IkNrCwoTY0V3RtzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/j0pkA75IkNrCwoTY0V3RtzQ.jpg 3840w\"},className:\"framer-3i4cq3\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"aepsJ2nyH\",style:{backdropFilter:\"blur(5px)\",WebkitBackdropFilter:\"blur(5px)\"},...addPropertyOverrides({CIOjWFAIf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+-.5),sizes:`min(${componentViewport?.width||\"100vw\"} - 8px, 1920px)`,...toResponsiveImage(sZ8RSPBGF)}},mQcL7msgf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+-.5),sizes:`min(${componentViewport?.width||\"100vw\"} - 24px, 1920px)`,...toResponsiveImage(sZ8RSPBGF)}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10kir5k\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"OaZ0d2R5d\",style:{backdropFilter:\"blur(80px)\",backgroundColor:\"var(--token-a4c5d89a-0c3e-463a-b93e-26f9aa45b421, rgba(0, 0, 0, 0.38))\",WebkitBackdropFilter:\"blur(80px)\"},variants:{mQcL7msgf:{backdropFilter:\"blur(60px)\",WebkitBackdropFilter:\"blur(60px)\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tgz6lt\",\"data-framer-name\":\"inner-container\",layoutDependency:layoutDependency,layoutId:\"fVbftpd8c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-awah55\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"gDgX4V3EY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-138rivc\",\"data-framer-name\":\"headline-container\",layoutDependency:layoutDependency,layoutId:\"sTnKCnb4E\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e1zdkr\",\"data-framer-name\":\"Frame 732\",layoutDependency:layoutDependency,layoutId:\"dBjj5BVAH\",children:[U8QkZIweD&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+0+0+0,...addPropertyOverrides({CIOjWFAIf:{y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+0+0+0},nS5emHlTw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+0+0+0},QowTyigCo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jxdn5m-container\",layoutDependency:layoutDependency,layoutId:\"ngHy3_OnK-container\",nodeId:\"ngHy3_OnK\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(_HelpersEyebrow,{height:\"100%\",id:\"ngHy3_OnK\",layoutId:\"ngHy3_OnK\",variant:xedyrjl9w,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-dzbk5w\",\"data-styles-preset\":\"RnirqrEoF\",children:\"6 Reasons Why Ageless Optimizers Love This Longevity Breakthrough\"})}),className:\"framer-1fi0qf9\",\"data-framer-name\":\"text-h2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oL9nbX_U_\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:VI3Hzd8uf,variants:{CIOjWFAIf:{\"--extracted-gdpscs\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-gdpscs\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-dzbk5w\",\"data-styles-preset\":\"RnirqrEoF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Discover the Secret to Timeless Vitality\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-dzbk5w\",\"data-styles-preset\":\"RnirqrEoF\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Discover the Secret to Timeless Vitality\"})})},nS5emHlTw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-dzbk5w\",\"data-styles-preset\":\"RnirqrEoF\",style:{\"--framer-text-alignment\":\"center\"},children:\"6 Reasons Why Ageless Optimizers Love This Longevity Breakthrough\"})})},QowTyigCo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-dzbk5w\",\"data-styles-preset\":\"RnirqrEoF\",style:{\"--framer-text-alignment\":\"center\"},children:\"6 Reasons Why Ageless Optimizers Love This Longevity Breakthrough\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-141q9o8\",\"data-framer-name\":\"event\",layoutDependency:layoutDependency,layoutId:\"tlt64xOuE\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hr8req\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"I119:60717;20973:39523\",style:{backgroundColor:\"var(--token-ff9f16d7-8218-44b2-9c4c-9c9c128b037c, rgba(0, 0, 0, 0.08))\"}}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({aRTd2l5R4:{height:44,width:`min(max((min(max(min(${componentViewport?.width||\"100vw\"} - 24px, 1920px) - 96px, 1px), 1440px) - 110px) / 12, 1px) * 5 + 40px, 560px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+111.9+0+17},nS5emHlTw:{height:44,width:`min(min(max(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1px), 1440px), 560px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kxd6kj-container\",layoutDependency:layoutDependency,layoutId:\"HChh3VpBl-container\",nodeId:\"HChh3VpBl\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(_HelpersEventAddToCalendar,{bdrNQFK0h:\"October 8 \u2014 9\",eqpZkyUc9:\"Tue\",GTsw1MWnI:\"16\",height:\"100%\",id:\"HChh3VpBl\",KmsqdbgxI:GmeBA0K1G,layoutId:\"HChh3VpBl\",ne4HaVmtc:sH3ytnAzc,oB649SysJ:sgEZw0D7T,RpM_2p3dK:N8s5lsld2,style:{width:\"100%\"},variant:\"I119:60717;20973:40121\",width:\"100%\",...addPropertyOverrides({aRTd2l5R4:{bdrNQFK0h:evib3eTAe,eqpZkyUc9:sic4pOCRt,GTsw1MWnI:eCFegX6m9},nS5emHlTw:{bdrNQFK0h:evib3eTAe,eqpZkyUc9:sic4pOCRt,GTsw1MWnI:eCFegX6m9,variant:\"vbRUa4Jb2\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p0utio\",layoutDependency:layoutDependency,layoutId:\"nK2jitfKv\",children:[isDisplayed4(visible1,HZEIgnAcn)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf90209-d20b-4081-90f5-815e9dbb4234, rgba(0, 0, 0, 0.54)))\"},children:\"Mitopure users are going from fatigued to fired up as their bodies undergo a cellular revolution thanks to this breakthrough discovery.\"})}),className:\"framer-d5usan\",\"data-framer-name\":\"text-body-copy-2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"moD2EZq5u\",style:{\"--extracted-r6o4lv\":\"var(--token-3cf90209-d20b-4081-90f5-815e9dbb4234, rgba(0, 0, 0, 0.54))\",\"--framer-paragraph-spacing\":\"12px\"},text:TfbTfw4wC,variants:{CIOjWFAIf:{\"--extracted-r6o4lv\":\"var(--token-935f735c-5076-4d9a-a41c-6ea68923333f, rgba(255, 255, 255, 0.6))\"},mQcL7msgf:{\"--extracted-r6o4lv\":\"var(--token-935f735c-5076-4d9a-a41c-6ea68923333f, rgba(255, 255, 255, 0.6))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-935f735c-5076-4d9a-a41c-6ea68923333f, rgba(255, 255, 255, 0.6)))\"},children:\"Mitopure users are going from fatigued to fired up as their bodies undergo a cellular revolution thanks to this breakthrough discovery.\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-935f735c-5076-4d9a-a41c-6ea68923333f, rgba(255, 255, 255, 0.6)))\"},children:\"Mitopure users are going from fatigued to fired up as their bodies undergo a cellular revolution thanks to this breakthrough discovery.\"})})},nS5emHlTw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf90209-d20b-4081-90f5-815e9dbb4234, rgba(0, 0, 0, 0.54)))\"},children:\"Mitopure users are going from fatigued to fired up as their bodies undergo a cellular revolution thanks to this breakthrough discovery.\"})}),text:undefined},QowTyigCo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf90209-d20b-4081-90f5-815e9dbb4234, rgba(0, 0, 0, 0.54)))\"},children:\"Mitopure users are going from fatigued to fired up as their bodies undergo a cellular revolution thanks to this breakthrough discovery.\"})})}},baseVariant,gestureVariant)}),aMLdhMPnV&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hv3f3e\",\"data-framer-name\":\"benefits\",layoutDependency:layoutDependency,layoutId:\"Kmhs6dHgL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i356by\",\"data-framer-name\":\"benefit-item\",layoutDependency:layoutDependency,layoutId:\"wrMXbyA1M\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ehbes\",\"data-framer-name\":\"icon-wrapper\",layoutDependency:layoutDependency,layoutId:\"cb3Q0TghJ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+111.9+0+4+0+0+0+2,...addPropertyOverrides({aRTd2l5R4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+196.9+0+4+0+0+0+2},CIOjWFAIf:{y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+0+0+2},nS5emHlTw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+179.9+0+4+0+0+0+2},QowTyigCo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+0+0+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bj411q-container\",layoutDependency:layoutDependency,layoutId:\"ZsdpvxaoR-container\",nodeId:\"ZsdpvxaoR\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(_HelpersIcons,{height:\"100%\",id:\"ZsdpvxaoR\",layoutId:\"ZsdpvxaoR\",style:{height:\"100%\",width:\"100%\"},variant:\"uZ42boP3y\",width:\"100%\",...addPropertyOverrides({CIOjWFAIf:{variant:\"iGVisUS9l\"},mQcL7msgf:{variant:\"iGVisUS9l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"Clinically-proven ingredient, science-backed results\"})}),className:\"framer-1sqskaa\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c9vU7yB6J\",style:{\"--extracted-r6o4lv\":\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",\"--framer-paragraph-spacing\":\"12px\"},text:LuFC6OYpm,variants:{CIOjWFAIf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Clinically-proven ingredient, science-backed results\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Clinically-proven ingredient, science-backed results\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d39hth\",\"data-framer-name\":\"benefit-item\",layoutDependency:layoutDependency,layoutId:\"BPfO9czmX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n3nsvc\",\"data-framer-name\":\"icon-wrapper\",layoutDependency:layoutDependency,layoutId:\"VytY8RJsX\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+111.9+0+4+0+135.5+0+2,...addPropertyOverrides({aRTd2l5R4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+196.9+0+4+0+135.5+0+2},CIOjWFAIf:{y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+135.5+0+2},nS5emHlTw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+179.9+0+4+0+135.5+0+2},QowTyigCo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+135.5+0+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2kvejl-container\",layoutDependency:layoutDependency,layoutId:\"lNuRs0jsH-container\",nodeId:\"lNuRs0jsH\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(_HelpersIcons,{height:\"100%\",id:\"lNuRs0jsH\",layoutId:\"lNuRs0jsH\",style:{height:\"100%\",width:\"100%\"},variant:\"uZ42boP3y\",width:\"100%\",...addPropertyOverrides({CIOjWFAIf:{variant:\"iGVisUS9l\"},mQcL7msgf:{variant:\"iGVisUS9l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"Pure, delicious, high-grade ingredients\"})}),className:\"framer-1mbwyk5\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VukJzXJdB\",style:{\"--extracted-r6o4lv\":\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",\"--framer-paragraph-spacing\":\"12px\"},text:H1F8zYNQb,variants:{CIOjWFAIf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Pure, delicious, high-grade ingredients\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Pure, delicious, high-grade ingredients\"})})}},baseVariant,gestureVariant)})]}),ICX7tprbW&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a7xw57\",\"data-framer-name\":\"benefit-item\",layoutDependency:layoutDependency,layoutId:\"NFoHa50GN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-htwl6c\",\"data-framer-name\":\"icon-wrapper\",layoutDependency:layoutDependency,layoutId:\"F65WUm1WB\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+111.9+0+4+0+271+0+2,...addPropertyOverrides({aRTd2l5R4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+196.9+0+4+0+271+0+2},CIOjWFAIf:{y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+271+0+2},nS5emHlTw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+179.9+0+4+0+271+0+2},QowTyigCo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+271+0+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s3wlef-container\",layoutDependency:layoutDependency,layoutId:\"hlulX8S2Y-container\",nodeId:\"hlulX8S2Y\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(_HelpersIcons,{height:\"100%\",id:\"hlulX8S2Y\",layoutId:\"hlulX8S2Y\",style:{height:\"100%\",width:\"100%\"},variant:\"uZ42boP3y\",width:\"100%\",...addPropertyOverrides({CIOjWFAIf:{variant:\"iGVisUS9l\"},mQcL7msgf:{variant:\"iGVisUS9l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"Noticeable difference in less than two weeks\"})}),className:\"framer-1bw6lqt\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NxWaKyc0g\",style:{\"--extracted-r6o4lv\":\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",\"--framer-paragraph-spacing\":\"12px\"},text:B7GugmwuS,variants:{CIOjWFAIf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Noticeable difference in less than two weeks\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Noticeable difference in less than two weeks\"})})}},baseVariant,gestureVariant)})]}),eV_SB1g2n&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i1cf6k\",\"data-framer-name\":\"benefit-item\",layoutDependency:layoutDependency,layoutId:\"lKcNR3Ms9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lxzv4\",\"data-framer-name\":\"icon-wrapper\",layoutDependency:layoutDependency,layoutId:\"Li_88qnFC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+111.9+0+4+0+406.5+0+2,...addPropertyOverrides({aRTd2l5R4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+0+0+196.9+0+4+0+406.5+0+2},CIOjWFAIf:{y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+406.5+0+2},nS5emHlTw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+179.9+0+4+0+406.5+0+2},QowTyigCo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+567+0+0+0+111.9+0+4+0+406.5+0+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w6a8wr-container\",layoutDependency:layoutDependency,layoutId:\"brNqRcOpl-container\",nodeId:\"brNqRcOpl\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(_HelpersIcons,{height:\"100%\",id:\"brNqRcOpl\",layoutId:\"brNqRcOpl\",style:{height:\"100%\",width:\"100%\"},variant:\"uZ42boP3y\",width:\"100%\",...addPropertyOverrides({CIOjWFAIf:{variant:\"iGVisUS9l\"},mQcL7msgf:{variant:\"iGVisUS9l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36)))\"},children:\"Noticeable difference in less than two weeks\"})}),className:\"framer-fo527f\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fTSpNI2Hq\",style:{\"--extracted-r6o4lv\":\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",\"--framer-paragraph-spacing\":\"12px\"},text:e62xWpUhF,variants:{CIOjWFAIf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-r6o4lv\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Noticeable difference in less than two weeks\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpv6j0\",\"data-styles-preset\":\"nqyX6wnsK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Noticeable difference in less than two weeks\"})})}},baseVariant,gestureVariant)})]})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1f7tf3-container\",id:`${layoutId}-1f7tf3`,isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"PCBZg9mtz-container\",nodeId:\"PCBZg9mtz\",ref:ref1,rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:[/*#__PURE__*/_jsx(Form,{button:{label:\"SIGN UP\",shouldAppear:true},height:\"100%\",id:\"PCBZg9mtz\",inputs:[{gridColumn:\"1\",label:\"Want to be the first to find out?\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"jane@example.com\",required:true,step:0,type:\"email\",value:\"\"}],klaviyoList:\"WB9KCC\",layoutId:\"PCBZg9mtz\",onSubmit:onSubmittxyyif({overlay}),redirectAs:\"overlay\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:6,color:\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\",fill:\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",font:{fontFamily:'\"GT America Mono Regular\", \"GT America Mono Regular Placeholder\", monospace',fontSize:\"13px\",letterSpacing:\"0.005em\",lineHeight:\"150%\"},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16},form:{columnGap:8,columns:\"1\",rowGap:12},input:{borderObject:{borderColor:\"var(--token-b536a736-ef21-4fe8-b0d0-1dd09d2e6376, rgba(0, 0, 0, 0.2))\",borderWidth:1},borderRadius:6,color:\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",fill:\"rgba(255, 255, 255, 0)\",focusObject:{focusColor:\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",focusWidthFrom:0,focusWidthTo:1},font:{fontFamily:'\"Suisse Intl Regular \\xb6\", \"Suisse Intl Regular \\xb6 Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"150%\"},padding:12,paddingBottom:12,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:12,placeholderColor:\"var(--token-a4c5d89a-0c3e-463a-b93e-26f9aa45b421, rgba(0, 0, 0, 0.38))\"},label:{borderRadius:8,color:\"var(--token-7b629c04-6420-4587-a6cd-f541bb4258e3, rgb(39, 39, 36))\",fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"Suisse Intl Medium \\xb6\", \"Suisse Intl Medium \\xb6 Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"150%\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},width:\"100%\",...addPropertyOverrides({aRTd2l5R4:{inputs:[{gridColumn:\"1\",label:\"Access This Exclusive Offer For 1440 Subscribers\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"jane@example.com\",required:true,step:0,type:\"email\",value:\"\"}],klaviyoList:AmibkUlLO}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1f7tf3`,offsetX:-82e-6,offsetY:123.17970525671262,onDismiss:overlay.hide,placement:\"top\",safeArea:false,zIndex:11,...addPropertyOverrides({aRTd2l5R4:{collisionDetection:false,collisionDetectionPadding:undefined,offsetX:0,offsetY:12,placement:\"bottom\"},nS5emHlTw:{collisionDetection:false,collisionDetectionPadding:undefined,offsetX:0,offsetY:8,placement:\"bottom\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-17kvad8\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"qqDVa_nLR\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},variants:{aRTd2l5R4:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},nS5emHlTw:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"}},children:isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-vodelb\",\"data-styles-preset\":\"J0pws7G2G\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-30e2d29e-ae0b-45f7-b175-345832a44124, rgb(47, 133, 90)))\"},children:\"Success! You\u2019ve been added to our waitlist.\"})}),className:\"framer-1x9w3m4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PgbBCy8xr\",style:{\"--extracted-1w1cjl5\":\"var(--token-30e2d29e-ae0b-45f7-b175-345832a44124, rgb(47, 133, 90))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aRTd2l5R4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-vodelb\",\"data-styles-preset\":\"J0pws7G2G\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-30e2d29e-ae0b-45f7-b175-345832a44124, rgb(47, 133, 90)))\"},children:\"Success! You\u2019ll be the first to know\"})})},nS5emHlTw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-vodelb\",\"data-styles-preset\":\"J0pws7G2G\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-30e2d29e-ae0b-45f7-b175-345832a44124, rgb(47, 133, 90)))\"},children:\"Success! You\u2019ll be the first to know\"})})}},baseVariant,gestureVariant)})})})})]})})})}),isDisplayed5(visible2)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gkr8mn\",\"data-framer-name\":\"Headers/ Page Header/ CTA\",layoutDependency:layoutDependency,layoutId:\"VZTwgPRqb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1szfape\",\"data-framer-name\":\"Rectangle 1162\",layoutDependency:layoutDependency,layoutId:\"yjnMtdFWF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"},variants:{CIOjWFAIf:{backgroundColor:\"var(--token-28579347-54d3-4418-9f39-fe427fe51442, rgba(255, 255, 255, 0.12))\"},mQcL7msgf:{backgroundColor:\"var(--token-28579347-54d3-4418-9f39-fe427fe51442, rgba(255, 255, 255, 0.12))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ybgdz0\",\"data-framer-name\":\"Frame 891\",layoutDependency:layoutDependency,layoutId:\"atfDRVqvV\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+263.4+0+17+23),sizes:\"40px\",...toResponsiveImage(cffX5tKGI),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-195wmbc\",\"data-border\":true,\"data-framer-name\":\"product-image\",layoutDependency:layoutDependency,layoutId:\"umlKGsWsD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{CIOjWFAIf:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({CIOjWFAIf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+567+0+263.4+0+17+23),sizes:\"40px\",...toResponsiveImage(cffX5tKGI),...{positionX:\"center\",positionY:\"center\"}}},QowTyigCo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+567+0+263.4+0+17+23),sizes:\"40px\",...toResponsiveImage(cffX5tKGI),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x3nd6p\",\"data-framer-name\":\"Frame 1570\",layoutDependency:layoutDependency,layoutId:\"vp2AQo48H\",children:[/*#__PURE__*/_jsx(RichTextLineClamp11z0vhbq,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",children:\"Mitopure Softgels\"})}),className:\"framer-1z0vhbq\",\"data-framer-name\":\"text-h5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f3JjIMuXY\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:TZYv2IKaj,variants:{CIOjWFAIf:{\"--extracted-1lwpl3i\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-1lwpl3i\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Mitopure Softgels\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"Mitopure Softgels\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m2g2n7\",\"data-framer-name\":\"product-price\",layoutDependency:layoutDependency,layoutId:\"SVfWBh_p8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w3ink8\",\"data-framer-name\":\"old-price\",layoutDependency:layoutDependency,layoutId:\"NHdReSLGi\",style:{opacity:.36},variants:{CIOjWFAIf:{opacity:.48},mQcL7msgf:{opacity:.48}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",children:\"$79\"})}),className:\"framer-4n722l\",\"data-framer-name\":\"old-price-euro\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mTmkZSCwf\",style:{\"--framer-paragraph-spacing\":\"8px\"},text:llJqYDJnl,variants:{CIOjWFAIf:{\"--extracted-1lwpl3i\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-1lwpl3i\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"$125\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"$125\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h244bg\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"XkJvzNPSs\",style:{backgroundColor:\"rgb(39, 39, 36)\"},variants:{CIOjWFAIf:{backgroundColor:\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{backgroundColor:\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bwtwp4\",\"data-framer-name\":\"current-price\",layoutDependency:layoutDependency,layoutId:\"Oe8r1Bnoj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",children:\"$55\"})}),className:\"framer-13m6nqe\",\"data-framer-name\":\"current-price-euro\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gR3FiELsi\",style:{\"--framer-paragraph-spacing\":\"8px\"},text:sukr1BEWc,variants:{CIOjWFAIf:{\"--extracted-1lwpl3i\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"},mQcL7msgf:{\"--extracted-1lwpl3i\":\"var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CIOjWFAIf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"$100\"})})},mQcL7msgf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jav5g2\",\"data-styles-preset\":\"JRr2OxFwh\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-2de7855b-cb73-49e2-aea3-895114d37ba2, rgb(252, 252, 250)))\"},children:\"$100\"})})}},baseVariant,gestureVariant)})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:`min(max((min(max(min(${componentViewport?.width||\"100vw\"} - 24px, 1920px) - 96px, 1px), 1440px) - 110px) / 12, 1px) * 5 + 40px, 560px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+0+263.4+0+79,...addPropertyOverrides({CIOjWFAIf:{width:`min(min(max(min(${componentViewport?.width||\"100vw\"} - 8px, 1920px) - 40px, 1px), 1440px), 560px)`,y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+567+0+263.4+0+79},QowTyigCo:{width:`min(min(max(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1px), 1440px), 560px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+567+0+263.4+0+79}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-120jt58-container\",layoutDependency:layoutDependency,layoutId:\"IhDvrch2U-container\",nodeId:\"IhDvrch2U\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(ButtonPrimaryButtonAddClassHeroPrimary120jt58WithMappedReactPropsm9okk4,{ahx58_XLf:tMdeAipDl,bD0aH8HeQ:true,CuP8BQcmn:BSNiUaTqZ,height:\"100%\",id:\"IhDvrch2U\",layoutId:\"IhDvrch2U\",style:{width:\"100%\"},variant:qGV_Yppfo,width:\"100%\",ZpcREYLs7:false})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zebsvh\",\"data-framer-name\":\"spacer-1-column\",layoutDependency:layoutDependency,layoutId:\"gCamePvRL\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",opacity:0}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ltliqc\",\"data-framer-name\":\"video\",layoutDependency:layoutDependency,layoutId:\"PYDLvTNPZ\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[oTbF9Fdzc&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+535-80,...addPropertyOverrides({CIOjWFAIf:{y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+0+535-72},nS5emHlTw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+0+535-72},QowTyigCo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+0+535-72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kq0h4p-container\",layoutDependency:layoutDependency,layoutId:\"kZkcLxNQP-container\",nodeId:\"kZkcLxNQP\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(_Helpers1DoctorRecommended,{height:\"100%\",id:\"kZkcLxNQP\",layoutId:\"kZkcLxNQP\",variant:\"jCyyM1DbF\",width:\"100%\",...addPropertyOverrides({CIOjWFAIf:{variant:\"VE5bxUWOS\"},nS5emHlTw:{variant:\"VE5bxUWOS\"},QowTyigCo:{variant:\"VE5bxUWOS\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-opulnp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yZ8UkXHJQ-container\",nodeId:\"yZ8UkXHJQ\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-b33249f7-9f58-45b4-848a-bb8e095c746b, rgb(229, 229, 226))\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"yZ8UkXHJQ\",isMixedBorderRadius:false,layoutId:\"yZ8UkXHJQ\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(sZ8RSPBGF),posterEnabled:true,srcType:\"URL\",srcUrl:r9gqhHlkd,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})}),ZNC1BikxB&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+(((componentViewport?.height||637)-6-631)/2+0+0)+0+0+0+0+48+0+0+48,...addPropertyOverrides({CIOjWFAIf:{height:471,y:(componentViewport?.y||0)+4+(((componentViewport?.height||941)-4-1065.4)/2+0+0)+0+0+0+0+80+0+0+48},nS5emHlTw:{height:471,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1163)-0-1058.4)/2+0+0)+0+0+0+0+80+0+0+48},QowTyigCo:{height:471,y:(componentViewport?.y||0)+0+(((componentViewport?.height||953)-0-1081.4)/2+0+0)+0+0+0+0+80+0+0+48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w8vtpk-container\",layoutDependency:layoutDependency,layoutId:\"oTSAw73o3-container\",nodeId:\"oTSAw73o3\",rendersWithMotion:true,scopeId:\"hYzKl9ldb\",children:/*#__PURE__*/_jsx(_HelpersRibbon,{height:\"100%\",id:\"oTSAw73o3\",layoutId:\"oTSAw73o3\",variant:ZNEMkW2iP,width:\"100%\"})})})]})]})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WDPS0.framer-nksqrq, .framer-WDPS0 .framer-nksqrq { display: block; }\",\".framer-WDPS0.framer-19dg5is { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 6px 12px; position: relative; width: 1200px; }\",\".framer-WDPS0 .framer-rvabih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-1s00a8o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-1jwe58i { 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: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-3i4cq3 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-WDPS0 .framer-10kir5k { flex: none; height: 631px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-WDPS0 .framer-tgz6lt { display: grid; flex: 1 0 0px; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(12, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WDPS0 .framer-awah55 { align-content: flex-start; align-items: flex-start; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: auto / span 5; height: auto; justify-content: flex-start; justify-self: start; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-138rivc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-e1zdkr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-jxdn5m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WDPS0 .framer-1fi0qf9, .framer-WDPS0 .framer-d5usan { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WDPS0 .framer-141q9o8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 65px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-hr8req, .framer-WDPS0 .framer-1szfape { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-kxd6kj-container, .framer-WDPS0 .framer-1f7tf3-container, .framer-WDPS0 .framer-120jt58-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-1p0utio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-1hv3f3e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-i356by, .framer-WDPS0 .framer-d39hth, .framer-WDPS0 .framer-a7xw57, .framer-WDPS0 .framer-1i1cf6k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-2ehbes, .framer-WDPS0 .framer-1n3nsvc, .framer-WDPS0 .framer-htwl6c, .framer-WDPS0 .framer-1lxzv4 { 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; overflow: visible; padding: 2px 0px 2px 0px; position: relative; width: min-content; }\",\".framer-WDPS0 .framer-bj411q-container, .framer-WDPS0 .framer-2kvejl-container, .framer-WDPS0 .framer-s3wlef-container, .framer-WDPS0 .framer-1w6a8wr-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-WDPS0 .framer-1sqskaa, .framer-WDPS0 .framer-1mbwyk5, .framer-WDPS0 .framer-1bw6lqt, .framer-WDPS0 .framer-fo527f, .framer-WDPS0 .framer-1z0vhbq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-WDPS0 .framer-17kvad8 { height: 123px; overflow: hidden; position: relative; width: 299px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WDPS0 .framer-1x9w3m4 { bottom: 30px; flex: none; height: auto; left: -15px; position: absolute; white-space: pre; width: auto; }\",\".framer-WDPS0 .framer-gkr8mn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-1ybgdz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 46px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-195wmbc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 40px; overflow: hidden; padding: 0px; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WDPS0 .framer-x3nd6p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WDPS0 .framer-m2g2n7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WDPS0 .framer-1w3ink8 { display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WDPS0 .framer-4n722l, .framer-WDPS0 .framer-13m6nqe { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WDPS0 .framer-1h244bg { flex: none; height: 1px; left: 0px; position: absolute; right: 0px; top: 12px; z-index: 1; }\",\".framer-WDPS0 .framer-1bwtwp4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WDPS0 .framer-zebsvh { align-self: start; flex: none; height: 0%; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-ltliqc { align-self: start; aspect-ratio: 1 / 1; flex: none; grid-column: auto / span 6; height: var(--framer-aspect-ratio-supported, 535px); justify-self: start; position: relative; width: 100%; }\",\".framer-WDPS0 .framer-1kq0h4p-container { bottom: 24px; flex: none; height: auto; left: 50%; position: absolute; width: auto; z-index: 1; }\",\".framer-WDPS0 .framer-opulnp-container { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 535px); left: 0px; position: absolute; right: 0px; }\",\".framer-WDPS0 .framer-1w8vtpk-container { flex: none; height: auto; position: absolute; right: -12px; top: 48px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WDPS0.framer-19dg5is, .framer-WDPS0 .framer-rvabih, .framer-WDPS0 .framer-1s00a8o, .framer-WDPS0 .framer-1jwe58i, .framer-WDPS0 .framer-awah55, .framer-WDPS0 .framer-138rivc, .framer-WDPS0 .framer-e1zdkr, .framer-WDPS0 .framer-141q9o8, .framer-WDPS0 .framer-1p0utio, .framer-WDPS0 .framer-1hv3f3e, .framer-WDPS0 .framer-i356by, .framer-WDPS0 .framer-2ehbes, .framer-WDPS0 .framer-d39hth, .framer-WDPS0 .framer-1n3nsvc, .framer-WDPS0 .framer-a7xw57, .framer-WDPS0 .framer-htwl6c, .framer-WDPS0 .framer-1i1cf6k, .framer-WDPS0 .framer-1lxzv4, .framer-WDPS0 .framer-gkr8mn, .framer-WDPS0 .framer-1ybgdz0, .framer-WDPS0 .framer-195wmbc, .framer-WDPS0 .framer-x3nd6p, .framer-WDPS0 .framer-m2g2n7, .framer-WDPS0 .framer-1w3ink8, .framer-WDPS0 .framer-1bwtwp4 { gap: 0px; } .framer-WDPS0.framer-19dg5is > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WDPS0.framer-19dg5is > :first-child, .framer-WDPS0 .framer-rvabih > :first-child, .framer-WDPS0 .framer-1s00a8o > :first-child, .framer-WDPS0 .framer-awah55 > :first-child, .framer-WDPS0 .framer-138rivc > :first-child, .framer-WDPS0 .framer-e1zdkr > :first-child, .framer-WDPS0 .framer-141q9o8 > :first-child, .framer-WDPS0 .framer-1p0utio > :first-child, .framer-WDPS0 .framer-1hv3f3e > :first-child, .framer-WDPS0 .framer-gkr8mn > :first-child { margin-top: 0px; } .framer-WDPS0.framer-19dg5is > :last-child, .framer-WDPS0 .framer-rvabih > :last-child, .framer-WDPS0 .framer-1s00a8o > :last-child, .framer-WDPS0 .framer-awah55 > :last-child, .framer-WDPS0 .framer-138rivc > :last-child, .framer-WDPS0 .framer-e1zdkr > :last-child, .framer-WDPS0 .framer-141q9o8 > :last-child, .framer-WDPS0 .framer-1p0utio > :last-child, .framer-WDPS0 .framer-1hv3f3e > :last-child, .framer-WDPS0 .framer-gkr8mn > :last-child { margin-bottom: 0px; } .framer-WDPS0 .framer-rvabih > *, .framer-WDPS0 .framer-1s00a8o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WDPS0 .framer-1jwe58i > *, .framer-WDPS0 .framer-2ehbes > *, .framer-WDPS0 .framer-1n3nsvc > *, .framer-WDPS0 .framer-htwl6c > *, .framer-WDPS0 .framer-1lxzv4 > *, .framer-WDPS0 .framer-195wmbc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WDPS0 .framer-1jwe58i > :first-child, .framer-WDPS0 .framer-i356by > :first-child, .framer-WDPS0 .framer-2ehbes > :first-child, .framer-WDPS0 .framer-d39hth > :first-child, .framer-WDPS0 .framer-1n3nsvc > :first-child, .framer-WDPS0 .framer-a7xw57 > :first-child, .framer-WDPS0 .framer-htwl6c > :first-child, .framer-WDPS0 .framer-1i1cf6k > :first-child, .framer-WDPS0 .framer-1lxzv4 > :first-child, .framer-WDPS0 .framer-1ybgdz0 > :first-child, .framer-WDPS0 .framer-195wmbc > :first-child, .framer-WDPS0 .framer-x3nd6p > :first-child, .framer-WDPS0 .framer-m2g2n7 > :first-child, .framer-WDPS0 .framer-1w3ink8 > :first-child, .framer-WDPS0 .framer-1bwtwp4 > :first-child { margin-left: 0px; } .framer-WDPS0 .framer-1jwe58i > :last-child, .framer-WDPS0 .framer-i356by > :last-child, .framer-WDPS0 .framer-2ehbes > :last-child, .framer-WDPS0 .framer-d39hth > :last-child, .framer-WDPS0 .framer-1n3nsvc > :last-child, .framer-WDPS0 .framer-a7xw57 > :last-child, .framer-WDPS0 .framer-htwl6c > :last-child, .framer-WDPS0 .framer-1i1cf6k > :last-child, .framer-WDPS0 .framer-1lxzv4 > :last-child, .framer-WDPS0 .framer-1ybgdz0 > :last-child, .framer-WDPS0 .framer-195wmbc > :last-child, .framer-WDPS0 .framer-x3nd6p > :last-child, .framer-WDPS0 .framer-m2g2n7 > :last-child, .framer-WDPS0 .framer-1w3ink8 > :last-child, .framer-WDPS0 .framer-1bwtwp4 > :last-child { margin-right: 0px; } .framer-WDPS0 .framer-awah55 > *, .framer-WDPS0 .framer-138rivc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-WDPS0 .framer-e1zdkr > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-WDPS0 .framer-141q9o8 > *, .framer-WDPS0 .framer-1p0utio > *, .framer-WDPS0 .framer-gkr8mn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WDPS0 .framer-1hv3f3e > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-WDPS0 .framer-i356by > *, .framer-WDPS0 .framer-d39hth > *, .framer-WDPS0 .framer-a7xw57 > *, .framer-WDPS0 .framer-1i1cf6k > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-WDPS0 .framer-1ybgdz0 > *, .framer-WDPS0 .framer-x3nd6p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-WDPS0 .framer-m2g2n7 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-WDPS0 .framer-1w3ink8 > *, .framer-WDPS0 .framer-1bwtwp4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-WDPS0.framer-v-mio69g.framer-19dg5is, .framer-WDPS0.framer-v-gif82n.framer-19dg5is { padding: 0px; width: 375px; }\",\".framer-WDPS0.framer-v-mio69g .framer-1jwe58i, .framer-WDPS0.framer-v-gif82n .framer-1jwe58i { padding: 80px 24px 40px 24px; }\",\".framer-WDPS0.framer-v-mio69g .framer-tgz6lt, .framer-WDPS0.framer-v-gif82n .framer-tgz6lt, .framer-WDPS0.framer-v-mpqr54 .framer-tgz6lt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; }\",\".framer-WDPS0.framer-v-mio69g .framer-awah55, .framer-WDPS0.framer-v-gif82n .framer-awah55, .framer-WDPS0.framer-v-mpqr54 .framer-awah55 { align-self: unset; height: min-content; order: 2; }\",\".framer-WDPS0.framer-v-mio69g .framer-e1zdkr, .framer-WDPS0.framer-v-gif82n .framer-e1zdkr, .framer-WDPS0.framer-v-mpqr54 .framer-e1zdkr { align-content: center; align-items: center; }\",\".framer-WDPS0.framer-v-mio69g .framer-zebsvh, .framer-WDPS0.framer-v-gif82n .framer-zebsvh, .framer-WDPS0.framer-v-mpqr54 .framer-zebsvh { align-self: unset; order: 1; width: 75px; }\",\".framer-WDPS0.framer-v-mio69g .framer-ltliqc, .framer-WDPS0.framer-v-gif82n .framer-ltliqc, .framer-WDPS0.framer-v-mpqr54 .framer-ltliqc { align-self: unset; height: var(--framer-aspect-ratio-supported, 327px); order: 0; }\",\".framer-WDPS0.framer-v-mio69g .framer-1kq0h4p-container, .framer-WDPS0.framer-v-gif82n .framer-1kq0h4p-container, .framer-WDPS0.framer-v-mpqr54 .framer-1kq0h4p-container { bottom: 16px; left: 50%; }\",\".framer-WDPS0.framer-v-mio69g .framer-opulnp-container, .framer-WDPS0.framer-v-gif82n .framer-opulnp-container, .framer-WDPS0.framer-v-mpqr54 .framer-opulnp-container { height: var(--framer-aspect-ratio-supported, 327px); }\",\".framer-WDPS0.framer-v-mio69g .framer-1w8vtpk-container, .framer-WDPS0.framer-v-gif82n .framer-1w8vtpk-container, .framer-WDPS0.framer-v-mpqr54 .framer-1w8vtpk-container { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WDPS0.framer-v-mio69g .framer-tgz6lt { gap: 0px; } .framer-WDPS0.framer-v-mio69g .framer-tgz6lt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WDPS0.framer-v-mio69g .framer-tgz6lt > :first-child { margin-top: 0px; } .framer-WDPS0.framer-v-mio69g .framer-tgz6lt > :last-child { margin-bottom: 0px; } }\",\".framer-WDPS0.framer-v-1lh26ju .framer-138rivc, .framer-WDPS0.framer-v-1lh26ju .framer-e1zdkr, .framer-WDPS0.framer-v-gif82n .framer-138rivc, .framer-WDPS0.framer-v-153wph9 .framer-1jwe58i { order: 0; }\",\".framer-WDPS0.framer-v-1lh26ju .framer-141q9o8 { min-height: unset; order: 1; }\",\".framer-WDPS0.framer-v-1lh26ju .framer-1p0utio { order: 2; }\",\".framer-WDPS0.framer-v-1lh26ju .framer-1f7tf3-container, .framer-WDPS0.framer-v-gif82n .framer-1f7tf3-container { order: 1; }\",\".framer-WDPS0.framer-v-1lh26ju .framer-17kvad8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-WDPS0.framer-v-1lh26ju .framer-1x9w3m4, .framer-WDPS0.framer-v-gif82n .framer-1x9w3m4 { bottom: unset; left: unset; order: 0; position: relative; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WDPS0.framer-v-1lh26ju .framer-17kvad8 { gap: 0px; } .framer-WDPS0.framer-v-1lh26ju .framer-17kvad8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WDPS0.framer-v-1lh26ju .framer-17kvad8 > :first-child { margin-left: 0px; } .framer-WDPS0.framer-v-1lh26ju .framer-17kvad8 > :last-child { margin-right: 0px; } }\",\".framer-WDPS0.framer-v-gif82n .framer-141q9o8 { min-height: unset; }\",\".framer-WDPS0.framer-v-gif82n .framer-17kvad8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WDPS0.framer-v-gif82n .framer-tgz6lt, .framer-WDPS0.framer-v-gif82n .framer-17kvad8 { gap: 0px; } .framer-WDPS0.framer-v-gif82n .framer-tgz6lt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WDPS0.framer-v-gif82n .framer-tgz6lt > :first-child, .framer-WDPS0.framer-v-gif82n .framer-17kvad8 > :first-child { margin-top: 0px; } .framer-WDPS0.framer-v-gif82n .framer-tgz6lt > :last-child, .framer-WDPS0.framer-v-gif82n .framer-17kvad8 > :last-child { margin-bottom: 0px; } .framer-WDPS0.framer-v-gif82n .framer-17kvad8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-WDPS0.framer-v-153wph9 .framer-1s00a8o, .framer-WDPS0.framer-v-mpqr54 .framer-rvabih { overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-WDPS0.framer-v-153wph9 .framer-10kir5k, .framer-WDPS0.framer-v-mpqr54 .framer-10kir5k { bottom: 0px; height: unset; left: 0px; right: 0px; top: 0px; }\",\".framer-WDPS0.framer-v-mpqr54.framer-19dg5is { padding: 4px 4px 0px 4px; width: 375px; }\",\".framer-WDPS0.framer-v-mpqr54 .framer-1jwe58i { padding: 80px 20px 24px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WDPS0.framer-v-mpqr54 .framer-tgz6lt { gap: 0px; } .framer-WDPS0.framer-v-mpqr54 .framer-tgz6lt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WDPS0.framer-v-mpqr54 .framer-tgz6lt > :first-child { margin-top: 0px; } .framer-WDPS0.framer-v-mpqr54 .framer-tgz6lt > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-WDPS0[data-border=\"true\"]::after, .framer-WDPS0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 637\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QowTyigCo\":{\"layout\":[\"fixed\",\"auto\"]},\"aRTd2l5R4\":{\"layout\":[\"fixed\",\"auto\"]},\"nS5emHlTw\":{\"layout\":[\"fixed\",\"auto\"]},\"mQcL7msgf\":{\"layout\":[\"fixed\",\"auto\"]},\"CIOjWFAIf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AmibkUlLO\":\"klaviyoListID\",\"VI3Hzd8uf\":\"headline\",\"HZEIgnAcn\":\"showDescription\",\"TfbTfw4wC\":\"description\",\"aMLdhMPnV\":\"showBenefitsSection\",\"LuFC6OYpm\":\"benefit1\",\"H1F8zYNQb\":\"benefit2\",\"ICX7tprbW\":\"showBenefit3\",\"B7GugmwuS\":\"benefit3\",\"eV_SB1g2n\":\"showBenefit4\",\"e62xWpUhF\":\"benefit4\",\"r9gqhHlkd\":\"video\",\"sZ8RSPBGF\":\"videoPosterImage\",\"TZYv2IKaj\":\"productName\",\"cffX5tKGI\":\"productImage\",\"qGV_Yppfo\":\"buttonType\",\"tMdeAipDl\":\"cTALink\",\"BSNiUaTqZ\":\"cTALabel\",\"llJqYDJnl\":\"productBasePrice\",\"sukr1BEWc\":\"productDiscountedPrice\",\"oTbF9Fdzc\":\"show1DoctorRecommendedBadge\",\"ZNC1BikxB\":\"showRibbon\",\"ZNEMkW2iP\":\"ribbonVariant\",\"sgEZw0D7T\":\"calenarLinkApple\",\"N8s5lsld2\":\"calendarLinkGoogleCalendar\",\"GmeBA0K1G\":\"calendarLinkMicrosoft365\",\"sH3ytnAzc\":\"calendarLinkOutlookCom\",\"U8QkZIweD\":\"showEyebrow\",\"xedyrjl9w\":\"eyebrowType\",\"eCFegX6m9\":\"calendarIconDay\",\"sic4pOCRt\":\"calendarIconWeekdayName\",\"evib3eTAe\":\"date\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhYzKl9ldb=withCSS(Component,css,\"framer-WDPS0\");export default FramerhYzKl9ldb;FramerhYzKl9ldb.displayName=\"Hero/ Hero - Video\";FramerhYzKl9ldb.defaultProps={height:637,width:1200};addPropertyControls(FramerhYzKl9ldb,{variant:{options:[\"A4R0baMxT\",\"QowTyigCo\",\"aRTd2l5R4\",\"nS5emHlTw\",\"mQcL7msgf\",\"CIOjWFAIf\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop - Signup\",\"Mobile - Signup\",\"Desktop - Dark\",\"Mobile - Dark\"],title:\"Variant\",type:ControlType.Enum},AmibkUlLO:{defaultValue:\"WB9KCC\",title:\"\uD83D\uDEA8 Klaviyo List ID\",type:ControlType.String},VI3Hzd8uf:{defaultValue:\"Discover the Secret to Timeless Vitality\",displayTextArea:false,title:\"Headline\",type:ControlType.String},HZEIgnAcn:{defaultValue:true,title:\"Show description\",type:ControlType.Boolean},TfbTfw4wC:{defaultValue:\"Mitopure users are going from fatigued to fired up as their bodies undergo a cellular revolution thanks to this breakthrough discovery.\",displayTextArea:false,title:\"Description\",type:ControlType.String},aMLdhMPnV:{defaultValue:false,title:\"Show benefits section\",type:ControlType.Boolean},LuFC6OYpm:{defaultValue:\"Clinically-proven ingredient, science-backed results\",displayTextArea:false,title:\"Benefit 1\",type:ControlType.String},H1F8zYNQb:{defaultValue:\"Pure, delicious, high-grade ingredients\",displayTextArea:false,title:\"Benefit 2\",type:ControlType.String},ICX7tprbW:{defaultValue:false,title:\"Show benefit 3\",type:ControlType.Boolean},B7GugmwuS:{defaultValue:\"Noticeable difference in less than two weeks\",displayTextArea:false,title:\"Benefit 3\",type:ControlType.String},eV_SB1g2n:{defaultValue:false,title:\"Show benefit 4\",type:ControlType.Boolean},e62xWpUhF:{defaultValue:\"Noticeable difference in less than two weeks\",title:\"Benefit 4\",type:ControlType.String},r9gqhHlkd:{defaultValue:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",placeholder:\"Cloudinary URL\",title:\"Video\",type:ControlType.String},sZ8RSPBGF:{title:\"Video poster image\",type:ControlType.ResponsiveImage},TZYv2IKaj:{defaultValue:\"Mitopure Softgels\",title:\"Product name\",type:ControlType.String},cffX5tKGI:{__defaultAssetReference:\"data:framer/asset-reference,gX3zxPkhnuoHqeZGecfbbIGPI.png?originalFilename=Mitopure+Softgels.png&preferredSize=auto\",title:\"Product image\",type:ControlType.ResponsiveImage},qGV_Yppfo:ButtonPrimaryButtonControls?.[\"variant\"]&&{...ButtonPrimaryButtonControls[\"variant\"],defaultValue:\"a6y79AK5r\",description:undefined,hidden:undefined,title:\"Button type\"},tMdeAipDl:{title:\"CTA Link\",type:ControlType.Link},BSNiUaTqZ:{defaultValue:\"Buy now\",displayTextArea:false,title:\"CTA Label\",type:ControlType.String},llJqYDJnl:{defaultValue:\"$125\",placeholder:\"$125\",title:\"Product base price\",type:ControlType.String},sukr1BEWc:{defaultValue:\"$100\",placeholder:\"FREE\",title:\"Product discounted price\",type:ControlType.String},oTbF9Fdzc:{defaultValue:true,title:'Show \"#1 Doctor-Recommended\" badge',type:ControlType.Boolean},ZNC1BikxB:{defaultValue:false,title:\"Show ribbon\",type:ControlType.Boolean},ZNEMkW2iP:_HelpersRibbonControls?.[\"variant\"]&&{..._HelpersRibbonControls[\"variant\"],defaultValue:\"SliDVpKfZ\",description:undefined,hidden:undefined,title:\"Ribbon variant\"},sgEZw0D7T:{title:\"Calenar Link - Apple\",type:ControlType.Link},N8s5lsld2:{title:\"Calendar Link - Google Calendar\",type:ControlType.Link},GmeBA0K1G:{title:\"Calendar Link - Microsoft 365\",type:ControlType.Link},sH3ytnAzc:{title:\"Calendar Link - Outlook.com\",type:ControlType.Link},U8QkZIweD:{defaultValue:true,title:\"Show eyebrow\",type:ControlType.Boolean},xedyrjl9w:_HelpersEyebrowControls?.[\"variant\"]&&{..._HelpersEyebrowControls[\"variant\"],defaultValue:\"GPyHpbxIi\",description:undefined,hidden:undefined,title:\"Eyebrow type\"},eCFegX6m9:{defaultValue:\"16\",displayTextArea:false,title:\"Calendar Icon Day\",type:ControlType.String},sic4pOCRt:{defaultValue:\"Tue\",displayTextArea:false,title:\"Calendar Icon Weekday Name\",type:ControlType.String},evib3eTAe:{defaultValue:\"October 8 \u2014 9\",displayTextArea:false,title:\"Date\",type:ControlType.String}});addFonts(FramerhYzKl9ldb,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Suisse Intl Medium \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/nXLCYCAlQK0J8QVs36H77AnIbEU.woff2\"},{family:\"Suisse Intl Regular \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/9PJbYrizg1dRV5eM1QcpSTx13GI.woff2\"},{family:\"GT America Mono Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZpBSyPjkoxCpbrFAuqu0dE2k.woff\"}]},..._HelpersEyebrowFonts,..._HelpersEventAddToCalendarFonts,..._HelpersIconsFonts,...FormFonts,...ButtonPrimaryButtonFonts,..._Helpers1DoctorRecommendedFonts,...VideoFonts,..._HelpersRibbonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhYzKl9ldb\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"AmibkUlLO\\\":\\\"klaviyoListID\\\",\\\"VI3Hzd8uf\\\":\\\"headline\\\",\\\"HZEIgnAcn\\\":\\\"showDescription\\\",\\\"TfbTfw4wC\\\":\\\"description\\\",\\\"aMLdhMPnV\\\":\\\"showBenefitsSection\\\",\\\"LuFC6OYpm\\\":\\\"benefit1\\\",\\\"H1F8zYNQb\\\":\\\"benefit2\\\",\\\"ICX7tprbW\\\":\\\"showBenefit3\\\",\\\"B7GugmwuS\\\":\\\"benefit3\\\",\\\"eV_SB1g2n\\\":\\\"showBenefit4\\\",\\\"e62xWpUhF\\\":\\\"benefit4\\\",\\\"r9gqhHlkd\\\":\\\"video\\\",\\\"sZ8RSPBGF\\\":\\\"videoPosterImage\\\",\\\"TZYv2IKaj\\\":\\\"productName\\\",\\\"cffX5tKGI\\\":\\\"productImage\\\",\\\"qGV_Yppfo\\\":\\\"buttonType\\\",\\\"tMdeAipDl\\\":\\\"cTALink\\\",\\\"BSNiUaTqZ\\\":\\\"cTALabel\\\",\\\"llJqYDJnl\\\":\\\"productBasePrice\\\",\\\"sukr1BEWc\\\":\\\"productDiscountedPrice\\\",\\\"oTbF9Fdzc\\\":\\\"show1DoctorRecommendedBadge\\\",\\\"ZNC1BikxB\\\":\\\"showRibbon\\\",\\\"ZNEMkW2iP\\\":\\\"ribbonVariant\\\",\\\"sgEZw0D7T\\\":\\\"calenarLinkApple\\\",\\\"N8s5lsld2\\\":\\\"calendarLinkGoogleCalendar\\\",\\\"GmeBA0K1G\\\":\\\"calendarLinkMicrosoft365\\\",\\\"sH3ytnAzc\\\":\\\"calendarLinkOutlookCom\\\",\\\"U8QkZIweD\\\":\\\"showEyebrow\\\",\\\"xedyrjl9w\\\":\\\"eyebrowType\\\",\\\"eCFegX6m9\\\":\\\"calendarIconDay\\\",\\\"sic4pOCRt\\\":\\\"calendarIconWeekdayName\\\",\\\"evib3eTAe\\\":\\\"date\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"637\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QowTyigCo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aRTd2l5R4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nS5emHlTw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mQcL7msgf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CIOjWFAIf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hYzKl9ldb.map"],
  "mappings": "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",
  "names": ["FieldType", "hasMinMaxStep", "type", "VERSION", "Form", "withCSS", "klaviyoList", "redirectAs", "link", "inputs", "button", "styles", "extraHeaders", "extraFields", "style", "onSubmit", "isError", "setError", "ye", "isLoading", "setLoading", "getFocus", "setFocus", "labelPaddingPerSide", "labelPaddingTop", "labelPaddingRight", "labelPaddingBottom", "labelPaddingLeft", "labelPadding", "labelBorderRadius", "labelBorderObject", "labelShadowObject", "inputPaddingPerSide", "inputPaddingTop", "inputPaddingRight", "inputPaddingBottom", "inputPaddingLeft", "inputPadding", "inputBorderRadius", "inputBorderObject", "inputFocusObject", "inputShadowObject", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "buttonBorderRadius", "buttonBorderObject", "buttonShadowObject", "labelPaddingValue", "inputPaddingValue", "buttonPaddingValue", "onSuccess", "handleChange", "te", "event", "handleFocus", "input", "handleBlur", "handleSubmit", "url", "headers", "key", "value", "formData", "bodyObject", "name", "requestOptions", "response", "statusCode", "data", "error", "formControls", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "p", "getInputSpan", "getButtonSpan", "sum", "baseInput", "u", "motion", "defaultStyle", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "inputElement", "containerStyles", "Spinner", "props", "noButtonStyles", "basePropertyControls", "ControlType", "addPropertyControls", "shadows", "output", "shadow", "Signup_form_v2_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "Frameren__QqDCH", "withCSS", "en_QqDCH_default", "addPropertyControls", "ControlType", "addFonts", "_HelpersIconsFonts", "getFonts", "EuxeZmOqY_default", "_HelpersIconsControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "height", "icon", "id", "label", "link", "showLeadingIcon", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mc27o8Klq", "eocAoiur9", "yxmQewGU3", "jxGWkPdX8", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerDaw1GfU3f", "withCSS", "Daw1GfU3f_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "_HelpersIconsFonts", "getFonts", "EuxeZmOqY_default", "_HelpersIconsControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "height", "icon", "id", "label", "showIcon", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TPbM_4Zh8", "YRFlvnLZa", "TcizxZOAl", "sfQTdyDWE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzxyirk", "args", "scopingClassNames", "cx", "ref1", "pe", "visible", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "css", "FramerQ6MDeJDKd", "withCSS", "Q6MDeJDKd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonPillButtonFonts", "getFonts", "Q6MDeJDKd_default", "_HelpersDropdownMenuDropdownItemFonts", "Daw1GfU3f_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "calenarLinkApple", "calendarIconDay", "calendarIconWeekdayName", "calendarLinkGoogleCalendar", "calendarLinkMicrosoft365", "calendarLinkOutlookCom", "date", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "bdrNQFK0h", "eqpZkyUc9", "GTsw1MWnI", "oB649SysJ", "RpM_2p3dK", "KmsqdbgxI", "ne4HaVmtc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "TPbM_4Zh8izu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "isDisplayed", "ref2", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "l", "ComponentViewportProvider", "AnimatePresence", "Floating", "css", "FramerH4knTZ4f1", "withCSS", "H4knTZ4f1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "_HelpersEyebrowFonts", "getFonts", "roDsM1InP_default", "_HelpersEventAddToCalendarFonts", "H4knTZ4f1_default", "_HelpersIconsFonts", "EuxeZmOqY_default", "FormFonts", "Signup_form_v2_default", "MotionDivWithFX", "withFX", "motion", "RichTextLineClamp11z0vhbq", "withCodeBoundaryForOverrides", "RichText2", "lineClamp1", "ButtonPrimaryButtonFonts", "IGwo2cGgH_default", "ButtonPrimaryButtonAddClassHeroPrimary120jt58WithMappedReactPropsm9okk4", "withMappedReactProps", "addClassHeroPrimary", "IGwo2cGgH_exports", "_Helpers1DoctorRecommendedFonts", "Id0j3LBns_default", "VideoFonts", "Video", "_HelpersRibbonFonts", "en_QqDCH_default", "ButtonPrimaryButtonControls", "getPropertyControls", "_HelpersRibbonControls", "_HelpersEyebrowControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "toImageSrc", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableEnumMap2", "humanReadableVariantMap", "getProps", "benefit1", "benefit2", "benefit3", "benefit4", "buttonType", "calenarLinkApple", "calendarIconDay", "calendarIconWeekdayName", "calendarLinkGoogleCalendar", "calendarLinkMicrosoft365", "calendarLinkOutlookCom", "cTALabel", "cTALink", "date", "description", "eyebrowType", "headline", "height", "id", "klaviyoListID", "productBasePrice", "productDiscountedPrice", "productImage", "productName", "ribbonVariant", "show1DoctorRecommendedBadge", "showBenefit3", "showBenefit4", "showBenefitsSection", "showDescription", "showEyebrow", "showRibbon", "video", "videoPosterImage", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "AmibkUlLO", "VI3Hzd8uf", "HZEIgnAcn", "TfbTfw4wC", "aMLdhMPnV", "LuFC6OYpm", "H1F8zYNQb", "ICX7tprbW", "B7GugmwuS", "eV_SB1g2n", "e62xWpUhF", "r9gqhHlkd", "sZ8RSPBGF", "TZYv2IKaj", "cffX5tKGI", "qGV_Yppfo", "tMdeAipDl", "BSNiUaTqZ", "llJqYDJnl", "sukr1BEWc", "oTbF9Fdzc", "ZNC1BikxB", "ZNEMkW2iP", "sgEZw0D7T", "N8s5lsld2", "GmeBA0K1G", "sH3ytnAzc", "U8QkZIweD", "xedyrjl9w", "eCFegX6m9", "sic4pOCRt", "evib3eTAe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmittxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "visible1", "isDisplayed4", "value1", "ref1", "ref2", "visible2", "isDisplayed5", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "l", "AnimatePresence", "Floating", "css", "FramerhYzKl9ldb", "withCSS", "hYzKl9ldb_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
