@windstream/react-shared-components 0.0.63 → 0.0.64

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.
Files changed (143) hide show
  1. package/README.md +629 -629
  2. package/dist/contentful/index.d.ts +34 -28
  3. package/dist/contentful/index.esm.js +1 -1
  4. package/dist/contentful/index.esm.js.map +1 -1
  5. package/dist/contentful/index.js +1 -1
  6. package/dist/contentful/index.js.map +1 -1
  7. package/dist/core.d.ts +2 -2
  8. package/dist/index.d.ts +1 -1
  9. package/dist/index.esm.js +1 -1
  10. package/dist/index.esm.js.map +1 -1
  11. package/dist/index.js +1 -1
  12. package/dist/index.js.map +1 -1
  13. package/dist/next/index.esm.js +1 -1
  14. package/dist/next/index.esm.js.map +1 -1
  15. package/dist/next/index.js +1 -1
  16. package/dist/next/index.js.map +1 -1
  17. package/dist/styles.css +1 -1
  18. package/package.json +175 -175
  19. package/src/components/accordion/Accordion.stories.tsx +230 -230
  20. package/src/components/accordion/types.ts +10 -10
  21. package/src/components/alert-card/AlertCard.stories.tsx +171 -171
  22. package/src/components/alert-card/index.tsx +32 -32
  23. package/src/components/alert-card/types.ts +9 -9
  24. package/src/components/brand-button/BrandButton.stories.tsx +219 -219
  25. package/src/components/brand-button/helpers.ts +35 -35
  26. package/src/components/brand-button/index.tsx +93 -93
  27. package/src/components/brand-button/types.ts +25 -25
  28. package/src/components/button/Button.stories.tsx +108 -108
  29. package/src/components/button/index.tsx +27 -27
  30. package/src/components/button/types.ts +14 -14
  31. package/src/components/call-button/CallButton.stories.tsx +324 -324
  32. package/src/components/call-button/index.tsx +79 -79
  33. package/src/components/call-button/types.ts +10 -10
  34. package/src/components/checkbox/Checkbox.stories.tsx +247 -247
  35. package/src/components/checkbox/index.tsx +197 -197
  36. package/src/components/checkbox/types.ts +27 -27
  37. package/src/components/checklist/Checklist.stories.tsx +150 -150
  38. package/src/components/collapse/Collapse.stories.tsx +255 -255
  39. package/src/components/collapse/index.tsx +46 -46
  40. package/src/components/collapse/types.ts +6 -6
  41. package/src/components/divider/Divider.stories.tsx +205 -205
  42. package/src/components/divider/index.tsx +22 -22
  43. package/src/components/divider/type.ts +3 -3
  44. package/src/components/image/Image.stories.tsx +113 -113
  45. package/src/components/image/index.tsx +25 -25
  46. package/src/components/image/types.ts +40 -40
  47. package/src/components/input/Input.stories.tsx +325 -325
  48. package/src/components/input/index.tsx +177 -177
  49. package/src/components/input/types.ts +37 -37
  50. package/src/components/link/Link.stories.tsx +163 -163
  51. package/src/components/link/types.ts +25 -25
  52. package/src/components/list/List.stories.tsx +272 -272
  53. package/src/components/list/index.tsx +88 -88
  54. package/src/components/list/list-item/index.tsx +38 -38
  55. package/src/components/list/list-item/types.ts +13 -13
  56. package/src/components/list/types.ts +29 -29
  57. package/src/components/material-icon/MaterialIcon.stories.tsx +330 -330
  58. package/src/components/material-icon/constants.ts +96 -96
  59. package/src/components/material-icon/index.tsx +44 -44
  60. package/src/components/material-icon/types.ts +31 -31
  61. package/src/components/modal/Modal.stories.tsx +171 -171
  62. package/src/components/modal/index.tsx +164 -164
  63. package/src/components/modal/types.ts +24 -24
  64. package/src/components/next-image/index.tsx +32 -18
  65. package/src/components/next-image/types.ts +1 -1
  66. package/src/components/radio-button/RadioButton.stories.tsx +307 -307
  67. package/src/components/radio-button/index.tsx +75 -75
  68. package/src/components/radio-button/types.ts +21 -21
  69. package/src/components/see-more/SeeMore.stories.tsx +181 -181
  70. package/src/components/see-more/index.tsx +44 -44
  71. package/src/components/see-more/types.ts +4 -4
  72. package/src/components/select/Select.stories.tsx +411 -411
  73. package/src/components/select/index.tsx +150 -150
  74. package/src/components/select/types.ts +35 -35
  75. package/src/components/select-plan-button/SelectPlanButton.stories.tsx +184 -184
  76. package/src/components/select-plan-button/index.tsx +31 -31
  77. package/src/components/select-plan-button/types.ts +5 -5
  78. package/src/components/skeleton/Skeleton.stories.tsx +179 -179
  79. package/src/components/skeleton/index.tsx +61 -61
  80. package/src/components/skeleton/types.ts +4 -4
  81. package/src/components/spinner/Spinner.stories.tsx +335 -335
  82. package/src/components/spinner/index.tsx +44 -44
  83. package/src/components/spinner/types.ts +5 -5
  84. package/src/components/text/Text.stories.tsx +321 -321
  85. package/src/components/text/index.tsx +25 -25
  86. package/src/components/text/types.ts +45 -45
  87. package/src/components/tooltip/Tooltip.stories.tsx +219 -219
  88. package/src/components/tooltip/index.tsx +74 -74
  89. package/src/components/tooltip/types.ts +7 -7
  90. package/src/components/view-cart-button/ViewCartButton.stories.tsx +252 -252
  91. package/src/components/view-cart-button/index.tsx +44 -44
  92. package/src/components/view-cart-button/types.ts +5 -5
  93. package/src/contentful/blocks/button/Button.stories.tsx +40 -40
  94. package/src/contentful/blocks/button/index.tsx +64 -64
  95. package/src/contentful/blocks/button/types.ts +24 -24
  96. package/src/contentful/blocks/callout/Callout.stories.tsx +23 -23
  97. package/src/contentful/blocks/cards/Cards.stories.tsx +23 -23
  98. package/src/contentful/blocks/cards/index.tsx +13 -13
  99. package/src/contentful/blocks/cards/product-card/index.tsx +198 -198
  100. package/src/contentful/blocks/cards/product-card/types.ts +18 -18
  101. package/src/contentful/blocks/cards/testimonial-card/index.tsx +86 -86
  102. package/src/contentful/blocks/cards/testimonial-card/types.tsx +10 -10
  103. package/src/contentful/blocks/cards/types.ts +1 -1
  104. package/src/contentful/blocks/carousel/Carousel.stories.tsx +23 -23
  105. package/src/contentful/blocks/carousel/index.tsx +13 -13
  106. package/src/contentful/blocks/carousel/types.ts +1 -1
  107. package/src/contentful/blocks/cta-callout/CtaCallout.stories.tsx +46 -46
  108. package/src/contentful/blocks/cta-callout/index.tsx +54 -54
  109. package/src/contentful/blocks/cta-callout/types.ts +22 -22
  110. package/src/contentful/blocks/floating-banner/FloatingBanner.stories.tsx +34 -34
  111. package/src/contentful/blocks/floating-banner/types.ts +22 -22
  112. package/src/contentful/blocks/footer/Footer.stories.tsx +30 -30
  113. package/src/contentful/blocks/image-promo-bar/ImagePromoBar.stories.tsx +23 -23
  114. package/src/contentful/blocks/image-promo-bar/types.ts +27 -27
  115. package/src/contentful/blocks/modal/Modal.stories.tsx +23 -23
  116. package/src/contentful/blocks/modal/index.tsx +12 -12
  117. package/src/contentful/blocks/modal/types.ts +1 -1
  118. package/src/contentful/blocks/navigation/desktop-link-groups.tsx/index.tsx +111 -0
  119. package/src/contentful/blocks/navigation/index.tsx +366 -56
  120. package/src/contentful/blocks/navigation/mobile-link-groups.tsx/index.tsx +80 -0
  121. package/src/contentful/blocks/navigation/types.ts +39 -21
  122. package/src/contentful/blocks/primary-hero/PrimaryHero.stories.tsx +23 -23
  123. package/src/contentful/blocks/primary-hero/index.tsx +160 -160
  124. package/src/contentful/blocks/primary-hero/types.ts +30 -30
  125. package/src/contentful/blocks/shape-background-wrapper/ShapeBackgroundWrapper.stories.tsx +26 -26
  126. package/src/contentful/blocks/shape-background-wrapper/index.tsx +124 -124
  127. package/src/contentful/blocks/shape-background-wrapper/types.ts +36 -36
  128. package/src/contentful/blocks/text/Text.stories.tsx +23 -23
  129. package/src/contentful/blocks/text/index.tsx +12 -12
  130. package/src/contentful/blocks/text/types.ts +1 -1
  131. package/src/contentful/index.ts +54 -54
  132. package/src/hooks/use-body-scroll-lock.ts +34 -34
  133. package/src/hooks/use-outside-click.ts +17 -0
  134. package/src/index.ts +96 -96
  135. package/src/next/index.ts +5 -5
  136. package/src/setupTests.ts +46 -46
  137. package/src/stories/DocsTemplate.tsx +24 -24
  138. package/src/styles/globals.css +307 -307
  139. package/src/types/global.d.ts +9 -9
  140. package/src/types/micro-components.ts +80 -0
  141. package/src/utils/index.ts +49 -49
  142. package/src/contentful/blocks/navigation/Navigation.stories.tsx +0 -23
  143. package/src/contentful/blocks/navigation/link-groups.tsx/index.tsx +0 -62
@@ -1,4 +1,5 @@
1
1
  import React$1 from 'react';
2
+ import { Asset, Button as Button$1, ButtonGroup } from '@shared/types/micro-components';
2
3
 
3
4
  type AccordionProps = {
4
5
  title: string;
@@ -111,27 +112,32 @@ type ImagePromoBarProps = {
111
112
 
112
113
  declare const ImagePromoBar: React$1.FC<ImagePromoBarProps>;
113
114
 
114
- type NavigationProps = {
115
- primaryNavigationLogo?: string;
116
- primaryNavigationLinks?: Array<any>;
117
- supportNavigationLinks?: Array<any>;
118
- utilityNavigationLinks?: Array<any>;
119
- accountNavigationLinks?: Array<any>;
120
- searchBarIcon?: string;
115
+ type Color = string;
116
+ interface Navigation$1 {
117
+ __typename?: "ComponentNavigation";
118
+ primaryNavigationLogo?: Asset;
119
+ anchorId?: string;
120
+ primaryNavigationLinks?: (Button$1 | ButtonGroup)[];
121
+ supportNavigationLinks?: ButtonGroup[];
122
+ utilityNavigationLinks?: (Button$1 | ButtonGroup)[];
123
+ accountNavigationLinks?: ButtonGroup[];
124
+ searchBarIcon?: Asset;
121
125
  searchBarPlaceholder?: string;
122
- navigationBackgroundColor?: string;
123
- utilityNavBackgroundColor?: string;
124
- utilityNavLinkColor?: string;
126
+ navigationBackgroundColor?: Color;
127
+ utilityNavBackgroundColor?: Color;
128
+ utilityNavLinkColor?: Color;
125
129
  callNowCtaText?: string;
126
- callNowCtaIcon?: string;
130
+ callNowCtaIcon?: Asset;
127
131
  displaySearchBar?: boolean;
128
132
  displayCallNowCta?: boolean;
129
133
  displayUtilityNavigation?: boolean;
130
134
  showCallButton?: boolean;
131
135
  showMobileSliderMenu?: boolean;
132
136
  showCallNowCtaInMainNav?: boolean;
133
- maxWidth?: boolean;
134
- };
137
+ checkPlansJSX?: React$1.ReactNode;
138
+ onSearch?: (query: string) => void;
139
+ }
140
+ type NavigationProps = Navigation$1;
135
141
 
136
142
  declare const Navigation: React$1.FC<NavigationProps>;
137
143
 
@@ -175,21 +181,21 @@ declare const Text: React.FC<{
175
181
  }>;
176
182
 
177
183
  type ButtonProps = {
178
- showButtonAs: "solid" | "text";
179
- buttonVariant: "primary_brand" | "secondary" | "primary_inverse";
180
- buttonLabel: string;
181
- buttonPrefix: string;
182
- badge: string;
183
- badgeIcon: string;
184
- buttonIcon: string;
185
- buttonIconPosition: "left" | "right";
186
- href: string;
187
- target: "_self" | "_blank";
188
- anchorId: string;
189
- preserveQueryParameters: boolean;
190
- clickToOpen: string;
191
- tabmodalNameToOpen: string;
192
- preDefinedFunctionExecution: string;
184
+ showButtonAs?: "solid" | "text";
185
+ buttonVariant?: "primary_brand" | "secondary" | "primary_inverse";
186
+ buttonLabel?: string;
187
+ buttonPrefix?: string;
188
+ badge?: string;
189
+ badgeIcon?: string;
190
+ buttonIcon?: string;
191
+ buttonIconPosition?: "left" | "right";
192
+ href?: string;
193
+ target?: "_self" | "_blank";
194
+ anchorId?: string;
195
+ preserveQueryParameters?: boolean;
196
+ clickToOpen?: string;
197
+ tabmodalNameToOpen?: string;
198
+ preDefinedFunctionExecution?: string;
193
199
  checkPlansJSX?: React.ReactNode;
194
200
  linkClassName?: string;
195
201
  linkVariant?: "unstyled" | "default";
@@ -1,4 +1,4 @@
1
1
  "use client";
2
2
 
3
- import{jsx as e,jsxs as t}from"react/jsx-runtime";import l,{forwardRef as r,useRef as a,useState as o,useEffect as n}from"react";import i from"next/image";function s(e){var t,l,r="";if("string"==typeof e||"number"==typeof e)r+=e;else if("object"==typeof e)if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(l=s(e[t]))&&(r&&(r+=" "),r+=l)}else for(l in e)e[l]&&(r&&(r+=" "),r+=l);return r}function c(){for(var e,t,l=0,r="",a=arguments.length;l<a;l++)(e=arguments[l])&&(t=s(e))&&(r&&(r+=" "),r+=t);return r}const d=e=>{const t=u(e),{conflictingClassGroups:l,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:e=>{const l=e.split("-");return""===l[0]&&1!==l.length&&l.shift(),m(l,t)||p(e)},getConflictingClassGroupIds:(e,t)=>{const a=l[e]||[];return t&&r[e]?[...a,...r[e]]:a}}},m=(e,t)=>{if(0===e.length)return t.classGroupId;const l=e[0],r=t.nextPart.get(l),a=r?m(e.slice(1),r):void 0;if(a)return a;if(0===t.validators.length)return;const o=e.join("-");return t.validators.find(({validator:e})=>e(o))?.classGroupId},h=/^\[(.+)\]$/,p=e=>{if(h.test(e)){const t=h.exec(e)[1],l=t?.substring(0,t.indexOf(":"));if(l)return"arbitrary.."+l}},u=e=>{const{theme:t,classGroups:l}=e,r={nextPart:new Map,validators:[]};for(const e in l)g(l[e],r,e,t);return r},g=(e,t,l,r)=>{e.forEach(e=>{if("string"==typeof e){return void((""===e?t:b(t,e)).classGroupId=l)}if("function"==typeof e)return f(e)?void g(e(r),t,l,r):void t.validators.push({validator:e,classGroupId:l});Object.entries(e).forEach(([e,a])=>{g(a,b(t,e),l,r)})})},b=(e,t)=>{let l=e;return t.split("-").forEach(e=>{l.nextPart.has(e)||l.nextPart.set(e,{nextPart:new Map,validators:[]}),l=l.nextPart.get(e)}),l},f=e=>e.isThemeGetter,x=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,l=new Map,r=new Map;const a=(a,o)=>{l.set(a,o),t++,t>e&&(t=0,r=l,l=new Map)};return{get(e){let t=l.get(e);return void 0!==t?t:void 0!==(t=r.get(e))?(a(e,t),t):void 0},set(e,t){l.has(e)?l.set(e,t):a(e,t)}}},v=e=>{const{prefix:t,experimentalParseClassName:l}=e;let r=e=>{const t=[];let l,r=0,a=0,o=0;for(let n=0;n<e.length;n++){let i=e[n];if(0===r&&0===a){if(":"===i){t.push(e.slice(o,n)),o=n+1;continue}if("/"===i){l=n;continue}}"["===i?r++:"]"===i?r--:"("===i?a++:")"===i&&a--}const n=0===t.length?e:e.substring(o),i=w(n);return{modifiers:t,hasImportantModifier:i!==n,baseClassName:i,maybePostfixModifierPosition:l&&l>o?l-o:void 0}};if(t){const e=t+":",l=r;r=t=>t.startsWith(e)?l(t.substring(e.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:t,maybePostfixModifierPosition:void 0}}if(l){const e=r;r=t=>l({className:t,parseClassName:e})}return r},w=e=>e.endsWith("!")?e.substring(0,e.length-1):e.startsWith("!")?e.substring(1):e,y=e=>{const t=Object.fromEntries(e.orderSensitiveModifiers.map(e=>[e,!0]));return e=>{if(e.length<=1)return e;const l=[];let r=[];return e.forEach(e=>{"["===e[0]||t[e]?(l.push(...r.sort(),e),r=[]):r.push(e)}),l.push(...r.sort()),l}},k=/\s+/;function N(){let e,t,l=0,r="";for(;l<arguments.length;)(e=arguments[l++])&&(t=C(e))&&(r&&(r+=" "),r+=t);return r}const C=e=>{if("string"==typeof e)return e;let t,l="";for(let r=0;r<e.length;r++)e[r]&&(t=C(e[r]))&&(l&&(l+=" "),l+=t);return l};function z(e,...t){let l,r,a,o=function(i){const s=t.reduce((e,t)=>t(e),e());return l=(e=>({cache:x(e.cacheSize),parseClassName:v(e),sortModifiers:y(e),...d(e)}))(s),r=l.cache.get,a=l.cache.set,o=n,n(i)};function n(e){const t=r(e);if(t)return t;const o=((e,t)=>{const{parseClassName:l,getClassGroupId:r,getConflictingClassGroupIds:a,sortModifiers:o}=t,n=[],i=e.trim().split(k);let s="";for(let e=i.length-1;e>=0;e-=1){const t=i[e],{isExternal:c,modifiers:d,hasImportantModifier:m,baseClassName:h,maybePostfixModifierPosition:p}=l(t);if(c){s=t+(s.length>0?" "+s:s);continue}let u=!!p,g=r(u?h.substring(0,p):h);if(!g){if(!u){s=t+(s.length>0?" "+s:s);continue}if(g=r(h),!g){s=t+(s.length>0?" "+s:s);continue}u=!1}const b=o(d).join(":"),f=m?b+"!":b,x=f+g;if(n.includes(x))continue;n.push(x);const v=a(g,u);for(let e=0;e<v.length;++e){const t=v[e];n.push(f+t)}s=t+(s.length>0?" "+s:s)}return s})(e,l);return a(e,o),o}return function(){return o(N.apply(null,arguments))}}const $=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},j=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,M=/^\((?:(\w[\w-]*):)?(.+)\)$/i,G=/^\d+\/\d+$/,F=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,B=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,I=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,P=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,E=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,W=e=>G.test(e),D=e=>!!e&&!Number.isNaN(Number(e)),S=e=>!!e&&Number.isInteger(Number(e)),_=e=>e.endsWith("%")&&D(e.slice(0,-1)),L=e=>F.test(e),A=()=>!0,H=e=>B.test(e)&&!I.test(e),O=()=>!1,T=e=>P.test(e),V=e=>E.test(e),q=e=>!R(e)&&!Z(e),J=e=>ne(e,de,O),R=e=>j.test(e),X=e=>ne(e,me,H),U=e=>ne(e,he,D),Y=e=>ne(e,se,O),K=e=>ne(e,ce,V),Q=e=>ne(e,ue,T),Z=e=>M.test(e),ee=e=>ie(e,me),te=e=>ie(e,pe),le=e=>ie(e,se),re=e=>ie(e,de),ae=e=>ie(e,ce),oe=e=>ie(e,ue,!0),ne=(e,t,l)=>{const r=j.exec(e);return!!r&&(r[1]?t(r[1]):l(r[2]))},ie=(e,t,l=!1)=>{const r=M.exec(e);return!!r&&(r[1]?t(r[1]):l)},se=e=>"position"===e||"percentage"===e,ce=e=>"image"===e||"url"===e,de=e=>"length"===e||"size"===e||"bg-size"===e,me=e=>"length"===e,he=e=>"number"===e,pe=e=>"family-name"===e,ue=e=>"shadow"===e,ge=()=>{const e=$("color"),t=$("font"),l=$("text"),r=$("font-weight"),a=$("tracking"),o=$("leading"),n=$("breakpoint"),i=$("container"),s=$("spacing"),c=$("radius"),d=$("shadow"),m=$("inset-shadow"),h=$("text-shadow"),p=$("drop-shadow"),u=$("blur"),g=$("perspective"),b=$("aspect"),f=$("ease"),x=$("animate"),v=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",Z,R],w=()=>[Z,R,s],y=()=>[W,"full","auto",...w()],k=()=>[S,"none","subgrid",Z,R],N=()=>["auto",{span:["full",S,Z,R]},S,Z,R],C=()=>[S,"auto",Z,R],z=()=>["auto","min","max","fr",Z,R],j=()=>["auto",...w()],M=()=>[W,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...w()],G=()=>[e,Z,R],F=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",le,Y,{position:[Z,R]}],B=()=>["auto","cover","contain",re,J,{size:[Z,R]}],I=()=>[_,ee,X],P=()=>["","none","full",c,Z,R],E=()=>["",D,ee,X],H=()=>[D,_,le,Y],O=()=>["","none",u,Z,R],T=()=>["none",D,Z,R],V=()=>["none",D,Z,R],ne=()=>[D,Z,R],ie=()=>[W,"full",...w()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[L],breakpoint:[L],color:[A],container:[L],"drop-shadow":[L],ease:["in","out","in-out"],font:[q],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[L],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[L],shadow:[L],spacing:["px",D],text:[L],"text-shadow":[L],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",W,R,Z,b]}],container:["container"],columns:[{columns:[D,R,Z,i]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:v()}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:y()}],"inset-x":[{"inset-x":y()}],"inset-y":[{"inset-y":y()}],start:[{start:y()}],end:[{end:y()}],top:[{top:y()}],right:[{right:y()}],bottom:[{bottom:y()}],left:[{left:y()}],visibility:["visible","invisible","collapse"],z:[{z:[S,"auto",Z,R]}],basis:[{basis:[W,"full","auto",i,...w()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[D,W,"auto","initial","none",R]}],grow:[{grow:["",D,Z,R]}],shrink:[{shrink:["",D,Z,R]}],order:[{order:[S,"first","last","none",Z,R]}],"grid-cols":[{"grid-cols":k()}],"col-start-end":[{col:N()}],"col-start":[{"col-start":C()}],"col-end":[{"col-end":C()}],"grid-rows":[{"grid-rows":k()}],"row-start-end":[{row:N()}],"row-start":[{"row-start":C()}],"row-end":[{"row-end":C()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":z()}],"auto-rows":[{"auto-rows":z()}],gap:[{gap:w()}],"gap-x":[{"gap-x":w()}],"gap-y":[{"gap-y":w()}],"justify-content":[{justify:["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe","normal"]}],"justify-items":[{"justify-items":["start","end","center","stretch","center-safe","end-safe","normal"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"align-items":[{items:["start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"align-self":[{self:["auto","start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"place-items":[{"place-items":["start","end","center","stretch","center-safe","end-safe","baseline"]}],"place-self":[{"place-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],p:[{p:w()}],px:[{px:w()}],py:[{py:w()}],ps:[{ps:w()}],pe:[{pe:w()}],pt:[{pt:w()}],pr:[{pr:w()}],pb:[{pb:w()}],pl:[{pl:w()}],m:[{m:j()}],mx:[{mx:j()}],my:[{my:j()}],ms:[{ms:j()}],me:[{me:j()}],mt:[{mt:j()}],mr:[{mr:j()}],mb:[{mb:j()}],ml:[{ml:j()}],"space-x":[{"space-x":w()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":w()}],"space-y-reverse":["space-y-reverse"],size:[{size:M()}],w:[{w:[i,"screen",...M()]}],"min-w":[{"min-w":[i,"screen","none",...M()]}],"max-w":[{"max-w":[i,"screen","none","prose",{screen:[n]},...M()]}],h:[{h:["screen","lh",...M()]}],"min-h":[{"min-h":["screen","lh","none",...M()]}],"max-h":[{"max-h":["screen","lh",...M()]}],"font-size":[{text:["base",l,ee,X]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[r,Z,U]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",_,R]}],"font-family":[{font:[te,R,t]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[a,Z,R]}],"line-clamp":[{"line-clamp":[D,"none",Z,U]}],leading:[{leading:[o,...w()]}],"list-image":[{"list-image":["none",Z,R]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",Z,R]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:G()}],"text-color":[{text:G()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","wavy"]}],"text-decoration-thickness":[{decoration:[D,"from-font","auto",Z,X]}],"text-decoration-color":[{decoration:G()}],"underline-offset":[{"underline-offset":[D,"auto",Z,R]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:w()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Z,R]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",Z,R]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:F()}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","space","round"]}]}],"bg-size":[{bg:B()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},S,Z,R],radial:["",Z,R],conic:[S,Z,R]},ae,K]}],"bg-color":[{bg:G()}],"gradient-from-pos":[{from:I()}],"gradient-via-pos":[{via:I()}],"gradient-to-pos":[{to:I()}],"gradient-from":[{from:G()}],"gradient-via":[{via:G()}],"gradient-to":[{to:G()}],rounded:[{rounded:P()}],"rounded-s":[{"rounded-s":P()}],"rounded-e":[{"rounded-e":P()}],"rounded-t":[{"rounded-t":P()}],"rounded-r":[{"rounded-r":P()}],"rounded-b":[{"rounded-b":P()}],"rounded-l":[{"rounded-l":P()}],"rounded-ss":[{"rounded-ss":P()}],"rounded-se":[{"rounded-se":P()}],"rounded-ee":[{"rounded-ee":P()}],"rounded-es":[{"rounded-es":P()}],"rounded-tl":[{"rounded-tl":P()}],"rounded-tr":[{"rounded-tr":P()}],"rounded-br":[{"rounded-br":P()}],"rounded-bl":[{"rounded-bl":P()}],"border-w":[{border:E()}],"border-w-x":[{"border-x":E()}],"border-w-y":[{"border-y":E()}],"border-w-s":[{"border-s":E()}],"border-w-e":[{"border-e":E()}],"border-w-t":[{"border-t":E()}],"border-w-r":[{"border-r":E()}],"border-w-b":[{"border-b":E()}],"border-w-l":[{"border-l":E()}],"divide-x":[{"divide-x":E()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":E()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:["solid","dashed","dotted","double","hidden","none"]}],"divide-style":[{divide:["solid","dashed","dotted","double","hidden","none"]}],"border-color":[{border:G()}],"border-color-x":[{"border-x":G()}],"border-color-y":[{"border-y":G()}],"border-color-s":[{"border-s":G()}],"border-color-e":[{"border-e":G()}],"border-color-t":[{"border-t":G()}],"border-color-r":[{"border-r":G()}],"border-color-b":[{"border-b":G()}],"border-color-l":[{"border-l":G()}],"divide-color":[{divide:G()}],"outline-style":[{outline:["solid","dashed","dotted","double","none","hidden"]}],"outline-offset":[{"outline-offset":[D,Z,R]}],"outline-w":[{outline:["",D,ee,X]}],"outline-color":[{outline:G()}],shadow:[{shadow:["","none",d,oe,Q]}],"shadow-color":[{shadow:G()}],"inset-shadow":[{"inset-shadow":["none",m,oe,Q]}],"inset-shadow-color":[{"inset-shadow":G()}],"ring-w":[{ring:E()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:G()}],"ring-offset-w":[{"ring-offset":[D,X]}],"ring-offset-color":[{"ring-offset":G()}],"inset-ring-w":[{"inset-ring":E()}],"inset-ring-color":[{"inset-ring":G()}],"text-shadow":[{"text-shadow":["none",h,oe,Q]}],"text-shadow-color":[{"text-shadow":G()}],opacity:[{opacity:[D,Z,R]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[D]}],"mask-image-linear-from-pos":[{"mask-linear-from":H()}],"mask-image-linear-to-pos":[{"mask-linear-to":H()}],"mask-image-linear-from-color":[{"mask-linear-from":G()}],"mask-image-linear-to-color":[{"mask-linear-to":G()}],"mask-image-t-from-pos":[{"mask-t-from":H()}],"mask-image-t-to-pos":[{"mask-t-to":H()}],"mask-image-t-from-color":[{"mask-t-from":G()}],"mask-image-t-to-color":[{"mask-t-to":G()}],"mask-image-r-from-pos":[{"mask-r-from":H()}],"mask-image-r-to-pos":[{"mask-r-to":H()}],"mask-image-r-from-color":[{"mask-r-from":G()}],"mask-image-r-to-color":[{"mask-r-to":G()}],"mask-image-b-from-pos":[{"mask-b-from":H()}],"mask-image-b-to-pos":[{"mask-b-to":H()}],"mask-image-b-from-color":[{"mask-b-from":G()}],"mask-image-b-to-color":[{"mask-b-to":G()}],"mask-image-l-from-pos":[{"mask-l-from":H()}],"mask-image-l-to-pos":[{"mask-l-to":H()}],"mask-image-l-from-color":[{"mask-l-from":G()}],"mask-image-l-to-color":[{"mask-l-to":G()}],"mask-image-x-from-pos":[{"mask-x-from":H()}],"mask-image-x-to-pos":[{"mask-x-to":H()}],"mask-image-x-from-color":[{"mask-x-from":G()}],"mask-image-x-to-color":[{"mask-x-to":G()}],"mask-image-y-from-pos":[{"mask-y-from":H()}],"mask-image-y-to-pos":[{"mask-y-to":H()}],"mask-image-y-from-color":[{"mask-y-from":G()}],"mask-image-y-to-color":[{"mask-y-to":G()}],"mask-image-radial":[{"mask-radial":[Z,R]}],"mask-image-radial-from-pos":[{"mask-radial-from":H()}],"mask-image-radial-to-pos":[{"mask-radial-to":H()}],"mask-image-radial-from-color":[{"mask-radial-from":G()}],"mask-image-radial-to-color":[{"mask-radial-to":G()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"]}],"mask-image-conic-pos":[{"mask-conic":[D]}],"mask-image-conic-from-pos":[{"mask-conic-from":H()}],"mask-image-conic-to-pos":[{"mask-conic-to":H()}],"mask-image-conic-from-color":[{"mask-conic-from":G()}],"mask-image-conic-to-color":[{"mask-conic-to":G()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:F()}],"mask-repeat":[{mask:["no-repeat",{repeat:["","x","y","space","round"]}]}],"mask-size":[{mask:B()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",Z,R]}],filter:[{filter:["","none",Z,R]}],blur:[{blur:O()}],brightness:[{brightness:[D,Z,R]}],contrast:[{contrast:[D,Z,R]}],"drop-shadow":[{"drop-shadow":["","none",p,oe,Q]}],"drop-shadow-color":[{"drop-shadow":G()}],grayscale:[{grayscale:["",D,Z,R]}],"hue-rotate":[{"hue-rotate":[D,Z,R]}],invert:[{invert:["",D,Z,R]}],saturate:[{saturate:[D,Z,R]}],sepia:[{sepia:["",D,Z,R]}],"backdrop-filter":[{"backdrop-filter":["","none",Z,R]}],"backdrop-blur":[{"backdrop-blur":O()}],"backdrop-brightness":[{"backdrop-brightness":[D,Z,R]}],"backdrop-contrast":[{"backdrop-contrast":[D,Z,R]}],"backdrop-grayscale":[{"backdrop-grayscale":["",D,Z,R]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[D,Z,R]}],"backdrop-invert":[{"backdrop-invert":["",D,Z,R]}],"backdrop-opacity":[{"backdrop-opacity":[D,Z,R]}],"backdrop-saturate":[{"backdrop-saturate":[D,Z,R]}],"backdrop-sepia":[{"backdrop-sepia":["",D,Z,R]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":w()}],"border-spacing-x":[{"border-spacing-x":w()}],"border-spacing-y":[{"border-spacing-y":w()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",Z,R]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[D,"initial",Z,R]}],ease:[{ease:["linear","initial",f,Z,R]}],delay:[{delay:[D,Z,R]}],animate:[{animate:["none",x,Z,R]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[g,Z,R]}],"perspective-origin":[{"perspective-origin":v()}],rotate:[{rotate:T()}],"rotate-x":[{"rotate-x":T()}],"rotate-y":[{"rotate-y":T()}],"rotate-z":[{"rotate-z":T()}],scale:[{scale:V()}],"scale-x":[{"scale-x":V()}],"scale-y":[{"scale-y":V()}],"scale-z":[{"scale-z":V()}],"scale-3d":["scale-3d"],skew:[{skew:ne()}],"skew-x":[{"skew-x":ne()}],"skew-y":[{"skew-y":ne()}],transform:[{transform:[Z,R,"","none","gpu","cpu"]}],"transform-origin":[{origin:v()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:ie()}],"translate-x":[{"translate-x":ie()}],"translate-y":[{"translate-y":ie()}],"translate-z":[{"translate-z":ie()}],"translate-none":["translate-none"],accent:[{accent:G()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:G()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",Z,R]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":w()}],"scroll-mx":[{"scroll-mx":w()}],"scroll-my":[{"scroll-my":w()}],"scroll-ms":[{"scroll-ms":w()}],"scroll-me":[{"scroll-me":w()}],"scroll-mt":[{"scroll-mt":w()}],"scroll-mr":[{"scroll-mr":w()}],"scroll-mb":[{"scroll-mb":w()}],"scroll-ml":[{"scroll-ml":w()}],"scroll-p":[{"scroll-p":w()}],"scroll-px":[{"scroll-px":w()}],"scroll-py":[{"scroll-py":w()}],"scroll-ps":[{"scroll-ps":w()}],"scroll-pe":[{"scroll-pe":w()}],"scroll-pt":[{"scroll-pt":w()}],"scroll-pr":[{"scroll-pr":w()}],"scroll-pb":[{"scroll-pb":w()}],"scroll-pl":[{"scroll-pl":w()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",Z,R]}],fill:[{fill:["none",...G()]}],"stroke-w":[{stroke:[D,ee,X,U]}],stroke:[{stroke:["none",...G()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},be=(e,t,l)=>{void 0!==l&&(e[t]=l)},fe=(e,t)=>{if(t)for(const l in t)be(e,l,t[l])},xe=(e,t)=>{if(t)for(const l in t)ve(e,t,l)},ve=(e,t,l)=>{const r=t[l];void 0!==r&&(e[l]=e[l]?e[l].concat(r):r)},we=((e,...t)=>"function"==typeof e?z(ge,e,...t):z(()=>((e,{cacheSize:t,prefix:l,experimentalParseClassName:r,extend:a={},override:o={}})=>(be(e,"cacheSize",t),be(e,"prefix",l),be(e,"experimentalParseClassName",r),fe(e.theme,o.theme),fe(e.classGroups,o.classGroups),fe(e.conflictingClassGroups,o.conflictingClassGroups),fe(e.conflictingClassGroupModifiers,o.conflictingClassGroupModifiers),be(e,"orderSensitiveModifiers",o.orderSensitiveModifiers),xe(e.theme,a.theme),xe(e.classGroups,a.classGroups),xe(e.conflictingClassGroups,a.conflictingClassGroups),xe(e.conflictingClassGroupModifiers,a.conflictingClassGroupModifiers),ve(e,a,"orderSensitiveModifiers"),e))(ge(),e),...t))({extend:{classGroups:{"font-variants":["heading1","heading2","heading3","heading4","heading5","heading6","subheading1","subheading2","subheading3","subheading4","subheading5","subheading6","body1","body2","body3","footnote","micro","label1","label2","label3","label4"],"button-sizes":["btn-small","btn-medium","btn-large","btn-x-large"]}}}),ye=(...e)=>we(c(...e)),ke=r(({children:t,className:l="",style:r,disabled:a,...o},n)=>e("button",{ref:n,className:ye(l),style:r,disabled:a,...o,children:t}));ke.displayName="Button";const Ne=t=>{const{open:l,children:r}=t,i=a(null),[s,c]=o(0);return n(()=>{const e=i.current;if(!e)return;const t=()=>{c(l?e.scrollHeight:0)};let r;return t(),l&&(r=new ResizeObserver(()=>t()),r.observe(e)),()=>{r&&r.disconnect()}},[l,r]),e("div",{className:"overflow-hidden transition-all duration-300 ease-in-out",style:{maxHeight:s,opacity:l?1:0},"aria-hidden":!l,children:e("div",{ref:i,children:r})})};Ne.displayName="Collapse";const Ce=({name:t,fill:l=0,opticalSize:r="48dp",weight:a="200",emphasis:o=145,size:n=24,color:i="currentColor",style:s={},className:c,onClick:d,dataTestId:m})=>{const h={fontVariationSettings:`'FILL' ${l}, 'wght' ${a}, 'GRAD' ${o}, 'opsz' ${r.substring(0,2)}`,fontSize:`${n}px`,fontFamily:"'Material Symbols Rounded'",color:i||"currentColor",...s};return e("span",{style:h,className:ye("material-symbols-rounded",c),onClick:d,"data-testid":m,children:t})};Ce.displayName="MaterialIcon";const ze=l=>{const{title:r,defaultOpen:a,children:i,containerClassName:s,titleClassName:c,className:d,buttonClassName:m,openOnlyOnDesktop:h}=l,[p,u]=o(Boolean(!1));return n(()=>{if(h){const e=window.innerWidth>=1024;u(e)}else u(Boolean(a))},[h,a]),t("div",{className:ye("rounded-lg border",s),children:[t(ke,{type:"button",className:ye("flex w-full items-center justify-between gap-4 rounded-t-lg px-4 py-3 text-left",m),onClick:()=>u(e=>!e),children:[e("span",{className:ye("label5",c),children:r}),e(Ce,{name:p?"keyboard_arrow_down":"keyboard_arrow_up",fill:1,size:24})]}),e(Ne,{open:p,children:e("div",{className:ye("px-4 py-4",d),children:i})})]})};ze.displayName="Accordion";const $e=r(({children:e,as:t,className:r="",style:a,...o},n)=>{const i=t||"p";return l.createElement(i,{ref:n,className:r,style:a,...o},e)});$e.displayName="Text";const je=({items:l,title:r,background:a="white",enableHeading:o=!1,maxWidth:n=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[a]} component-container`,children:t("div",{className:(n?"max-w-120 xl:mx-auto":"")+" mx-5 my-8 lg:mx-20 lg:my-18",children:[e("div",{children:e($e,{as:o?"h1":"h2",className:"heading1 text-left lg:text-center",children:r})}),e("div",{className:"question-answer-section mt-10 lg:mt-16",children:null==l?void 0:l.map((t,l)=>e("div",{children:e(ze,{title:t.title,containerClassName:"border-0 border-b-[1px] rounded-none",openOnlyOnDesktop:!0,children:e($e,{children:t.description})})},`item-${l}`))})]})}),Me=r(({className:t,...l},r)=>e(i,{ref:r,className:ye(t),...l}));Me.displayName="NextImage";const Ge=({items:l=[]})=>l.length?e("div",{className:"card-holder grid grid-cols-1 items-stretch gap-5 self-stretch lg:auto-cols-fr lg:grid-flow-col lg:gap-6 lg:overflow-x-auto",children:l.map((l,r)=>{var a;return e("div",{className:"callout-card h-full p-6 lg:p-8",children:t("div",{className:"card-template flex flex-col gap-6 lg:items-start lg:gap-8",children:[e("div",{className:"card-header",children:l.image&&e(Me,{width:88,height:88,src:l.image,alt:null!==(a=l.title)&&void 0!==a?a:"card-icon"})}),t("div",{className:"card-body flex flex-col gap-3",children:[l.title&&e($e,{as:"h3",className:"heading6",children:l.title}),l.body&&e($e,{as:"div",className:"body1",children:l.body})]})]})},`card-${r}`)})}):null,Fe=({title:l,items:r,enableHeading:a=!1,subtitle:o,color:n="dark",maxWidth:i=!0})=>e("div",{className:"component-container",children:e("div",{className:`mx-5 mb-5 mt-12 ${i?"max-w-120 xl:mx-auto":""} ${"dark"==n?"text-text":"text-white"}`,children:t("div",{className:"callout-container flex flex-col gap-8",children:[t("div",{className:"title-holder",children:[l&&e($e,{as:a?"h1":"h2",className:"heading2 md:heading1 md:text-center",children:l}),o&&e($e,{as:a?"h2":"h3",className:"subheading3 mt-3 md:subheading1 md:text-center",children:o})]}),r&&e(Ge,{items:r})]})})}),Be=({fields:t})=>e("div",{children:e($e,{children:"Cards"})}),Ie=({fields:t})=>e("div",{children:e($e,{children:"Carousel"})}),Pe=e=>{let t="";return e.base&&(t="x-large"===e.base?"label3 ":"label4 "),e.md&&(t+="x-large"===e.md?"md:label3 ":"md:label4 "),e.lg&&(t+="x-large"===e.lg?"lg:label3 ":"lg:label4 "),t.trim()},Ee=r(({variant:l="primary_brand",isLoading:r=!1,text:a,label:o,disabled:n,fullWidth:i,size:s={base:"medium"},...c},d)=>{const m=(()=>{const e=ye((e=>{let t="";return e.base&&(t=`btn-${e.base} `),e.md&&(t+=`${(e=>{switch(e){case"small":return"md:btn-small";case"medium":return"md:btn-medium";case"large":return"md:btn-large";case"x-large":return"md:btn-x-large"}})(e.md)} `),e.lg&&(t+=`lg:btn-${e.lg} `),t.trim()})(s),"rounded-2xl pl-15 pr-15 inline-flex gap-2 items-center justify-center outline-none focus:ring-2 focus:ring-offset-2 cursor-pointer transition-colors duration-200 align-top",i&&"w-full"),t=ye((n||r)&&"cursor-not-allowed",r&&"pl-7",n&&"bg-bg-fill-brand-disabled");return ye(e,{primary_brand:"bg-bg-fill-brand text-text-brand-on-bg-fill enabled:hover:bg-bg-fill-brand-hover focus:ring-bg-fill-brand",primary_inverse:"bg-bg-surface-inverse text-text-inverse enabled:hover:bg-bg-fill-inverse-hover focus:ring-bg-surface-inverse",secondary:"border-2 border-border-secondary-on-bg-fill bg-bg text-text focus:ring-bg-surface-inverse"}[l]||"",t)})();let h=`button--${l}`;r&&(h+=" button--loading"),n&&(h+=" button--disabled");return t("button",{ref:d,className:ye(`${h} ${m}`),disabled:n||r,...c,children:[r?e(Ce,{name:"progress_activity",className:"animate-spin"}):null,o?t("span",{className:"flex flex-col",children:[e("span",{className:ye(Pe(s)),children:o}),a]}):a]})});Ee.displayName="BrandButton";const We=r(({children:t,href:l,className:r="",onClick:a,variant:o="unstyled",style:n,external:i=!1,disabled:s=!1,...c},d)=>{const m=(()=>{if("unstyled"===o)return"";const e={default:"text-text underline"},t=[s?"opacity-60 cursor-not-allowed pointer-events-none":"cursor-pointer"].filter(Boolean).join(" ");return["transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2",e[o]||e.default,t].filter(Boolean).join(" ")})(),h={...c,ref:d,className:ye(m,`link--${o}`,s&&"link--disabled",r),style:n,href:s?void 0:l,onClick:e=>{s?e.preventDefault():null==a||a(e)},...i&&!s&&{target:"_blank",rel:"noopener noreferrer"},...s&&{"aria-disabled":!0,tabIndex:-1}};return e("a",{...h,children:t})});We.displayName="Link";const De=({showButtonAs:t,buttonVariant:l,buttonLabel:r,buttonPrefix:a,href:o,target:n,anchorId:i,linkClassName:s,linkVariant:c,fullWidth:d,preDefinedFunctionExecution:m,checkPlansJSX:h,onClick:p})=>{if("check availability"===m)return h;return"solid"===t?e(Ee,{id:i,variant:l,text:r,label:a,fullWidth:d,onClick:function(e){null==p||p(e)}}):"text"===t?e(We,{href:o,target:n,variant:c||"default",className:`text-text-brand ${s||""}`,onClick:function(e){null==p||p(e)},children:r}):null},Se=({title:l,subtitle:r,description:a,disclaimer:o,icon:n,cta:i,background:s="navy",color:c="light",enableHeading:d,maxWidth:m=!0})=>e("div",{className:"component-container",children:t("div",{className:"mx-5 my-8 lg:mx-20 lg:my-12 lg:rounded-[40px] xl:mx-auto "+(m?"max-w-120":""),children:[t("div",{className:`flex flex-col rounded-[28px] px-5 py-7 lg:flex-row lg:rounded-[40px] lg:px-16 lg:py-9 ${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[s]} ${"dark"==c?"text-text":"text-white"} `,children:[n&&e("div",{className:"floating-banner-icon mb-5 flex justify-center lg:mb-0 lg:items-center",children:e("div",{className:"h-[80px] w-[80px] overflow-hidden",children:e(Me,{width:80,height:80,alt:"icon",src:n})})}),t("div",{className:"flex flex-col justify-center lg:mx-5",children:[l&&e($e,{as:d?"h1":"h2",className:"heading2 mb-3 text-center lg:w-[95%] lg:text-left",children:l}),r&&e($e,{as:"h3",className:"heading3 mb-3 text-center lg:text-left",children:r}),a&&e($e,{as:"div",className:"body1 text-center lg:w-[95%] lg:text-left",children:a})]}),i&&e("div",{className:"mt-5 flex justify-center lg:mt-0 lg:w-[500px] lg:items-center",children:e(De,{...i})})]}),o&&e("div",{children:e($e,{as:"div",className:"body3 mt-3 text-center",children:o})})]})}),_e=({body:r,links:a,bottomLinks:o,copyrights:n,terms:i,maxWidth:s=!0,onClick:c})=>{function d(e){null==c||c(e)}return e("div",{className:"component-container bg-bg-inverse text-white",children:t("div",{className:` ${s?"mx-auto max-w-120":""} px-5 py-8`,children:[e("aside",{"aria-label":"Promotions and disclaimers",children:r}),e("div",{className:"my-8 h-[1px] border-t-0 bg-white opacity-100 lg:my-16 dark:opacity-50"}),e("div",{className:"grid-1 grid gap-8 py-8 md:grid-cols-2 lg:grid-cols-4",children:null==a?void 0:a.map((r,a)=>{var o,n;return t(l.Fragment,{children:[e("div",{children:t("nav",{"aria-labelledby":`footer-${null==r?void 0:r.title}`,className:"site-links-group",children:[e($e,{as:"div",className:"label3",children:null==r?void 0:r.title}),e("ul",{className:"flex flex-col",children:null===(n=null===(o=null==r?void 0:r.items)||void 0===o?void 0:o.items)||void 0===n?void 0:n.map((t,l)=>e("li",{className:"pt-3",children:e(De,{...t,linkVariant:"unstyled",linkClassName:"text-white body3",onClick:d})},`site-links-${l}`))})]},`link-group-${a}`)},`footer-link-group-${a}`),e("div",{className:"block h-[1px] border-t-0 bg-white opacity-100 md:hidden dark:opacity-50"})]},`footer-link-group-${a}`)})}),t("div",{className:"pt-8",children:[e("p",{className:"copy-rights",children:n}),t("p",{className:"terms-text footnote text-white",children:["© ",(new Date).getFullYear()," ",i]}),e("nav",{"aria-label":"Footer legal",children:e("ul",{className:"bottom-links list-none",children:null==o?void 0:o.map((t,l)=>e("li",{className:"relative float-left pl-[8px] before:absolute before:left-[3px] before:top-1/2 before:-translate-y-1/2 before:text-[14px] before:content-['•'] first-of-type:pl-0 first-of-type:before:content-['']",children:e(De,{...t,linkClassName:"footnote text-white",linkVariant:"unstyled",onClick:d})},`links-${l}`))})})]})]})})},Le=r(({children:t,className:l="",variant:r="unstyled",style:a,...o},n)=>{const i=ye("unstyled"===r?"":"mb-1 leading-6","list-item",`list-item--${r}`,l);return e("li",{ref:n,className:i,style:a,...o,children:t})});Le.displayName="ListItem";const Ae=r(({type:t="ul",items:l,className:r="",renderItem:a,children:o,variant:n="unstyled",style:i,...s},c)=>{const d=(()=>{if("unstyled"===n)return"";return`m-0 p-0 ${"ol"===t?"pl-6 list-decimal":"pl-5 list-disc"}`})(),m={className:ye(d,`list--${t}`,`list--${n}`,r),style:i,...s,children:o||(l&&0!==l.length?l.map((t,l)=>a?a(t,l):e(Le,{className:t.className,variant:n,children:t.content},t.id||l)):null)};return e("ol"===t?"ol":"ul",{...m,ref:c})});Ae.displayName="List";const He=l=>{const{items:r,listIconName:a="check",listItemClassName:o,iconSize:n=20,iconPosition:i="center"}=l,s="disc"!==a;return(null==r?void 0:r.length)?e(Ae,{className:"mt-2 space-y-1",variant:s?"unstyled":"default",children:r.map((l,r)=>t(Le,{variant:s?"unstyled":"default",className:ye(`${s?"flex":""} ${"top"===i?"items-start":"items-center"} gap-2 text-text-secondary`,o),children:[s&&e("div",{children:e(Ce,{name:a,size:n,weight:"600",className:"text-icon-brand "+("top"===i?"mt-1":"")})}),e($e,{as:"div",children:l})]},r))}):null};He.displayName="Checklist";const Oe=r(({as:t,className:l="",...r},a)=>{const o=ye(l);if(t){return e(t,{ref:a,className:o,...r})}return e("img",{ref:a,className:o,...r})});Oe.displayName="Image";const Te=({brow:l,enableHeading:r,title:a,subTitle:o,ctaDisclaimer:n,disclaimer:i,description:s,image:c,imageLinks:d,mediaPosition:m=!0,checklist:h,secondaryCta:p,cta:u,videoLink:g,maxWidth:b=!0,color:f="light",imageWidth:x=660,imageHeight:v=660})=>e("div",{className:"component-container",children:e("div",{className:`image-promo-bar-content ${b?"max-w-120 xl:mx-auto":""} mx-5 mb-8 mt-16`,children:t("div",{className:"flex shrink-0 flex-col items-center gap-8 xl:gap-[126px] "+(m?"flex-row xl:flex-row-reverse":"xl:flex-row"),children:[t("div",{className:"flex flex-[1_0_0] flex-col items-start justify-center gap-8 xl:gap-10 "+("dark"==f?"text-text":"text-white"),children:[t("div",{className:"heading holder",children:[l&&e($e,{as:"div",className:"subheading4 mb-4 text-text-brand xl:subheading2 xl:mb-3",children:l}),a&&e($e,{as:r?"h1":"h2",className:"heading2 xl:heading1",children:a}),o&&e($e,{as:r?"h2":"h3",className:"subheading1 mt-3",children:o})]}),s&&e($e,{as:"div",className:"body1",children:s}),h.length>0&&e(He,{items:h,iconPosition:"top",iconSize:24}),null==d?void 0:d.map((t,l)=>e("div",{className:"image-link",children:e(Oe,{src:t.url,alt:"icon-link"})},l)),t("div",{className:"flex w-full flex-col gap-8 xl:flex-row xl:gap-3",children:[u&&e("div",{className:"primary-cta w-full xl:w-auto",children:e(De,{...u,fullWidth:!0})}),p&&e("div",{className:"secondary-cta",children:e(De,{...p,fullWidth:!0})})]}),n&&e("div",{children:n}),i&&e("div",{children:i})]}),t("aside",{className:"flex shrink-0 content-center items-center",children:[e("div",{className:"relative aspect-[16/9] w-full xl:aspect-square xl:max-h-[486px] xl:w-[486px]",children:c&&e(Me,{src:c,alt:"section-image",width:x,height:v,className:"bottom-0 left-0 right-0 top-0 h-full rounded-[40px] object-cover"})}),e("div",{children:(null==g?void 0:g.link)&&e("div",{className:"video-section",children:g.image&&e(Me,{src:g.image,alt:"Video preview",width:486,height:100,className:"rounded-[40px]"})})})]})]})})}),Ve=({link:l})=>{if(!l)return null;if((e=>"string"==typeof e.href)(l)){const t="submenu-link-btn";return e("ul",{children:e("li",{className:"submenu-link",children:e(De,{...l,linkVariant:"unstyled"})},t)})}const{anchorId:r,title:a,items:o}=l,n=Array.isArray(null==o?void 0:o.items)?o.items:[];return t("div",{id:null!=r?r:void 0,children:[e("div",{children:null!=a?a:null}),n.length>0&&e(({items:t})=>e("ul",{children:t.map((t,l)=>{const r=`submenu-link-${l}`;return e("li",{className:"submenu-link",children:e(De,{...t,linkVariant:"unstyled"})},r)})}),{items:n})]})},qe=({primaryNavigationLinks:l,utilityNavigationLinks:r,maxWidth:a=!0})=>e("div",{className:"component-container",children:t("div",{className:"menu-container "+(a?"mx-auto max-w-120":""),children:[e("div",{className:"utility-container",children:e("ul",{className:"flex",children:null==r?void 0:r.map((t,l)=>e("li",{children:e(Ve,{link:t})},`main-menu-items-${l}`))})}),e("div",{className:"main-nav-container",children:e("ul",{className:"flex",children:null==l?void 0:l.map((t,l)=>e("li",{children:e(Ve,{link:t})},`main-menu-items-${l}`))})}),e("div",{})]})}),Je=l=>{var r;const{title:a,showAsHeading:o,subTitle:n,primaryCta1:i,carouselImages:s,bottomLink:c,price:d,priceCallout:m,priceSuffix:h,checklist:p,checkPlansJSX:u}=l,g=null!==(r=null==c?void 0:c.buttonLabel)&&void 0!==r?r:null==c?void 0:c.label;return e("div",{className:"component-container p-5 lg:h-[724px] lg:p-0",children:t("div",{className:ye("primary-hero-container mx-auto flex flex-col sm:items-center sm:text-center lg:h-full lg:max-w-120 lg:flex-row lg:items-center lg:justify-between lg:gap-4 lg:p-4 lg:text-left"),children:[e("div",{className:ye("relative flex w-[485px] flex-col text-white"),children:t("div",{className:"flex flex-col gap-5 lg:gap-6",children:[a&&e($e,{as:o?"h1":"h2",className:"heading2 font-bold lg:heading1",children:a}),n&&e($e,{as:"p",className:"subheading3 lg:subheading1",children:n}),d?t("div",{className:"flex",children:[e("div",{className:"mr-2",children:m?m.split("|").map(t=>e($e,{as:"p",className:"body2",children:t})):null}),e($e,{as:"p",className:"subheading1",children:"$"}),e($e,{as:"p",className:"subheading5",children:d}),h?e($e,{as:"p",className:"subheading1",children:h}):null]}):null,p&&e(He,{listItemClassName:"text-white body2",items:p.map(e=>e.title)}),i&&t("div",{className:ye("hidden flex-col gap-3 lg:flex"),children:[e(De,{...i,checkPlansJSX:u}),c&&e("div",{children:e(De,{...c,linkClassName:"text-footnote text-white"})})]}),!i&&c&&(g||(null==c?void 0:c.href))&&e("div",{className:"hidden lg:block",children:e(De,{...c,linkClassName:"text-footnote text-white"})})]})}),t("div",{className:"lg:hidden",children:[e("div",{className:"my-8",children:s&&s[0]?e(Me,{src:s[0],alt:"Hero",className:"aspect-[1.71:1] sm:aspect-[1.41:1] rounded-[40px] object-cover object-center sm:h-[420px]",width:350,height:205,loading:"eager"}):null}),c&&(g||(null==c?void 0:c.href))&&e("div",{children:e(De,{...c,linkClassName:"body3 text-white"})})]}),e("div",{className:ye("relative hidden lg:block"),children:s&&s[0]?e(Me,{src:s[0],alt:"Hero",className:"aspect-square rounded-[40px] object-cover object-center",width:600,height:600,loading:"eager"}):null})]})})},Re=({fields:t})=>e("div",{children:e($e,{children:"Text Block"})}),Xe=({fields:t})=>e("div",{children:e($e,{children:"Modal Block"})}),Ue=({children:l,background:r,className:a,fill:o="yellow",maxFit:n,show:i=!0,path:s="path2"})=>{const c=`${s}`,d={blue:"text-[#07B2E2]",green:"text-[#26B170]",yellow:"text-[#F5FF1E]",purple:"text-[#931D69]",white:"text-white",navy:"text-[#00002D]"},m={blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"},h="string"==typeof r&&r in m,p=h?m[r]:void 0,u=r&&!h?{background:r}:void 0,g=o in d?d[o]:"text-[#F5FF1E]";return i?t("div",{className:`shape-bg relative overflow-hidden ${null!=a?a:""} ${n?"max-content":""} ${null!=p?p:u?"":"bg-white"}`,style:u,children:["path1"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2371px] z-0 translate-x-[-55%] ${c} fill-current ${g}`,width:"2262",height:"4359",viewBox:"0 0 2262 4359",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1838.72 444.021C2216.45 758.242 2351.22 1060.81 2202.83 1982.25C2062.95 2851.55 1923.57 4265.14 1394.48 4348.94C1079.75 4409.66 766.955 4172.68 508.523 4003.04C340.876 3884.89 192.855 3774.9 26.6866 3661.93C-27.6562 3624.7 8.69435 3542.15 74.1261 3555.69C415.628 3626.61 686.916 3615.36 942.942 3443.48C1410.95 3163.54 1632.32 2141.02 1629.56 1543.75C1637.51 910.76 1276.06 582.318 829.643 352.709C587.562 235.528 333.508 169.963 100.699 149.757C31.9431 143.965 25.0259 47.9703 92.459 33.1281C623.196 -84.6769 1404.59 131.886 1839.84 443.573"})}),"path2"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[45.8px] z-0 translate-x-[-101%] ${c} fill-current ${g}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.09 4009.1 647.09 3634.26 264.38C3417.79 27.9944 3025.37 31.7818 2716.76 13.9013C2511.72 8.81634 2327.31 8.87399 2126.55 0.511773C2060.73 -2.00127 2040.7 85.9475 2101.3 114.087C2417.76 260.743 2628.86 431.51 2731.94 722.142C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.97 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),"path3"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2600px] z-0 translate-x-[-55%] ${c} fill-current ${g}`,width:"3044",height:"3248",viewBox:"0 0 3044 3248",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1.21857 1353.6C-0.931975 1765.46 120.504 2015.15 791.765 2417.01C1424.98 2796.19 2407.16 3469.31 2746.34 3175.04C2955.08 3005.86 2971.76 2677.32 3002.33 2420C3016.95 2248.7 3026.23 2094.39 3043.38 1926.83C3048.81 1871.88 2976.24 1850.67 2949.63 1899.96C2810.91 2157.33 2657.35 2325.33 2408.95 2396.88C1976.88 2546.15 1201.39 2136.59 819.655 1812.63C409.231 1476.27 393.475 1067.19 486.97 656.895C542.372 438.358 637.352 239.983 749.974 79.7081C783.347 32.4684 725.487 -23.7534 679.587 11.5067C317.699 288.49 35.1358 906.671 0.328344 1354.07"})}),"path4"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-1966.1px] z-0 translate-x-[-48%] ${c} fill-current ${g}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.1 4009.1 647.091 3634.26 264.381C3417.79 27.9951 3025.37 31.7826 2716.76 13.902C2511.72 8.81709 2327.31 8.87474 2126.55 0.512528C2060.73 -2.00052 2040.7 85.9483 2101.3 114.088C2417.76 260.743 2628.86 431.51 2731.94 722.143C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.98 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),e("div",{className:"shape-bg-content relative z-[1]",children:l})]}):e("div",{className:a,style:u,children:l})},Ye=({title:l,background:r="white",button:a,color:o,contentAlignment:n,description:i,descriptionAlignment:s,enableHeading:c,subTitle:d,maxWidth:m=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[r]} component-container`,children:t("div",{className:`${m?"mx-auto max-w-120":""} color-${o} flex flex-col ${"dark"==o?"text-text":"text-white"} px-5 py-16 lg:px-13 lg:py-24`,children:[e($e,{as:c?"h1":"h2",className:`heading2 lg:heading1 text-${n}`,children:l}),e($e,{as:"h3",className:`subheading3 pt-2 lg:subheading1 lg:pt-3 text-${n}`,children:d}),e("div",{className:`pt-2 text-body1 lg:pt-3 text-${s}`,children:i}),e("div",{className:"flex justify-center pt-5 lg:pt-14",children:e(De,{...a})})]})}),Ke=({background:l="white",description:r,enableHeading:a,image:o,list:n=[],subTitle:i,title:s,maxWidth:c=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[l]} component-container`,children:t("div",{className:(c?"max-w-120 xl:mx-auto":"")+" mx-5 mb-5 mt-12 xl:my-20",children:[s&&e($e,{as:a?"h1":"h2",className:"heading2 md:heading1 md:text-center",children:s}),i&&e($e,{as:a?"h2":"h3",className:"heading3 mt-4 text-center",children:i}),t("div",{className:"mt-8 flex items-center xl:mt-16 xl:gap-10",children:[t("div",{className:"flex flex-col items-start gap-10 self-stretch xl:flex-[1_0_0]",children:[r&&e($e,{as:"p",className:"body1",children:r}),n.length>0&&e("ul",{className:"grid w-full grid-cols-2 gap-x-8 gap-y-4 lg:grid-cols-3",children:null==n?void 0:n.map((t,l)=>e("li",{children:e(We,{href:`/${t.code}`,className:"label1",children:t.name})},`item-list-${l}`))})]}),o&&e("aside",{className:"hidden xl:block",children:e(Me,{width:472,height:100,src:o,alt:"image"})})]})]})}),Qe=({title:l,disclaimer:r,table:a,maxWidth:o=!0})=>e("div",{className:"component-container",children:t("div",{className:"mx-5 mb-5 mt-8 lg:mt-10 "+(o?"max-w-120 xl:mx-auto":""),children:[e($e,{as:"h2",className:"heading2 lg:heading1 lg:text-center",children:l}),e("div",{className:"comparison-table-container mt-20 xl:mt-10",children:a}),e($e,{as:"div",className:"micro mt-8 text-center",children:r})]})}),Ze=({title:l,quote:r,rating:a,author:o,role:n,avatarUrl:s,isActive:d=!1,className:m})=>t("figure",{className:c("flex h-full w-full flex-col rounded-3xl p-6 font-sans transition-all duration-300 md:p-13",d?"bg-white shadow-lg":"bg-gray-50 opacity-60",m),children:[e("header",{children:e($e,{as:"h3",className:"mb-4 text-xl font-black lowercase text-text",children:l})}),e("blockquote",{className:"mb-5 flex-grow text-xl leading-relaxed text-text",children:r}),a?e("div",{className:"mb-5 flex gap-1",children:[...Array(5)].map((t,l)=>e(Ce,{size:24,name:"star",fill:1,className:c("h-5 w-5",l<a?"text-text":"text-gray-300"),"aria-hidden":"true"},l))}):null,o&&t("figcaption",{className:"flex items-center gap-3",children:[e("div",{className:"relative h-10 w-10 shrink-0 overflow-hidden rounded-full bg-gray-300",children:s?e(i,{src:s,alt:o,fill:!0,className:"object-cover",sizes:"40px"}):e("div",{className:"flex h-full w-full items-center justify-center bg-gray-500 text-xs font-bold text-white",children:o.charAt(0)})}),t("div",{className:"flex flex-col",children:[e("cite",{className:"text-sm font-bold not-italic text-text",children:o}),e($e,{as:"p",className:"text-xs text-text",children:n})]})]})]});export{je as Accordion,De as Button,Fe as Callout,Be as Cards,Ie as Carousel,Qe as ComparisonTable,Ye as CtaCallout,Ke as FindKinetic,Se as FloatingBanner,_e as Footer,Te as ImagePromoBar,Xe as Modal,qe as Navigation,Je as PrimaryHero,Ue as ShapeBackgroundWrapper,Ge as SimpleCards,Ze as TestimonialCard,Re as Text};
3
+ import{jsx as e,jsxs as t,Fragment as l}from"react/jsx-runtime";import r,{forwardRef as a,useRef as n,useState as o,useEffect as i,useCallback as s}from"react";import c from"next/image";function d(e){var t,l,r="";if("string"==typeof e||"number"==typeof e)r+=e;else if("object"==typeof e)if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(l=d(e[t]))&&(r&&(r+=" "),r+=l)}else for(l in e)e[l]&&(r&&(r+=" "),r+=l);return r}function m(){for(var e,t,l=0,r="",a=arguments.length;l<a;l++)(e=arguments[l])&&(t=d(e))&&(r&&(r+=" "),r+=t);return r}const u=e=>{const t=g(e),{conflictingClassGroups:l,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:e=>{const l=e.split("-");return""===l[0]&&1!==l.length&&l.shift(),h(l,t)||f(e)},getConflictingClassGroupIds:(e,t)=>{const a=l[e]||[];return t&&r[e]?[...a,...r[e]]:a}}},h=(e,t)=>{if(0===e.length)return t.classGroupId;const l=e[0],r=t.nextPart.get(l),a=r?h(e.slice(1),r):void 0;if(a)return a;if(0===t.validators.length)return;const n=e.join("-");return t.validators.find(({validator:e})=>e(n))?.classGroupId},p=/^\[(.+)\]$/,f=e=>{if(p.test(e)){const t=p.exec(e)[1],l=t?.substring(0,t.indexOf(":"));if(l)return"arbitrary.."+l}},g=e=>{const{theme:t,classGroups:l}=e,r={nextPart:new Map,validators:[]};for(const e in l)b(l[e],r,e,t);return r},b=(e,t,l,r)=>{e.forEach(e=>{if("string"==typeof e){return void((""===e?t:x(t,e)).classGroupId=l)}if("function"==typeof e)return v(e)?void b(e(r),t,l,r):void t.validators.push({validator:e,classGroupId:l});Object.entries(e).forEach(([e,a])=>{b(a,x(t,e),l,r)})})},x=(e,t)=>{let l=e;return t.split("-").forEach(e=>{l.nextPart.has(e)||l.nextPart.set(e,{nextPart:new Map,validators:[]}),l=l.nextPart.get(e)}),l},v=e=>e.isThemeGetter,y=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,l=new Map,r=new Map;const a=(a,n)=>{l.set(a,n),t++,t>e&&(t=0,r=l,l=new Map)};return{get(e){let t=l.get(e);return void 0!==t?t:void 0!==(t=r.get(e))?(a(e,t),t):void 0},set(e,t){l.has(e)?l.set(e,t):a(e,t)}}},w=e=>{const{prefix:t,experimentalParseClassName:l}=e;let r=e=>{const t=[];let l,r=0,a=0,n=0;for(let o=0;o<e.length;o++){let i=e[o];if(0===r&&0===a){if(":"===i){t.push(e.slice(n,o)),n=o+1;continue}if("/"===i){l=o;continue}}"["===i?r++:"]"===i?r--:"("===i?a++:")"===i&&a--}const o=0===t.length?e:e.substring(n),i=k(o);return{modifiers:t,hasImportantModifier:i!==o,baseClassName:i,maybePostfixModifierPosition:l&&l>n?l-n:void 0}};if(t){const e=t+":",l=r;r=t=>t.startsWith(e)?l(t.substring(e.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:t,maybePostfixModifierPosition:void 0}}if(l){const e=r;r=t=>l({className:t,parseClassName:e})}return r},k=e=>e.endsWith("!")?e.substring(0,e.length-1):e.startsWith("!")?e.substring(1):e,N=e=>{const t=Object.fromEntries(e.orderSensitiveModifiers.map(e=>[e,!0]));return e=>{if(e.length<=1)return e;const l=[];let r=[];return e.forEach(e=>{"["===e[0]||t[e]?(l.push(...r.sort(),e),r=[]):r.push(e)}),l.push(...r.sort()),l}},C=/\s+/;function z(){let e,t,l=0,r="";for(;l<arguments.length;)(e=arguments[l++])&&(t=$(e))&&(r&&(r+=" "),r+=t);return r}const $=e=>{if("string"==typeof e)return e;let t,l="";for(let r=0;r<e.length;r++)e[r]&&(t=$(e[r]))&&(l&&(l+=" "),l+=t);return l};function I(e,...t){let l,r,a,n=function(i){const s=t.reduce((e,t)=>t(e),e());return l=(e=>({cache:y(e.cacheSize),parseClassName:w(e),sortModifiers:N(e),...u(e)}))(s),r=l.cache.get,a=l.cache.set,n=o,o(i)};function o(e){const t=r(e);if(t)return t;const n=((e,t)=>{const{parseClassName:l,getClassGroupId:r,getConflictingClassGroupIds:a,sortModifiers:n}=t,o=[],i=e.trim().split(C);let s="";for(let e=i.length-1;e>=0;e-=1){const t=i[e],{isExternal:c,modifiers:d,hasImportantModifier:m,baseClassName:u,maybePostfixModifierPosition:h}=l(t);if(c){s=t+(s.length>0?" "+s:s);continue}let p=!!h,f=r(p?u.substring(0,h):u);if(!f){if(!p){s=t+(s.length>0?" "+s:s);continue}if(f=r(u),!f){s=t+(s.length>0?" "+s:s);continue}p=!1}const g=n(d).join(":"),b=m?g+"!":g,x=b+f;if(o.includes(x))continue;o.push(x);const v=a(f,p);for(let e=0;e<v.length;++e){const t=v[e];o.push(b+t)}s=t+(s.length>0?" "+s:s)}return s})(e,l);return a(e,n),n}return function(){return n(z.apply(null,arguments))}}const j=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},S=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,B=/^\((?:(\w[\w-]*):)?(.+)\)$/i,M=/^\d+\/\d+$/,E=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,F=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,G=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,L=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,_=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,P=e=>M.test(e),D=e=>!!e&&!Number.isNaN(Number(e)),W=e=>!!e&&Number.isInteger(Number(e)),A=e=>e.endsWith("%")&&D(e.slice(0,-1)),O=e=>E.test(e),H=()=>!0,V=e=>F.test(e)&&!G.test(e),T=()=>!1,R=e=>L.test(e),q=e=>_.test(e),U=e=>!X(e)&&!te(e),J=e=>se(e,ue,T),X=e=>S.test(e),K=e=>se(e,he,V),Y=e=>se(e,pe,D),Q=e=>se(e,de,T),Z=e=>se(e,me,q),ee=e=>se(e,ge,R),te=e=>B.test(e),le=e=>ce(e,he),re=e=>ce(e,fe),ae=e=>ce(e,de),ne=e=>ce(e,ue),oe=e=>ce(e,me),ie=e=>ce(e,ge,!0),se=(e,t,l)=>{const r=S.exec(e);return!!r&&(r[1]?t(r[1]):l(r[2]))},ce=(e,t,l=!1)=>{const r=B.exec(e);return!!r&&(r[1]?t(r[1]):l)},de=e=>"position"===e||"percentage"===e,me=e=>"image"===e||"url"===e,ue=e=>"length"===e||"size"===e||"bg-size"===e,he=e=>"length"===e,pe=e=>"number"===e,fe=e=>"family-name"===e,ge=e=>"shadow"===e,be=()=>{const e=j("color"),t=j("font"),l=j("text"),r=j("font-weight"),a=j("tracking"),n=j("leading"),o=j("breakpoint"),i=j("container"),s=j("spacing"),c=j("radius"),d=j("shadow"),m=j("inset-shadow"),u=j("text-shadow"),h=j("drop-shadow"),p=j("blur"),f=j("perspective"),g=j("aspect"),b=j("ease"),x=j("animate"),v=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",te,X],y=()=>[te,X,s],w=()=>[P,"full","auto",...y()],k=()=>[W,"none","subgrid",te,X],N=()=>["auto",{span:["full",W,te,X]},W,te,X],C=()=>[W,"auto",te,X],z=()=>["auto","min","max","fr",te,X],$=()=>["auto",...y()],I=()=>[P,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...y()],S=()=>[e,te,X],B=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",ae,Q,{position:[te,X]}],M=()=>["auto","cover","contain",ne,J,{size:[te,X]}],E=()=>[A,le,K],F=()=>["","none","full",c,te,X],G=()=>["",D,le,K],L=()=>[D,A,ae,Q],_=()=>["","none",p,te,X],V=()=>["none",D,te,X],T=()=>["none",D,te,X],R=()=>[D,te,X],q=()=>[P,"full",...y()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[O],breakpoint:[O],color:[H],container:[O],"drop-shadow":[O],ease:["in","out","in-out"],font:[U],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[O],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[O],shadow:[O],spacing:["px",D],text:[O],"text-shadow":[O],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",P,X,te,g]}],container:["container"],columns:[{columns:[D,X,te,i]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:v()}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:w()}],"inset-x":[{"inset-x":w()}],"inset-y":[{"inset-y":w()}],start:[{start:w()}],end:[{end:w()}],top:[{top:w()}],right:[{right:w()}],bottom:[{bottom:w()}],left:[{left:w()}],visibility:["visible","invisible","collapse"],z:[{z:[W,"auto",te,X]}],basis:[{basis:[P,"full","auto",i,...y()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[D,P,"auto","initial","none",X]}],grow:[{grow:["",D,te,X]}],shrink:[{shrink:["",D,te,X]}],order:[{order:[W,"first","last","none",te,X]}],"grid-cols":[{"grid-cols":k()}],"col-start-end":[{col:N()}],"col-start":[{"col-start":C()}],"col-end":[{"col-end":C()}],"grid-rows":[{"grid-rows":k()}],"row-start-end":[{row:N()}],"row-start":[{"row-start":C()}],"row-end":[{"row-end":C()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":z()}],"auto-rows":[{"auto-rows":z()}],gap:[{gap:y()}],"gap-x":[{"gap-x":y()}],"gap-y":[{"gap-y":y()}],"justify-content":[{justify:["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe","normal"]}],"justify-items":[{"justify-items":["start","end","center","stretch","center-safe","end-safe","normal"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"align-items":[{items:["start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"align-self":[{self:["auto","start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"place-items":[{"place-items":["start","end","center","stretch","center-safe","end-safe","baseline"]}],"place-self":[{"place-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],p:[{p:y()}],px:[{px:y()}],py:[{py:y()}],ps:[{ps:y()}],pe:[{pe:y()}],pt:[{pt:y()}],pr:[{pr:y()}],pb:[{pb:y()}],pl:[{pl:y()}],m:[{m:$()}],mx:[{mx:$()}],my:[{my:$()}],ms:[{ms:$()}],me:[{me:$()}],mt:[{mt:$()}],mr:[{mr:$()}],mb:[{mb:$()}],ml:[{ml:$()}],"space-x":[{"space-x":y()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":y()}],"space-y-reverse":["space-y-reverse"],size:[{size:I()}],w:[{w:[i,"screen",...I()]}],"min-w":[{"min-w":[i,"screen","none",...I()]}],"max-w":[{"max-w":[i,"screen","none","prose",{screen:[o]},...I()]}],h:[{h:["screen","lh",...I()]}],"min-h":[{"min-h":["screen","lh","none",...I()]}],"max-h":[{"max-h":["screen","lh",...I()]}],"font-size":[{text:["base",l,le,K]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[r,te,Y]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",A,X]}],"font-family":[{font:[re,X,t]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[a,te,X]}],"line-clamp":[{"line-clamp":[D,"none",te,Y]}],leading:[{leading:[n,...y()]}],"list-image":[{"list-image":["none",te,X]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",te,X]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:S()}],"text-color":[{text:S()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","wavy"]}],"text-decoration-thickness":[{decoration:[D,"from-font","auto",te,K]}],"text-decoration-color":[{decoration:S()}],"underline-offset":[{"underline-offset":[D,"auto",te,X]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:y()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",te,X]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",te,X]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:B()}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","space","round"]}]}],"bg-size":[{bg:M()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},W,te,X],radial:["",te,X],conic:[W,te,X]},oe,Z]}],"bg-color":[{bg:S()}],"gradient-from-pos":[{from:E()}],"gradient-via-pos":[{via:E()}],"gradient-to-pos":[{to:E()}],"gradient-from":[{from:S()}],"gradient-via":[{via:S()}],"gradient-to":[{to:S()}],rounded:[{rounded:F()}],"rounded-s":[{"rounded-s":F()}],"rounded-e":[{"rounded-e":F()}],"rounded-t":[{"rounded-t":F()}],"rounded-r":[{"rounded-r":F()}],"rounded-b":[{"rounded-b":F()}],"rounded-l":[{"rounded-l":F()}],"rounded-ss":[{"rounded-ss":F()}],"rounded-se":[{"rounded-se":F()}],"rounded-ee":[{"rounded-ee":F()}],"rounded-es":[{"rounded-es":F()}],"rounded-tl":[{"rounded-tl":F()}],"rounded-tr":[{"rounded-tr":F()}],"rounded-br":[{"rounded-br":F()}],"rounded-bl":[{"rounded-bl":F()}],"border-w":[{border:G()}],"border-w-x":[{"border-x":G()}],"border-w-y":[{"border-y":G()}],"border-w-s":[{"border-s":G()}],"border-w-e":[{"border-e":G()}],"border-w-t":[{"border-t":G()}],"border-w-r":[{"border-r":G()}],"border-w-b":[{"border-b":G()}],"border-w-l":[{"border-l":G()}],"divide-x":[{"divide-x":G()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":G()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:["solid","dashed","dotted","double","hidden","none"]}],"divide-style":[{divide:["solid","dashed","dotted","double","hidden","none"]}],"border-color":[{border:S()}],"border-color-x":[{"border-x":S()}],"border-color-y":[{"border-y":S()}],"border-color-s":[{"border-s":S()}],"border-color-e":[{"border-e":S()}],"border-color-t":[{"border-t":S()}],"border-color-r":[{"border-r":S()}],"border-color-b":[{"border-b":S()}],"border-color-l":[{"border-l":S()}],"divide-color":[{divide:S()}],"outline-style":[{outline:["solid","dashed","dotted","double","none","hidden"]}],"outline-offset":[{"outline-offset":[D,te,X]}],"outline-w":[{outline:["",D,le,K]}],"outline-color":[{outline:S()}],shadow:[{shadow:["","none",d,ie,ee]}],"shadow-color":[{shadow:S()}],"inset-shadow":[{"inset-shadow":["none",m,ie,ee]}],"inset-shadow-color":[{"inset-shadow":S()}],"ring-w":[{ring:G()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:S()}],"ring-offset-w":[{"ring-offset":[D,K]}],"ring-offset-color":[{"ring-offset":S()}],"inset-ring-w":[{"inset-ring":G()}],"inset-ring-color":[{"inset-ring":S()}],"text-shadow":[{"text-shadow":["none",u,ie,ee]}],"text-shadow-color":[{"text-shadow":S()}],opacity:[{opacity:[D,te,X]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[D]}],"mask-image-linear-from-pos":[{"mask-linear-from":L()}],"mask-image-linear-to-pos":[{"mask-linear-to":L()}],"mask-image-linear-from-color":[{"mask-linear-from":S()}],"mask-image-linear-to-color":[{"mask-linear-to":S()}],"mask-image-t-from-pos":[{"mask-t-from":L()}],"mask-image-t-to-pos":[{"mask-t-to":L()}],"mask-image-t-from-color":[{"mask-t-from":S()}],"mask-image-t-to-color":[{"mask-t-to":S()}],"mask-image-r-from-pos":[{"mask-r-from":L()}],"mask-image-r-to-pos":[{"mask-r-to":L()}],"mask-image-r-from-color":[{"mask-r-from":S()}],"mask-image-r-to-color":[{"mask-r-to":S()}],"mask-image-b-from-pos":[{"mask-b-from":L()}],"mask-image-b-to-pos":[{"mask-b-to":L()}],"mask-image-b-from-color":[{"mask-b-from":S()}],"mask-image-b-to-color":[{"mask-b-to":S()}],"mask-image-l-from-pos":[{"mask-l-from":L()}],"mask-image-l-to-pos":[{"mask-l-to":L()}],"mask-image-l-from-color":[{"mask-l-from":S()}],"mask-image-l-to-color":[{"mask-l-to":S()}],"mask-image-x-from-pos":[{"mask-x-from":L()}],"mask-image-x-to-pos":[{"mask-x-to":L()}],"mask-image-x-from-color":[{"mask-x-from":S()}],"mask-image-x-to-color":[{"mask-x-to":S()}],"mask-image-y-from-pos":[{"mask-y-from":L()}],"mask-image-y-to-pos":[{"mask-y-to":L()}],"mask-image-y-from-color":[{"mask-y-from":S()}],"mask-image-y-to-color":[{"mask-y-to":S()}],"mask-image-radial":[{"mask-radial":[te,X]}],"mask-image-radial-from-pos":[{"mask-radial-from":L()}],"mask-image-radial-to-pos":[{"mask-radial-to":L()}],"mask-image-radial-from-color":[{"mask-radial-from":S()}],"mask-image-radial-to-color":[{"mask-radial-to":S()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"]}],"mask-image-conic-pos":[{"mask-conic":[D]}],"mask-image-conic-from-pos":[{"mask-conic-from":L()}],"mask-image-conic-to-pos":[{"mask-conic-to":L()}],"mask-image-conic-from-color":[{"mask-conic-from":S()}],"mask-image-conic-to-color":[{"mask-conic-to":S()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:B()}],"mask-repeat":[{mask:["no-repeat",{repeat:["","x","y","space","round"]}]}],"mask-size":[{mask:M()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",te,X]}],filter:[{filter:["","none",te,X]}],blur:[{blur:_()}],brightness:[{brightness:[D,te,X]}],contrast:[{contrast:[D,te,X]}],"drop-shadow":[{"drop-shadow":["","none",h,ie,ee]}],"drop-shadow-color":[{"drop-shadow":S()}],grayscale:[{grayscale:["",D,te,X]}],"hue-rotate":[{"hue-rotate":[D,te,X]}],invert:[{invert:["",D,te,X]}],saturate:[{saturate:[D,te,X]}],sepia:[{sepia:["",D,te,X]}],"backdrop-filter":[{"backdrop-filter":["","none",te,X]}],"backdrop-blur":[{"backdrop-blur":_()}],"backdrop-brightness":[{"backdrop-brightness":[D,te,X]}],"backdrop-contrast":[{"backdrop-contrast":[D,te,X]}],"backdrop-grayscale":[{"backdrop-grayscale":["",D,te,X]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[D,te,X]}],"backdrop-invert":[{"backdrop-invert":["",D,te,X]}],"backdrop-opacity":[{"backdrop-opacity":[D,te,X]}],"backdrop-saturate":[{"backdrop-saturate":[D,te,X]}],"backdrop-sepia":[{"backdrop-sepia":["",D,te,X]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":y()}],"border-spacing-x":[{"border-spacing-x":y()}],"border-spacing-y":[{"border-spacing-y":y()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",te,X]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[D,"initial",te,X]}],ease:[{ease:["linear","initial",b,te,X]}],delay:[{delay:[D,te,X]}],animate:[{animate:["none",x,te,X]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[f,te,X]}],"perspective-origin":[{"perspective-origin":v()}],rotate:[{rotate:V()}],"rotate-x":[{"rotate-x":V()}],"rotate-y":[{"rotate-y":V()}],"rotate-z":[{"rotate-z":V()}],scale:[{scale:T()}],"scale-x":[{"scale-x":T()}],"scale-y":[{"scale-y":T()}],"scale-z":[{"scale-z":T()}],"scale-3d":["scale-3d"],skew:[{skew:R()}],"skew-x":[{"skew-x":R()}],"skew-y":[{"skew-y":R()}],transform:[{transform:[te,X,"","none","gpu","cpu"]}],"transform-origin":[{origin:v()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:q()}],"translate-x":[{"translate-x":q()}],"translate-y":[{"translate-y":q()}],"translate-z":[{"translate-z":q()}],"translate-none":["translate-none"],accent:[{accent:S()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:S()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",te,X]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":y()}],"scroll-mx":[{"scroll-mx":y()}],"scroll-my":[{"scroll-my":y()}],"scroll-ms":[{"scroll-ms":y()}],"scroll-me":[{"scroll-me":y()}],"scroll-mt":[{"scroll-mt":y()}],"scroll-mr":[{"scroll-mr":y()}],"scroll-mb":[{"scroll-mb":y()}],"scroll-ml":[{"scroll-ml":y()}],"scroll-p":[{"scroll-p":y()}],"scroll-px":[{"scroll-px":y()}],"scroll-py":[{"scroll-py":y()}],"scroll-ps":[{"scroll-ps":y()}],"scroll-pe":[{"scroll-pe":y()}],"scroll-pt":[{"scroll-pt":y()}],"scroll-pr":[{"scroll-pr":y()}],"scroll-pb":[{"scroll-pb":y()}],"scroll-pl":[{"scroll-pl":y()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",te,X]}],fill:[{fill:["none",...S()]}],"stroke-w":[{stroke:[D,le,K,Y]}],stroke:[{stroke:["none",...S()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},xe=(e,t,l)=>{void 0!==l&&(e[t]=l)},ve=(e,t)=>{if(t)for(const l in t)xe(e,l,t[l])},ye=(e,t)=>{if(t)for(const l in t)we(e,t,l)},we=(e,t,l)=>{const r=t[l];void 0!==r&&(e[l]=e[l]?e[l].concat(r):r)},ke=((e,...t)=>"function"==typeof e?I(be,e,...t):I(()=>((e,{cacheSize:t,prefix:l,experimentalParseClassName:r,extend:a={},override:n={}})=>(xe(e,"cacheSize",t),xe(e,"prefix",l),xe(e,"experimentalParseClassName",r),ve(e.theme,n.theme),ve(e.classGroups,n.classGroups),ve(e.conflictingClassGroups,n.conflictingClassGroups),ve(e.conflictingClassGroupModifiers,n.conflictingClassGroupModifiers),xe(e,"orderSensitiveModifiers",n.orderSensitiveModifiers),ye(e.theme,a.theme),ye(e.classGroups,a.classGroups),ye(e.conflictingClassGroups,a.conflictingClassGroups),ye(e.conflictingClassGroupModifiers,a.conflictingClassGroupModifiers),we(e,a,"orderSensitiveModifiers"),e))(be(),e),...t))({extend:{classGroups:{"font-variants":["heading1","heading2","heading3","heading4","heading5","heading6","subheading1","subheading2","subheading3","subheading4","subheading5","subheading6","body1","body2","body3","footnote","micro","label1","label2","label3","label4"],"button-sizes":["btn-small","btn-medium","btn-large","btn-x-large"]}}}),Ne=(...e)=>ke(m(...e)),Ce=a(({children:t,className:l="",style:r,disabled:a,...n},o)=>e("button",{ref:o,className:Ne(l),style:r,disabled:a,...n,children:t}));Ce.displayName="Button";const ze=t=>{const{open:l,children:r}=t,a=n(null),[s,c]=o(0);return i(()=>{const e=a.current;if(!e)return;const t=()=>{c(l?e.scrollHeight:0)};let r;return t(),l&&(r=new ResizeObserver(()=>t()),r.observe(e)),()=>{r&&r.disconnect()}},[l,r]),e("div",{className:"overflow-hidden transition-all duration-300 ease-in-out",style:{maxHeight:s,opacity:l?1:0},"aria-hidden":!l,children:e("div",{ref:a,children:r})})};ze.displayName="Collapse";const $e=({name:t,fill:l=0,opticalSize:r="48dp",weight:a="200",emphasis:n=145,size:o=24,color:i="currentColor",style:s={},className:c,onClick:d,dataTestId:m})=>{const u={fontVariationSettings:`'FILL' ${l}, 'wght' ${a}, 'GRAD' ${n}, 'opsz' ${r.substring(0,2)}`,fontSize:`${o}px`,fontFamily:"'Material Symbols Rounded'",color:i||"currentColor",...s};return e("span",{style:u,className:Ne("material-symbols-rounded",c),onClick:d,"data-testid":m,children:t})};$e.displayName="MaterialIcon";const Ie=l=>{const{title:r,defaultOpen:a,children:n,containerClassName:s,titleClassName:c,className:d,buttonClassName:m,openOnlyOnDesktop:u}=l,[h,p]=o(Boolean(!1));return i(()=>{if(u){const e=window.innerWidth>=1024;p(e)}else p(Boolean(a))},[u,a]),t("div",{className:Ne("rounded-lg border",s),children:[t(Ce,{type:"button",className:Ne("flex w-full items-center justify-between gap-4 rounded-t-lg px-4 py-3 text-left",m),onClick:()=>p(e=>!e),children:[e("span",{className:Ne("label5",c),children:r}),e($e,{name:h?"keyboard_arrow_down":"keyboard_arrow_up",fill:1,size:24})]}),e(ze,{open:h,children:e("div",{className:Ne("px-4 py-4",d),children:n})})]})};Ie.displayName="Accordion";const je=a(({children:e,as:t,className:l="",style:a,...n},o)=>{const i=t||"p";return r.createElement(i,{ref:o,className:l,style:a,...n},e)});je.displayName="Text";const Se=({items:l,title:r,background:a="white",enableHeading:n=!1,maxWidth:o=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[a]} component-container`,children:t("div",{className:(o?"max-w-120 xl:mx-auto":"")+" mx-5 my-8 lg:mx-20 lg:my-18",children:[e("div",{children:e(je,{as:n?"h1":"h2",className:"heading1 text-left lg:text-center",children:r})}),e("div",{className:"question-answer-section mt-10 lg:mt-16",children:null==l?void 0:l.map((t,l)=>e("div",{children:e(Ie,{title:t.title,containerClassName:"border-0 border-b-[1px] rounded-none",openOnlyOnDesktop:!0,children:e(je,{children:t.description})})},`item-${l}`))})]})}),Be=a(({className:t,...l},r)=>{const a="string"==typeof l.src?l.src:"",n=a.toLowerCase().split("?")[0]||"",o=a.includes("images.ctfassets.net")&&n.endsWith(".svg");return e(c,{ref:r,className:Ne(t),...l,unoptimized:o})});Be.displayName="NextImage";const Me=({items:l=[]})=>l.length?e("div",{className:"card-holder grid grid-cols-1 items-stretch gap-5 self-stretch lg:auto-cols-fr lg:grid-flow-col lg:gap-6 lg:overflow-x-auto",children:l.map((l,r)=>{var a;return e("div",{className:"callout-card h-full p-6 lg:p-8",children:t("div",{className:"card-template flex flex-col gap-6 lg:items-start lg:gap-8",children:[e("div",{className:"card-header",children:l.image&&e(Be,{width:88,height:88,src:l.image,alt:null!==(a=l.title)&&void 0!==a?a:"card-icon"})}),t("div",{className:"card-body flex flex-col gap-3",children:[l.title&&e(je,{as:"h3",className:"heading6",children:l.title}),l.body&&e(je,{as:"div",className:"body1",children:l.body})]})]})},`card-${r}`)})}):null,Ee=({title:l,items:r,enableHeading:a=!1,subtitle:n,color:o="dark",maxWidth:i=!0})=>e("div",{className:"component-container",children:e("div",{className:`mx-5 mb-5 mt-12 ${i?"max-w-120 xl:mx-auto":""} ${"dark"==o?"text-text":"text-white"}`,children:t("div",{className:"callout-container flex flex-col gap-8",children:[t("div",{className:"title-holder",children:[l&&e(je,{as:a?"h1":"h2",className:"heading2 md:heading1 md:text-center",children:l}),n&&e(je,{as:a?"h2":"h3",className:"subheading3 mt-3 md:subheading1 md:text-center",children:n})]}),r&&e(Me,{items:r})]})})}),Fe=({fields:t})=>e("div",{children:e(je,{children:"Cards"})}),Ge=({fields:t})=>e("div",{children:e(je,{children:"Carousel"})}),Le=e=>{let t="";return e.base&&(t="x-large"===e.base?"label3 ":"label4 "),e.md&&(t+="x-large"===e.md?"md:label3 ":"md:label4 "),e.lg&&(t+="x-large"===e.lg?"lg:label3 ":"lg:label4 "),t.trim()},_e=a(({variant:l="primary_brand",isLoading:r=!1,text:a,label:n,disabled:o,fullWidth:i,size:s={base:"medium"},...c},d)=>{const m=(()=>{const e=Ne((e=>{let t="";return e.base&&(t=`btn-${e.base} `),e.md&&(t+=`${(e=>{switch(e){case"small":return"md:btn-small";case"medium":return"md:btn-medium";case"large":return"md:btn-large";case"x-large":return"md:btn-x-large"}})(e.md)} `),e.lg&&(t+=`lg:btn-${e.lg} `),t.trim()})(s),"rounded-2xl pl-15 pr-15 inline-flex gap-2 items-center justify-center outline-none focus:ring-2 focus:ring-offset-2 cursor-pointer transition-colors duration-200 align-top",i&&"w-full"),t=Ne((o||r)&&"cursor-not-allowed",r&&"pl-7",o&&"bg-bg-fill-brand-disabled");return Ne(e,{primary_brand:"bg-bg-fill-brand text-text-brand-on-bg-fill enabled:hover:bg-bg-fill-brand-hover focus:ring-bg-fill-brand",primary_inverse:"bg-bg-surface-inverse text-text-inverse enabled:hover:bg-bg-fill-inverse-hover focus:ring-bg-surface-inverse",secondary:"border-2 border-border-secondary-on-bg-fill bg-bg text-text focus:ring-bg-surface-inverse"}[l]||"",t)})();let u=`button--${l}`;r&&(u+=" button--loading"),o&&(u+=" button--disabled");return t("button",{ref:d,className:Ne(`${u} ${m}`),disabled:o||r,...c,children:[r?e($e,{name:"progress_activity",className:"animate-spin"}):null,n?t("span",{className:"flex flex-col",children:[e("span",{className:Ne(Le(s)),children:n}),a]}):a]})});_e.displayName="BrandButton";const Pe=a(({children:t,href:l,className:r="",onClick:a,variant:n="unstyled",style:o,external:i=!1,disabled:s=!1,...c},d)=>{const m=(()=>{if("unstyled"===n)return"";const e={default:"text-text underline"},t=[s?"opacity-60 cursor-not-allowed pointer-events-none":"cursor-pointer"].filter(Boolean).join(" ");return["transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2",e[n]||e.default,t].filter(Boolean).join(" ")})(),u={...c,ref:d,className:Ne(m,`link--${n}`,s&&"link--disabled",r),style:o,href:s?void 0:l,onClick:e=>{s?e.preventDefault():null==a||a(e)},...i&&!s&&{target:"_blank",rel:"noopener noreferrer"},...s&&{"aria-disabled":!0,tabIndex:-1}};return e("a",{...u,children:t})});Pe.displayName="Link";const De=({showButtonAs:t="solid",buttonVariant:l="primary_brand",buttonLabel:r,buttonPrefix:a,href:n,target:o="_blank",anchorId:i,linkClassName:s,linkVariant:c,fullWidth:d,preDefinedFunctionExecution:m,checkPlansJSX:u,onClick:h})=>{if("check availability"===m)return u;return"solid"===t?e(_e,{id:i,variant:l,text:r,label:a,fullWidth:d,onClick:function(e){null==h||h(e)}}):"text"===t?e(Pe,{href:n,target:o,variant:c||"default",className:`text-text-brand ${s||""}`,onClick:function(e){null==h||h(e)},children:r}):null},We=({title:l,subtitle:r,description:a,disclaimer:n,icon:o,cta:i,background:s="navy",color:c="light",enableHeading:d,maxWidth:m=!0})=>e("div",{className:"component-container",children:t("div",{className:"mx-5 my-8 lg:mx-20 lg:my-12 lg:rounded-[40px] xl:mx-auto "+(m?"max-w-120":""),children:[t("div",{className:`flex flex-col rounded-[28px] px-5 py-7 lg:flex-row lg:rounded-[40px] lg:px-16 lg:py-9 ${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[s]} ${"dark"==c?"text-text":"text-white"} `,children:[o&&e("div",{className:"floating-banner-icon mb-5 flex justify-center lg:mb-0 lg:items-center",children:e("div",{className:"h-[80px] w-[80px] overflow-hidden",children:e(Be,{width:80,height:80,alt:"icon",src:o})})}),t("div",{className:"flex flex-col justify-center lg:mx-5",children:[l&&e(je,{as:d?"h1":"h2",className:"heading2 mb-3 text-center lg:w-[95%] lg:text-left",children:l}),r&&e(je,{as:"h3",className:"heading3 mb-3 text-center lg:text-left",children:r}),a&&e(je,{as:"div",className:"body1 text-center lg:w-[95%] lg:text-left",children:a})]}),i&&e("div",{className:"mt-5 flex justify-center lg:mt-0 lg:w-[500px] lg:items-center",children:e(De,{...i})})]}),n&&e("div",{children:e(je,{as:"div",className:"body3 mt-3 text-center",children:n})})]})}),Ae=({body:l,links:a,bottomLinks:n,copyrights:o,terms:i,maxWidth:s=!0,onClick:c})=>{function d(e){null==c||c(e)}return e("div",{className:"component-container bg-bg-inverse text-white",children:t("div",{className:` ${s?"mx-auto max-w-120":""} px-5 py-8`,children:[e("aside",{"aria-label":"Promotions and disclaimers",children:l}),e("div",{className:"my-8 h-[1px] border-t-0 bg-white opacity-100 lg:my-16 dark:opacity-50"}),e("div",{className:"grid-1 grid gap-8 py-8 md:grid-cols-2 lg:grid-cols-4",children:null==a?void 0:a.map((l,a)=>{var n,o;return t(r.Fragment,{children:[e("div",{children:t("nav",{"aria-labelledby":`footer-${null==l?void 0:l.title}`,className:"site-links-group",children:[e(je,{as:"div",className:"label3",children:null==l?void 0:l.title}),e("ul",{className:"flex flex-col",children:null===(o=null===(n=null==l?void 0:l.items)||void 0===n?void 0:n.items)||void 0===o?void 0:o.map((t,l)=>e("li",{className:"pt-3",children:e(De,{...t,linkVariant:"unstyled",linkClassName:"text-white body3",onClick:d})},`site-links-${l}`))})]},`link-group-${a}`)},`footer-link-group-${a}`),e("div",{className:"block h-[1px] border-t-0 bg-white opacity-100 md:hidden dark:opacity-50"})]},`footer-link-group-${a}`)})}),t("div",{className:"pt-8",children:[e("p",{className:"copy-rights",children:o}),t("p",{className:"terms-text footnote text-white",children:["© ",(new Date).getFullYear()," ",i]}),e("nav",{"aria-label":"Footer legal",children:e("ul",{className:"bottom-links list-none",children:null==n?void 0:n.map((t,l)=>e("li",{className:"relative float-left pl-[8px] before:absolute before:left-[3px] before:top-1/2 before:-translate-y-1/2 before:text-[14px] before:content-['•'] first-of-type:pl-0 first-of-type:before:content-['']",children:e(De,{...t,linkClassName:"footnote text-white",linkVariant:"unstyled",onClick:d})},`links-${l}`))})})]})]})})},Oe=a(({children:t,className:l="",variant:r="unstyled",style:a,...n},o)=>{const i=Ne("unstyled"===r?"":"mb-1 leading-6","list-item",`list-item--${r}`,l);return e("li",{ref:o,className:i,style:a,...n,children:t})});Oe.displayName="ListItem";const He=a(({type:t="ul",items:l,className:r="",renderItem:a,children:n,variant:o="unstyled",style:i,...s},c)=>{const d=(()=>{if("unstyled"===o)return"";return`m-0 p-0 ${"ol"===t?"pl-6 list-decimal":"pl-5 list-disc"}`})(),m={className:Ne(d,`list--${t}`,`list--${o}`,r),style:i,...s,children:n||(l&&0!==l.length?l.map((t,l)=>a?a(t,l):e(Oe,{className:t.className,variant:o,children:t.content},t.id||l)):null)};return e("ol"===t?"ol":"ul",{...m,ref:c})});He.displayName="List";const Ve=l=>{const{items:r,listIconName:a="check",listItemClassName:n,iconSize:o=20,iconPosition:i="center"}=l,s="disc"!==a;return(null==r?void 0:r.length)?e(He,{className:"mt-2 space-y-1",variant:s?"unstyled":"default",children:r.map((l,r)=>t(Oe,{variant:s?"unstyled":"default",className:Ne(`${s?"flex":""} ${"top"===i?"items-start":"items-center"} gap-2 text-text-secondary`,n),children:[s&&e("div",{children:e($e,{name:a,size:o,weight:"600",className:"text-icon-brand "+("top"===i?"mt-1":"")})}),e(je,{as:"div",children:l})]},r))}):null};Ve.displayName="Checklist";const Te=a(({as:t,className:l="",...r},a)=>{const n=Ne(l);if(t){return e(t,{ref:a,className:n,...r})}return e("img",{ref:a,className:n,...r})});Te.displayName="Image";const Re=({brow:l,enableHeading:r,title:a,subTitle:n,ctaDisclaimer:o,disclaimer:i,description:s,image:c,imageLinks:d,mediaPosition:m=!0,checklist:u,secondaryCta:h,cta:p,videoLink:f,maxWidth:g=!0,color:b="light",imageWidth:x=660,imageHeight:v=660})=>e("div",{className:"component-container",children:e("div",{className:`image-promo-bar-content ${g?"max-w-120 xl:mx-auto":""} mx-5 mb-8 mt-16`,children:t("div",{className:"flex shrink-0 flex-col items-center gap-8 xl:gap-[126px] "+(m?"flex-row xl:flex-row-reverse":"xl:flex-row"),children:[t("div",{className:"flex flex-[1_0_0] flex-col items-start justify-center gap-8 xl:gap-10 "+("dark"==b?"text-text":"text-white"),children:[t("div",{className:"heading holder",children:[l&&e(je,{as:"div",className:"subheading4 mb-4 text-text-brand xl:subheading2 xl:mb-3",children:l}),a&&e(je,{as:r?"h1":"h2",className:"heading2 xl:heading1",children:a}),n&&e(je,{as:r?"h2":"h3",className:"subheading1 mt-3",children:n})]}),s&&e(je,{as:"div",className:"body1",children:s}),u.length>0&&e(Ve,{items:u,iconPosition:"top",iconSize:24}),null==d?void 0:d.map((t,l)=>e("div",{className:"image-link",children:e(Te,{src:t.url,alt:"icon-link"})},l)),t("div",{className:"flex w-full flex-col gap-8 xl:flex-row xl:gap-3",children:[p&&e("div",{className:"primary-cta w-full xl:w-auto",children:e(De,{...p,fullWidth:!0})}),h&&e("div",{className:"secondary-cta",children:e(De,{...h,fullWidth:!0})})]}),o&&e("div",{children:o}),i&&e("div",{children:i})]}),t("aside",{className:"flex shrink-0 content-center items-center",children:[e("div",{className:"relative aspect-[16/9] w-full xl:aspect-square xl:max-h-[486px] xl:w-[486px]",children:c&&e(Be,{src:c,alt:"section-image",width:x,height:v,className:"bottom-0 left-0 right-0 top-0 h-full rounded-[40px] object-cover"})}),e("div",{children:(null==f?void 0:f.link)&&e("div",{className:"video-section",children:f.image&&e(Be,{src:f.image,alt:"Video preview",width:486,height:100,className:"rounded-[40px]"})})})]})]})})}),qe=({link:l,anchorName:a})=>{const[n,o]=r.useState(!1),s=r.useRef(null);if(((e,t)=>{const l=l=>{var r;(null===(r=null==e?void 0:e.current)||void 0===r?void 0:r.contains(l.target))||t()};i(()=>(document.addEventListener("click",l),()=>{document.removeEventListener("click",l)}))})(s,()=>o(!1)),!l)return null;if((e=>"string"==typeof e.href)(l))return e(De,{...l,linkClassName:"body3 flex items-center text-text-link h-full",linkVariant:"unstyled"},`submenu-link-btn-${l.anchorId}`);const{anchorId:c,title:d,items:m}=l,u=Array.isArray(null==m?void 0:m.items)?m.items:[],h=`--link-anchor-${a}`;return t("div",{className:"relative h-full",style:{anchorName:h},ref:s,children:[t(Ce,{onClick:()=>o(e=>!e),"aria-expanded":n,className:"group body3 flex h-full items-center",children:[e(je,{as:"span",className:"group-hover:underline",children:null!=d?d:null}),e($e,{weight:"700",className:"text-icon-info group-hover:opacity-50",name:n?"keyboard_arrow_up":"keyboard_arrow_down"})]},c),e("div",{className:Ne("fixed z-10 min-w-44 rounded-xl bg-bg shadow-lg","transition-[opacity,transform] ease-out",n&&u.length>0?"pointer-events-auto translate-y-0 opacity-100 duration-75":"pointer-events-none -translate-y-2 opacity-0 duration-0"),style:{positionAnchor:h,top:"anchor(bottom)",right:"anchor(right)"},children:e("ul",{className:"flex flex-col gap-2 py-2",children:u.map((t,l)=>e("li",{className:"submenu-link",children:e(De,{...t,linkVariant:"unstyled",linkClassName:"body3 px-4 hover:bg-bg-surface-hover flex items-center w-full h-11 text-text-link"})},`submenu-link-${l}`))})})]})},Ue=({link:a})=>{const[n,o]=r.useState(!1);if(!a)return null;if((e=>"string"==typeof e.href)(a))return e(De,{...a,linkClassName:"label3 flex items-center w-full h-11 px-4 text-text-link",linkVariant:"unstyled"},`submenu-link-btn-${a.anchorId}`);const{anchorId:i,title:s,items:c}=a,d=Array.isArray(null==c?void 0:c.items)?c.items:[];return t(l,{children:[t(Ce,{onClick:()=>o(e=>!e),"aria-expanded":n,className:"label3 flex h-11 w-full items-center px-4",children:[null!=s?s:null,e($e,{weight:"700",name:n?"keyboard_arrow_up":"keyboard_arrow_down"})]},i),n&&d.length>0&&e(Je,{items:d})]})},Je=({items:t})=>e("ul",{className:"flex flex-col gap-2",children:t.map((t,l)=>e("li",{className:"submenu-link",children:e(De,{...t,linkVariant:"unstyled",linkClassName:"body3 pl-8 pr-4 flex items-center w-full h-11 text-text-link"})},`submenu-link-${l}`))},`submenu-${t.length}`),Xe=l=>{const{showBlinkDot:r=!1,buttonStyle:a="primary",size:n="md",children:o,...i}=l;return t(Pe,{...i,className:`relative flex items-center gap-2 font-medium tracking-wide outline-offset-4 rounded-full ${{sm:"h-6 text-xs pl-1 pr-2",md:"h-8 text-sm pl-1 pr-2",lg:"h-10 text-base pl-2 pr-3"}[n]} ${{primary:"border-[0.727px] border-border text-text"}[a]}`,children:[r?e("span",{className:`pointer-events-none absolute animate-blink ${{sm:"-left-4",md:"-left-6",lg:"-left-8"}[n]} top-1/2 ${{sm:"h-2 w-2",md:"h-3 w-3",lg:"h-4 w-4"}[n]} -translate-y-1/2 rounded-full bg-icon-brand`}):null,e("span",{className:`relative inline-flex ${{sm:"h-5 w-5",md:"h-6 w-6",lg:"h-8 w-8"}[n]} items-center justify-center rounded-full bg-icon-brand`,children:e($e,{name:"call",fill:1,size:{sm:20,md:20,lg:32}[n],className:"text-white"})}),e("span",{className:"font-normal tracking-wide",children:o})]})};Xe.displayName="CallButton";const Ke=a((l,r)=>{const{className:a,size:n,required:i,placeholder:c,label:d,state:m,errorText:u,prefixIconName:h,prefixIconFill:p=!0,suffixIconFill:f=!1,prefixIconSize:g=24,suffixIconName:b,suffixIconSize:x=24,containerClassName:v,prefixIconClassName:y,loading:w,hasError:k,type:N,...C}=l,z=k?"error":m,[$,I]=o(!1),[j,S]=o(!1),[B,M]=o(N||"text"),E=s(e=>{e.stopPropagation(),M(e=>"password"===e?"text":"password")},[]);return t("div",{className:"relative",children:[d?e("label",{htmlFor:d,className:Ne("inline-block pb-1"),children:t(je,{as:"span",className:"footnote text-text",children:[d,i?e("span",{className:"pl-1 text-text-critical",children:"*"}):null]})}):null,t("div",{className:Ne("relative flex flex-row items-center overflow-hidden rounded-xl border border-input-border bg-input-bg-surface",{sm:"h-[48px] rounded-lg px-3 py-2",slim:"h-12",medium:"h-14",large:"h-[60px]"}[n||"medium"],v,($||"hover"===z)&&!j&&"error"!==z&&"border-input-border-hover",(j||"focus"===z||"active"===z)&&"border-input-border-selected outline outline-1 outline-input-border-selected","error"===z&&"border-input-border-critical outline outline-1 outline-input-border-critical"),children:[h?e("div",{className:"mr-1",style:{width:g,height:g,overflow:"hidden"},children:e($e,{name:h,fill:p?1:0,size:g,className:Ne(y)})}):null,e("input",{ref:r,id:d,disabled:w||C.disabled,className:Ne("h-full grow rounded-xl p-4 caret-bg-inverse placeholder:text-input-text-placeholder focus:border-none focus:outline-none","text-body2","slim"===n&&"text-body3",a),placeholder:c,type:B,...C,onMouseOver:()=>I(!0),onMouseOut:()=>I(!1),onFocus:e=>{var t;null===(t=C.onFocus)||void 0===t||t.call(C,e),S(!0)},onBlur:e=>{var t;null===(t=C.onBlur)||void 0===t||t.call(C,e),S(!1)}}),b?e("div",{className:"ml-2",style:{width:x,height:x,overflow:"hidden"},onClick:E,children:e($e,{name:"text"===B?"visibility":"visibility_off",size:x,fill:f?1:0})}):null]}),"error"===z&&u&&""!=u?t(je,{className:Ne("footnote left-0 top-full inline-flex items-center pt-1 text-text-critical"),children:[e($e,{name:"info",size:20,className:"mr-1"}),u||"Error"]}):null]})});Ke.displayName="Input";const Ye=l=>{const{primaryNavigationLinks:r,utilityNavigationLinks:a,checkPlansJSX:n,primaryNavigationLogo:o,accountNavigationLinks:i,supportNavigationLinks:s,searchBarIcon:c,onSearch:d=()=>{}}=l;return t("div",{className:"component-container",children:[t("nav",{className:"menu-container",children:[e("div",{className:"utility-container hidden lg:block lg:border-b lg:px-2",children:t("div",{className:"mx-auto flex max-w-120 justify-between",children:[e("ul",{className:"flex gap-5","aria-label":"Utility Navigation",children:null==a?void 0:a.map((t,l)=>e("li",{children:e(De,{linkClassName:Ne("footnote flex items-center w-full h-11 text-text-link",1===l&&"label4"),linkVariant:"unstyled",...Object.fromEntries(Object.entries(t).filter(([e,t])=>null!==t))})},`main-menu-items-${l}`))}),t("div",{className:"flex items-center gap-10",children:[e(Xe,{href:"tel:1234567890",children:e(je,{className:"body3",children:"(123) 456-7890"})}),null==i?void 0:i.map((t,l)=>e(qe,{anchorName:`my-account-${l}`,link:t},`my-account-${l}`))]})]})}),t("div",{className:"main-nav-container","aria-label":"Main Navigation",children:[t("div",{className:"mobile-nav-section flex h-14 items-center justify-between px-5 py-[10px] lg:hidden",children:[e("div",{children:e(Be,{src:"string"==typeof o?o:(null==o?void 0:o.url)||"",alt:"Kinetic business logo",width:76.5,height:24})}),t("div",{className:"flex items-center gap-6",children:[e(Xe,{href:"tel:1234567890",children:e(je,{as:"span",className:"footnote",children:"(123) 456-7890"})}),e(Qe,{...l})]})]}),e("div",{className:"desktop-nav-section hidden lg:block lg:border-b lg:px-2",children:t("div",{className:"mx-auto flex h-14 max-w-120 items-center justify-between",children:[t("div",{className:"flex h-full",children:[e(Be,{src:"string"==typeof o?o:(null==o?void 0:o.url)||"",alt:"Kinetic business logo",width:76.5,height:24,className:"mr-14"}),e("div",{className:"flex h-full items-center gap-5",children:null==r?void 0:r.map((t,l)=>e(qe,{anchorName:`main-menu-${l}`,link:t},`main-menu-${l}`))})]}),t("div",{className:"flex h-full items-center gap-10",children:[e(et,{searchBarIconURL:"string"==typeof c?c:(null==c?void 0:c.url)||"",onSearch:d}),null==s?void 0:s.map((t,l)=>e(qe,{anchorName:`support-menu-${l}`,link:t},`support-menu-${l}`))]})]})})]})]}),n&&e("div",{className:"md:hidden",children:n})]})},Qe=l=>{var a;const{primaryNavigationLinks:n,utilityNavigationLinks:o}=l,[i,s]=r.useState(!1);r.useEffect(()=>{if("undefined"==typeof window)return;document.body.style.overflowY=i?"hidden":"unset";const e=document.getElementById("drawer-items");if(!e)return;const t=e.querySelectorAll(".focus-item"),l=t[0],r=t[t.length-1],a=e=>{var t,a,n,o;("Tab"===e.key||9===e.keyCode)&&(e.shiftKey?document.activeElement===l&&(null===(a=(t=r).focus)||void 0===a||a.call(t),e.preventDefault()):document.activeElement===r&&(null===(o=(n=l).focus)||void 0===o||o.call(n),e.preventDefault()))};return window.addEventListener("keydown",a),()=>{document.body.style.overflowY="unset",window.removeEventListener("keydown",a)}},[i]);const c=()=>{s(!1)};return t("div",{children:[e(Ce,{className:"flex",onClick:()=>s(!0),children:e($e,{name:"menu"})}),i?e("div",{className:"fixed bottom-0 left-0 right-0 top-0 z-[90] h-full w-full bg-scrim-bg-modal"}):null,e("div",{className:Ne("fixed bottom-0 right-0 top-0","z-[100] h-full bg-bg px-0 py-4","transition-all duration-300 ease-in-out","block",i?"right-0":"-right-96"),id:"mobile-menu-overlay",children:t("div",{id:"drawer-items",className:"flex h-full flex-col gap-3",children:[t("div",{className:"flex items-center justify-between px-4",children:[e("div",{children:e(Xe,{href:"tel:1234567890",children:"(123) 456-7890"})}),e("div",{children:e(Ce,{onClick:c,className:"focus-item flex",children:e($e,{name:"close"})})})]}),e(Ze,{closeMenu:c,isMenuOpen:i,searchBarIconURL:"string"==typeof l.searchBarIcon?l.searchBarIcon:(null===(a=l.searchBarIcon)||void 0===a?void 0:a.url)||"",onSearch:l.onSearch||(()=>{})}),t("div",{className:"flex-grow overflow-y-auto",children:[e("ul",{className:"mt-2 flex flex-col gap-2",children:null==n?void 0:n.map((t,l)=>e("li",{children:e(Ue,{link:t})},`main-menu-items-${l}`))}),e("ul",{className:"mt-2 flex gap-5 bg-bg-fill-info px-4",children:null==o?void 0:o.map((t,l)=>e("li",{children:e(De,{...Object.fromEntries(Object.entries(t).filter(([e,t])=>null!==t)),linkClassName:Ne("footnote flex items-center w-full h-11 text-text-link",1===l&&"label4"),linkVariant:"unstyled"},`submenu-link-btn-${t.anchorId}`)},`main-menu-items-${l}`))})]})]})})]})},Ze=l=>{const{closeMenu:a,onSearch:n,isMenuOpen:o,searchBarIconURL:i}=l,[s,c]=r.useState(""),d=r.useRef(null),m=e=>{a(),e.preventDefault(),n(s)};return r.useEffect(()=>{o||c("")},[o]),t("form",{name:"searchForm",className:"flex border-b border-t transition-colors focus-within:border-border-focus",onSubmit:m,children:[e(Be,{src:i,width:32,height:32,alt:"Search icon",role:"button",className:"ml-2",onClick:m}),e("div",{className:"flex-grow",children:e(Ke,{ref:d,className:"h-[34px] rounded-none text-body3 font-medium leading-6",name:"search",placeholder:"Search...",value:s,onChange:e=>c(e.target.value),autoComplete:"off",containerClassName:"h-[46px] px-4 pl-0 rounded-none flex-grow border-none"})})]})},et=l=>{const{searchBarIconURL:a,onSearch:n}=l,[o,i]=r.useState(""),s=r.useRef(null),c=e=>{e.preventDefault(),n(o)};return t("form",{name:"searchForm",className:"flex h-9 w-60 rounded-full border transition-colors focus-within:border-border-focus",onSubmit:c,children:[e(Be,{src:a,width:32,height:32,alt:"Search icon",role:"button",onClick:c}),e(Ke,{ref:s,className:"rounded-full p-0 text-body3 font-medium leading-6",name:"search",placeholder:"Search...",value:o,onChange:e=>i(e.target.value),autoComplete:"off",containerClassName:"px-0 h-full border-none rounded-full"})]})},tt=l=>{var r;const{title:a,showAsHeading:n,subTitle:o,primaryCta1:i,carouselImages:s,bottomLink:c,price:d,priceCallout:m,priceSuffix:u,checklist:h,checkPlansJSX:p}=l,f=null!==(r=null==c?void 0:c.buttonLabel)&&void 0!==r?r:null==c?void 0:c.label;return e("div",{className:"component-container p-5 lg:h-[724px] lg:p-0",children:t("div",{className:Ne("primary-hero-container mx-auto flex flex-col sm:items-center sm:text-center lg:h-full lg:max-w-120 lg:flex-row lg:items-center lg:justify-between lg:gap-4 lg:p-4 lg:text-left"),children:[e("div",{className:Ne("relative flex flex-col text-white sm:w-[485px]"),children:t("div",{className:"flex flex-col gap-5 lg:gap-6",children:[a&&e(je,{as:n?"h1":"h2",className:"heading2 font-bold lg:heading1",children:a}),o&&e(je,{as:"p",className:"subheading3 lg:subheading1",children:o}),d?t("div",{className:"flex",children:[e("div",{className:"mr-2",children:m?m.split("|").map(t=>e(je,{as:"p",className:"body2",children:t})):null}),e(je,{as:"p",className:"subheading1",children:"$"}),e(je,{as:"p",className:"subheading5",children:d}),u?e(je,{as:"p",className:"subheading1",children:u}):null]}):null,h&&e(Ve,{listItemClassName:"text-white body2",items:h.map(e=>e.title)}),i&&t("div",{className:Ne("hidden flex-col gap-3 lg:flex"),children:[e(De,{...i,checkPlansJSX:p}),c&&e("div",{children:e(De,{...c,linkClassName:"text-footnote text-white"})})]}),!i&&c&&(f||(null==c?void 0:c.href))&&e("div",{className:"hidden lg:block",children:e(De,{...c,linkClassName:"text-footnote text-white"})})]})}),t("div",{className:"lg:hidden",children:[e("div",{className:"my-8",children:s&&s[0]?e(Be,{src:s[0],alt:"Hero",className:"aspect-[1.71:1] sm:aspect-[1.41:1] rounded-[40px] object-cover object-center sm:h-[420px]",width:350,height:205,loading:"eager"}):null}),c&&(f||(null==c?void 0:c.href))&&e("div",{children:e(De,{...c,linkClassName:"body3 text-white"})})]}),e("div",{className:Ne("relative hidden lg:block"),children:s&&s[0]?e(Be,{src:s[0],alt:"Hero",className:"aspect-square rounded-[40px] object-cover object-center",width:600,height:600,loading:"eager"}):null})]})})},lt=({fields:t})=>e("div",{children:e(je,{children:"Text Block"})}),rt=({fields:t})=>e("div",{children:e(je,{children:"Modal Block"})}),at=({children:l,background:r,className:a,fill:n="yellow",maxFit:o,show:i=!0,path:s="path2"})=>{const c=`${s}`,d={blue:"text-[#07B2E2]",green:"text-[#26B170]",yellow:"text-[#F5FF1E]",purple:"text-[#931D69]",white:"text-white",navy:"text-[#00002D]"},m={blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"},u="string"==typeof r&&r in m,h=u?m[r]:void 0,p=r&&!u?{background:r}:void 0,f=n in d?d[n]:"text-[#F5FF1E]";return i?t("div",{className:`shape-bg relative overflow-hidden ${null!=a?a:""} ${o?"max-content":""} ${null!=h?h:p?"":"bg-white"}`,style:p,children:["path1"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2371px] z-0 translate-x-[-55%] ${c} fill-current ${f}`,width:"2262",height:"4359",viewBox:"0 0 2262 4359",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1838.72 444.021C2216.45 758.242 2351.22 1060.81 2202.83 1982.25C2062.95 2851.55 1923.57 4265.14 1394.48 4348.94C1079.75 4409.66 766.955 4172.68 508.523 4003.04C340.876 3884.89 192.855 3774.9 26.6866 3661.93C-27.6562 3624.7 8.69435 3542.15 74.1261 3555.69C415.628 3626.61 686.916 3615.36 942.942 3443.48C1410.95 3163.54 1632.32 2141.02 1629.56 1543.75C1637.51 910.76 1276.06 582.318 829.643 352.709C587.562 235.528 333.508 169.963 100.699 149.757C31.9431 143.965 25.0259 47.9703 92.459 33.1281C623.196 -84.6769 1404.59 131.886 1839.84 443.573"})}),"path2"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[45.8px] z-0 translate-x-[-101%] ${c} fill-current ${f}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.09 4009.1 647.09 3634.26 264.38C3417.79 27.9944 3025.37 31.7818 2716.76 13.9013C2511.72 8.81634 2327.31 8.87399 2126.55 0.511773C2060.73 -2.00127 2040.7 85.9475 2101.3 114.087C2417.76 260.743 2628.86 431.51 2731.94 722.142C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.97 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),"path3"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2600px] z-0 translate-x-[-55%] ${c} fill-current ${f}`,width:"3044",height:"3248",viewBox:"0 0 3044 3248",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1.21857 1353.6C-0.931975 1765.46 120.504 2015.15 791.765 2417.01C1424.98 2796.19 2407.16 3469.31 2746.34 3175.04C2955.08 3005.86 2971.76 2677.32 3002.33 2420C3016.95 2248.7 3026.23 2094.39 3043.38 1926.83C3048.81 1871.88 2976.24 1850.67 2949.63 1899.96C2810.91 2157.33 2657.35 2325.33 2408.95 2396.88C1976.88 2546.15 1201.39 2136.59 819.655 1812.63C409.231 1476.27 393.475 1067.19 486.97 656.895C542.372 438.358 637.352 239.983 749.974 79.7081C783.347 32.4684 725.487 -23.7534 679.587 11.5067C317.699 288.49 35.1358 906.671 0.328344 1354.07"})}),"path4"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-1966.1px] z-0 translate-x-[-48%] ${c} fill-current ${f}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.1 4009.1 647.091 3634.26 264.381C3417.79 27.9951 3025.37 31.7826 2716.76 13.902C2511.72 8.81709 2327.31 8.87474 2126.55 0.512528C2060.73 -2.00052 2040.7 85.9483 2101.3 114.088C2417.76 260.743 2628.86 431.51 2731.94 722.143C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.98 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),e("div",{className:"shape-bg-content relative z-[1]",children:l})]}):e("div",{className:a,style:p,children:l})},nt=({title:l,background:r="white",button:a,color:n,contentAlignment:o,description:i,descriptionAlignment:s,enableHeading:c,subTitle:d,maxWidth:m=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[r]} component-container`,children:t("div",{className:`${m?"mx-auto max-w-120":""} color-${n} flex flex-col ${"dark"==n?"text-text":"text-white"} px-5 py-16 lg:px-13 lg:py-24`,children:[e(je,{as:c?"h1":"h2",className:`heading2 lg:heading1 text-${o}`,children:l}),e(je,{as:"h3",className:`subheading3 pt-2 lg:subheading1 lg:pt-3 text-${o}`,children:d}),e("div",{className:`pt-2 text-body1 lg:pt-3 text-${s}`,children:i}),e("div",{className:"flex justify-center pt-5 lg:pt-14",children:e(De,{...a})})]})}),ot=({background:l="white",description:r,enableHeading:a,image:n,list:o=[],subTitle:i,title:s,maxWidth:c=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[l]} component-container`,children:t("div",{className:(c?"max-w-120 xl:mx-auto":"")+" mx-5 mb-5 mt-12 xl:my-20",children:[s&&e(je,{as:a?"h1":"h2",className:"heading2 md:heading1 md:text-center",children:s}),i&&e(je,{as:a?"h2":"h3",className:"heading3 mt-4 text-center",children:i}),t("div",{className:"mt-8 flex items-center xl:mt-16 xl:gap-10",children:[t("div",{className:"flex flex-col items-start gap-10 self-stretch xl:flex-[1_0_0]",children:[r&&e(je,{as:"p",className:"body1",children:r}),o.length>0&&e("ul",{className:"grid w-full grid-cols-2 gap-x-8 gap-y-4 lg:grid-cols-3",children:null==o?void 0:o.map((t,l)=>e("li",{children:e(Pe,{href:`/${t.code}`,className:"label1",children:t.name})},`item-list-${l}`))})]}),n&&e("aside",{className:"hidden xl:block",children:e(Be,{width:472,height:100,src:n,alt:"image"})})]})]})}),it=({title:l,disclaimer:r,table:a,maxWidth:n=!0})=>e("div",{className:"component-container",children:t("div",{className:"mx-5 mb-5 mt-8 lg:mt-10 "+(n?"max-w-120 xl:mx-auto":""),children:[e(je,{as:"h2",className:"heading2 lg:heading1 lg:text-center",children:l}),e("div",{className:"comparison-table-container mt-20 xl:mt-10",children:a}),e(je,{as:"div",className:"micro mt-8 text-center",children:r})]})}),st=({title:l,quote:r,rating:a,author:n,role:o,avatarUrl:i,isActive:s=!1,className:d})=>t("figure",{className:m("flex h-full w-full flex-col rounded-3xl p-6 font-sans transition-all duration-300 md:p-13",s?"bg-white shadow-lg":"bg-gray-50 opacity-60",d),children:[e("header",{children:e(je,{as:"h3",className:"mb-4 text-xl font-black lowercase text-text",children:l})}),e("blockquote",{className:"mb-5 flex-grow text-xl leading-relaxed text-text",children:r}),a?e("div",{className:"mb-5 flex gap-1",children:[...Array(5)].map((t,l)=>e($e,{size:24,name:"star",fill:1,className:m("h-5 w-5",l<a?"text-text":"text-gray-300"),"aria-hidden":"true"},l))}):null,n&&t("figcaption",{className:"flex items-center gap-3",children:[e("div",{className:"relative h-10 w-10 shrink-0 overflow-hidden rounded-full bg-gray-300",children:i?e(c,{src:i,alt:n,fill:!0,className:"object-cover",sizes:"40px"}):e("div",{className:"flex h-full w-full items-center justify-center bg-gray-500 text-xs font-bold text-white",children:n.charAt(0)})}),t("div",{className:"flex flex-col",children:[e("cite",{className:"text-sm font-bold not-italic text-text",children:n}),e(je,{as:"p",className:"text-xs text-text",children:o})]})]})]});export{Se as Accordion,De as Button,Ee as Callout,Fe as Cards,Ge as Carousel,it as ComparisonTable,nt as CtaCallout,ot as FindKinetic,We as FloatingBanner,Ae as Footer,Re as ImagePromoBar,rt as Modal,Ye as Navigation,tt as PrimaryHero,at as ShapeBackgroundWrapper,Me as SimpleCards,st as TestimonialCard,lt as Text};
4
4
  //# sourceMappingURL=index.esm.js.map