@latte-macchiat-io/latte-vanilla-components 0.0.174 → 0.0.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/index.cjs +1 -0
- package/dist/css/index.js +34 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +3195 -6144
- package/dist/styles/sprinkles.css.ts +2 -0
- package/dist/theme/contract.css.ts +5 -5
- package/dist/theme.css-CNjMk-g_.cjs +1 -0
- package/dist/theme.css-Dj6kL9o0.js +3020 -0
- package/dist/types/css/index.d.ts +28 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/styles/mediaqueries.d.ts +16 -0
- package/dist/types/styles/sprinkles.css.d.ts +3423 -0
- package/dist/types/theme/baseThemeValues.d.ts +158 -0
- package/dist/types/theme/contract.css.d.ts +79 -0
- package/dist/types/theme/index.d.ts +3 -0
- package/dist/types/theme/utils.d.ts +86 -0
- package/package.json +22 -8
- package/src/assets/styles/default-theme.ts +312 -0
- package/src/components/Button/stories.ts +127 -0
- package/src/components/Columns/stories.ts +35 -0
- package/src/components/Icon/path.ts +36 -0
- package/src/components/Icon/stories.ts +29 -0
- package/src/components/Main/stories.ts +33 -0
- package/src/components/Section/stories.ts +64 -0
- package/src/css/index.ts +33 -0
- package/src/index.ts +96 -0
- package/src/styles/mediaqueries.ts +17 -0
- package/src/styles/sprinkles.css.ts +2 -0
- package/src/theme/baseThemeValues.ts +160 -0
- package/src/theme/contract.css.ts +5 -5
- package/src/theme/index.ts +6 -0
- package/src/theme/utils.ts +76 -0
- package/src/themes/dark.ts +3 -0
- package/src/themes/index.ts +5 -0
- package/src/themes/light.ts +3 -0
- package/src/types/theme.ts +295 -0
- package/src/types/withClassName.ts +3 -0
- package/src/utils/cookie.ts +24 -0
- package/src/utils/deep-merge-objects.ts +15 -0
- package/src/utils/use-breakpoint-key.ts +30 -0
- package/src/utils/use-window-size.ts +37 -0
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../theme.css-CNjMk-g_.cjs");exports.actionsRecipe=e.actionsRecipe;exports.buttonRecipe=e.buttonRecipe;exports.carouselRecipe=e.carouselRecipe;exports.columnsRecipe=e.columnsRecipe;exports.consentRecipe=e.consentRecipe;exports.createDarkTheme=e.createDarkTheme;exports.createLightTheme=e.createLightTheme;exports.footerRecipe=e.footerRecipe;exports.formRecipe=e.formRecipe;exports.headerRecipe=e.headerRecipe;exports.iconRecipe=e.iconRecipe;exports.inputRecipe=e.inputRecipe;exports.keyNumberRecipe=e.keyNumberRecipe;exports.labelRecipe=e.labelRecipe;exports.languageSwitcherRecipe=e.languageSwitcherRecipe;exports.logoRecipe=e.logoRecipe;exports.mainRecipe=e.mainRecipe;exports.modalContentRecipe=e.modalContentRecipe;exports.modalRecipe=e.modalRecipe;exports.navLegalRecipe=e.navLegalRecipe;exports.navRecipe=e.navRecipe;exports.navSocialRecipe=e.navSocialRecipe;exports.responsiveProperties=e.responsiveProperties;exports.rowRecipe=e.rowRecipe;exports.sectionRecipe=e.sectionRecipe;exports.sprinkles=e.sprinkles;exports.textFieldRecipe=e.textFieldRecipe;exports.textareaRecipe=e.textareaRecipe;exports.themeContract=e.themeContract;exports.videoFullWidthRecipe=e.videoFullWidthRecipe;exports.videoRecipe=e.videoRecipe;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import { b as i, d as s, e as c, f as p, g as R, a as o, c as t, h as n, i as r, o as l, p as m, k as d, q as h, l as u, u as v, v as g, w as b, y as f, x as k, A as x, z as w, B as C, r as y, j as D, C as F, s as L, m as S, n as T, t as j, E as q, D as z } from "../theme.css-Dj6kL9o0.js";
|
2
|
+
export {
|
3
|
+
i as actionsRecipe,
|
4
|
+
s as buttonRecipe,
|
5
|
+
c as carouselRecipe,
|
6
|
+
p as columnsRecipe,
|
7
|
+
R as consentRecipe,
|
8
|
+
o as createDarkTheme,
|
9
|
+
t as createLightTheme,
|
10
|
+
n as footerRecipe,
|
11
|
+
r as formRecipe,
|
12
|
+
l as headerRecipe,
|
13
|
+
m as iconRecipe,
|
14
|
+
d as inputRecipe,
|
15
|
+
h as keyNumberRecipe,
|
16
|
+
u as labelRecipe,
|
17
|
+
v as languageSwitcherRecipe,
|
18
|
+
g as logoRecipe,
|
19
|
+
b as mainRecipe,
|
20
|
+
f as modalContentRecipe,
|
21
|
+
k as modalRecipe,
|
22
|
+
x as navLegalRecipe,
|
23
|
+
w as navRecipe,
|
24
|
+
C as navSocialRecipe,
|
25
|
+
y as responsiveProperties,
|
26
|
+
D as rowRecipe,
|
27
|
+
F as sectionRecipe,
|
28
|
+
L as sprinkles,
|
29
|
+
S as textFieldRecipe,
|
30
|
+
T as textareaRecipe,
|
31
|
+
j as themeContract,
|
32
|
+
q as videoFullWidthRecipe,
|
33
|
+
z as videoRecipe
|
34
|
+
};
|
package/dist/index.cjs.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const Ge=require("@vanilla-extract/sprinkles"),x=require("@vanilla-extract/css"),p=require("react/jsx-runtime"),te=require("react"),le=require("@vanilla-extract/recipes");function vt(t){const a=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const o in t)if(o!=="default"){const l=Object.getOwnPropertyDescriptor(t,o);Object.defineProperty(a,o,l.get?l:{enumerable:!0,get:()=>t[o]})}}return a.default=t,Object.freeze(a)}const ke=vt(te),e=x.createThemeContract({colors:{primary:null,secondary:null,accent:null,background:null,surface:null,text:null,textSecondary:null,textLight:null,border:null,error:null,warning:null,success:null,info:null},space:{none:null,xs:null,sm:null,md:null,lg:null,xl:null,"2xl":null},radii:{none:null,sm:null,md:null,lg:null,xl:null,full:null},fonts:{body:null,heading:null,mono:null},fontSizes:{xs:null,sm:null,md:null,lg:null,xl:null,"2xl":null,"3xl":null,"4xl":null},fontWeights:{light:null,normal:null,medium:null,semibold:null,bold:null},lineHeights:{tight:null,normal:null,relaxed:null},shadows:{none:null,sm:null,md:null,lg:null,xl:null},maxWidth:null,section:{paddingTop:null,paddingBottom:null},header:{height:null},footer:{height:null}}),pe={colors:{primary:"#FF7377",secondary:"#FCEFE6",accent:"#FF7377",background:"#ffffff",surface:"#f8f9fa",text:"#000000",textSecondary:"#666666",textLight:"#f5f5f5",border:"#e1e1e1",error:"#dc3545",warning:"#ffc107",success:"#28a745",info:"#17a2b8"},space:{none:"0px",xs:"4px",sm:"8px",md:"16px",lg:"32px",xl:"64px","2xl":"128px"},radii:{none:"0px",sm:"4px",md:"8px",lg:"16px",xl:"24px",full:"9999px"},fonts:{body:'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',heading:'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',mono:'ui-monospace, SFMono-Regular, "SF Mono", Monaco, Consolas, monospace'},fontSizes:{xs:"12px",sm:"14px",md:"16px",lg:"18px",xl:"20px","2xl":"24px","3xl":"32px","4xl":"40px"},fontWeights:{light:"300",normal:"400",medium:"500",semibold:"600",bold:"700"},lineHeights:{tight:"1.2",normal:"1.5",relaxed:"1.75"},shadows:{none:"none",sm:"0 1px 2px rgba(0, 0, 0, 0.05)",md:"0 4px 6px rgba(0, 0, 0, 0.1)",lg:"0 10px 15px rgba(0, 0, 0, 0.1)",xl:"0 20px 25px rgba(0, 0, 0, 0.1)"},maxWidth:"1500px",section:{paddingTop:"48px",paddingBottom:"48px"},header:{height:"80px"},footer:{height:"80px"}},be={colors:{primary:"#1a73e8",secondary:"#374151",accent:"#60a5fa",background:"#111827",surface:"#1f2937",text:"#ffffff",textSecondary:"#9ca3af",textLight:"#f3f4f6",border:"#374151",error:"#ef4444",warning:"#f59e0b",success:"#10b981",info:"#3b82f6"},space:{none:"0px",xs:"4px",sm:"8px",md:"16px",lg:"32px",xl:"64px","2xl":"128px"},radii:{none:"0px",sm:"4px",md:"8px",lg:"16px",xl:"24px",full:"9999px"},fonts:{body:'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',heading:'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',mono:'ui-monospace, SFMono-Regular, "SF Mono", Monaco, Consolas, monospace'},fontSizes:{xs:"12px",sm:"14px",md:"16px",lg:"18px",xl:"20px","2xl":"24px","3xl":"32px","4xl":"40px"},fontWeights:{light:"300",normal:"400",medium:"500",semibold:"600",bold:"700"},lineHeights:{tight:"1.2",normal:"1.5",relaxed:"1.75"},shadows:{none:"none",sm:"0 1px 2px rgba(0, 0, 0, 0.1)",md:"0 4px 6px rgba(0, 0, 0, 0.15)",lg:"0 10px 15px rgba(0, 0, 0, 0.2)",xl:"0 20px 25px rgba(0, 0, 0, 0.25)"},maxWidth:"1500px",section:{paddingTop:"48px",paddingBottom:"48px"},header:{height:"80px"},footer:{height:"80px"}},wt=t=>({...pe,...t,colors:{...pe.colors,...t.colors},space:{...pe.space,...t.space},radii:{...pe.radii,...t.radii},fonts:{...pe.fonts,...t.fonts},fontSizes:{...pe.fontSizes,...t.fontSizes},lineHeights:{...pe.lineHeights,...t.lineHeights},shadows:{...pe.shadows,...t.shadows}}),St=()=>e,Ct=(t=!1)=>t?be:pe,jt=()=>{const t=document.documentElement,o=t.getAttribute("data-theme")==="dark"?null:"dark";return o?t.setAttribute("data-theme",o):t.removeAttribute("data-theme"),o==="dark"},Rt=t=>{const a=document.documentElement;t==="dark"?a.setAttribute("data-theme","dark"):a.removeAttribute("data-theme")},zt=()=>typeof window>"u"?"light":document.documentElement.getAttribute("data-theme")==="dark"?"dark":"light",we={mobile:0,sm:640,md:768,lg:1024,xl:1280,"2xl":1536},ae={mobile:`screen and (min-width: ${we.mobile}px)`,sm:`screen and (min-width: ${we.sm}px)`,md:`screen and (min-width: ${we.md}px)`,lg:`screen and (min-width: ${we.lg}px)`,xl:`screen and (min-width: ${we.xl}px)`,"2xl":`screen and (min-width: ${we["2xl"]}px)`},kt=Ge.defineProperties({conditions:{mobile:{},sm:{"@media":ae.sm},md:{"@media":ae.md},lg:{"@media":ae.lg},xl:{"@media":ae.xl},"2xl":{"@media":ae["2xl"]}},defaultCondition:"mobile",properties:{padding:e.space,paddingTop:e.space,paddingBottom:e.space,paddingLeft:e.space,paddingRight:e.space,margin:e.space,marginTop:e.space,marginBottom:e.space,marginLeft:e.space,marginRight:e.space,gap:e.space,display:["none","block","inline","inline-block","flex","inline-flex","grid","inline-grid"],flexDirection:["row","column","row-reverse","column-reverse"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],flexWrap:["nowrap","wrap","wrap-reverse"],flex:["1","auto","initial","none"],width:["auto","100%","50%","33.333333%","25%","fit-content","min-content","max-content"],height:["auto","100%","100vh","fit-content","min-content","max-content"],minWidth:["0","100%","fit-content","min-content","max-content"],maxWidth:[e.maxWidth],minHeight:["0","100%","100vh"],position:["static","relative","absolute","fixed","sticky"],top:e.space,bottom:e.space,left:e.space,right:e.space,zIndex:[0,10,20,30,40,50],fontSize:e.fontSizes,fontFamily:e.fonts,lineHeight:e.lineHeights,textAlign:["left","center","right","justify"],fontWeight:["normal","bold","100","200","300","400","500","600","700","800","900"],color:e.colors,backgroundColor:e.colors,borderRadius:e.radii,borderWidth:["0","1px","2px","4px"],borderStyle:["none","solid","dashed","dotted"],borderColor:e.colors,boxShadow:e.shadows,opacity:["0","0.25","0.5","0.75","1"],overflow:["visible","hidden","scroll","auto"],overflowX:["visible","hidden","scroll","auto"],overflowY:["visible","hidden","scroll","auto"]}}),ce=Ge.createSprinkles(kt);function Ke(t){var a,o,l="";if(typeof t=="string"||typeof t=="number")l+=t;else if(typeof t=="object")if(Array.isArray(t)){var n=t.length;for(a=0;a<n;a++)t[a]&&(o=Ke(t[a]))&&(l&&(l+=" "),l+=o)}else for(o in t)t[o]&&(l&&(l+=" "),l+=o);return l}function re(){for(var t,a,o=0,l="",n=arguments.length;o<n;o++)(t=arguments[o])&&(a=Ke(t))&&(l&&(l+=" "),l+=a);return l}const Vt=le.recipe({base:{display:"inline-flex",alignItems:"center",justifyContent:"center",padding:e.space.md,borderRadius:e.radii.md,border:"none",cursor:"pointer",fontFamily:e.fonts.body,fontSize:e.fontSizes.md,fontWeight:"500",lineHeight:e.lineHeights.tight,textDecoration:"none",transition:"all 0.2s ease-in-out",outline:"none",":hover":{transform:"translateY(-1px)",boxShadow:e.shadows.md},":active":{transform:"translateY(0)"},":focus-visible":{outline:"2px solid",outlineColor:e.colors.primary,outlineOffset:"2px"},":disabled":{opacity:"0.5",cursor:"not-allowed",transform:"none",boxShadow:"none"}},variants:{variant:{primary:{backgroundColor:e.colors.primary,color:e.colors.background,":hover":{backgroundColor:e.colors.accent}},secondary:{backgroundColor:e.colors.secondary,color:e.colors.text,":hover":{backgroundColor:e.colors.surface}},outline:{backgroundColor:"transparent",color:e.colors.text,border:`1px solid ${e.colors.border}`,":hover":{backgroundColor:e.colors.surface,borderColor:e.colors.primary}},ghost:{backgroundColor:"transparent",color:e.colors.text,":hover":{backgroundColor:e.colors.surface}},danger:{backgroundColor:e.colors.error,color:e.colors.background,":hover":{opacity:"0.9"}}},size:{sm:{padding:`${e.space.xs} ${e.space.sm}`,fontSize:e.fontSizes.sm,borderRadius:e.radii.sm},md:{padding:`${e.space.sm} ${e.space.md}`,fontSize:e.fontSizes.md,borderRadius:e.radii.md},lg:{padding:`${e.space.md} ${e.space.lg}`,fontSize:e.fontSizes.lg,borderRadius:e.radii.lg}},fullWidth:{true:{width:"100%"}}},defaultVariants:{variant:"primary",size:"md"}}),Be=te.forwardRef(({variant:t,size:a,fullWidth:o,isPending:l=!1,disabled:n,css:u,className:f,children:d,margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J,...M},ne)=>p.jsx("button",{ref:ne,className:re(Vt({variant:t,size:a,fullWidth:o}),ce({margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J}),u,f),disabled:n||l,...M,children:l?"Loading...":d}));Be.displayName="Button";const Nt=x.style({width:"100%",display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"flex-start",paddingTop:e.section.paddingTop,paddingBottom:e.section.paddingBottom,paddingLeft:e.space.md,paddingRight:e.space.md,maxWidth:e.maxWidth,margin:"0 auto",position:"relative","@media":{"screen and (min-width: 768px)":{paddingLeft:e.space.lg,paddingRight:e.space.lg},"screen and (min-width: 1024px)":{paddingLeft:e.space.xl,paddingRight:e.space.xl}}}),It=le.recipe({base:Nt,variants:{align:{left:{textAlign:"left",alignItems:"flex-start"},center:{textAlign:"center",alignItems:"center"},right:{textAlign:"right",alignItems:"flex-end"}},isDark:{true:{backgroundColor:e.colors.surface,color:e.colors.textLight},false:{backgroundColor:e.colors.background,color:e.colors.text}},isFullHeight:{true:{minHeight:"100vh",justifyContent:"center"},false:{minHeight:"auto",justifyContent:"flex-start"}},spacing:{none:{paddingTop:"0",paddingBottom:"0"},sm:{paddingTop:e.space.md,paddingBottom:e.space.md},md:{paddingTop:e.section.paddingTop,paddingBottom:e.section.paddingBottom},lg:{paddingTop:e.space.xl,paddingBottom:e.space.xl},xl:{paddingTop:e.space["2xl"],paddingBottom:e.space["2xl"]}}},defaultVariants:{align:"left",isDark:!1,isFullHeight:!1,spacing:"md"}}),Tt=te.forwardRef(({children:t,align:a,isDark:o,isFullHeight:l,spacing:n,as:u="section",css:f,className:d,margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J,...M},ne)=>p.jsx(u,{ref:ne,className:re(It({align:a,isDark:o,isFullHeight:l,spacing:n}),ce({margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J}),f,d),...M,children:t})),Et=x.style({display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"flex-start",width:"100%",minHeight:"100vh",maxWidth:e.maxWidth,margin:"0 auto",paddingTop:e.header.height,paddingBottom:e.footer.height,backgroundColor:e.colors.background,color:e.colors.text,fontFamily:e.fonts.body}),Wt=le.recipe({base:Et,variants:{centered:{true:{justifyContent:"center",alignItems:"center"},false:{justifyContent:"flex-start",alignItems:"stretch"}},fullWidth:{true:{maxWidth:"100%"},false:{maxWidth:e.maxWidth}},noPadding:{true:{paddingTop:"0",paddingBottom:"0"},false:{paddingTop:e.header.height,paddingBottom:e.footer.height}}},defaultVariants:{centered:!1,fullWidth:!1,noPadding:!1}}),Ze=te.forwardRef(({children:t,centered:a,fullWidth:o,noPadding:l,as:n="main",css:u,className:f,margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N,...J},M)=>p.jsx(n,{ref:M,className:re(Wt({centered:a,fullWidth:o,noPadding:l}),ce({margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N}),u,f),...J,children:t}));Ze.displayName="Main";const Bt=x.style({display:"flex",alignItems:"center",justifyContent:"space-between",width:"100%",height:e.header.height,backgroundColor:e.colors.background,color:e.colors.text,zIndex:30,paddingLeft:e.space.md,paddingRight:e.space.md,paddingTop:e.space.sm,paddingBottom:e.space.sm,gap:e.space.md,"@media":{[ae.md]:{paddingLeft:e.space.lg,paddingRight:e.space.lg,gap:e.space.lg},[ae.lg]:{paddingLeft:e.space.xl,paddingRight:e.space.xl,gap:e.space.xl}}}),Ft=le.recipe({base:Bt,variants:{variant:{default:{backgroundColor:e.colors.background,borderBottom:`1px solid ${e.colors.border}`},transparent:{backgroundColor:"transparent",borderBottom:"none"},dark:{backgroundColor:e.colors.surface,color:e.colors.textLight}},size:{sm:{height:"60px",paddingTop:e.space.xs,paddingBottom:e.space.xs},md:{height:e.header.height,paddingTop:e.space.sm,paddingBottom:e.space.sm},lg:{height:"100px",paddingTop:e.space.md,paddingBottom:e.space.md}}},defaultVariants:{variant:"default",size:"md"}}),At=x.style({height:e.header.height,width:"100%"}),Je=te.forwardRef(({children:t,position:a,variant:o,size:l,isFixed:n,hideToggleNav:u,childrenOverlay:f,displayToggleNavOnDesktop:d,as:g="header",css:b,className:C,margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,gap:P,display:Q,flexDirection:ee,justifyContent:r,flexWrap:i,flex:s,width:c,height:m,minWidth:h,maxWidth:k,minHeight:R,zIndex:v,fontSize:w,fontFamily:S,lineHeight:$,textAlign:D,fontWeight:U,color:_,backgroundColor:B,borderRadius:V,borderWidth:Y,borderStyle:z,borderColor:q,boxShadow:F,opacity:A,overflow:X,overflowX:G,overflowY:Z,...N},J)=>{const[M,ne]=te.useState(!1),ie=a||(n?"fixed":"relative");return p.jsxs(p.Fragment,{children:[p.jsxs(g,{ref:J,className:re(Ft({variant:o,size:l}),ce({margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,gap:P,display:Q,flexDirection:ee,justifyContent:r,flexWrap:i,flex:s,width:c,height:m,minWidth:h,maxWidth:k,minHeight:R,zIndex:v,fontSize:w,fontFamily:S,lineHeight:$,textAlign:D,fontWeight:U,color:_,backgroundColor:B,borderRadius:V,borderWidth:Y,borderStyle:z,borderColor:q,boxShadow:F,opacity:A,overflow:X,overflowX:G,overflowY:Z}),b,C),...N,children:[f&&p.jsx("div",{className:re("header-overlay",M&&"header-overlay--open"),children:f}),t,!u&&p.jsxs("button",{type:"button",className:"header-nav-toggle",onClick:()=>ne(!M),"aria-expanded":M,"aria-label":"Toggle navigation",children:[p.jsx("span",{className:"sr-only",children:"Toggle navigation"}),p.jsxs("div",{className:`hamburger ${M?"hamburger--open":""}`,children:[p.jsx("span",{}),p.jsx("span",{}),p.jsx("span",{})]})]})]}),(ie==="fixed"||n)&&p.jsx("div",{className:At})]})});Je.displayName="Header";const Ot=x.style({display:"flex",alignItems:"center",justifyContent:"space-between",flexDirection:"column",backgroundColor:e.colors.background,color:e.colors.text,zIndex:20,paddingLeft:e.space.md,paddingRight:e.space.md,paddingTop:e.space.lg,paddingBottom:e.space.lg,gap:e.space.md,fontSize:e.fontSizes.sm,borderTop:`1px solid ${e.colors.border}`,"@media":{[ae.md]:{paddingLeft:e.space.lg,paddingRight:e.space.lg,gap:e.space.lg},[ae.lg]:{flexDirection:"row",paddingLeft:e.space.xl,paddingRight:e.space.xl,gap:e.space.xl}}}),$t=le.recipe({base:Ot,variants:{variant:{default:{backgroundColor:e.colors.background,borderTop:`1px solid ${e.colors.border}`},dark:{backgroundColor:e.colors.surface,color:e.colors.textLight,borderTop:`1px solid ${e.colors.border}`},minimal:{backgroundColor:"transparent",borderTop:"none"}},size:{sm:{paddingTop:e.space.md,paddingBottom:e.space.md,fontSize:e.fontSizes.xs},md:{paddingTop:e.space.lg,paddingBottom:e.space.lg,fontSize:e.fontSizes.sm},lg:{paddingTop:e.space.xl,paddingBottom:e.space.xl,fontSize:e.fontSizes.md}},layout:{stacked:{flexDirection:"column",textAlign:"center"},horizontal:{"@media":{[ae.sm]:{flexDirection:"row",textAlign:"left"}}}}},defaultVariants:{variant:"default",size:"md",layout:"horizontal"}}),Qe=te.forwardRef(({children:t,variant:a,size:o,layout:l,as:n="footer",css:u,className:f,margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N,...J},M)=>p.jsx(n,{ref:M,className:re($t({variant:a,size:o,layout:l}),ce({margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N}),u,f),...J,children:t}));Qe.displayName="Footer";const Dt=x.style({display:"flex",alignItems:"center",gap:e.space.md,flexDirection:"column","@media":{[ae.md]:{flexDirection:"row",gap:e.space.lg},[ae.lg]:{gap:e.space.xl}}}),Lt=le.recipe({base:Dt,variants:{orientation:{horizontal:{flexDirection:"row",alignItems:"center"},vertical:{flexDirection:"column",alignItems:"flex-start"},responsive:{flexDirection:"column",alignItems:"flex-start","@media":{[ae.md]:{flexDirection:"row",alignItems:"center"}}}},variant:{default:{gap:e.space.md},compact:{gap:e.space.sm},spacious:{gap:e.space.lg}},justify:{start:{justifyContent:"flex-start"},center:{justifyContent:"center"},end:{justifyContent:"flex-end"},between:{justifyContent:"space-between"},around:{justifyContent:"space-around"}}},defaultVariants:{orientation:"responsive",variant:"default",justify:"start"}}),et=te.forwardRef(({children:t,orientation:a,variant:o,justify:l,as:n="nav",css:u,className:f,margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N,...J},M)=>p.jsx(n,{ref:M,className:re(Lt({orientation:a,variant:o,justify:l}),ce({margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N}),u,f),...J,children:t}));et.displayName="Nav";const Mt=x.style({display:"inline-block",verticalAlign:"middle",fill:"currentColor",flexShrink:0,transition:"all 0.3s ease-in-out"});x.style({transition:"fill 0.3s ease-in-out"});const Ht=le.recipe({base:Mt,variants:{size:{xs:{width:"12px",height:"12px"},sm:{width:"16px",height:"16px"},md:{width:"24px",height:"24px"},lg:{width:"32px",height:"32px"},xl:{width:"48px",height:"48px"},"2xl":{width:"64px",height:"64px"}},interactive:{true:{cursor:"pointer",":hover":{transform:"scale(1.1)",opacity:.8},":active":{transform:"scale(0.95)"}},false:{}}},defaultVariants:{size:"md",interactive:!1}}),Pt={caret:"M8.12 9.29 12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7a.9959.9959 0 0 1 0-1.41c.39-.38 1.03-.39 1.42 0",close:"M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7a.996.996 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4",arrowBack:"M19 11H7.83l4.88-4.88c.39-.39.39-1.03 0-1.42a.996.996 0 0 0-1.41 0l-6.59 6.59c-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L7.83 13H19c.55 0 1-.45 1-1s-.45-1-1-1",arrowForward:"M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42s1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6a.996.996 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1",play:"M8 5v14l11-7z",pause:"M6 19h4V5H6zm8-14v14h4V5z",volumeMute:"M7 9v6h4l5 5V4l-5 5z",volumeUp:"M3 9v6h4l5 5V4L7 9zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02M14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77",socialFacebook:"M 22.2816,10.9924 C 22.2816,4.92145 17.3602,0 11.2892,0 5.21832,0 0.296875,4.92145 0.296875,10.9924 c 0,5.4865 4.019725,10.0342 9.274805,10.8588 V 14.1698 H 6.78065 V 10.9924 H 9.57168 V 8.57061 c 0,-2.75496 1.64112,-4.27672 4.15202,-4.27672 1.2023,0 2.4606,0.2147 2.4606,0.2147 v 2.70515 h -1.3861 c -1.3654,0 -1.7914,0.8474 -1.7914,1.71756 v 2.0611 h 3.0487 l -0.4874,3.1774 h -2.5613 v 7.6814 c 5.2551,-0.8246 9.2748,-5.3723 9.2748,-10.8588 z",socialInstagram:"M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z",socialPinterest:"M9.04 21.54c.96.29 1.93.46 2.96.46a10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12c0 4.25 2.67 7.9 6.44 9.34-.09-.78-.18-2.07 0-2.96l1.15-4.94s-.29-.58-.29-1.5c0-1.38.86-2.41 1.84-2.41.86 0 1.26.63 1.26 1.44 0 .86-.57 2.09-.86 3.27-.17.98.52 1.84 1.52 1.84 1.78 0 3.16-1.9 3.16-4.58 0-2.4-1.72-4.04-4.19-4.04-2.82 0-4.48 2.1-4.48 4.31 0 .86.28 1.73.74 2.3.09.06.09.14.06.29l-.29 1.09c0 .17-.11.23-.28.11-1.28-.56-2.02-2.38-2.02-3.85 0-3.16 2.24-6.03 6.56-6.03 3.44 0 6.12 2.47 6.12 5.75 0 3.44-2.13 6.2-5.18 6.2-.97 0-1.92-.52-2.26-1.13l-.67 2.37c-.23.86-.86 2.01-1.29 2.7v-.03z",socialLinkedIn:"M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z",socialSpotify:"",socialTiktok:"M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2Zm-3.281,8.725h0c-.109.011-.219.016-.328.017A3.571,3.571,0,0,1,14.4,9.129v5.493a4.061,4.061,0,1,1-4.06-4.06c.085,0,.167.008.251.013v2a2.067,2.067,0,1,0-.251,4.119A2.123,2.123,0,0,0,12.5,14.649l.02-9.331h1.914A3.564,3.564,0,0,0,17.719,8.5Z",socialX:"M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z",socialYoutube:"M10 15l5.19-3L10 9v6m11.56-7.83c.13.47.22 1.1.28 1.9.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83-.25.9-.83 1.48-1.73 1.73-.47.13-1.33.22-2.65.28-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44-.9-.25-1.48-.83-1.73-1.73-.13-.47-.22-1.1-.28-1.9-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83.25-.9.83-1.48 1.73-1.73.47-.13 1.33-.22 2.65-.28 1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44.9.25 1.48.83 1.73 1.73z"},ve=te.forwardRef(({icon:t,iconPath:a,size:o,color:l,customSize:n,customColor:u,interactive:f,viewBox:d="0 0 24 24",css:g,className:b,margin:C,marginTop:I,marginBottom:H,marginLeft:T,marginRight:j,padding:L,paddingTop:E,paddingBottom:y,paddingLeft:W,paddingRight:O,gap:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,position:R,top:v,bottom:w,left:S,right:$,zIndex:D,fontSize:U,fontFamily:_,lineHeight:B,textAlign:V,fontWeight:Y,backgroundColor:z,borderRadius:q,borderWidth:F,borderStyle:A,borderColor:X,boxShadow:G,opacity:Z,overflow:N,overflowX:J,overflowY:M,...ne},ie)=>{const se=a||(t?Pt[t]:""),oe=n?{width:`${n}px`,height:`${n}px`}:{},me=u?{fill:u}:{};return p.jsx("svg",{ref:ie,viewBox:d,className:re(Ht({size:n?void 0:o,interactive:f}),ce({margin:C,marginTop:I,marginBottom:H,marginLeft:T,marginRight:j,padding:L,paddingTop:E,paddingBottom:y,paddingLeft:W,paddingRight:O,gap:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,position:R,top:v,bottom:w,left:S,right:$,zIndex:D,fontSize:U,fontFamily:_,lineHeight:B,textAlign:V,fontWeight:Y,backgroundColor:z,borderRadius:q,borderWidth:F,borderStyle:A,borderColor:X,boxShadow:G,opacity:Z,overflow:N,overflowX:J,overflowY:M}),g,b),style:oe,"aria-hidden":!ne["aria-label"]&&!ne["aria-labelledby"],...ne,children:p.jsx("path",{className:a,d:se,style:me})})});ve.displayName="Icon";const Ut=x.keyframes({from:{opacity:"0"},to:{opacity:"1"}}),_t=x.keyframes({from:{opacity:"0",transform:"translate(-50%, -60%) scale(0.95)"},to:{opacity:"1",transform:"translate(-50%, -50%) scale(1)"}}),Yt=x.style({position:"fixed",top:0,left:0,right:0,bottom:0,zIndex:50,backgroundColor:"rgba(0, 0, 0, 0.5)",backdropFilter:"blur(4px)",animation:`${Ut} 0.2s ease-out`,display:"flex",alignItems:"center",justifyContent:"center",padding:e.space.md,overflowY:"auto"}),qt=x.style({position:"relative",backgroundColor:e.colors.background,borderRadius:e.radii.lg,boxShadow:e.shadows.xl,border:`1px solid ${e.colors.border}`,maxHeight:"90vh",maxWidth:"90vw",width:"100%",overflowY:"auto",animation:`${_t} 0.3s ease-out`,"@media":{[ae.sm]:{maxWidth:"500px"},[ae.md]:{maxWidth:"600px"},[ae.lg]:{maxWidth:"800px"}}}),Xt=x.style({position:"absolute",top:e.space.md,right:e.space.md,zIndex:10,display:"flex",alignItems:"center",justifyContent:"center",width:"32px",height:"32px",border:"none",borderRadius:e.radii.full,backgroundColor:e.colors.surface,color:e.colors.text,cursor:"pointer",transition:"all 0.2s ease-in-out"}),Gt=le.recipe({base:Yt,variants:{size:{sm:{},md:{},lg:{},xl:{},full:{padding:0}},centered:{true:{alignItems:"center",justifyContent:"center"},false:{alignItems:"flex-start",justifyContent:"center",paddingTop:"5vh"}}},defaultVariants:{size:"md",centered:!0}}),Kt=le.recipe({base:qt,variants:{size:{sm:{padding:e.space.md,"@media":{[ae.sm]:{maxWidth:"400px"}}},md:{padding:e.space.lg,"@media":{[ae.sm]:{maxWidth:"500px"}}},lg:{padding:e.space.xl,"@media":{[ae.md]:{maxWidth:"700px"}}},xl:{padding:e.space.xl,"@media":{[ae.lg]:{maxWidth:"900px"}}},full:{width:"100vw",height:"100vh",maxWidth:"none",maxHeight:"none",borderRadius:0,padding:e.space.xl}},align:{left:{textAlign:"left"},center:{textAlign:"center"},right:{textAlign:"right"}}},defaultVariants:{size:"md",align:"left"}}),tt=te.forwardRef(({children:t,isOpen:a,onClose:o,showCloseButton:l=!0,closeOnBackdropClick:n=!0,closeOnEscape:u=!0,contentProps:f={},size:d,centered:g,css:b,className:C,margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,gap:P,display:Q,flexDirection:ee,justifyContent:r,flexWrap:i,flex:s,width:c,height:m,minWidth:h,maxWidth:k,minHeight:R,position:v,top:w,bottom:S,left:$,right:D,zIndex:U,fontSize:_,fontFamily:B,lineHeight:V,textAlign:Y,fontWeight:z,color:q,backgroundColor:F,borderRadius:A,borderWidth:X,borderStyle:G,borderColor:Z,boxShadow:N,opacity:J,overflow:M,overflowX:ne,overflowY:ie,...se},oe)=>{const[me,fe]=te.useState(a);te.useEffect(()=>{if(a)fe(!0),document.body.style.overflow="hidden";else{const xe=setTimeout(()=>fe(!1),300);return document.body.style.overflow="",()=>clearTimeout(xe)}},[a]),te.useEffect(()=>{const xe=ue=>{u&&ue.key==="Escape"&&o&&o()};if(a)return document.addEventListener("keydown",xe),()=>document.removeEventListener("keydown",xe)},[a,u,o]);const he=xe=>{n&&xe.target===xe.currentTarget&&o&&o()};return me?p.jsx("div",{ref:oe,className:re(Gt({size:d,centered:g}),ce({margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,gap:P,display:Q,flexDirection:ee,justifyContent:r,flexWrap:i,flex:s,width:c,height:m,minWidth:h,maxWidth:k,minHeight:R,position:v,top:w,bottom:S,left:$,right:D,zIndex:U,fontSize:_,fontFamily:B,lineHeight:V,textAlign:Y,fontWeight:z,color:q,backgroundColor:F,borderRadius:A,borderWidth:X,borderStyle:G,borderColor:Z,boxShadow:N,opacity:J,overflow:M,overflowX:ne,overflowY:ie}),b,C),onClick:he,role:"dialog","aria-modal":"true",...se,children:p.jsxs("div",{className:re(Kt({size:f.size||d,align:f.align}),f.css,f.className),children:[l&&o&&p.jsx("button",{type:"button",className:Xt,onClick:o,"aria-label":"Close modal",children:p.jsx(ve,{icon:"close",size:"sm"})}),t]})}):null});tt.displayName="Modal";const Zt=x.style({display:"inline-block"}),Jt=le.recipe({base:Zt,variants:{size:{xs:{width:"80px",height:"auto"},sm:{width:"120px",height:"auto"},md:{width:"160px",height:"auto"},lg:{width:"200px",height:"auto"},xl:{width:"240px",height:"auto"},auto:{width:"auto",height:"auto"}},variant:{default:{},link:{cursor:"pointer",transition:"all 0.3s ease-in-out",":hover":{opacity:"0.8",transform:"scale(1.05)"},":focus":{outline:"2px solid",outlineColor:e.colors.primary,outlineOffset:"2px",borderRadius:e.radii.sm}}},responsive:{true:{maxWidth:"100%",height:"auto"},false:{}}},defaultVariants:{size:"md",variant:"default",responsive:!0}}),at=te.forwardRef(({children:t,size:a,variant:o,responsive:l,as:n="div",href:u,css:f,className:d,margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J,...M},ne)=>{const ie=u?"link":o;return p.jsx("div",{ref:ne,className:re(Jt({size:a,variant:ie,responsive:l}),ce({margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J}),f,d),...M,children:t})});at.displayName="Logo";const Qt=x.style({display:"flex",flexDirection:"column",alignItems:"flex-start",justifyContent:"flex-start",width:"100%",gap:e.space.md,"@media":{[ae.md]:{flexDirection:"row",alignItems:"stretch",gap:e.space.lg},[ae.lg]:{gap:e.space.xl}}}),ea={1:x.style({"@media":{[ae.md]:{flex:"0 0 100%",maxWidth:"100%"}}}),2:x.style({"@media":{[ae.md]:{flex:"0 0 50%",maxWidth:"50%"}}}),3:x.style({"@media":{[ae.md]:{flex:"0 0 33.333333%",maxWidth:"33.333333%"}}}),4:x.style({"@media":{[ae.md]:{flex:"0 0 25%",maxWidth:"25%"}}}),6:x.style({"@media":{[ae.md]:{flex:"0 0 16.666667%",maxWidth:"16.666667%"}}}),12:x.style({"@media":{[ae.md]:{flex:"0 0 8.333333%",maxWidth:"8.333333%"}}})},ta=le.recipe({base:Qt,variants:{align:{left:{textAlign:"left",justifyContent:"flex-start"},center:{textAlign:"center",justifyContent:"center"},right:{textAlign:"right",justifyContent:"flex-end"}},spacing:{none:{gap:"0"},sm:{gap:e.space.sm,"@media":{[ae.md]:{gap:e.space.md}}},md:{gap:e.space.md,"@media":{[ae.md]:{gap:e.space.lg}}},lg:{gap:e.space.lg,"@media":{[ae.md]:{gap:e.space.xl}}}},wrap:{true:{flexWrap:"wrap"},false:{flexWrap:"nowrap"}},reverse:{true:{"@media":{[ae.md]:{flexDirection:"row-reverse"}}},false:{}},alignItems:{start:{"@media":{[ae.md]:{alignItems:"flex-start"}}},center:{"@media":{[ae.md]:{alignItems:"center"}}},end:{"@media":{[ae.md]:{alignItems:"flex-end"}}},stretch:{"@media":{[ae.md]:{alignItems:"stretch"}}}}},defaultVariants:{align:"left",spacing:"md",wrap:!0,reverse:!1,alignItems:"stretch"}}),nt=te.forwardRef(({children:t,columns:a,align:o,spacing:l,wrap:n,reverse:u,alignItems:f,as:d="div",css:g,className:b,margin:C,marginTop:I,marginBottom:H,marginLeft:T,marginRight:j,padding:L,paddingTop:E,paddingBottom:y,paddingLeft:W,paddingRight:O,gap:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,position:R,top:v,bottom:w,left:S,right:$,zIndex:D,fontSize:U,fontFamily:_,lineHeight:B,textAlign:V,fontWeight:Y,color:z,backgroundColor:q,borderRadius:F,borderWidth:A,borderStyle:X,borderColor:G,boxShadow:Z,opacity:N,overflow:J,overflowX:M,overflowY:ne,...ie},se)=>{const oe=Array.isArray(t)?t:[t];return p.jsx(d,{ref:se,className:re(ta({align:o,spacing:l,wrap:n,reverse:u,alignItems:f}),ce({margin:C,marginTop:I,marginBottom:H,marginLeft:T,marginRight:j,padding:L,paddingTop:E,paddingBottom:y,paddingLeft:W,paddingRight:O,gap:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,position:R,top:v,bottom:w,left:S,right:$,zIndex:D,fontSize:U,fontFamily:_,lineHeight:B,textAlign:V,fontWeight:Y,color:z,backgroundColor:q,borderRadius:F,borderWidth:A,borderStyle:X,borderColor:G,boxShadow:Z,opacity:N,overflow:J,overflowX:M,overflowY:ne}),g,b),...ie,children:a&&a.length>0?oe.map((me,fe)=>p.jsx("div",{className:re(a[fe]&&ea[a[fe]]),children:me},fe)):t})});nt.displayName="Columns";const aa=x.style({display:"flex",flexWrap:"wrap",gap:e.space.sm,paddingTop:e.space.sm,width:"100%","@media":{[ae.lg]:{gap:e.space.md,paddingTop:e.space.md}}}),na=le.recipe({base:aa,variants:{align:{left:{justifyContent:"flex-start",alignItems:"flex-start"},center:{justifyContent:"center",alignItems:"center"},right:{justifyContent:"flex-end",alignItems:"flex-end"}},direction:{row:{flexDirection:"row"},column:{flexDirection:"column"},"row-reverse":{flexDirection:"row-reverse"},"column-reverse":{flexDirection:"column-reverse"}},spacing:{none:{gap:"0",paddingTop:"0"},xs:{gap:e.space.xs,paddingTop:e.space.xs},sm:{gap:e.space.sm,paddingTop:e.space.sm},md:{gap:e.space.md,paddingTop:e.space.md},lg:{gap:e.space.lg,paddingTop:e.space.lg},xl:{gap:e.space.xl,paddingTop:e.space.xl}},wrap:{true:{flexWrap:"wrap"},false:{flexWrap:"nowrap"}},fullWidth:{true:{width:"100%"},false:{width:"auto"}}},defaultVariants:{align:"left",direction:"row",spacing:"sm",wrap:!0,fullWidth:!1}}),it=te.forwardRef(({children:t,align:a,direction:o,spacing:l,wrap:n,fullWidth:u,as:f="div",css:d,className:g,margin:b,marginTop:C,marginBottom:I,marginLeft:H,marginRight:T,padding:j,paddingTop:L,paddingBottom:E,paddingLeft:y,paddingRight:W,gap:O,display:K,flexDirection:P,justifyContent:Q,flexWrap:ee,flex:r,width:i,height:s,minWidth:c,maxWidth:m,minHeight:h,position:k,top:R,bottom:v,left:w,right:S,zIndex:$,fontSize:D,fontFamily:U,lineHeight:_,textAlign:B,fontWeight:V,color:Y,backgroundColor:z,borderRadius:q,borderWidth:F,borderStyle:A,borderColor:X,boxShadow:G,opacity:Z,overflow:N,overflowX:J,overflowY:M,...ne},ie)=>p.jsx(f,{ref:ie,className:re(na({align:a,direction:o,spacing:l,wrap:n,fullWidth:u}),ce({margin:b,marginTop:C,marginBottom:I,marginLeft:H,marginRight:T,padding:j,paddingTop:L,paddingBottom:E,paddingLeft:y,paddingRight:W,gap:O,display:K,flexDirection:P,justifyContent:Q,flexWrap:ee,flex:r,width:i,height:s,minWidth:c,maxWidth:m,minHeight:h,position:k,top:R,bottom:v,left:w,right:S,zIndex:$,fontSize:D,fontFamily:U,lineHeight:_,textAlign:B,fontWeight:V,color:Y,backgroundColor:z,borderRadius:q,borderWidth:F,borderStyle:A,borderColor:X,boxShadow:G,opacity:Z,overflow:N,overflowX:J,overflowY:M}),d,g),...ne,children:t}));it.displayName="Actions";x.keyframes({"0%":{transform:"translateX(0)"},"100%":{transform:"translateX(var(--slide-offset))"}});const ia=x.style({position:"relative",overflow:"hidden",width:"100%"}),oa=x.style({width:"100%",position:"relative"}),sa=x.style({display:"flex",position:"relative",transition:"transform 0.3s ease-in-out",willChange:"transform"}),ra=x.style({width:"100%",display:"flex",position:"relative",alignItems:"stretch",flexShrink:0}),la=x.style({position:"absolute",bottom:0,left:0,right:0,zIndex:30,width:"100%",maxWidth:e.maxWidth,display:"flex",justifyContent:"flex-end",pointerEvents:"none",gap:e.space.sm,padding:e.space.md}),Ue=x.style({border:"none",borderRadius:e.radii.full,backgroundColor:e.colors.background,color:e.colors.text,padding:e.space.sm,cursor:"pointer",pointerEvents:"auto",transition:"all 0.3s ease-in-out",boxShadow:e.shadows.md,display:"flex",alignItems:"center",justifyContent:"center",width:"48px",height:"48px"}),ca=x.style({display:"flex",alignItems:"center",justifyContent:"center",gap:e.space.md,marginTop:e.space.lg,"@media":{[ae.lg]:{marginTop:e.space.xl}}}),da=x.style({width:"12px",height:"12px",borderRadius:e.radii.full,backgroundColor:e.colors.border,cursor:"pointer",transition:"all 0.3s ease-in-out",border:"none",":hover":{transform:"scale(1.2)",backgroundColor:e.colors.primary},":focus":{outline:"2px solid",outlineColor:e.colors.primary,outlineOffset:"2px"},"@media":{[ae.md]:{width:"16px",height:"16px"}}}),ua=le.recipe({base:ia,variants:{fullWidth:{true:{width:"100vw",marginLeft:`calc((100vw - ${e.maxWidth}) / -2)`,marginRight:`calc((100vw - ${e.maxWidth}) / -2)`,"@media":{"screen and (max-width: 1500px)":{marginLeft:`calc(-1 * ${e.space.md})`,marginRight:`calc(-1 * ${e.space.md})`},[ae.md]:{marginLeft:`calc(-1 * ${e.space.lg})`,marginRight:`calc(-1 * ${e.space.lg})`},[ae.lg]:{marginLeft:`calc(-1 * ${e.space.xl})`,marginRight:`calc(-1 * ${e.space.xl})`}}},false:{width:"100%"}}},defaultVariants:{fullWidth:!1}}),pa=x.style({backgroundColor:e.colors.primary,pointerEvents:"none",opacity:1}),fa=()=>{const[t,a]=te.useState({width:void 0,height:void 0});return te.useEffect(()=>{const o=()=>{a({width:window.innerWidth,height:window.innerHeight})};return window.addEventListener("resize",o),o(),()=>window.removeEventListener("resize",o)},[]),t},ot=te.forwardRef(({data:t,itemsPerView:a=1,showNavButtons:o=!1,showBullets:l=!1,autoplay:n=!1,autoplayInterval:u=3e3,gap:f=16,fullWidth:d,as:g="div",css:b,className:C,margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,position:R,top:v,bottom:w,left:S,right:$,zIndex:D,fontSize:U,fontFamily:_,lineHeight:B,textAlign:V,fontWeight:Y,color:z,backgroundColor:q,borderRadius:F,borderWidth:A,borderStyle:X,borderColor:G,boxShadow:Z,opacity:N,overflow:J,overflowX:M,overflowY:ne,...ie},se)=>{const{width:oe}=fa(),[me,fe]=te.useState(0),[he,xe]=te.useState(0),[ue,ye]=te.useState(a),Se=te.useRef(null),Ce=te.useRef(null),Ne=oe!==void 0&&oe>we.md,Ie=oe!==void 0&&oe>we.lg;te.useEffect(()=>{ye(Ie?a:Ne?Math.max(1,Math.floor(a/2)):1)},[Ne,Ie,a]),te.useEffect(()=>{const de=()=>{if(Se.current){const ge=Se.current.getBoundingClientRect().width,Re=(ue-1)*f;xe((ge-Re)/ue)}};return de(),window.addEventListener("resize",de),()=>window.removeEventListener("resize",de)},[ue,f]),te.useEffect(()=>{if(!n)return;const de=setInterval(()=>{fe(ge=>{const Re=Math.max(0,t.length-ue);return ge>=Re?0:ge+1})},u);return()=>clearInterval(de)},[n,u,t.length,ue]),te.useEffect(()=>{const de=Se.current;if(!de)return;let ge=0,Re=0;const Me=Ee=>{ge=Ee.changedTouches[0].screenX},He=Ee=>{Re=Ee.changedTouches[0].screenX,yt()},yt=()=>{const Pe=ge-Re;Math.abs(Pe)>100&&(Pe>0?Te():je())};return de.addEventListener("touchstart",Me,{passive:!0}),de.addEventListener("touchend",He,{passive:!0}),()=>{de.removeEventListener("touchstart",Me),de.removeEventListener("touchend",He)}},[]);const je=()=>{fe(de=>Math.max(0,de-1))},Te=()=>{const de=Math.max(0,t.length-ue);fe(ge=>Math.min(de,ge+1))},Ae=de=>{const ge=Math.max(0,t.length-ue);fe(Math.min(de,ge))},Oe=-(me*(he+f)),ze=Math.max(0,t.length-ue);return p.jsxs(g,{ref:se,className:re(ua({fullWidth:d}),ce({margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,position:R,top:v,bottom:w,left:S,right:$,zIndex:D,fontSize:U,fontFamily:_,lineHeight:B,textAlign:V,fontWeight:Y,color:z,backgroundColor:q,borderRadius:F,borderWidth:A,borderStyle:X,borderColor:G,boxShadow:Z,opacity:N,overflow:J,overflowX:M,overflowY:ne}),b,C),...ie,children:[p.jsx("div",{ref:Se,className:oa,children:p.jsx("div",{ref:Ce,className:sa,style:{transform:`translateX(${Oe}px)`,gap:`${f}px`},children:t.map((de,ge)=>p.jsx("div",{className:ra,style:{width:`${he}px`},children:de},ge))})}),o&&p.jsxs("div",{className:la,children:[p.jsx("button",{type:"button",className:Ue,onClick:je,disabled:me===0,"aria-label":"Previous slide",children:p.jsx(ve,{icon:"arrowBack",size:"md"})}),p.jsx("button",{type:"button",className:Ue,onClick:Te,disabled:me>=ze,"aria-label":"Next slide",children:p.jsx(ve,{icon:"arrowForward",size:"md"})})]}),l&&p.jsx("div",{className:ca,children:Array.from({length:ze+1},(de,ge)=>p.jsx("button",{type:"button",className:re(da,ge===me&&pa),onClick:()=>Ae(ge),"aria-label":`Go to slide ${ge+1}`},ge))})]})});ot.displayName="Carousel";const ma=x.keyframes({from:{opacity:"0"},to:{opacity:"1"}}),ga=x.keyframes({from:{opacity:"0",transform:"translateY(100%)"},to:{opacity:"1",transform:"translateY(0)"}}),ha=x.style({position:"fixed",top:0,left:0,right:0,bottom:0,zIndex:100,animation:`${ma} 0.3s ease-out`,"::before":{content:'""',position:"fixed",top:0,left:0,right:0,bottom:0,backgroundColor:"rgba(0, 0, 0, 0.3)",backdropFilter:"blur(2px)",opacity:.8}}),xa=x.style({bottom:e.space.md,right:e.space.md,zIndex:20,display:"flex",flexDirection:"column",backgroundColor:e.colors.background,border:`1px solid ${e.colors.border}`,borderRadius:e.radii.lg,boxShadow:e.shadows.xl,padding:e.space.lg,width:"300px",maxWidth:"calc(100vw - 32px)",animation:`${ga} 0.3s ease-out`,"@media":{[ae.sm]:{width:"400px"},[ae.md]:{width:"500px",padding:e.space.xl}}}),ba=x.style({display:"flex",alignItems:"center",justifyContent:"flex-end",gap:e.space.md,marginTop:e.space.lg,flexWrap:"wrap","@media":{[ae.sm]:{flexWrap:"nowrap"}}}),ya=le.recipe({base:ha,variants:{variant:{modal:{},banner:{"::before":{display:"none"}}}},defaultVariants:{variant:"modal"}});function va(t){const a=t+"=",l=decodeURIComponent(document.cookie).split(";");for(let n=0;n<l.length;n++){let u=l[n];for(;u.charAt(0)==" ";)u=u.substring(1);if(u.indexOf(a)==0)return u.substring(a.length,u.length)}return""}function _e(t,a,o){const l=new Date;l.setTime(l.getTime()+o*24*60*60*1e3);const n="expires="+l.toUTCString();document.cookie=t+"="+a+";"+n+";path=/"}const st=te.forwardRef(({children:t,variant:a,cookieName:o="consent",cookieExpirationDays:l=365,onAccept:n,onReject:u,translations:f,enableGoogleAnalytics:d=!0,css:g,className:b,margin:C,marginTop:I,marginBottom:H,marginLeft:T,marginRight:j,padding:L,paddingTop:E,paddingBottom:y,paddingLeft:W,paddingRight:O,gap:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,zIndex:R,fontSize:v,fontFamily:w,lineHeight:S,textAlign:$,fontWeight:D,color:U,backgroundColor:_,borderRadius:B,borderWidth:V,borderStyle:Y,borderColor:z,boxShadow:q,opacity:F,overflow:A,overflowX:X,overflowY:G,...Z},N)=>{const[J,M]=te.useState(!1),ne=()=>{M(!1),_e(o,"true",l),d&&typeof window<"u"&&typeof window.gtag<"u"&&window.gtag("consent","update",{analytics_storage:"granted"}),n?.()},ie=()=>{M(!1),_e(o,"false",l),d&&typeof window<"u"&&typeof window.gtag<"u"&&window.gtag("consent","update",{analytics_storage:"denied"}),u?.()};return te.useEffect(()=>{const se=va(o),oe=se!=="true"&&se!=="false",me=se==="true";if(oe&&M(!0),d&&typeof window<"u"&&typeof window.gtag<"u"){const fe=me?"granted":"denied";window.gtag("consent","update",{analytics_storage:fe})}},[o,d]),J?p.jsx("div",{ref:N,className:re(ya({variant:a}),ce({margin:C,marginTop:I,marginBottom:H,marginLeft:T,marginRight:j,padding:L,paddingTop:E,paddingBottom:y,paddingLeft:W,paddingRight:O,gap:K,display:P,flexDirection:Q,justifyContent:ee,flexWrap:r,flex:i,width:s,height:c,minWidth:m,maxWidth:h,minHeight:k,zIndex:R,fontSize:v,fontFamily:w,lineHeight:S,textAlign:$,fontWeight:D,color:U,backgroundColor:_,borderRadius:B,borderWidth:V,borderStyle:Y,borderColor:z,boxShadow:q,opacity:F,overflow:A,overflowX:X,overflowY:G}),g,b),role:"dialog","aria-modal":"true","aria-labelledby":"consent-title",...Z,children:p.jsxs("div",{className:xa,children:[t,p.jsxs("div",{className:ba,children:[p.jsx(Be,{variant:"outline",size:"sm",onClick:ie,children:f?.actions.reject||"Reject"}),p.jsx(Be,{variant:"primary",size:"sm",onClick:ne,children:f?.actions.accept||"Accept"})]})]})}):null});st.displayName="ConsentCookie";function wa(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}function Sa(t){if(Object.prototype.hasOwnProperty.call(t,"__esModule"))return t;var a=t.default;if(typeof a=="function"){var o=function l(){var n=!1;try{n=this instanceof l}catch{}return n?Reflect.construct(a,arguments,this.constructor):a.apply(this,arguments)};o.prototype=a.prototype}else o={};return Object.defineProperty(o,"__esModule",{value:!0}),Object.keys(t).forEach(function(l){var n=Object.getOwnPropertyDescriptor(t,l);Object.defineProperty(o,l,n.get?n:{enumerable:!0,get:function(){return t[l]}})}),o}var Ve={},Fe=function(){return Fe=Object.assign||function(t){for(var a,o=1,l=arguments.length;o<l;o++)for(var n in a=arguments[o])Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n]);return t},Fe.apply(this,arguments)},Ca=(function(){function t(a,o,l){var n=this;this.endVal=o,this.options=l,this.version="2.8.0",this.defaults={startVal:0,decimalPlaces:0,duration:2,useEasing:!0,useGrouping:!0,useIndianSeparators:!1,smartEasingThreshold:999,smartEasingAmount:333,separator:",",decimal:".",prefix:"",suffix:"",enableScrollSpy:!1,scrollSpyDelay:200,scrollSpyOnce:!1},this.finalEndVal=null,this.useEasing=!0,this.countDown=!1,this.error="",this.startVal=0,this.paused=!0,this.once=!1,this.count=function(u){n.startTime||(n.startTime=u);var f=u-n.startTime;n.remaining=n.duration-f,n.useEasing?n.countDown?n.frameVal=n.startVal-n.easingFn(f,0,n.startVal-n.endVal,n.duration):n.frameVal=n.easingFn(f,n.startVal,n.endVal-n.startVal,n.duration):n.frameVal=n.startVal+(n.endVal-n.startVal)*(f/n.duration);var d=n.countDown?n.frameVal<n.endVal:n.frameVal>n.endVal;n.frameVal=d?n.endVal:n.frameVal,n.frameVal=Number(n.frameVal.toFixed(n.options.decimalPlaces)),n.printValue(n.frameVal),f<n.duration?n.rAF=requestAnimationFrame(n.count):n.finalEndVal!==null?n.update(n.finalEndVal):n.options.onCompleteCallback&&n.options.onCompleteCallback()},this.formatNumber=function(u){var f,d,g,b,C=u<0?"-":"";f=Math.abs(u).toFixed(n.options.decimalPlaces);var I=(f+="").split(".");if(d=I[0],g=I.length>1?n.options.decimal+I[1]:"",n.options.useGrouping){b="";for(var H=3,T=0,j=0,L=d.length;j<L;++j)n.options.useIndianSeparators&&j===4&&(H=2,T=1),j!==0&&T%H==0&&(b=n.options.separator+b),T++,b=d[L-j-1]+b;d=b}return n.options.numerals&&n.options.numerals.length&&(d=d.replace(/[0-9]/g,(function(E){return n.options.numerals[+E]})),g=g.replace(/[0-9]/g,(function(E){return n.options.numerals[+E]}))),C+n.options.prefix+d+g+n.options.suffix},this.easeOutExpo=function(u,f,d,g){return d*(1-Math.pow(2,-10*u/g))*1024/1023+f},this.options=Fe(Fe({},this.defaults),l),this.formattingFn=this.options.formattingFn?this.options.formattingFn:this.formatNumber,this.easingFn=this.options.easingFn?this.options.easingFn:this.easeOutExpo,this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.endVal=this.validateValue(o),this.options.decimalPlaces=Math.max(this.options.decimalPlaces),this.resetDuration(),this.options.separator=String(this.options.separator),this.useEasing=this.options.useEasing,this.options.separator===""&&(this.options.useGrouping=!1),this.el=typeof a=="string"?document.getElementById(a):a,this.el?this.printValue(this.startVal):this.error="[CountUp] target is null or undefined",typeof window<"u"&&this.options.enableScrollSpy&&(this.error?console.error(this.error,a):(window.onScrollFns=window.onScrollFns||[],window.onScrollFns.push((function(){return n.handleScroll(n)})),window.onscroll=function(){window.onScrollFns.forEach((function(u){return u()}))},this.handleScroll(this)))}return t.prototype.handleScroll=function(a){if(a&&window&&!a.once){var o=window.innerHeight+window.scrollY,l=a.el.getBoundingClientRect(),n=l.top+window.pageYOffset,u=l.top+l.height+window.pageYOffset;u<o&&u>window.scrollY&&a.paused?(a.paused=!1,setTimeout((function(){return a.start()}),a.options.scrollSpyDelay),a.options.scrollSpyOnce&&(a.once=!0)):(window.scrollY>u||n>o)&&!a.paused&&a.reset()}},t.prototype.determineDirectionAndSmartEasing=function(){var a=this.finalEndVal?this.finalEndVal:this.endVal;this.countDown=this.startVal>a;var o=a-this.startVal;if(Math.abs(o)>this.options.smartEasingThreshold&&this.options.useEasing){this.finalEndVal=a;var l=this.countDown?1:-1;this.endVal=a+l*this.options.smartEasingAmount,this.duration=this.duration/2}else this.endVal=a,this.finalEndVal=null;this.finalEndVal!==null?this.useEasing=!1:this.useEasing=this.options.useEasing},t.prototype.start=function(a){this.error||(this.options.onStartCallback&&this.options.onStartCallback(),a&&(this.options.onCompleteCallback=a),this.duration>0?(this.determineDirectionAndSmartEasing(),this.paused=!1,this.rAF=requestAnimationFrame(this.count)):this.printValue(this.endVal))},t.prototype.pauseResume=function(){this.paused?(this.startTime=null,this.duration=this.remaining,this.startVal=this.frameVal,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count)):cancelAnimationFrame(this.rAF),this.paused=!this.paused},t.prototype.reset=function(){cancelAnimationFrame(this.rAF),this.paused=!0,this.resetDuration(),this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.printValue(this.startVal)},t.prototype.update=function(a){cancelAnimationFrame(this.rAF),this.startTime=null,this.endVal=this.validateValue(a),this.endVal!==this.frameVal&&(this.startVal=this.frameVal,this.finalEndVal==null&&this.resetDuration(),this.finalEndVal=null,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count))},t.prototype.printValue=function(a){var o;if(this.el){var l=this.formattingFn(a);!((o=this.options.plugin)===null||o===void 0)&&o.render?this.options.plugin.render(this.el,l):this.el.tagName==="INPUT"?this.el.value=l:this.el.tagName==="text"||this.el.tagName==="tspan"?this.el.textContent=l:this.el.innerHTML=l}},t.prototype.ensureNumber=function(a){return typeof a=="number"&&!isNaN(a)},t.prototype.validateValue=function(a){var o=Number(a);return this.ensureNumber(o)?o:(this.error="[CountUp] invalid start or end value: ".concat(a),null)},t.prototype.resetDuration=function(){this.startTime=null,this.duration=1e3*Number(this.options.duration),this.remaining=this.duration},t})();const ja=Object.freeze(Object.defineProperty({__proto__:null,CountUp:Ca},Symbol.toStringTag,{value:"Module"})),Ra=Sa(ja);var Ye;function za(){if(Ye)return Ve;Ye=1,Object.defineProperty(Ve,"__esModule",{value:!0});var t=te,a=Ra;function o(r,i){var s=r==null?null:typeof Symbol<"u"&&r[Symbol.iterator]||r["@@iterator"];if(s!=null){var c,m,h,k,R=[],v=!0,w=!1;try{if(h=(s=s.call(r)).next,i!==0)for(;!(v=(c=h.call(s)).done)&&(R.push(c.value),R.length!==i);v=!0);}catch(S){w=!0,m=S}finally{try{if(!v&&s.return!=null&&(k=s.return(),Object(k)!==k))return}finally{if(w)throw m}}return R}}function l(r,i){var s=Object.keys(r);if(Object.getOwnPropertySymbols){var c=Object.getOwnPropertySymbols(r);i&&(c=c.filter(function(m){return Object.getOwnPropertyDescriptor(r,m).enumerable})),s.push.apply(s,c)}return s}function n(r){for(var i=1;i<arguments.length;i++){var s=arguments[i]!=null?arguments[i]:{};i%2?l(Object(s),!0).forEach(function(c){d(r,c,s[c])}):Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(s)):l(Object(s)).forEach(function(c){Object.defineProperty(r,c,Object.getOwnPropertyDescriptor(s,c))})}return r}function u(r,i){if(typeof r!="object"||!r)return r;var s=r[Symbol.toPrimitive];if(s!==void 0){var c=s.call(r,i);if(typeof c!="object")return c;throw new TypeError("@@toPrimitive must return a primitive value.")}return(i==="string"?String:Number)(r)}function f(r){var i=u(r,"string");return typeof i=="symbol"?i:String(i)}function d(r,i,s){return i=f(i),i in r?Object.defineProperty(r,i,{value:s,enumerable:!0,configurable:!0,writable:!0}):r[i]=s,r}function g(){return g=Object.assign?Object.assign.bind():function(r){for(var i=1;i<arguments.length;i++){var s=arguments[i];for(var c in s)Object.prototype.hasOwnProperty.call(s,c)&&(r[c]=s[c])}return r},g.apply(this,arguments)}function b(r,i){if(r==null)return{};var s={},c=Object.keys(r),m,h;for(h=0;h<c.length;h++)m=c[h],!(i.indexOf(m)>=0)&&(s[m]=r[m]);return s}function C(r,i){if(r==null)return{};var s=b(r,i),c,m;if(Object.getOwnPropertySymbols){var h=Object.getOwnPropertySymbols(r);for(m=0;m<h.length;m++)c=h[m],!(i.indexOf(c)>=0)&&Object.prototype.propertyIsEnumerable.call(r,c)&&(s[c]=r[c])}return s}function I(r,i){return H(r)||o(r,i)||T(r,i)||L()}function H(r){if(Array.isArray(r))return r}function T(r,i){if(r){if(typeof r=="string")return j(r,i);var s=Object.prototype.toString.call(r).slice(8,-1);if(s==="Object"&&r.constructor&&(s=r.constructor.name),s==="Map"||s==="Set")return Array.from(r);if(s==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s))return j(r,i)}}function j(r,i){(i==null||i>r.length)&&(i=r.length);for(var s=0,c=new Array(i);s<i;s++)c[s]=r[s];return c}function L(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
2
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var E=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u"?t.useLayoutEffect:t.useEffect;function y(r){var i=t.useRef(r);return E(function(){i.current=r}),t.useCallback(function(){for(var s=arguments.length,c=new Array(s),m=0;m<s;m++)c[m]=arguments[m];return i.current.apply(void 0,c)},[])}var W=function(i,s){var c=s.decimal,m=s.decimals,h=s.duration,k=s.easingFn,R=s.end,v=s.formattingFn,w=s.numerals,S=s.prefix,$=s.separator,D=s.start,U=s.suffix,_=s.useEasing,B=s.useGrouping,V=s.useIndianSeparators,Y=s.enableScrollSpy,z=s.scrollSpyDelay,q=s.scrollSpyOnce,F=s.plugin;return new a.CountUp(i,R,{startVal:D,duration:h,decimal:c,decimalPlaces:m,easingFn:k,formattingFn:v,numerals:w,separator:$,prefix:S,suffix:U,plugin:F,useEasing:_,useIndianSeparators:V,useGrouping:B,enableScrollSpy:Y,scrollSpyDelay:z,scrollSpyOnce:q})},O=["ref","startOnMount","enableReinitialize","delay","onEnd","onStart","onPauseResume","onReset","onUpdate"],K={decimal:".",separator:",",delay:null,prefix:"",suffix:"",duration:2,start:0,decimals:0,startOnMount:!0,enableReinitialize:!0,useEasing:!0,useGrouping:!0,useIndianSeparators:!1},P=function(i){var s=Object.fromEntries(Object.entries(i).filter(function(N){var J=I(N,2),M=J[1];return M!==void 0})),c=t.useMemo(function(){return n(n({},K),s)},[i]),m=c.ref,h=c.startOnMount,k=c.enableReinitialize,R=c.delay,v=c.onEnd,w=c.onStart,S=c.onPauseResume,$=c.onReset,D=c.onUpdate,U=C(c,O),_=t.useRef(),B=t.useRef(),V=t.useRef(!1),Y=y(function(){return W(typeof m=="string"?m:m.current,U)}),z=y(function(N){var J=_.current;if(J&&!N)return J;var M=Y();return _.current=M,M}),q=y(function(){var N=function(){return z(!0).start(function(){v?.({pauseResume:F,reset:A,start:G,update:X})})};R&&R>0?B.current=setTimeout(N,R*1e3):N(),w?.({pauseResume:F,reset:A,update:X})}),F=y(function(){z().pauseResume(),S?.({reset:A,start:G,update:X})}),A=y(function(){z().el&&(B.current&&clearTimeout(B.current),z().reset(),$?.({pauseResume:F,start:G,update:X}))}),X=y(function(N){z().update(N),D?.({pauseResume:F,reset:A,start:G})}),G=y(function(){A(),q()}),Z=y(function(N){h&&(N&&A(),q())});return t.useEffect(function(){V.current?k&&Z(!0):(V.current=!0,Z())},[k,V,Z,R,i.start,i.suffix,i.prefix,i.duration,i.separator,i.decimals,i.decimal,i.formattingFn]),t.useEffect(function(){return function(){A()}},[A]),{start:G,pauseResume:F,reset:A,update:X,getCountUp:z}},Q=["className","redraw","containerProps","children","style"],ee=function(i){var s=i.className,c=i.redraw,m=i.containerProps,h=i.children,k=i.style,R=C(i,Q),v=t.useRef(null),w=t.useRef(!1),S=P(n(n({},R),{},{ref:v,startOnMount:typeof h!="function"||i.delay===0,enableReinitialize:!1})),$=S.start,D=S.reset,U=S.update,_=S.pauseResume,B=S.getCountUp,V=y(function(){$()}),Y=y(function(F){i.preserveValue||D(),U(F)}),z=y(function(){if(typeof i.children=="function"&&!(v.current instanceof Element)){console.error(`Couldn't find attached element to hook the CountUp instance into! Try to attach "containerRef" from the render prop to a an Element, eg. <span ref={containerRef} />.`);return}B()});t.useEffect(function(){z()},[z]),t.useEffect(function(){w.current&&Y(i.end)},[i.end,Y]);var q=c&&i;return t.useEffect(function(){c&&w.current&&V()},[V,c,q]),t.useEffect(function(){!c&&w.current&&V()},[V,c,i.start,i.suffix,i.prefix,i.duration,i.separator,i.decimals,i.decimal,i.className,i.formattingFn]),t.useEffect(function(){w.current=!0},[]),typeof h=="function"?h({countUpRef:v,start:$,reset:D,update:U,pauseResume:_,getCountUp:B}):t.createElement("span",g({className:s,ref:v,style:k},m),typeof i.start<"u"?B().formattingFn(i.start):"")};return Ve.default=ee,Ve.useCountUp=P,Ve}var ka=za();const Va=wa(ka);var $e=new Map,We=new WeakMap,qe=0,Na=void 0;function Ia(t){return t?(We.has(t)||(qe+=1,We.set(t,qe.toString())),We.get(t)):"0"}function Ta(t){return Object.keys(t).sort().filter(a=>t[a]!==void 0).map(a=>`${a}_${a==="root"?Ia(t.root):t[a]}`).toString()}function Ea(t){const a=Ta(t);let o=$e.get(a);if(!o){const l=new Map;let n;const u=new IntersectionObserver(f=>{f.forEach(d=>{var g;const b=d.isIntersecting&&n.some(C=>d.intersectionRatio>=C);t.trackVisibility&&typeof d.isVisible>"u"&&(d.isVisible=b),(g=l.get(d.target))==null||g.forEach(C=>{C(b,d)})})},t);n=u.thresholds||(Array.isArray(t.threshold)?t.threshold:[t.threshold||0]),o={id:a,observer:u,elements:l},$e.set(a,o)}return o}function Wa(t,a,o={},l=Na){if(typeof window.IntersectionObserver>"u"&&l!==void 0){const g=t.getBoundingClientRect();return a(l,{isIntersecting:l,target:t,intersectionRatio:typeof o.threshold=="number"?o.threshold:0,time:0,boundingClientRect:g,intersectionRect:g,rootBounds:g}),()=>{}}const{id:n,observer:u,elements:f}=Ea(o),d=f.get(t)||[];return f.has(t)||f.set(t,d),d.push(a),u.observe(t),function(){d.splice(d.indexOf(a),1),d.length===0&&(f.delete(t),u.unobserve(t)),f.size===0&&(u.disconnect(),$e.delete(n))}}function Ba({threshold:t,delay:a,trackVisibility:o,rootMargin:l,root:n,triggerOnce:u,skip:f,initialInView:d,fallbackInView:g,onChange:b}={}){var C;const[I,H]=ke.useState(null),T=ke.useRef(b),[j,L]=ke.useState({inView:!!d,entry:void 0});T.current=b,ke.useEffect(()=>{if(f||!I)return;let O;return O=Wa(I,(K,P)=>{L({inView:K,entry:P}),T.current&&T.current(K,P),P.isIntersecting&&u&&O&&(O(),O=void 0)},{root:n,rootMargin:l,threshold:t,trackVisibility:o,delay:a},g),()=>{O&&O()}},[Array.isArray(t)?t.toString():t,I,n,l,u,f,o,g,a]);const E=(C=j.entry)==null?void 0:C.target,y=ke.useRef(void 0);!I&&E&&!u&&!f&&y.current!==E&&(y.current=E,L({inView:!!d,entry:void 0}));const W=[H,j.inView,j.entry];return W.ref=W[0],W.inView=W[1],W.entry=W[2],W}const Fa=x.style({display:"flex",flexDirection:"column",alignItems:"center",textAlign:"center",color:e.colors.text}),Aa=x.style({fontSize:e.fontSizes.lg,paddingBottom:e.space.md,fontWeight:"400","@media":{[ae.lg]:{paddingBottom:e.space.lg}}}),Oa=x.style({fontSize:e.fontSizes.md,color:e.colors.textSecondary,lineHeight:e.lineHeights.normal,margin:0,"@media":{[ae.md]:{fontSize:e.fontSizes.lg}}}),$a=le.recipe({base:Fa,variants:{size:{sm:{},md:{},lg:{}},variant:{default:{},highlighted:{padding:e.space.lg,backgroundColor:e.colors.surface,borderRadius:e.radii.lg,boxShadow:e.shadows.md},outlined:{padding:e.space.lg,border:`2px solid ${e.colors.border}`,borderRadius:e.radii.lg}},align:{left:{alignItems:"flex-start",textAlign:"left"},center:{alignItems:"center",textAlign:"center"},right:{alignItems:"flex-end",textAlign:"right"}}},defaultVariants:{size:"md",variant:"default",align:"center"}}),rt=te.forwardRef(({value:t,label:a,suffix:o="",prefix:l="",duration:n=2,threshold:u=.3,separator:f=",",decimals:d=0,size:g,variant:b,align:C,color:I,as:H="div",css:T,className:j,margin:L,marginTop:E,marginBottom:y,marginLeft:W,marginRight:O,padding:K,paddingTop:P,paddingBottom:Q,paddingLeft:ee,paddingRight:r,gap:i,display:s,flexDirection:c,justifyContent:m,flexWrap:h,flex:k,width:R,height:v,minWidth:w,maxWidth:S,minHeight:$,position:D,top:U,bottom:_,left:B,right:V,zIndex:Y,fontSize:z,fontFamily:q,lineHeight:F,textAlign:A,fontWeight:X,backgroundColor:G,borderRadius:Z,borderWidth:N,borderStyle:J,borderColor:M,boxShadow:ne,opacity:ie,overflow:se,overflowX:oe,overflowY:me,...fe},he)=>{const[xe,ue]=Ba({threshold:u,triggerOnce:!0});return p.jsxs(H,{ref:ye=>{xe(ye),he&&(typeof he=="function"?he(ye):he.current=ye)},className:re($a({size:g,variant:b,align:C}),ce({margin:L,marginTop:E,marginBottom:y,marginLeft:W,marginRight:O,padding:K,paddingTop:P,paddingBottom:Q,paddingLeft:ee,paddingRight:r,gap:i,display:s,flexDirection:c,justifyContent:m,flexWrap:h,flex:k,width:R,height:v,minWidth:w,maxWidth:S,minHeight:$,position:D,top:U,bottom:_,left:B,right:V,zIndex:Y,fontSize:z,fontFamily:q,lineHeight:F,textAlign:A,fontWeight:X,backgroundColor:G,borderRadius:Z,borderWidth:N,borderStyle:J,borderColor:M,boxShadow:ne,opacity:ie,overflow:se,overflowX:oe,overflowY:me}),T,j),...fe,children:[p.jsxs("div",{className:Aa,children:[l,p.jsx("span",{children:p.jsx(Va,{end:ue?t:0,duration:n,separator:f,decimals:d})}),o]}),p.jsx("p",{className:Oa,children:a})]})});rt.displayName="KeyNumber";const Da=x.style({display:"flex",alignItems:"center",gap:e.space.md,"@media":{[ae.md]:{gap:e.space.lg}}}),La=x.style({display:"flex",alignItems:"center",justifyContent:"center",textDecoration:"none",color:"inherit",transition:"all 0.3s ease-in-out",borderRadius:e.radii.full,padding:e.space.xs}),Ma=le.recipe({base:Da,variants:{orientation:{horizontal:{flexDirection:"row"},vertical:{flexDirection:"column"}},size:{sm:{gap:e.space.sm},md:{gap:e.space.md},lg:{gap:e.space.lg}},variant:{default:{},rounded:{},outlined:{}}},defaultVariants:{orientation:"horizontal",size:"md",variant:"default"}}),lt=te.forwardRef(({links:t,iconSize:a="md",orientation:o,size:l,variant:n,as:u="nav",css:f,className:d,margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J,...M},ne)=>{const ie=se=>({instagram:"socialInstagram",linkedIn:"socialLinkedIn",facebook:"socialFacebook",pinterest:"socialPinterest",spotify:"socialSpotify",X:"socialX",youtube:"socialYoutube",tiktok:"socialTiktok"})[se];return p.jsx(u,{ref:ne,className:re(Ma({orientation:o,size:l,variant:n}),ce({margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J}),f,d),role:"navigation","aria-label":"Social media links",...M,children:t.map((se,oe)=>p.jsx("a",{href:se.url,target:"_blank",rel:"noopener noreferrer",className:La,"aria-label":se.label||`Visit our ${se.name} page`,children:p.jsx(ve,{icon:ie(se.name),size:a,"aria-hidden":"true"})},`${se.name}-${oe}`))})});lt.displayName="NavSocial";const Ha=x.style({display:"flex",alignItems:"center",gap:e.space.md,fontSize:e.fontSizes.sm,color:e.colors.textSecondary,flexDirection:"column","@media":{[ae.md]:{flexDirection:"row",gap:e.space.lg}}}),Pa=le.recipe({base:Ha,variants:{orientation:{horizontal:{flexDirection:"row"},vertical:{flexDirection:"column",alignItems:"flex-start"},responsive:{flexDirection:"column",alignItems:"flex-start","@media":{[ae.md]:{flexDirection:"row",alignItems:"center"}}}},size:{sm:{fontSize:e.fontSizes.xs,gap:e.space.sm},md:{fontSize:e.fontSizes.sm,gap:e.space.md},lg:{fontSize:e.fontSizes.md,gap:e.space.lg}},variant:{default:{},compact:{gap:e.space.sm},spacious:{gap:e.space.xl}},align:{left:{justifyContent:"flex-start"},center:{justifyContent:"center"},right:{justifyContent:"flex-end"}}},defaultVariants:{orientation:"responsive",size:"md",variant:"default",align:"left"}}),ct=te.forwardRef(({children:t,orientation:a,size:o,variant:l,align:n,as:u="nav",css:f,className:d,margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J,...M},ne)=>p.jsx(u,{ref:ne,className:re(Pa({orientation:a,size:o,variant:l,align:n}),ce({margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J}),f,d),role:"navigation","aria-label":"Legal navigation",...M,children:t}));ct.displayName="NavLegal";const Ua=x.style({position:"relative",display:"inline-flex",alignItems:"center"}),_a=x.style({appearance:"none",background:"transparent",border:`1px solid ${e.colors.border}`,borderRadius:e.radii.md,padding:`${e.space.sm} ${e.space.md}`,paddingRight:e.space.xl,fontSize:e.fontSizes.sm,fontFamily:e.fonts.body,color:e.colors.text,cursor:"pointer",transition:"all 0.3s ease-in-out",minWidth:"120px"}),Ya=x.style({position:"absolute",right:e.space.sm,top:"50%",transform:"translateY(-50%)",pointerEvents:"none",color:e.colors.textSecondary,transition:"transform 0.2s ease-in-out"}),qa=le.recipe({base:Ua,variants:{variant:{default:{},minimal:{},outlined:{},filled:{}},size:{sm:{},md:{},lg:{}}},defaultVariants:{variant:"default",size:"md"}}),dt=te.forwardRef(({locales:t,currentLocale:a,onChange:o,disabled:l=!1,placeholder:n,variant:u,size:f,css:d,className:g,margin:b,marginTop:C,marginBottom:I,marginLeft:H,marginRight:T,padding:j,paddingTop:L,paddingBottom:E,paddingLeft:y,paddingRight:W,gap:O,display:K,flexDirection:P,justifyContent:Q,flexWrap:ee,flex:r,width:i,height:s,minWidth:c,maxWidth:m,minHeight:h,position:k,top:R,bottom:v,left:w,right:S,zIndex:$,fontSize:D,fontFamily:U,lineHeight:_,textAlign:B,fontWeight:V,color:Y,backgroundColor:z,borderRadius:q,borderWidth:F,borderStyle:A,borderColor:X,boxShadow:G,opacity:Z,overflow:N,overflowX:J,overflowY:M,...ne},ie)=>{const se=oe=>{o(oe.target.value)};return p.jsxs("div",{ref:ie,className:re(qa({variant:u,size:f}),ce({margin:b,marginTop:C,marginBottom:I,marginLeft:H,marginRight:T,padding:j,paddingTop:L,paddingBottom:E,paddingLeft:y,paddingRight:W,gap:O,display:K,flexDirection:P,justifyContent:Q,flexWrap:ee,flex:r,width:i,height:s,minWidth:c,maxWidth:m,minHeight:h,position:k,top:R,bottom:v,left:w,right:S,zIndex:$,fontSize:D,fontFamily:U,lineHeight:_,textAlign:B,fontWeight:V,color:Y,backgroundColor:z,borderRadius:q,borderWidth:F,borderStyle:A,borderColor:X,boxShadow:G,opacity:Z,overflow:N,overflowX:J,overflowY:M}),d,g),...ne,children:[p.jsxs("select",{className:_a,value:a,onChange:se,disabled:l,"aria-label":"Switch language",children:[n&&p.jsx("option",{value:"",disabled:!0,children:n}),t.map(oe=>p.jsx("option",{value:oe.code,disabled:oe.code===a,children:oe.label||oe.name},oe.code))]}),p.jsx("div",{className:Ya,children:p.jsx(ve,{icon:"caret",size:"sm"})})]})});dt.displayName="LanguageSwitcher";const Xa=x.style({position:"relative",overflow:"hidden",backgroundColor:e.colors.background}),Ga=x.style({top:"50%",left:"50%",width:"auto",minWidth:"100%",minHeight:"100%",position:"absolute",transform:"translate(-50%, -50%)"}),Ka=x.style({top:0,left:0,width:"100%",height:"100%",position:"absolute",opacity:1,transition:"opacity 0.3s ease-in-out",pointerEvents:"auto"}),Za=x.style({width:"100%",height:"100%",minWidth:"100%",minHeight:"100%",objectFit:"cover"}),Ja=x.style({position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)",border:"none",borderRadius:e.radii.full,backgroundColor:"rgba(0, 0, 0, 0.7)",color:e.colors.background,cursor:"pointer",transition:"all 0.3s ease-in-out",display:"flex",alignItems:"center",justifyContent:"center",opacity:1,pointerEvents:"auto",":hover":{backgroundColor:"rgba(0, 0, 0, 0.9)",transform:"translate(-50%, -50%) scale(1.1)"},":focus":{outline:"2px solid",outlineColor:e.colors.primary,outlineOffset:"2px"}}),De=x.style({position:"absolute",border:"none",borderRadius:e.radii.md,backgroundColor:"rgba(0, 0, 0, 0.7)",color:e.colors.background,cursor:"pointer",transition:"all 0.3s ease-in-out",display:"flex",alignItems:"center",justifyContent:"center"}),Qa=x.style([De,{top:e.space.md,right:e.space.md,width:"40px",height:"40px","@media":{"screen and (min-width: 768px)":{width:"48px",height:"48px",top:e.space.lg,right:e.space.lg}}}]),en=x.style([De,{bottom:e.space.md,right:"80px",width:"40px",height:"40px","@media":{"screen and (min-width: 768px)":{width:"48px",height:"48px",bottom:e.space.lg,right:"100px"}}}]),tn=x.style([De,{bottom:e.space.md,right:e.space.md,width:"40px",height:"40px","@media":{"screen and (min-width: 768px)":{width:"48px",height:"48px",bottom:e.space.lg,right:e.space.lg}}}]),an=le.recipe({base:Xa,variants:{size:{sm:{width:"300px",height:"200px"},md:{width:"500px",height:"300px"},lg:{width:"800px",height:"450px"},fullWidth:{width:"100vw",height:0,paddingBottom:"56.25%",position:"relative"}},aspectRatio:{"16:9":{aspectRatio:"16/9"},"4:3":{aspectRatio:"4/3"},"1:1":{aspectRatio:"1/1"}}},defaultVariants:{size:"md",aspectRatio:"16:9"}}),Le=te.forwardRef(({video:t,poster:a,isAutoPlay:o=!1,startMuted:l=!1,showControls:n=!1,hidePlayButton:u=!1,isVideoFullWidth:f=!1,isPlayingFullScreen:d=!1,onPlay:g,onClose:b,onEnded:C,size:I,aspectRatio:H,css:T,className:j,margin:L,marginTop:E,marginBottom:y,marginLeft:W,marginRight:O,padding:K,paddingTop:P,paddingBottom:Q,paddingLeft:ee,paddingRight:r,gap:i,display:s,flexDirection:c,justifyContent:m,flexWrap:h,flex:k,width:R,height:v,minWidth:w,maxWidth:S,minHeight:$,position:D,top:U,bottom:_,left:B,right:V,zIndex:Y,fontSize:z,fontFamily:q,lineHeight:F,textAlign:A,fontWeight:X,color:G,backgroundColor:Z,borderRadius:N,borderWidth:J,borderStyle:M,borderColor:ne,boxShadow:ie,opacity:se,overflow:oe,overflowX:me,overflowY:fe,...he},xe)=>{const ue=te.useRef(null),[ye,Se]=te.useState(!1),[Ce,Ne]=te.useState(o||l),Ie=()=>{g&&g(),ue.current?.play(),Se(!0)},je=()=>{b&&b(),ue.current?.pause(),Se(!1)},Te=()=>{ue.current?.pause(),Se(!1)},Ae=()=>{const de=!Ce;Ne(de),ue.current&&(ue.current.muted=de)},Oe=()=>{C&&C(),je()},ze=de=>{de.key==="Escape"&&je()};return te.useEffect(()=>(window.addEventListener("keydown",ze),()=>{window.removeEventListener("keydown",ze)}),[]),te.useEffect(()=>{ue.current&&(ue.current.muted=Ce)},[Ce]),p.jsxs("div",{ref:xe,className:re(an({size:f?"fullWidth":I,aspectRatio:H}),ce({margin:L,marginTop:E,marginBottom:y,marginLeft:W,marginRight:O,padding:K,paddingTop:P,paddingBottom:Q,paddingLeft:ee,paddingRight:r,gap:i,display:s,flexDirection:c,justifyContent:m,flexWrap:h,flex:k,width:R,height:v,minWidth:w,maxWidth:S,minHeight:$,position:D,top:U,bottom:_,left:B,right:V,zIndex:Y,fontSize:z,fontFamily:q,lineHeight:F,textAlign:A,fontWeight:X,color:G,backgroundColor:Z,borderRadius:N,borderWidth:J,borderStyle:M,borderColor:ne,boxShadow:ie,opacity:se,overflow:oe,overflowX:me,overflowY:fe}),T,j),...he,children:[p.jsx("video",{ref:ue,className:Ga,playsInline:!0,muted:Ce,autoPlay:o,onEnded:Oe,children:p.jsx("source",{src:t,type:"video/mp4"})}),a&&p.jsx("div",{className:Ka,"data-playing":ye,children:p.jsx("img",{src:a,alt:"Video poster",className:Za,sizes:"2560"})}),!u&&!o&&p.jsx("button",{className:Ja,"data-playing":ye,onClick:Ie,"aria-label":"Play video",type:"button",children:p.jsx(ve,{icon:"play",size:"lg"})}),d&&p.jsx("button",{className:Qa,onClick:je,"aria-label":"Close video",type:"button",children:p.jsx(ve,{icon:"close",size:"md"})}),ye&&n&&p.jsx("button",{className:en,onClick:Te,"aria-label":"Pause video",type:"button",children:p.jsx(ve,{icon:"pause",size:"md"})}),n&&p.jsx("button",{className:tn,onClick:Ae,"aria-label":Ce?"Unmute video":"Mute video",type:"button",children:p.jsx(ve,{icon:Ce?"volumeMute":"volumeUp",size:"md"})})]})});Le.displayName="Video";const nn=x.style({height:0,width:"100vw",overflow:"hidden",position:"relative",paddingBottom:"56.25%",backgroundColor:e.colors.background,marginLeft:"calc(-50vw + 50%)",marginRight:"calc(-50vw + 50%)","@media":{"screen and (min-width: 768px)":{marginLeft:"calc(-50vw + 50%)",marginRight:"calc(-50vw + 50%)"}}}),on=le.recipe({base:nn,variants:{aspectRatio:{"16:9":{paddingBottom:"56.25%"},"4:3":{paddingBottom:"75%"},"1:1":{paddingBottom:"100%"},"21:9":{paddingBottom:"42.86%"}}},defaultVariants:{aspectRatio:"16:9"}}),ut=te.forwardRef(({video:t,poster:a,isAutoPlay:o=!1,startMuted:l=!1,showControls:n=!1,onPlay:u,onClose:f,onEnded:d,aspectRatio:g,css:b,className:C,margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,gap:P,display:Q,flexDirection:ee,justifyContent:r,flexWrap:i,flex:s,width:c,height:m,minWidth:h,maxWidth:k,minHeight:R,position:v,top:w,bottom:S,left:$,right:D,zIndex:U,fontSize:_,fontFamily:B,lineHeight:V,textAlign:Y,fontWeight:z,color:q,backgroundColor:F,borderRadius:A,borderWidth:X,borderStyle:G,borderColor:Z,boxShadow:N,opacity:J,overflow:M,overflowX:ne,overflowY:ie,...se},oe)=>p.jsx("div",{ref:oe,className:re(on({aspectRatio:g}),ce({margin:I,marginTop:H,marginBottom:T,marginLeft:j,marginRight:L,padding:E,paddingTop:y,paddingBottom:W,paddingLeft:O,paddingRight:K,gap:P,display:Q,flexDirection:ee,justifyContent:r,flexWrap:i,flex:s,width:c,height:m,minWidth:h,maxWidth:k,minHeight:R,position:v,top:w,bottom:S,left:$,right:D,zIndex:U,fontSize:_,fontFamily:B,lineHeight:V,textAlign:Y,fontWeight:z,color:q,backgroundColor:F,borderRadius:A,borderWidth:X,borderStyle:G,borderColor:Z,boxShadow:N,opacity:J,overflow:M,overflowX:ne,overflowY:ie}),b,C),...se,children:p.jsx(Le,{video:t,poster:a,isAutoPlay:o,startMuted:l,showControls:n,onPlay:u,onClose:f,onEnded:d,isVideoFullWidth:!0,size:"fullWidth"})}));ut.displayName="VideoFullWidth";const sn=x.style({width:"100%",backgroundColor:"transparent"}),rn=le.recipe({base:sn,variants:{spacing:{none:{gap:0},sm:{display:"flex",flexDirection:"column",gap:e.space.sm},md:{display:"flex",flexDirection:"column",gap:e.space.md},lg:{display:"flex",flexDirection:"column",gap:e.space.lg},xl:{display:"flex",flexDirection:"column",gap:e.space.xl}},layout:{stacked:{display:"flex",flexDirection:"column"},inline:{display:"flex",flexDirection:"row",flexWrap:"wrap",alignItems:"flex-end"},grid:{display:"grid",gridTemplateColumns:"repeat(auto-fit, minmax(250px, 1fr))",gap:e.space.md}}},defaultVariants:{spacing:"md",layout:"stacked"}}),pt=te.forwardRef(({children:t,spacing:a,layout:o,css:l,className:n,margin:u,marginTop:f,marginBottom:d,marginLeft:g,marginRight:b,padding:C,paddingTop:I,paddingBottom:H,paddingLeft:T,paddingRight:j,gap:L,display:E,flexDirection:y,justifyContent:W,flexWrap:O,flex:K,width:P,height:Q,minWidth:ee,maxWidth:r,minHeight:i,position:s,top:c,bottom:m,left:h,right:k,zIndex:R,fontSize:v,fontFamily:w,lineHeight:S,textAlign:$,fontWeight:D,color:U,backgroundColor:_,borderRadius:B,borderWidth:V,borderStyle:Y,borderColor:z,boxShadow:q,opacity:F,overflow:A,overflowX:X,overflowY:G,...Z},N)=>p.jsx("form",{ref:N,className:re(rn({spacing:a,layout:o}),ce({margin:u,marginTop:f,marginBottom:d,marginLeft:g,marginRight:b,padding:C,paddingTop:I,paddingBottom:H,paddingLeft:T,paddingRight:j,gap:L,display:E,flexDirection:y,justifyContent:W,flexWrap:O,flex:K,width:P,height:Q,minWidth:ee,maxWidth:r,minHeight:i,position:s,top:c,bottom:m,left:h,right:k,zIndex:R,fontSize:v,fontFamily:w,lineHeight:S,textAlign:$,fontWeight:D,color:U,backgroundColor:_,borderRadius:B,borderWidth:V,borderStyle:Y,borderColor:z,boxShadow:q,opacity:F,overflow:A,overflowX:X,overflowY:G}),l,n),...Z,children:t}));pt.displayName="Form";const ln=x.style({display:"flex",width:"100%"}),cn=le.recipe({base:ln,variants:{align:{left:{justifyContent:"flex-start",textAlign:"left"},center:{justifyContent:"center",textAlign:"center"},right:{justifyContent:"flex-end",textAlign:"right"}},variant:{default:{flexDirection:"column",gap:e.space.sm},actions:{flexDirection:"row",alignItems:"center",gap:e.space.md,marginTop:e.space.lg},message:{flexDirection:"column",padding:e.space.md,backgroundColor:e.colors.surface,borderRadius:e.radii.md,border:`1px solid ${e.colors.border}`}},spacing:{none:{gap:0},sm:{gap:e.space.sm},md:{gap:e.space.md},lg:{gap:e.space.lg}}},defaultVariants:{align:"left",variant:"default",spacing:"sm"}}),ft=te.forwardRef(({children:t,align:a,variant:o,spacing:l,isActions:n=!1,isMessage:u=!1,css:f,className:d,margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J,...M},ne)=>{let ie=o;return n&&(ie="actions"),u&&(ie="message"),p.jsx("div",{ref:ne,className:re(cn({align:a,variant:ie,spacing:l}),ce({margin:g,marginTop:b,marginBottom:C,marginLeft:I,marginRight:H,padding:T,paddingTop:j,paddingBottom:L,paddingLeft:E,paddingRight:y,gap:W,display:O,flexDirection:K,justifyContent:P,flexWrap:Q,flex:ee,width:r,height:i,minWidth:s,maxWidth:c,minHeight:m,position:h,top:k,bottom:R,left:v,right:w,zIndex:S,fontSize:$,fontFamily:D,lineHeight:U,textAlign:_,fontWeight:B,color:V,backgroundColor:Y,borderRadius:z,borderWidth:q,borderStyle:F,borderColor:A,boxShadow:X,opacity:G,overflow:Z,overflowX:N,overflowY:J}),f,d),...M,children:t})});ft.displayName="Row";const dn=x.style({display:"flex",flexDirection:"column",width:"100%",gap:e.space.xs}),un=x.style({fontFamily:e.fonts.body,fontSize:e.fontSizes.sm,fontWeight:e.fontWeights.medium,color:e.colors.text,lineHeight:e.lineHeights.tight}),mt=x.style({appearance:"none",backgroundColor:e.colors.background,border:`1px solid ${e.colors.border}`,borderRadius:e.radii.md,color:e.colors.text,fontFamily:e.fonts.body,fontSize:e.fontSizes.sm,lineHeight:e.lineHeights.normal,padding:`${e.space.sm} ${e.space.md}`,transition:"all 0.2s ease-in-out",width:"100%","::placeholder":{color:e.colors.textSecondary},":hover":{borderColor:e.colors.primary},":focus":{outline:"2px solid",outlineColor:e.colors.primary,outlineOffset:"2px",borderColor:e.colors.primary},":disabled":{backgroundColor:e.colors.surface,color:e.colors.textSecondary,cursor:"not-allowed",opacity:"0.6"}}),pn=x.style([mt,{resize:"vertical",minHeight:"80px"}]),fn=x.style({display:"flex",flexDirection:"column",gap:e.space.xs}),Xe=x.style({color:e.colors.error,fontSize:e.fontSizes.xs,lineHeight:e.lineHeights.tight,fontFamily:e.fonts.body}),mn=le.recipe({base:dn,variants:{size:{sm:{gap:e.space.xs},md:{},lg:{gap:e.space.sm}}},defaultVariants:{size:"md"}}),gt=te.forwardRef(({name:t,label:a,value:o="",rows:l=3,disabled:n=!1,required:u=!1,placeholder:f="",errors:d,type:g="text",onChange:b,size:C,css:I,className:H,margin:T,marginTop:j,marginBottom:L,marginLeft:E,marginRight:y,padding:W,paddingTop:O,paddingBottom:K,paddingLeft:P,paddingRight:Q,gap:ee,display:r,flexDirection:i,justifyContent:s,flexWrap:c,flex:m,width:h,height:k,minWidth:R,maxWidth:v,minHeight:w,position:S,top:$,bottom:D,left:U,right:_,zIndex:B,fontSize:V,fontFamily:Y,lineHeight:z,textAlign:q,fontWeight:F,color:A,backgroundColor:X,borderRadius:G,borderWidth:Z,borderStyle:N,borderColor:J,boxShadow:M,opacity:ne,overflow:ie,overflowX:se,overflowY:oe,...me},fe)=>{const he=te.useMemo(()=>d?Array.isArray(d)?d.length>0:!!d:!1,[d]),xe=g==="textarea";return p.jsxs("div",{ref:fe,className:re(mn({size:C}),ce({margin:T,marginTop:j,marginBottom:L,marginLeft:E,marginRight:y,padding:W,paddingTop:O,paddingBottom:K,paddingLeft:P,paddingRight:Q,gap:ee,display:r,flexDirection:i,justifyContent:s,flexWrap:c,flex:m,width:h,height:k,minWidth:R,maxWidth:v,minHeight:w,position:S,top:$,bottom:D,left:U,right:_,zIndex:B,fontSize:V,fontFamily:Y,lineHeight:z,textAlign:q,fontWeight:F,color:A,backgroundColor:X,borderRadius:G,borderWidth:Z,borderStyle:N,borderColor:J,boxShadow:M,opacity:ne,overflow:ie,overflowX:se,overflowY:oe}),I,H),...me,children:[a&&p.jsx("label",{htmlFor:t,className:un,"data-required":u,children:a}),xe?p.jsx("textarea",{id:t,name:t,rows:l,value:o,disabled:n,placeholder:f,className:pn,onChange:b,"data-error":he,required:u}):p.jsx("input",{id:t,name:t,type:g,value:o,disabled:n,placeholder:f,className:mt,onChange:b,"data-error":he,required:u}),he&&p.jsx("div",{className:fn,children:Array.isArray(d)?d.map((ue,ye)=>p.jsx("span",{className:Xe,children:ue},ye)):p.jsx("span",{className:Xe,children:d})})]})});gt.displayName="TextField";const gn=x.style({fontFamily:e.fonts.body,fontSize:e.fontSizes.sm,fontWeight:e.fontWeights.medium,color:e.colors.text,lineHeight:e.lineHeights.tight,width:"100%",textAlign:"left",paddingBottom:e.space.xs}),hn=le.recipe({base:gn,variants:{size:{sm:{fontSize:e.fontSizes.xs,paddingBottom:e.space.xs},md:{},lg:{fontSize:e.fontSizes.md,paddingBottom:e.space.sm}},variant:{default:{},inline:{display:"inline-block",marginRight:e.space.sm,paddingBottom:0}}},defaultVariants:{size:"md",variant:"default"}}),ht=te.forwardRef(({label:t,name:a,required:o=!1,size:l,variant:n,css:u,className:f,margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N,...J},M)=>p.jsx("label",{ref:M,htmlFor:a,className:re(hn({size:l,variant:n}),ce({margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N}),u,f),"data-required":o,...J,children:t}));ht.displayName="Label";const xn=x.style({appearance:"none",backgroundColor:e.colors.background,border:`1px solid ${e.colors.border}`,borderRadius:e.radii.md,color:e.colors.text,fontFamily:e.fonts.body,fontSize:e.fontSizes.sm,lineHeight:e.lineHeights.normal,padding:`${e.space.sm} ${e.space.md}`,transition:"all 0.2s ease-in-out",width:"100%"}),bn=le.recipe({base:xn,variants:{size:{sm:{fontSize:e.fontSizes.xs,padding:`${e.space.xs} ${e.space.sm}`},md:{},lg:{fontSize:e.fontSizes.md,padding:`${e.space.md} ${e.space.lg}`}},variant:{default:{},filled:{backgroundColor:e.colors.surface,border:"none"},outlined:{backgroundColor:"transparent"},underlined:{backgroundColor:"transparent",border:"none",borderBottom:`1px solid ${e.colors.border}`,borderRadius:0,padding:`${e.space.sm} 0`}}},defaultVariants:{size:"md",variant:"default"}}),xt=te.forwardRef(({name:t,type:a="text",hasError:o=!1,size:l,variant:n,css:u,className:f,margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N,...J},M)=>p.jsx("input",{ref:M,id:t,name:t,type:a,className:re(bn({size:l,variant:n}),ce({margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N}),u,f),"data-error":o,...J}));xt.displayName="Input";const yn=x.style({appearance:"none",backgroundColor:e.colors.background,border:`1px solid ${e.colors.border}`,borderRadius:e.radii.md,color:e.colors.text,fontFamily:e.fonts.body,fontSize:e.fontSizes.sm,lineHeight:e.lineHeights.normal,padding:`${e.space.sm} ${e.space.md}`,transition:"all 0.2s ease-in-out",width:"100%",resize:"vertical",minHeight:"80px","::placeholder":{color:e.colors.textSecondary},":hover":{borderColor:e.colors.primary},":focus":{outline:"2px solid",outlineColor:e.colors.primary,outlineOffset:"2px",borderColor:e.colors.primary},":disabled":{backgroundColor:e.colors.surface,color:e.colors.textSecondary,cursor:"not-allowed",opacity:"0.6",resize:"none"},selectors:{'&[data-error="true"]':{borderColor:e.colors.error},'&[data-error="true"]:focus':{outlineColor:e.colors.error,borderColor:e.colors.error}}}),vn=le.recipe({base:yn,variants:{size:{sm:{fontSize:e.fontSizes.xs,padding:`${e.space.xs} ${e.space.sm}`,minHeight:"60px"},md:{},lg:{fontSize:e.fontSizes.md,padding:`${e.space.md} ${e.space.lg}`,minHeight:"100px"}},variant:{default:{},filled:{backgroundColor:e.colors.surface,border:"none",":focus":{backgroundColor:e.colors.background,border:`1px solid ${e.colors.primary}`}},outlined:{backgroundColor:"transparent"},underlined:{backgroundColor:"transparent",border:"none",borderBottom:`1px solid ${e.colors.border}`,borderRadius:0,padding:`${e.space.sm} 0`,":focus":{borderBottom:`2px solid ${e.colors.primary}`,outline:"none"}}},resize:{vertical:{resize:"vertical"},horizontal:{resize:"horizontal"},both:{resize:"both"},none:{resize:"none"}}},defaultVariants:{size:"md",variant:"default",resize:"vertical"}}),bt=te.forwardRef(({name:t,hasError:a=!1,size:o,variant:l,resize:n,css:u,className:f,margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N,...J},M)=>p.jsx("textarea",{ref:M,id:t,name:t,className:re(vn({size:o,variant:l,resize:n}),ce({margin:d,marginTop:g,marginBottom:b,marginLeft:C,marginRight:I,padding:H,paddingTop:T,paddingBottom:j,paddingLeft:L,paddingRight:E,gap:y,display:W,flexDirection:O,justifyContent:K,flexWrap:P,flex:Q,width:ee,height:r,minWidth:i,maxWidth:s,minHeight:c,position:m,top:h,bottom:k,left:R,right:v,zIndex:w,fontSize:S,fontFamily:$,lineHeight:D,textAlign:U,fontWeight:_,color:B,backgroundColor:V,borderRadius:Y,borderWidth:z,borderStyle:q,borderColor:F,boxShadow:A,opacity:X,overflow:G,overflowX:Z,overflowY:N}),u,f),"data-error":a,...J}));bt.displayName="Textarea";const wn=()=>p.jsx("div",{children:"ToRemove"}),Sn=(t={})=>({colors:{...pe.colors,...t.colors},space:{...pe.space,...t.space},radii:{...pe.radii,...t.radii},fonts:{...pe.fonts,...t.fonts},maxWidth:t.maxWidth||`${pe.maxWidth}px`,fontSizes:{...pe.fontSizes,...t.fontSizes},fontWeights:{...pe.fontWeights,...t.fontWeights},lineHeights:{...pe.lineHeights,...t.lineHeights},shadows:{...pe.shadows,...t.shadows},section:{...pe.section,...t.section},header:{...pe.header,...t.header},footer:{...pe.footer,...t.footer}}),Cn=(t={})=>({colors:{...be.colors,...t.colors},space:{...be.space,...t.space},radii:{...be.radii,...t.radii},fonts:{...be.fonts,...t.fonts},maxWidth:t.maxWidth||`${be.maxWidth}px`,fontSizes:{...be.fontSizes,...t.fontSizes},fontWeights:{...be.fontWeights,...t.fontWeights},lineHeights:{...be.lineHeights,...t.lineHeights},shadows:{...be.shadows,...t.shadows},section:{...be.section,...t.section},header:{...be.header,...t.header},footer:{...be.footer,...t.footer}}),jn=(t={})=>Sn(t),Rn=(t={})=>Cn(t);exports.Actions=it;exports.Button=Be;exports.Carousel=ot;exports.Columns=nt;exports.ConsentCookie=st;exports.Footer=Qe;exports.Form=pt;exports.Header=Je;exports.Icon=ve;exports.Input=xt;exports.KeyNumber=rt;exports.Label=ht;exports.LanguageSwitcher=dt;exports.Logo=at;exports.Main=Ze;exports.Modal=tt;exports.Nav=et;exports.NavLegal=ct;exports.NavSocial=lt;exports.Row=ft;exports.Section=Tt;exports.TextField=gt;exports.Textarea=bt;exports.ToRemove=wn;exports.Video=Le;exports.VideoFullWidth=ut;exports.baseDarkTheme=be;exports.baseLightTheme=pe;exports.breakpoints=we;exports.createDarkTheme=Rn;exports.createLightTheme=jn;exports.createThemeOverride=wt;exports.getCurrentTheme=zt;exports.getThemeContract=St;exports.getThemeValues=Ct;exports.queries=ae;exports.setTheme=Rt;exports.sprinkles=ce;exports.themeContract=e;exports.toggleTheme=jt;
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./theme.css-CNjMk-g_.cjs"),f=require("react/jsx-runtime"),ee=require("react");function lt(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const o=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,o.get?o:{enumerable:!0,get:()=>e[r]})}}return t.default=e,Object.freeze(t)}const we=lt(ee),ct=e=>({...l.baseLightTheme,...e,colors:{...l.baseLightTheme.colors,...e.colors},space:{...l.baseLightTheme.space,...e.space},radii:{...l.baseLightTheme.radii,...e.radii},fonts:{...l.baseLightTheme.fonts,...e.fonts},fontSizes:{...l.baseLightTheme.fontSizes,...e.fontSizes},lineHeights:{...l.baseLightTheme.lineHeights,...e.lineHeights},shadows:{...l.baseLightTheme.shadows,...e.shadows}}),ut=()=>l.themeContract,dt=(e=!1)=>e?l.baseDarkTheme:l.baseLightTheme,ft=()=>{const e=document.documentElement,r=e.getAttribute("data-theme")==="dark"?null:"dark";return r?e.setAttribute("data-theme",r):e.removeAttribute("data-theme"),r==="dark"},ht=e=>{const t=document.documentElement;e==="dark"?t.setAttribute("data-theme","dark"):t.removeAttribute("data-theme")},mt=()=>typeof window>"u"?"light":document.documentElement.getAttribute("data-theme")==="dark"?"dark":"light";function _e(e){var t,r,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var n=e.length;for(t=0;t<n;t++)e[t]&&(r=_e(e[t]))&&(o&&(o+=" "),o+=r)}else for(r in e)e[r]&&(o&&(o+=" "),o+=r);return o}function se(){for(var e,t,r=0,o="",n=arguments.length;r<n;r++)(e=arguments[r])&&(t=_e(e))&&(o&&(o+=" "),o+=t);return o}const Ee=ee.forwardRef(({variant:e,size:t,fullWidth:r,isPending:o=!1,disabled:n,css:d,className:h,children:u,margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z,...U},te)=>f.jsx("button",{ref:te,className:se(l.buttonRecipe({variant:e,size:t,fullWidth:r}),l.sprinkles({margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z}),d,h),disabled:n||o,...U,children:o?"Loading...":u}));Ee.displayName="Button";const pt=ee.forwardRef(({children:e,align:t,isDark:r,isFullHeight:o,spacing:n,as:d="section",css:h,className:u,margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z,...U},te)=>f.jsx(d,{ref:te,className:se(l.sectionRecipe({align:t,isDark:r,isFullHeight:o,spacing:n}),l.sprinkles({margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z}),h,u),...U,children:e})),Ue=ee.forwardRef(({children:e,centered:t,fullWidth:r,noPadding:o,as:n="main",css:d,className:h,margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k,...Z},U)=>f.jsx(n,{ref:U,className:se(l.mainRecipe({centered:t,fullWidth:r,noPadding:o}),l.sprinkles({margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k}),d,h),...Z,children:e}));Ue.displayName="Main";const De=ee.forwardRef(({children:e,position:t,variant:r,size:o,isFixed:n,hideToggleNav:d,childrenOverlay:h,displayToggleNavOnDesktop:u,as:p="header",css:v,className:j,margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,gap:B,display:J,flexDirection:Q,justifyContent:i,flexWrap:a,flex:s,width:c,height:m,minWidth:g,maxWidth:V,minHeight:R,zIndex:b,fontSize:w,fontFamily:x,lineHeight:z,textAlign:P,fontWeight:H,color:W,backgroundColor:A,borderRadius:E,borderWidth:$,borderStyle:S,borderColor:q,boxShadow:L,opacity:F,overflow:X,overflowX:Y,overflowY:K,...k},Z)=>{const[U,te]=ee.useState(!1),ne=t||(n?"fixed":"relative");return f.jsxs(f.Fragment,{children:[f.jsxs(p,{ref:Z,className:se(l.headerRecipe({variant:r,size:o}),l.sprinkles({margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,gap:B,display:J,flexDirection:Q,justifyContent:i,flexWrap:a,flex:s,width:c,height:m,minWidth:g,maxWidth:V,minHeight:R,zIndex:b,fontSize:w,fontFamily:x,lineHeight:z,textAlign:P,fontWeight:H,color:W,backgroundColor:A,borderRadius:E,borderWidth:$,borderStyle:S,borderColor:q,boxShadow:L,opacity:F,overflow:X,overflowX:Y,overflowY:K}),v,j),...k,children:[h&&f.jsx("div",{className:se("header-overlay",U&&"header-overlay--open"),children:h}),e,!d&&f.jsxs("button",{type:"button",className:"header-nav-toggle",onClick:()=>te(!U),"aria-expanded":U,"aria-label":"Toggle navigation",children:[f.jsx("span",{className:"sr-only",children:"Toggle navigation"}),f.jsxs("div",{className:`hamburger ${U?"hamburger--open":""}`,children:[f.jsx("span",{}),f.jsx("span",{}),f.jsx("span",{})]})]})]}),(ne==="fixed"||n)&&f.jsx("div",{className:l.headerPlaceholder})]})});De.displayName="Header";const Be=ee.forwardRef(({children:e,variant:t,size:r,layout:o,as:n="footer",css:d,className:h,margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k,...Z},U)=>f.jsx(n,{ref:U,className:se(l.footerRecipe({variant:t,size:r,layout:o}),l.sprinkles({margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k}),d,h),...Z,children:e}));Be.displayName="Footer";const He=ee.forwardRef(({children:e,orientation:t,variant:r,justify:o,as:n="nav",css:d,className:h,margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k,...Z},U)=>f.jsx(n,{ref:U,className:se(l.navRecipe({orientation:t,variant:r,justify:o}),l.sprinkles({margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k}),d,h),...Z,children:e}));He.displayName="Nav";const gt={caret:"M8.12 9.29 12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7a.9959.9959 0 0 1 0-1.41c.39-.38 1.03-.39 1.42 0",close:"M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7a.996.996 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4",arrowBack:"M19 11H7.83l4.88-4.88c.39-.39.39-1.03 0-1.42a.996.996 0 0 0-1.41 0l-6.59 6.59c-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L7.83 13H19c.55 0 1-.45 1-1s-.45-1-1-1",arrowForward:"M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42s1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6a.996.996 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1",play:"M8 5v14l11-7z",pause:"M6 19h4V5H6zm8-14v14h4V5z",volumeMute:"M7 9v6h4l5 5V4l-5 5z",volumeUp:"M3 9v6h4l5 5V4L7 9zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02M14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77",socialFacebook:"M 22.2816,10.9924 C 22.2816,4.92145 17.3602,0 11.2892,0 5.21832,0 0.296875,4.92145 0.296875,10.9924 c 0,5.4865 4.019725,10.0342 9.274805,10.8588 V 14.1698 H 6.78065 V 10.9924 H 9.57168 V 8.57061 c 0,-2.75496 1.64112,-4.27672 4.15202,-4.27672 1.2023,0 2.4606,0.2147 2.4606,0.2147 v 2.70515 h -1.3861 c -1.3654,0 -1.7914,0.8474 -1.7914,1.71756 v 2.0611 h 3.0487 l -0.4874,3.1774 h -2.5613 v 7.6814 c 5.2551,-0.8246 9.2748,-5.3723 9.2748,-10.8588 z",socialInstagram:"M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z",socialPinterest:"M9.04 21.54c.96.29 1.93.46 2.96.46a10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12c0 4.25 2.67 7.9 6.44 9.34-.09-.78-.18-2.07 0-2.96l1.15-4.94s-.29-.58-.29-1.5c0-1.38.86-2.41 1.84-2.41.86 0 1.26.63 1.26 1.44 0 .86-.57 2.09-.86 3.27-.17.98.52 1.84 1.52 1.84 1.78 0 3.16-1.9 3.16-4.58 0-2.4-1.72-4.04-4.19-4.04-2.82 0-4.48 2.1-4.48 4.31 0 .86.28 1.73.74 2.3.09.06.09.14.06.29l-.29 1.09c0 .17-.11.23-.28.11-1.28-.56-2.02-2.38-2.02-3.85 0-3.16 2.24-6.03 6.56-6.03 3.44 0 6.12 2.47 6.12 5.75 0 3.44-2.13 6.2-5.18 6.2-.97 0-1.92-.52-2.26-1.13l-.67 2.37c-.23.86-.86 2.01-1.29 2.7v-.03z",socialLinkedIn:"M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z",socialSpotify:"",socialTiktok:"M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2Zm-3.281,8.725h0c-.109.011-.219.016-.328.017A3.571,3.571,0,0,1,14.4,9.129v5.493a4.061,4.061,0,1,1-4.06-4.06c.085,0,.167.008.251.013v2a2.067,2.067,0,1,0-.251,4.119A2.123,2.123,0,0,0,12.5,14.649l.02-9.331h1.914A3.564,3.564,0,0,0,17.719,8.5Z",socialX:"M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z",socialYoutube:"M10 15l5.19-3L10 9v6m11.56-7.83c.13.47.22 1.1.28 1.9.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83-.25.9-.83 1.48-1.73 1.73-.47.13-1.33.22-2.65.28-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44-.9-.25-1.48-.83-1.73-1.73-.13-.47-.22-1.1-.28-1.9-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83.25-.9.83-1.48 1.73-1.73.47-.13 1.33-.22 2.65-.28 1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44.9.25 1.48.83 1.73 1.73z"},me=ee.forwardRef(({icon:e,iconPath:t,size:r,color:o,customSize:n,customColor:d,interactive:h,viewBox:u="0 0 24 24",css:p,className:v,margin:j,marginTop:C,marginBottom:D,marginLeft:T,marginRight:N,padding:_,paddingTop:O,paddingBottom:y,paddingLeft:M,paddingRight:I,gap:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,position:R,top:b,bottom:w,left:x,right:z,zIndex:P,fontSize:H,fontFamily:W,lineHeight:A,textAlign:E,fontWeight:$,backgroundColor:S,borderRadius:q,borderWidth:L,borderStyle:F,borderColor:X,boxShadow:Y,opacity:K,overflow:k,overflowX:Z,overflowY:U,...te},ne)=>{const re=t||(e?gt[e]:""),ae=n?{width:`${n}px`,height:`${n}px`}:{},ce=d?{fill:d}:{};return f.jsx("svg",{ref:ne,viewBox:u,className:se(l.iconRecipe({size:n?void 0:r,interactive:h}),l.sprinkles({margin:j,marginTop:C,marginBottom:D,marginLeft:T,marginRight:N,padding:_,paddingTop:O,paddingBottom:y,paddingLeft:M,paddingRight:I,gap:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,position:R,top:b,bottom:w,left:x,right:z,zIndex:P,fontSize:H,fontFamily:W,lineHeight:A,textAlign:E,fontWeight:$,backgroundColor:S,borderRadius:q,borderWidth:L,borderStyle:F,borderColor:X,boxShadow:Y,opacity:K,overflow:k,overflowX:Z,overflowY:U}),p,v),style:ae,"aria-hidden":!te["aria-label"]&&!te["aria-labelledby"],...te,children:f.jsx("path",{className:t,d:re,style:ce})})});me.displayName="Icon";const We=ee.forwardRef(({children:e,isOpen:t,onClose:r,showCloseButton:o=!0,closeOnBackdropClick:n=!0,closeOnEscape:d=!0,contentProps:h={},size:u,centered:p,css:v,className:j,margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,gap:B,display:J,flexDirection:Q,justifyContent:i,flexWrap:a,flex:s,width:c,height:m,minWidth:g,maxWidth:V,minHeight:R,position:b,top:w,bottom:x,left:z,right:P,zIndex:H,fontSize:W,fontFamily:A,lineHeight:E,textAlign:$,fontWeight:S,color:q,backgroundColor:L,borderRadius:F,borderWidth:X,borderStyle:Y,borderColor:K,boxShadow:k,opacity:Z,overflow:U,overflowX:te,overflowY:ne,...re},ae)=>{const[ce,le]=ee.useState(t);ee.useEffect(()=>{if(t)le(!0),document.body.style.overflow="hidden";else{const fe=setTimeout(()=>le(!1),300);return document.body.style.overflow="",()=>clearTimeout(fe)}},[t]),ee.useEffect(()=>{const fe=oe=>{d&&oe.key==="Escape"&&r&&r()};if(t)return document.addEventListener("keydown",fe),()=>document.removeEventListener("keydown",fe)},[t,d,r]);const de=fe=>{n&&fe.target===fe.currentTarget&&r&&r()};return ce?f.jsx("div",{ref:ae,className:se(l.modalRecipe({size:u,centered:p}),l.sprinkles({margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,gap:B,display:J,flexDirection:Q,justifyContent:i,flexWrap:a,flex:s,width:c,height:m,minWidth:g,maxWidth:V,minHeight:R,position:b,top:w,bottom:x,left:z,right:P,zIndex:H,fontSize:W,fontFamily:A,lineHeight:E,textAlign:$,fontWeight:S,color:q,backgroundColor:L,borderRadius:F,borderWidth:X,borderStyle:Y,borderColor:K,boxShadow:k,opacity:Z,overflow:U,overflowX:te,overflowY:ne}),v,j),onClick:de,role:"dialog","aria-modal":"true",...re,children:f.jsxs("div",{className:se(l.modalContentRecipe({size:h.size||u,align:h.align}),h.css,h.className),children:[o&&r&&f.jsx("button",{type:"button",className:l.modalCloseButton,onClick:r,"aria-label":"Close modal",children:f.jsx(me,{icon:"close",size:"sm"})}),e]})}):null});We.displayName="Modal";const $e=ee.forwardRef(({children:e,size:t,variant:r,responsive:o,as:n="div",href:d,css:h,className:u,margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z,...U},te)=>{const ne=d?"link":r;return f.jsx("div",{ref:te,className:se(l.logoRecipe({size:t,variant:ne,responsive:o}),l.sprinkles({margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z}),h,u),...U,children:e})});$e.displayName="Logo";const qe=ee.forwardRef(({children:e,columns:t,align:r,spacing:o,wrap:n,reverse:d,alignItems:h,as:u="div",css:p,className:v,margin:j,marginTop:C,marginBottom:D,marginLeft:T,marginRight:N,padding:_,paddingTop:O,paddingBottom:y,paddingLeft:M,paddingRight:I,gap:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,position:R,top:b,bottom:w,left:x,right:z,zIndex:P,fontSize:H,fontFamily:W,lineHeight:A,textAlign:E,fontWeight:$,color:S,backgroundColor:q,borderRadius:L,borderWidth:F,borderStyle:X,borderColor:Y,boxShadow:K,opacity:k,overflow:Z,overflowX:U,overflowY:te,...ne},re)=>{const ae=Array.isArray(e)?e:[e];return f.jsx(u,{ref:re,className:se(l.columnsRecipe({align:r,spacing:o,wrap:n,reverse:d,alignItems:h}),l.sprinkles({margin:j,marginTop:C,marginBottom:D,marginLeft:T,marginRight:N,padding:_,paddingTop:O,paddingBottom:y,paddingLeft:M,paddingRight:I,gap:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,position:R,top:b,bottom:w,left:x,right:z,zIndex:P,fontSize:H,fontFamily:W,lineHeight:A,textAlign:E,fontWeight:$,color:S,backgroundColor:q,borderRadius:L,borderWidth:F,borderStyle:X,borderColor:Y,boxShadow:K,opacity:k,overflow:Z,overflowX:U,overflowY:te}),p,v),...ne,children:t&&t.length>0?ae.map((ce,le)=>f.jsx("div",{className:se(t[le]&&l.columnWidths[t[le]]),children:ce},le)):e})});qe.displayName="Columns";const Xe=ee.forwardRef(({children:e,align:t,direction:r,spacing:o,wrap:n,fullWidth:d,as:h="div",css:u,className:p,margin:v,marginTop:j,marginBottom:C,marginLeft:D,marginRight:T,padding:N,paddingTop:_,paddingBottom:O,paddingLeft:y,paddingRight:M,gap:I,display:G,flexDirection:B,justifyContent:J,flexWrap:Q,flex:i,width:a,height:s,minWidth:c,maxWidth:m,minHeight:g,position:V,top:R,bottom:b,left:w,right:x,zIndex:z,fontSize:P,fontFamily:H,lineHeight:W,textAlign:A,fontWeight:E,color:$,backgroundColor:S,borderRadius:q,borderWidth:L,borderStyle:F,borderColor:X,boxShadow:Y,opacity:K,overflow:k,overflowX:Z,overflowY:U,...te},ne)=>f.jsx(h,{ref:ne,className:se(l.actionsRecipe({align:t,direction:r,spacing:o,wrap:n,fullWidth:d}),l.sprinkles({margin:v,marginTop:j,marginBottom:C,marginLeft:D,marginRight:T,padding:N,paddingTop:_,paddingBottom:O,paddingLeft:y,paddingRight:M,gap:I,display:G,flexDirection:B,justifyContent:J,flexWrap:Q,flex:i,width:a,height:s,minWidth:c,maxWidth:m,minHeight:g,position:V,top:R,bottom:b,left:w,right:x,zIndex:z,fontSize:P,fontFamily:H,lineHeight:W,textAlign:A,fontWeight:E,color:$,backgroundColor:S,borderRadius:q,borderWidth:L,borderStyle:F,borderColor:X,boxShadow:Y,opacity:K,overflow:k,overflowX:Z,overflowY:U}),u,p),...te,children:e}));Xe.displayName="Actions";const vt=()=>{const[e,t]=ee.useState({width:void 0,height:void 0});return ee.useEffect(()=>{const r=()=>{t({width:window.innerWidth,height:window.innerHeight})};return window.addEventListener("resize",r),r(),()=>window.removeEventListener("resize",r)},[]),e},Ye=ee.forwardRef(({data:e,itemsPerView:t=1,showNavButtons:r=!1,showBullets:o=!1,autoplay:n=!1,autoplayInterval:d=3e3,gap:h=16,fullWidth:u,as:p="div",css:v,className:j,margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,position:R,top:b,bottom:w,left:x,right:z,zIndex:P,fontSize:H,fontFamily:W,lineHeight:A,textAlign:E,fontWeight:$,color:S,backgroundColor:q,borderRadius:L,borderWidth:F,borderStyle:X,borderColor:Y,boxShadow:K,opacity:k,overflow:Z,overflowX:U,overflowY:te,...ne},re)=>{const{width:ae}=vt(),[ce,le]=ee.useState(0),[de,fe]=ee.useState(0),[oe,he]=ee.useState(t),pe=ee.useRef(null),ge=ee.useRef(null),je=ae!==void 0&&ae>l.breakpoints.md,Ne=ae!==void 0&&ae>l.breakpoints.lg;ee.useEffect(()=>{he(Ne?t:je?Math.max(1,Math.floor(t/2)):1)},[je,Ne,t]),ee.useEffect(()=>{const ie=()=>{if(pe.current){const ue=pe.current.getBoundingClientRect().width,ye=(oe-1)*h;fe((ue-ye)/oe)}};return ie(),window.addEventListener("resize",ie),()=>window.removeEventListener("resize",ie)},[oe,h]),ee.useEffect(()=>{if(!n)return;const ie=setInterval(()=>{le(ue=>{const ye=Math.max(0,e.length-oe);return ue>=ye?0:ue+1})},d);return()=>clearInterval(ie)},[n,d,e.length,oe]),ee.useEffect(()=>{const ie=pe.current;if(!ie)return;let ue=0,ye=0;const Ae=Se=>{ue=Se.changedTouches[0].screenX},Le=Se=>{ye=Se.changedTouches[0].screenX,ot()},ot=()=>{const Fe=ue-ye;Math.abs(Fe)>100&&(Fe>0?Re():ve())};return ie.addEventListener("touchstart",Ae,{passive:!0}),ie.addEventListener("touchend",Le,{passive:!0}),()=>{ie.removeEventListener("touchstart",Ae),ie.removeEventListener("touchend",Le)}},[]);const ve=()=>{le(ie=>Math.max(0,ie-1))},Re=()=>{const ie=Math.max(0,e.length-oe);le(ue=>Math.min(ie,ue+1))},Ce=ie=>{const ue=Math.max(0,e.length-oe);le(Math.min(ie,ue))},Te=-(ce*(de+h)),be=Math.max(0,e.length-oe);return f.jsxs(p,{ref:re,className:se(l.carouselRecipe({fullWidth:u}),l.sprinkles({margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,position:R,top:b,bottom:w,left:x,right:z,zIndex:P,fontSize:H,fontFamily:W,lineHeight:A,textAlign:E,fontWeight:$,color:S,backgroundColor:q,borderRadius:L,borderWidth:F,borderStyle:X,borderColor:Y,boxShadow:K,opacity:k,overflow:Z,overflowX:U,overflowY:te}),v,j),...ne,children:[f.jsx("div",{ref:pe,className:l.carouselContent,children:f.jsx("div",{ref:ge,className:l.carouselSlide,style:{transform:`translateX(${Te}px)`,gap:`${h}px`},children:e.map((ie,ue)=>f.jsx("div",{className:l.carouselItem,style:{width:`${de}px`},children:ie},ue))})}),r&&f.jsxs("div",{className:l.carouselNav,children:[f.jsx("button",{type:"button",className:l.carouselNavButton,onClick:ve,disabled:ce===0,"aria-label":"Previous slide",children:f.jsx(me,{icon:"arrowBack",size:"md"})}),f.jsx("button",{type:"button",className:l.carouselNavButton,onClick:Re,disabled:ce>=be,"aria-label":"Next slide",children:f.jsx(me,{icon:"arrowForward",size:"md"})})]}),o&&f.jsx("div",{className:l.carouselBullets,children:Array.from({length:be+1},(ie,ue)=>f.jsx("button",{type:"button",className:se(l.carouselBullet,ue===ce&&l.carouselBulletActive),onClick:()=>Ce(ue),"aria-label":`Go to slide ${ue+1}`},ue))})]})});Ye.displayName="Carousel";function yt(e){const t=e+"=",o=decodeURIComponent(document.cookie).split(";");for(let n=0;n<o.length;n++){let d=o[n];for(;d.charAt(0)==" ";)d=d.substring(1);if(d.indexOf(t)==0)return d.substring(t.length,d.length)}return""}function Ie(e,t,r){const o=new Date;o.setTime(o.getTime()+r*24*60*60*1e3);const n="expires="+o.toUTCString();document.cookie=e+"="+t+";"+n+";path=/"}const Ge=ee.forwardRef(({children:e,variant:t,cookieName:r="consent",cookieExpirationDays:o=365,onAccept:n,onReject:d,translations:h,enableGoogleAnalytics:u=!0,css:p,className:v,margin:j,marginTop:C,marginBottom:D,marginLeft:T,marginRight:N,padding:_,paddingTop:O,paddingBottom:y,paddingLeft:M,paddingRight:I,gap:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,zIndex:R,fontSize:b,fontFamily:w,lineHeight:x,textAlign:z,fontWeight:P,color:H,backgroundColor:W,borderRadius:A,borderWidth:E,borderStyle:$,borderColor:S,boxShadow:q,opacity:L,overflow:F,overflowX:X,overflowY:Y,...K},k)=>{const[Z,U]=ee.useState(!1),te=()=>{U(!1),Ie(r,"true",o),u&&typeof window<"u"&&typeof window.gtag<"u"&&window.gtag("consent","update",{analytics_storage:"granted"}),n?.()},ne=()=>{U(!1),Ie(r,"false",o),u&&typeof window<"u"&&typeof window.gtag<"u"&&window.gtag("consent","update",{analytics_storage:"denied"}),d?.()};return ee.useEffect(()=>{const re=yt(r),ae=re!=="true"&&re!=="false",ce=re==="true";if(ae&&U(!0),u&&typeof window<"u"&&typeof window.gtag<"u"){const le=ce?"granted":"denied";window.gtag("consent","update",{analytics_storage:le})}},[r,u]),Z?f.jsx("div",{ref:k,className:se(l.consentRecipe({variant:t}),l.sprinkles({margin:j,marginTop:C,marginBottom:D,marginLeft:T,marginRight:N,padding:_,paddingTop:O,paddingBottom:y,paddingLeft:M,paddingRight:I,gap:G,display:B,flexDirection:J,justifyContent:Q,flexWrap:i,flex:a,width:s,height:c,minWidth:m,maxWidth:g,minHeight:V,zIndex:R,fontSize:b,fontFamily:w,lineHeight:x,textAlign:z,fontWeight:P,color:H,backgroundColor:W,borderRadius:A,borderWidth:E,borderStyle:$,borderColor:S,boxShadow:q,opacity:L,overflow:F,overflowX:X,overflowY:Y}),p,v),role:"dialog","aria-modal":"true","aria-labelledby":"consent-title",...K,children:f.jsxs("div",{className:l.consentContent,children:[e,f.jsxs("div",{className:l.consentActions,children:[f.jsx(Ee,{variant:"outline",size:"sm",onClick:ne,children:h?.actions.reject||"Reject"}),f.jsx(Ee,{variant:"primary",size:"sm",onClick:te,children:h?.actions.accept||"Accept"})]})]})}):null});Ge.displayName="ConsentCookie";function bt(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function wt(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if(typeof t=="function"){var r=function o(){var n=!1;try{n=this instanceof o}catch{}return n?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};r.prototype=t.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(e).forEach(function(o){var n=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(r,o,n.get?n:{enumerable:!0,get:function(){return e[o]}})}),r}var xe={},ke=function(){return ke=Object.assign||function(e){for(var t,r=1,o=arguments.length;r<o;r++)for(var n in t=arguments[r])Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e},ke.apply(this,arguments)},xt=(function(){function e(t,r,o){var n=this;this.endVal=r,this.options=o,this.version="2.8.0",this.defaults={startVal:0,decimalPlaces:0,duration:2,useEasing:!0,useGrouping:!0,useIndianSeparators:!1,smartEasingThreshold:999,smartEasingAmount:333,separator:",",decimal:".",prefix:"",suffix:"",enableScrollSpy:!1,scrollSpyDelay:200,scrollSpyOnce:!1},this.finalEndVal=null,this.useEasing=!0,this.countDown=!1,this.error="",this.startVal=0,this.paused=!0,this.once=!1,this.count=function(d){n.startTime||(n.startTime=d);var h=d-n.startTime;n.remaining=n.duration-h,n.useEasing?n.countDown?n.frameVal=n.startVal-n.easingFn(h,0,n.startVal-n.endVal,n.duration):n.frameVal=n.easingFn(h,n.startVal,n.endVal-n.startVal,n.duration):n.frameVal=n.startVal+(n.endVal-n.startVal)*(h/n.duration);var u=n.countDown?n.frameVal<n.endVal:n.frameVal>n.endVal;n.frameVal=u?n.endVal:n.frameVal,n.frameVal=Number(n.frameVal.toFixed(n.options.decimalPlaces)),n.printValue(n.frameVal),h<n.duration?n.rAF=requestAnimationFrame(n.count):n.finalEndVal!==null?n.update(n.finalEndVal):n.options.onCompleteCallback&&n.options.onCompleteCallback()},this.formatNumber=function(d){var h,u,p,v,j=d<0?"-":"";h=Math.abs(d).toFixed(n.options.decimalPlaces);var C=(h+="").split(".");if(u=C[0],p=C.length>1?n.options.decimal+C[1]:"",n.options.useGrouping){v="";for(var D=3,T=0,N=0,_=u.length;N<_;++N)n.options.useIndianSeparators&&N===4&&(D=2,T=1),N!==0&&T%D==0&&(v=n.options.separator+v),T++,v=u[_-N-1]+v;u=v}return n.options.numerals&&n.options.numerals.length&&(u=u.replace(/[0-9]/g,(function(O){return n.options.numerals[+O]})),p=p.replace(/[0-9]/g,(function(O){return n.options.numerals[+O]}))),j+n.options.prefix+u+p+n.options.suffix},this.easeOutExpo=function(d,h,u,p){return u*(1-Math.pow(2,-10*d/p))*1024/1023+h},this.options=ke(ke({},this.defaults),o),this.formattingFn=this.options.formattingFn?this.options.formattingFn:this.formatNumber,this.easingFn=this.options.easingFn?this.options.easingFn:this.easeOutExpo,this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.endVal=this.validateValue(r),this.options.decimalPlaces=Math.max(this.options.decimalPlaces),this.resetDuration(),this.options.separator=String(this.options.separator),this.useEasing=this.options.useEasing,this.options.separator===""&&(this.options.useGrouping=!1),this.el=typeof t=="string"?document.getElementById(t):t,this.el?this.printValue(this.startVal):this.error="[CountUp] target is null or undefined",typeof window<"u"&&this.options.enableScrollSpy&&(this.error?console.error(this.error,t):(window.onScrollFns=window.onScrollFns||[],window.onScrollFns.push((function(){return n.handleScroll(n)})),window.onscroll=function(){window.onScrollFns.forEach((function(d){return d()}))},this.handleScroll(this)))}return e.prototype.handleScroll=function(t){if(t&&window&&!t.once){var r=window.innerHeight+window.scrollY,o=t.el.getBoundingClientRect(),n=o.top+window.pageYOffset,d=o.top+o.height+window.pageYOffset;d<r&&d>window.scrollY&&t.paused?(t.paused=!1,setTimeout((function(){return t.start()}),t.options.scrollSpyDelay),t.options.scrollSpyOnce&&(t.once=!0)):(window.scrollY>d||n>r)&&!t.paused&&t.reset()}},e.prototype.determineDirectionAndSmartEasing=function(){var t=this.finalEndVal?this.finalEndVal:this.endVal;this.countDown=this.startVal>t;var r=t-this.startVal;if(Math.abs(r)>this.options.smartEasingThreshold&&this.options.useEasing){this.finalEndVal=t;var o=this.countDown?1:-1;this.endVal=t+o*this.options.smartEasingAmount,this.duration=this.duration/2}else this.endVal=t,this.finalEndVal=null;this.finalEndVal!==null?this.useEasing=!1:this.useEasing=this.options.useEasing},e.prototype.start=function(t){this.error||(this.options.onStartCallback&&this.options.onStartCallback(),t&&(this.options.onCompleteCallback=t),this.duration>0?(this.determineDirectionAndSmartEasing(),this.paused=!1,this.rAF=requestAnimationFrame(this.count)):this.printValue(this.endVal))},e.prototype.pauseResume=function(){this.paused?(this.startTime=null,this.duration=this.remaining,this.startVal=this.frameVal,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count)):cancelAnimationFrame(this.rAF),this.paused=!this.paused},e.prototype.reset=function(){cancelAnimationFrame(this.rAF),this.paused=!0,this.resetDuration(),this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.printValue(this.startVal)},e.prototype.update=function(t){cancelAnimationFrame(this.rAF),this.startTime=null,this.endVal=this.validateValue(t),this.endVal!==this.frameVal&&(this.startVal=this.frameVal,this.finalEndVal==null&&this.resetDuration(),this.finalEndVal=null,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count))},e.prototype.printValue=function(t){var r;if(this.el){var o=this.formattingFn(t);!((r=this.options.plugin)===null||r===void 0)&&r.render?this.options.plugin.render(this.el,o):this.el.tagName==="INPUT"?this.el.value=o:this.el.tagName==="text"||this.el.tagName==="tspan"?this.el.textContent=o:this.el.innerHTML=o}},e.prototype.ensureNumber=function(t){return typeof t=="number"&&!isNaN(t)},e.prototype.validateValue=function(t){var r=Number(t);return this.ensureNumber(r)?r:(this.error="[CountUp] invalid start or end value: ".concat(t),null)},e.prototype.resetDuration=function(){this.startTime=null,this.duration=1e3*Number(this.options.duration),this.remaining=this.duration},e})();const jt=Object.freeze(Object.defineProperty({__proto__:null,CountUp:xt},Symbol.toStringTag,{value:"Module"})),Nt=wt(jt);var ze;function Rt(){if(ze)return xe;ze=1,Object.defineProperty(xe,"__esModule",{value:!0});var e=ee,t=Nt;function r(i,a){var s=i==null?null:typeof Symbol<"u"&&i[Symbol.iterator]||i["@@iterator"];if(s!=null){var c,m,g,V,R=[],b=!0,w=!1;try{if(g=(s=s.call(i)).next,a!==0)for(;!(b=(c=g.call(s)).done)&&(R.push(c.value),R.length!==a);b=!0);}catch(x){w=!0,m=x}finally{try{if(!b&&s.return!=null&&(V=s.return(),Object(V)!==V))return}finally{if(w)throw m}}return R}}function o(i,a){var s=Object.keys(i);if(Object.getOwnPropertySymbols){var c=Object.getOwnPropertySymbols(i);a&&(c=c.filter(function(m){return Object.getOwnPropertyDescriptor(i,m).enumerable})),s.push.apply(s,c)}return s}function n(i){for(var a=1;a<arguments.length;a++){var s=arguments[a]!=null?arguments[a]:{};a%2?o(Object(s),!0).forEach(function(c){u(i,c,s[c])}):Object.getOwnPropertyDescriptors?Object.defineProperties(i,Object.getOwnPropertyDescriptors(s)):o(Object(s)).forEach(function(c){Object.defineProperty(i,c,Object.getOwnPropertyDescriptor(s,c))})}return i}function d(i,a){if(typeof i!="object"||!i)return i;var s=i[Symbol.toPrimitive];if(s!==void 0){var c=s.call(i,a);if(typeof c!="object")return c;throw new TypeError("@@toPrimitive must return a primitive value.")}return(a==="string"?String:Number)(i)}function h(i){var a=d(i,"string");return typeof a=="symbol"?a:String(a)}function u(i,a,s){return a=h(a),a in i?Object.defineProperty(i,a,{value:s,enumerable:!0,configurable:!0,writable:!0}):i[a]=s,i}function p(){return p=Object.assign?Object.assign.bind():function(i){for(var a=1;a<arguments.length;a++){var s=arguments[a];for(var c in s)Object.prototype.hasOwnProperty.call(s,c)&&(i[c]=s[c])}return i},p.apply(this,arguments)}function v(i,a){if(i==null)return{};var s={},c=Object.keys(i),m,g;for(g=0;g<c.length;g++)m=c[g],!(a.indexOf(m)>=0)&&(s[m]=i[m]);return s}function j(i,a){if(i==null)return{};var s=v(i,a),c,m;if(Object.getOwnPropertySymbols){var g=Object.getOwnPropertySymbols(i);for(m=0;m<g.length;m++)c=g[m],!(a.indexOf(c)>=0)&&Object.prototype.propertyIsEnumerable.call(i,c)&&(s[c]=i[c])}return s}function C(i,a){return D(i)||r(i,a)||T(i,a)||_()}function D(i){if(Array.isArray(i))return i}function T(i,a){if(i){if(typeof i=="string")return N(i,a);var s=Object.prototype.toString.call(i).slice(8,-1);if(s==="Object"&&i.constructor&&(s=i.constructor.name),s==="Map"||s==="Set")return Array.from(i);if(s==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s))return N(i,a)}}function N(i,a){(a==null||a>i.length)&&(a=i.length);for(var s=0,c=new Array(a);s<a;s++)c[s]=i[s];return c}function _(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
2
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var O=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u"?e.useLayoutEffect:e.useEffect;function y(i){var a=e.useRef(i);return O(function(){a.current=i}),e.useCallback(function(){for(var s=arguments.length,c=new Array(s),m=0;m<s;m++)c[m]=arguments[m];return a.current.apply(void 0,c)},[])}var M=function(a,s){var c=s.decimal,m=s.decimals,g=s.duration,V=s.easingFn,R=s.end,b=s.formattingFn,w=s.numerals,x=s.prefix,z=s.separator,P=s.start,H=s.suffix,W=s.useEasing,A=s.useGrouping,E=s.useIndianSeparators,$=s.enableScrollSpy,S=s.scrollSpyDelay,q=s.scrollSpyOnce,L=s.plugin;return new t.CountUp(a,R,{startVal:P,duration:g,decimal:c,decimalPlaces:m,easingFn:V,formattingFn:b,numerals:w,separator:z,prefix:x,suffix:H,plugin:L,useEasing:W,useIndianSeparators:E,useGrouping:A,enableScrollSpy:$,scrollSpyDelay:S,scrollSpyOnce:q})},I=["ref","startOnMount","enableReinitialize","delay","onEnd","onStart","onPauseResume","onReset","onUpdate"],G={decimal:".",separator:",",delay:null,prefix:"",suffix:"",duration:2,start:0,decimals:0,startOnMount:!0,enableReinitialize:!0,useEasing:!0,useGrouping:!0,useIndianSeparators:!1},B=function(a){var s=Object.fromEntries(Object.entries(a).filter(function(k){var Z=C(k,2),U=Z[1];return U!==void 0})),c=e.useMemo(function(){return n(n({},G),s)},[a]),m=c.ref,g=c.startOnMount,V=c.enableReinitialize,R=c.delay,b=c.onEnd,w=c.onStart,x=c.onPauseResume,z=c.onReset,P=c.onUpdate,H=j(c,I),W=e.useRef(),A=e.useRef(),E=e.useRef(!1),$=y(function(){return M(typeof m=="string"?m:m.current,H)}),S=y(function(k){var Z=W.current;if(Z&&!k)return Z;var U=$();return W.current=U,U}),q=y(function(){var k=function(){return S(!0).start(function(){b?.({pauseResume:L,reset:F,start:Y,update:X})})};R&&R>0?A.current=setTimeout(k,R*1e3):k(),w?.({pauseResume:L,reset:F,update:X})}),L=y(function(){S().pauseResume(),x?.({reset:F,start:Y,update:X})}),F=y(function(){S().el&&(A.current&&clearTimeout(A.current),S().reset(),z?.({pauseResume:L,start:Y,update:X}))}),X=y(function(k){S().update(k),P?.({pauseResume:L,reset:F,start:Y})}),Y=y(function(){F(),q()}),K=y(function(k){g&&(k&&F(),q())});return e.useEffect(function(){E.current?V&&K(!0):(E.current=!0,K())},[V,E,K,R,a.start,a.suffix,a.prefix,a.duration,a.separator,a.decimals,a.decimal,a.formattingFn]),e.useEffect(function(){return function(){F()}},[F]),{start:Y,pauseResume:L,reset:F,update:X,getCountUp:S}},J=["className","redraw","containerProps","children","style"],Q=function(a){var s=a.className,c=a.redraw,m=a.containerProps,g=a.children,V=a.style,R=j(a,J),b=e.useRef(null),w=e.useRef(!1),x=B(n(n({},R),{},{ref:b,startOnMount:typeof g!="function"||a.delay===0,enableReinitialize:!1})),z=x.start,P=x.reset,H=x.update,W=x.pauseResume,A=x.getCountUp,E=y(function(){z()}),$=y(function(L){a.preserveValue||P(),H(L)}),S=y(function(){if(typeof a.children=="function"&&!(b.current instanceof Element)){console.error(`Couldn't find attached element to hook the CountUp instance into! Try to attach "containerRef" from the render prop to a an Element, eg. <span ref={containerRef} />.`);return}A()});e.useEffect(function(){S()},[S]),e.useEffect(function(){w.current&&$(a.end)},[a.end,$]);var q=c&&a;return e.useEffect(function(){c&&w.current&&E()},[E,c,q]),e.useEffect(function(){!c&&w.current&&E()},[E,c,a.start,a.suffix,a.prefix,a.duration,a.separator,a.decimals,a.decimal,a.className,a.formattingFn]),e.useEffect(function(){w.current=!0},[]),typeof g=="function"?g({countUpRef:b,start:z,reset:P,update:H,pauseResume:W,getCountUp:A}):e.createElement("span",p({className:s,ref:b,style:V},m),typeof a.start<"u"?A().formattingFn(a.start):"")};return xe.default=Q,xe.useCountUp=B,xe}var St=Rt();const Vt=bt(St);var Oe=new Map,Ve=new WeakMap,Pe=0,Et=void 0;function kt(e){return e?(Ve.has(e)||(Pe+=1,Ve.set(e,Pe.toString())),Ve.get(e)):"0"}function Ct(e){return Object.keys(e).sort().filter(t=>e[t]!==void 0).map(t=>`${t}_${t==="root"?kt(e.root):e[t]}`).toString()}function Tt(e){const t=Ct(e);let r=Oe.get(t);if(!r){const o=new Map;let n;const d=new IntersectionObserver(h=>{h.forEach(u=>{var p;const v=u.isIntersecting&&n.some(j=>u.intersectionRatio>=j);e.trackVisibility&&typeof u.isVisible>"u"&&(u.isVisible=v),(p=o.get(u.target))==null||p.forEach(j=>{j(v,u)})})},e);n=d.thresholds||(Array.isArray(e.threshold)?e.threshold:[e.threshold||0]),r={id:t,observer:d,elements:o},Oe.set(t,r)}return r}function Ot(e,t,r={},o=Et){if(typeof window.IntersectionObserver>"u"&&o!==void 0){const p=e.getBoundingClientRect();return t(o,{isIntersecting:o,target:e,intersectionRatio:typeof r.threshold=="number"?r.threshold:0,time:0,boundingClientRect:p,intersectionRect:p,rootBounds:p}),()=>{}}const{id:n,observer:d,elements:h}=Tt(r),u=h.get(e)||[];return h.has(e)||h.set(e,u),u.push(t),d.observe(e),function(){u.splice(u.indexOf(t),1),u.length===0&&(h.delete(e),d.unobserve(e)),h.size===0&&(d.disconnect(),Oe.delete(n))}}function Mt({threshold:e,delay:t,trackVisibility:r,rootMargin:o,root:n,triggerOnce:d,skip:h,initialInView:u,fallbackInView:p,onChange:v}={}){var j;const[C,D]=we.useState(null),T=we.useRef(v),[N,_]=we.useState({inView:!!u,entry:void 0});T.current=v,we.useEffect(()=>{if(h||!C)return;let I;return I=Ot(C,(G,B)=>{_({inView:G,entry:B}),T.current&&T.current(G,B),B.isIntersecting&&d&&I&&(I(),I=void 0)},{root:n,rootMargin:o,threshold:e,trackVisibility:r,delay:t},p),()=>{I&&I()}},[Array.isArray(e)?e.toString():e,C,n,o,d,h,r,p,t]);const O=(j=N.entry)==null?void 0:j.target,y=we.useRef(void 0);!C&&O&&!d&&!h&&y.current!==O&&(y.current=O,_({inView:!!u,entry:void 0}));const M=[D,N.inView,N.entry];return M.ref=M[0],M.inView=M[1],M.entry=M[2],M}const Ke=ee.forwardRef(({value:e,label:t,suffix:r="",prefix:o="",duration:n=2,threshold:d=.3,separator:h=",",decimals:u=0,size:p,variant:v,align:j,color:C,as:D="div",css:T,className:N,margin:_,marginTop:O,marginBottom:y,marginLeft:M,marginRight:I,padding:G,paddingTop:B,paddingBottom:J,paddingLeft:Q,paddingRight:i,gap:a,display:s,flexDirection:c,justifyContent:m,flexWrap:g,flex:V,width:R,height:b,minWidth:w,maxWidth:x,minHeight:z,position:P,top:H,bottom:W,left:A,right:E,zIndex:$,fontSize:S,fontFamily:q,lineHeight:L,textAlign:F,fontWeight:X,backgroundColor:Y,borderRadius:K,borderWidth:k,borderStyle:Z,borderColor:U,boxShadow:te,opacity:ne,overflow:re,overflowX:ae,overflowY:ce,...le},de)=>{const[fe,oe]=Mt({threshold:d,triggerOnce:!0});return f.jsxs(D,{ref:he=>{fe(he),de&&(typeof de=="function"?de(he):de.current=he)},className:se(l.keyNumberRecipe({size:p,variant:v,align:j}),l.sprinkles({margin:_,marginTop:O,marginBottom:y,marginLeft:M,marginRight:I,padding:G,paddingTop:B,paddingBottom:J,paddingLeft:Q,paddingRight:i,gap:a,display:s,flexDirection:c,justifyContent:m,flexWrap:g,flex:V,width:R,height:b,minWidth:w,maxWidth:x,minHeight:z,position:P,top:H,bottom:W,left:A,right:E,zIndex:$,fontSize:S,fontFamily:q,lineHeight:L,textAlign:F,fontWeight:X,backgroundColor:Y,borderRadius:K,borderWidth:k,borderStyle:Z,borderColor:U,boxShadow:te,opacity:ne,overflow:re,overflowX:ae,overflowY:ce}),T,N),...le,children:[f.jsxs("div",{className:l.keyNumberValue,children:[o,f.jsx("span",{children:f.jsx(Vt,{end:oe?e:0,duration:n,separator:h,decimals:u})}),r]}),f.jsx("p",{className:l.keyNumberLabel,children:t})]})});Ke.displayName="KeyNumber";const Ze=ee.forwardRef(({links:e,iconSize:t="md",orientation:r,size:o,variant:n,as:d="nav",css:h,className:u,margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z,...U},te)=>{const ne=re=>({instagram:"socialInstagram",linkedIn:"socialLinkedIn",facebook:"socialFacebook",pinterest:"socialPinterest",spotify:"socialSpotify",X:"socialX",youtube:"socialYoutube",tiktok:"socialTiktok"})[re];return f.jsx(d,{ref:te,className:se(l.navSocialRecipe({orientation:r,size:o,variant:n}),l.sprinkles({margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z}),h,u),role:"navigation","aria-label":"Social media links",...U,children:e.map((re,ae)=>f.jsx("a",{href:re.url,target:"_blank",rel:"noopener noreferrer",className:l.navSocialLink,"aria-label":re.label||`Visit our ${re.name} page`,children:f.jsx(me,{icon:ne(re.name),size:t,"aria-hidden":"true"})},`${re.name}-${ae}`))})});Ze.displayName="NavSocial";const Je=ee.forwardRef(({children:e,orientation:t,size:r,variant:o,align:n,as:d="nav",css:h,className:u,margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z,...U},te)=>f.jsx(d,{ref:te,className:se(l.navLegalRecipe({orientation:t,size:r,variant:o,align:n}),l.sprinkles({margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z}),h,u),role:"navigation","aria-label":"Legal navigation",...U,children:e}));Je.displayName="NavLegal";const Qe=ee.forwardRef(({locales:e,currentLocale:t,onChange:r,disabled:o=!1,placeholder:n,variant:d,size:h,css:u,className:p,margin:v,marginTop:j,marginBottom:C,marginLeft:D,marginRight:T,padding:N,paddingTop:_,paddingBottom:O,paddingLeft:y,paddingRight:M,gap:I,display:G,flexDirection:B,justifyContent:J,flexWrap:Q,flex:i,width:a,height:s,minWidth:c,maxWidth:m,minHeight:g,position:V,top:R,bottom:b,left:w,right:x,zIndex:z,fontSize:P,fontFamily:H,lineHeight:W,textAlign:A,fontWeight:E,color:$,backgroundColor:S,borderRadius:q,borderWidth:L,borderStyle:F,borderColor:X,boxShadow:Y,opacity:K,overflow:k,overflowX:Z,overflowY:U,...te},ne)=>{const re=ae=>{r(ae.target.value)};return f.jsxs("div",{ref:ne,className:se(l.languageSwitcherRecipe({variant:d,size:h}),l.sprinkles({margin:v,marginTop:j,marginBottom:C,marginLeft:D,marginRight:T,padding:N,paddingTop:_,paddingBottom:O,paddingLeft:y,paddingRight:M,gap:I,display:G,flexDirection:B,justifyContent:J,flexWrap:Q,flex:i,width:a,height:s,minWidth:c,maxWidth:m,minHeight:g,position:V,top:R,bottom:b,left:w,right:x,zIndex:z,fontSize:P,fontFamily:H,lineHeight:W,textAlign:A,fontWeight:E,color:$,backgroundColor:S,borderRadius:q,borderWidth:L,borderStyle:F,borderColor:X,boxShadow:Y,opacity:K,overflow:k,overflowX:Z,overflowY:U}),u,p),...te,children:[f.jsxs("select",{className:l.languageSwitcherSelect,value:t,onChange:re,disabled:o,"aria-label":"Switch language",children:[n&&f.jsx("option",{value:"",disabled:!0,children:n}),e.map(ae=>f.jsx("option",{value:ae.code,disabled:ae.code===t,children:ae.label||ae.name},ae.code))]}),f.jsx("div",{className:l.languageSwitcherIcon,children:f.jsx(me,{icon:"caret",size:"sm"})})]})});Qe.displayName="LanguageSwitcher";const Me=ee.forwardRef(({video:e,poster:t,isAutoPlay:r=!1,startMuted:o=!1,showControls:n=!1,hidePlayButton:d=!1,isVideoFullWidth:h=!1,isPlayingFullScreen:u=!1,onPlay:p,onClose:v,onEnded:j,size:C,aspectRatio:D,css:T,className:N,margin:_,marginTop:O,marginBottom:y,marginLeft:M,marginRight:I,padding:G,paddingTop:B,paddingBottom:J,paddingLeft:Q,paddingRight:i,gap:a,display:s,flexDirection:c,justifyContent:m,flexWrap:g,flex:V,width:R,height:b,minWidth:w,maxWidth:x,minHeight:z,position:P,top:H,bottom:W,left:A,right:E,zIndex:$,fontSize:S,fontFamily:q,lineHeight:L,textAlign:F,fontWeight:X,color:Y,backgroundColor:K,borderRadius:k,borderWidth:Z,borderStyle:U,borderColor:te,boxShadow:ne,opacity:re,overflow:ae,overflowX:ce,overflowY:le,...de},fe)=>{const oe=ee.useRef(null),[he,pe]=ee.useState(!1),[ge,je]=ee.useState(r||o),Ne=()=>{p&&p(),oe.current?.play(),pe(!0)},ve=()=>{v&&v(),oe.current?.pause(),pe(!1)},Re=()=>{oe.current?.pause(),pe(!1)},Ce=()=>{const ie=!ge;je(ie),oe.current&&(oe.current.muted=ie)},Te=()=>{j&&j(),ve()},be=ie=>{ie.key==="Escape"&&ve()};return ee.useEffect(()=>(window.addEventListener("keydown",be),()=>{window.removeEventListener("keydown",be)}),[]),ee.useEffect(()=>{oe.current&&(oe.current.muted=ge)},[ge]),f.jsxs("div",{ref:fe,className:se(l.videoRecipe({size:h?"fullWidth":C,aspectRatio:D}),l.sprinkles({margin:_,marginTop:O,marginBottom:y,marginLeft:M,marginRight:I,padding:G,paddingTop:B,paddingBottom:J,paddingLeft:Q,paddingRight:i,gap:a,display:s,flexDirection:c,justifyContent:m,flexWrap:g,flex:V,width:R,height:b,minWidth:w,maxWidth:x,minHeight:z,position:P,top:H,bottom:W,left:A,right:E,zIndex:$,fontSize:S,fontFamily:q,lineHeight:L,textAlign:F,fontWeight:X,color:Y,backgroundColor:K,borderRadius:k,borderWidth:Z,borderStyle:U,borderColor:te,boxShadow:ne,opacity:re,overflow:ae,overflowX:ce,overflowY:le}),T,N),...de,children:[f.jsx("video",{ref:oe,className:l.videoElement,playsInline:!0,muted:ge,autoPlay:r,onEnded:Te,children:f.jsx("source",{src:e,type:"video/mp4"})}),t&&f.jsx("div",{className:l.videoPoster,"data-playing":he,children:f.jsx("img",{src:t,alt:"Video poster",className:l.posterImage,sizes:"2560"})}),!d&&!r&&f.jsx("button",{className:l.playButton,"data-playing":he,onClick:Ne,"aria-label":"Play video",type:"button",children:f.jsx(me,{icon:"play",size:"lg"})}),u&&f.jsx("button",{className:l.closeButton,onClick:ve,"aria-label":"Close video",type:"button",children:f.jsx(me,{icon:"close",size:"md"})}),he&&n&&f.jsx("button",{className:l.pauseButton,onClick:Re,"aria-label":"Pause video",type:"button",children:f.jsx(me,{icon:"pause",size:"md"})}),n&&f.jsx("button",{className:l.soundButton,onClick:Ce,"aria-label":ge?"Unmute video":"Mute video",type:"button",children:f.jsx(me,{icon:ge?"volumeMute":"volumeUp",size:"md"})})]})});Me.displayName="Video";const et=ee.forwardRef(({video:e,poster:t,isAutoPlay:r=!1,startMuted:o=!1,showControls:n=!1,onPlay:d,onClose:h,onEnded:u,aspectRatio:p,css:v,className:j,margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,gap:B,display:J,flexDirection:Q,justifyContent:i,flexWrap:a,flex:s,width:c,height:m,minWidth:g,maxWidth:V,minHeight:R,position:b,top:w,bottom:x,left:z,right:P,zIndex:H,fontSize:W,fontFamily:A,lineHeight:E,textAlign:$,fontWeight:S,color:q,backgroundColor:L,borderRadius:F,borderWidth:X,borderStyle:Y,borderColor:K,boxShadow:k,opacity:Z,overflow:U,overflowX:te,overflowY:ne,...re},ae)=>f.jsx("div",{ref:ae,className:se(l.videoFullWidthRecipe({aspectRatio:p}),l.sprinkles({margin:C,marginTop:D,marginBottom:T,marginLeft:N,marginRight:_,padding:O,paddingTop:y,paddingBottom:M,paddingLeft:I,paddingRight:G,gap:B,display:J,flexDirection:Q,justifyContent:i,flexWrap:a,flex:s,width:c,height:m,minWidth:g,maxWidth:V,minHeight:R,position:b,top:w,bottom:x,left:z,right:P,zIndex:H,fontSize:W,fontFamily:A,lineHeight:E,textAlign:$,fontWeight:S,color:q,backgroundColor:L,borderRadius:F,borderWidth:X,borderStyle:Y,borderColor:K,boxShadow:k,opacity:Z,overflow:U,overflowX:te,overflowY:ne}),v,j),...re,children:f.jsx(Me,{video:e,poster:t,isAutoPlay:r,startMuted:o,showControls:n,onPlay:d,onClose:h,onEnded:u,isVideoFullWidth:!0,size:"fullWidth"})}));et.displayName="VideoFullWidth";const tt=ee.forwardRef(({children:e,spacing:t,layout:r,css:o,className:n,margin:d,marginTop:h,marginBottom:u,marginLeft:p,marginRight:v,padding:j,paddingTop:C,paddingBottom:D,paddingLeft:T,paddingRight:N,gap:_,display:O,flexDirection:y,justifyContent:M,flexWrap:I,flex:G,width:B,height:J,minWidth:Q,maxWidth:i,minHeight:a,position:s,top:c,bottom:m,left:g,right:V,zIndex:R,fontSize:b,fontFamily:w,lineHeight:x,textAlign:z,fontWeight:P,color:H,backgroundColor:W,borderRadius:A,borderWidth:E,borderStyle:$,borderColor:S,boxShadow:q,opacity:L,overflow:F,overflowX:X,overflowY:Y,...K},k)=>f.jsx("form",{ref:k,className:se(l.formRecipe({spacing:t,layout:r}),l.sprinkles({margin:d,marginTop:h,marginBottom:u,marginLeft:p,marginRight:v,padding:j,paddingTop:C,paddingBottom:D,paddingLeft:T,paddingRight:N,gap:_,display:O,flexDirection:y,justifyContent:M,flexWrap:I,flex:G,width:B,height:J,minWidth:Q,maxWidth:i,minHeight:a,position:s,top:c,bottom:m,left:g,right:V,zIndex:R,fontSize:b,fontFamily:w,lineHeight:x,textAlign:z,fontWeight:P,color:H,backgroundColor:W,borderRadius:A,borderWidth:E,borderStyle:$,borderColor:S,boxShadow:q,opacity:L,overflow:F,overflowX:X,overflowY:Y}),o,n),...K,children:e}));tt.displayName="Form";const nt=ee.forwardRef(({children:e,align:t,variant:r,spacing:o,isActions:n=!1,isMessage:d=!1,css:h,className:u,margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z,...U},te)=>{let ne=r;return n&&(ne="actions"),d&&(ne="message"),f.jsx("div",{ref:te,className:se(l.rowRecipe({align:t,variant:ne,spacing:o}),l.sprinkles({margin:p,marginTop:v,marginBottom:j,marginLeft:C,marginRight:D,padding:T,paddingTop:N,paddingBottom:_,paddingLeft:O,paddingRight:y,gap:M,display:I,flexDirection:G,justifyContent:B,flexWrap:J,flex:Q,width:i,height:a,minWidth:s,maxWidth:c,minHeight:m,position:g,top:V,bottom:R,left:b,right:w,zIndex:x,fontSize:z,fontFamily:P,lineHeight:H,textAlign:W,fontWeight:A,color:E,backgroundColor:$,borderRadius:S,borderWidth:q,borderStyle:L,borderColor:F,boxShadow:X,opacity:Y,overflow:K,overflowX:k,overflowY:Z}),h,u),...U,children:e})});nt.displayName="Row";const at=ee.forwardRef(({name:e,label:t,value:r="",rows:o=3,disabled:n=!1,required:d=!1,placeholder:h="",errors:u,type:p="text",onChange:v,size:j,css:C,className:D,margin:T,marginTop:N,marginBottom:_,marginLeft:O,marginRight:y,padding:M,paddingTop:I,paddingBottom:G,paddingLeft:B,paddingRight:J,gap:Q,display:i,flexDirection:a,justifyContent:s,flexWrap:c,flex:m,width:g,height:V,minWidth:R,maxWidth:b,minHeight:w,position:x,top:z,bottom:P,left:H,right:W,zIndex:A,fontSize:E,fontFamily:$,lineHeight:S,textAlign:q,fontWeight:L,color:F,backgroundColor:X,borderRadius:Y,borderWidth:K,borderStyle:k,borderColor:Z,boxShadow:U,opacity:te,overflow:ne,overflowX:re,overflowY:ae,...ce},le)=>{const de=ee.useMemo(()=>u?Array.isArray(u)?u.length>0:!!u:!1,[u]),fe=p==="textarea";return f.jsxs("div",{ref:le,className:se(l.textFieldRecipe({size:j}),l.sprinkles({margin:T,marginTop:N,marginBottom:_,marginLeft:O,marginRight:y,padding:M,paddingTop:I,paddingBottom:G,paddingLeft:B,paddingRight:J,gap:Q,display:i,flexDirection:a,justifyContent:s,flexWrap:c,flex:m,width:g,height:V,minWidth:R,maxWidth:b,minHeight:w,position:x,top:z,bottom:P,left:H,right:W,zIndex:A,fontSize:E,fontFamily:$,lineHeight:S,textAlign:q,fontWeight:L,color:F,backgroundColor:X,borderRadius:Y,borderWidth:K,borderStyle:k,borderColor:Z,boxShadow:U,opacity:te,overflow:ne,overflowX:re,overflowY:ae}),C,D),...ce,children:[t&&f.jsx("label",{htmlFor:e,className:l.labelBase,"data-required":d,children:t}),fe?f.jsx("textarea",{id:e,name:e,rows:o,value:r,disabled:n,placeholder:h,className:l.textareaBase,onChange:v,"data-error":de,required:d}):f.jsx("input",{id:e,name:e,type:p,value:r,disabled:n,placeholder:h,className:l.inputBase,onChange:v,"data-error":de,required:d}),de&&f.jsx("div",{className:l.messageContainer,children:Array.isArray(u)?u.map((oe,he)=>f.jsx("span",{className:l.errorMessage,children:oe},he)):f.jsx("span",{className:l.errorMessage,children:u})})]})});at.displayName="TextField";const rt=ee.forwardRef(({label:e,name:t,required:r=!1,size:o,variant:n,css:d,className:h,margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k,...Z},U)=>f.jsx("label",{ref:U,htmlFor:t,className:se(l.labelRecipe({size:o,variant:n}),l.sprinkles({margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k}),d,h),"data-required":r,...Z,children:e}));rt.displayName="Label";const st=ee.forwardRef(({name:e,type:t="text",hasError:r=!1,size:o,variant:n,css:d,className:h,margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k,...Z},U)=>f.jsx("input",{ref:U,id:e,name:e,type:t,className:se(l.inputRecipe({size:o,variant:n}),l.sprinkles({margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k}),d,h),"data-error":r,...Z}));st.displayName="Input";const it=ee.forwardRef(({name:e,hasError:t=!1,size:r,variant:o,resize:n,css:d,className:h,margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k,...Z},U)=>f.jsx("textarea",{ref:U,id:e,name:e,className:se(l.textareaRecipe({size:r,variant:o,resize:n}),l.sprinkles({margin:u,marginTop:p,marginBottom:v,marginLeft:j,marginRight:C,padding:D,paddingTop:T,paddingBottom:N,paddingLeft:_,paddingRight:O,gap:y,display:M,flexDirection:I,justifyContent:G,flexWrap:B,flex:J,width:Q,height:i,minWidth:a,maxWidth:s,minHeight:c,position:m,top:g,bottom:V,left:R,right:b,zIndex:w,fontSize:x,fontFamily:z,lineHeight:P,textAlign:H,fontWeight:W,color:A,backgroundColor:E,borderRadius:$,borderWidth:S,borderStyle:q,borderColor:L,boxShadow:F,opacity:X,overflow:Y,overflowX:K,overflowY:k}),d,h),"data-error":t,...Z}));it.displayName="Textarea";const At=()=>f.jsx("div",{children:"ToRemove"});exports.baseDarkTheme=l.baseDarkTheme;exports.baseLightTheme=l.baseLightTheme;exports.breakpoints=l.breakpoints;exports.createDarkTheme=l.createDarkTheme;exports.createLightTheme=l.createLightTheme;exports.queries=l.queries;exports.responsiveProperties=l.responsiveProperties;exports.sprinkles=l.sprinkles;exports.themeContract=l.themeContract;exports.Actions=Xe;exports.Button=Ee;exports.Carousel=Ye;exports.Columns=qe;exports.ConsentCookie=Ge;exports.Footer=Be;exports.Form=tt;exports.Header=De;exports.Icon=me;exports.Input=st;exports.KeyNumber=Ke;exports.Label=rt;exports.LanguageSwitcher=Qe;exports.Logo=$e;exports.Main=Ue;exports.Modal=We;exports.Nav=He;exports.NavLegal=Je;exports.NavSocial=Ze;exports.Row=nt;exports.Section=pt;exports.TextField=at;exports.Textarea=it;exports.ToRemove=At;exports.Video=Me;exports.VideoFullWidth=et;exports.createThemeOverride=ct;exports.getCurrentTheme=mt;exports.getThemeContract=ut;exports.getThemeValues=dt;exports.setTheme=ht;exports.toggleTheme=ft;
|