cloudcommerce 0.4.1 → 0.6.0

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 (110) hide show
  1. package/.github/renovate.json +1 -1
  2. package/CHANGELOG.md +52 -0
  3. package/action.yml +1 -2
  4. package/package.json +7 -7
  5. package/packages/api/package.json +1 -1
  6. package/packages/apps/correios/package.json +1 -1
  7. package/packages/apps/custom-payment/package.json +1 -1
  8. package/packages/apps/custom-shipping/package.json +1 -1
  9. package/packages/apps/datafrete/package.json +1 -1
  10. package/packages/apps/discounts/package.json +1 -1
  11. package/packages/apps/emails/package.json +1 -1
  12. package/packages/apps/fb-conversions/package.json +1 -1
  13. package/packages/apps/frenet/package.json +1 -1
  14. package/packages/apps/galaxpay/package.json +1 -1
  15. package/packages/apps/google-analytics/package.json +1 -1
  16. package/packages/apps/infinitepay/package.json +1 -1
  17. package/packages/apps/jadlog/package.json +1 -1
  18. package/packages/apps/loyalty-points/package.json +1 -1
  19. package/packages/apps/melhor-envio/package.json +1 -1
  20. package/packages/apps/mercadopago/package.json +1 -1
  21. package/packages/apps/pagarme/package.json +2 -2
  22. package/packages/apps/paghiper/package.json +1 -1
  23. package/packages/apps/pix/package.json +1 -1
  24. package/packages/apps/tiny-erp/package.json +1 -1
  25. package/packages/apps/webhooks/package.json +3 -3
  26. package/packages/cli/package.json +1 -1
  27. package/packages/config/package.json +1 -1
  28. package/packages/emails/package.json +1 -1
  29. package/packages/events/package.json +1 -1
  30. package/packages/firebase/package.json +1 -1
  31. package/packages/i18n/package.json +1 -1
  32. package/packages/modules/lib/firebase/checkout.js +4 -1
  33. package/packages/modules/lib/firebase/checkout.js.map +1 -1
  34. package/packages/modules/package.json +1 -1
  35. package/packages/modules/src/firebase/checkout.ts +4 -1
  36. package/packages/passport/package.json +1 -1
  37. package/packages/ssr/package.json +3 -3
  38. package/packages/storefront/client.d.ts +23 -3
  39. package/packages/storefront/config/storefront.cms.cjs +31 -5
  40. package/packages/storefront/config/storefront.cms.mjs +31 -5
  41. package/packages/storefront/dist/client/_astro/PitchBar.457658a3.js +1 -0
  42. package/packages/storefront/dist/client/_astro/Prices.a1302bf9.js +1 -0
  43. package/packages/storefront/dist/client/_astro/ProductCard.1a45764a.js +1 -0
  44. package/packages/storefront/dist/client/_astro/ShopHeader.0a6766ac.js +1 -0
  45. package/packages/storefront/dist/client/_astro/_...slug_.6721f699.css +1 -0
  46. package/packages/storefront/dist/client/_astro/_plugin-vue_export-helper.6da04e63.js +1 -0
  47. package/packages/storefront/dist/client/_astro/client.b854166f.js +1 -0
  48. package/packages/storefront/dist/client/_astro/firebase-app.7ce2ebb1.js +1426 -0
  49. package/packages/storefront/dist/client/_astro/format-money.6f464cee.js +1 -0
  50. package/packages/storefront/dist/client/_astro/hoisted.721ad75d.js +1 -0
  51. package/packages/storefront/dist/client/_astro/idle-callback.889bf0ea.js +1 -0
  52. package/packages/storefront/dist/client/_astro/index.a500792d.js +1 -0
  53. package/packages/storefront/dist/client/_astro/modules-info.80ae4e30.js +1 -0
  54. package/packages/storefront/dist/client/_astro/preload-helper.101896b7.js +1 -0
  55. package/packages/storefront/dist/client/_astro/runtime-dom.esm-bundler.acde10ec.js +1 -0
  56. package/packages/storefront/dist/client/fallback/index.html +8 -8
  57. package/packages/storefront/dist/client/sw.js +1 -1
  58. package/packages/storefront/dist/server/chunks/{astro.0f5b754a.mjs → astro.7d9d5f6e.mjs} +100 -38
  59. package/packages/storefront/dist/server/chunks/pages/{all.671e6bc1.mjs → all.e0f284c9.mjs} +980 -660
  60. package/packages/storefront/dist/server/chunks/{prerender.fd8cdc24.mjs → prerender.9f6cbb00.mjs} +0 -0
  61. package/packages/storefront/dist/server/entry.mjs +100 -48
  62. package/packages/storefront/package.json +8 -8
  63. package/packages/storefront/server.d.ts +34 -0
  64. package/packages/storefront/src/env.d.ts +1 -0
  65. package/packages/storefront/src/helpers/afetch.ts +3 -1
  66. package/packages/storefront/src/helpers/idle-callback.ts +9 -0
  67. package/packages/storefront/src/lib/assets/base.css +6 -0
  68. package/packages/storefront/src/lib/browser-env.ts +22 -0
  69. package/packages/storefront/src/lib/cms.d.ts +25 -0
  70. package/packages/storefront/src/lib/components/Drawer.vue +1 -1
  71. package/packages/storefront/src/lib/components/LoginForm.vue +13 -9
  72. package/packages/storefront/src/lib/components/SocialNetworkIcon.vue +29 -0
  73. package/packages/storefront/src/lib/components/SocialNetworkLink.vue +37 -0
  74. package/packages/storefront/src/lib/components/globals/ALink.vue +2 -2
  75. package/packages/storefront/src/lib/composables/use-shop-header.ts +79 -0
  76. package/packages/storefront/src/lib/layouts/Base.astro +4 -5
  77. package/packages/storefront/src/lib/layouts/BaseHead.astro +7 -7
  78. package/packages/storefront/src/lib/layouts/BaseStateJson.astro +1 -1
  79. package/packages/storefront/src/lib/layouts/PagesHeader.astro +5 -23
  80. package/packages/storefront/src/lib/scripts/firebase-app.ts +16 -3
  81. package/packages/storefront/src/lib/server-data.ts +25 -0
  82. package/packages/storefront/src/lib/ssr-context.ts +11 -10
  83. package/packages/storefront/src/lib/state/customer-session.ts +51 -30
  84. package/packages/storefront/src/lib/state/modules-info.ts +3 -6
  85. package/packages/storefront/tailwind.config.cjs +1 -4
  86. package/packages/types/index.ts +7 -0
  87. package/packages/types/package.json +1 -1
  88. package/pnpm-workspace.yaml +3 -3
  89. package/packages/storefront/dist/client/_astro/PitchBar.004b6ea4.js +0 -1
  90. package/packages/storefront/dist/client/_astro/Prices.f311909a.js +0 -1
  91. package/packages/storefront/dist/client/_astro/Prices.vue_vue_type_script_setup_true_lang.ef47de70.js +0 -1
  92. package/packages/storefront/dist/client/_astro/ProductCard.34de5097.js +0 -1
  93. package/packages/storefront/dist/client/_astro/ShopHeader.cbfee289.js +0 -1
  94. package/packages/storefront/dist/client/_astro/_...slug_.bcc33d9d.css +0 -1
  95. package/packages/storefront/dist/client/_astro/client.56d86c9b.js +0 -1
  96. package/packages/storefront/dist/client/_astro/ecom-utils.92f137f6.js +0 -1
  97. package/packages/storefront/dist/client/_astro/hoisted.6edd7364.js +0 -1
  98. package/packages/storefront/dist/client/_astro/index.2d12be6c.js +0 -1
  99. package/packages/storefront/dist/client/_astro/modules-info.0debb0b0.js +0 -1
  100. package/packages/storefront/dist/client/_astro/runtime-core.esm-bundler.a0432a8e.js +0 -1
  101. package/packages/storefront/dist/client/_astro/runtime-dom.esm-bundler.0e5774ce.js +0 -1
  102. package/packages/storefront/src/lib/components/ADrawer.vue +0 -110
  103. package/packages/storefront/src/lib/components/LoginDrawer.vue +0 -82
  104. package/packages/storefront/src/lib/components/ShopHeader.vue +0 -111
  105. package/packages/storefront/src/lib/components/ShopSidenav.vue +0 -26
  106. package/packages/storefront/src/lib/types/cms-code.d.ts +0 -5
  107. package/packages/storefront/src/lib/types/cms-contacts.d.ts +0 -5
  108. package/packages/storefront/src/lib/types/cms-header.d.ts +0 -5
  109. package/packages/storefront/src/lib/types/cms-settings.d.ts +0 -8
  110. package/packages/storefront/src/lib/types/cms-social.d.ts +0 -5
@@ -13,12 +13,38 @@ export default () => {
13
13
  const dirContent = resolvePath(baseDir, 'content');
14
14
 
15
15
  const cms = (filename) => {
16
- if (filename.endsWith('/')) {
17
- const dirColl = resolvePath(dirContent, filename);
18
- return fs.readdirSync(dirColl).map((_filename) => _filename.replace('.json', ''));
16
+ // MUST be sync for 'settings'
17
+ // Async with other content to support external CMS integration
18
+ const loadLocal = () => {
19
+ if (filename.endsWith('/')) {
20
+ const dirColl = resolvePath(dirContent, filename);
21
+ return new Promise((resolve) => {
22
+ const slugs = fs.existsSync(dirColl)
23
+ ? fs.readdirSync(dirColl).map((file) => file.replace('.json', ''))
24
+ : [];
25
+ resolve(slugs);
26
+ });
27
+ }
28
+ const filepath = resolvePath(dirContent, `${filename}.json`);
29
+ const content = fs.existsSync(filepath)
30
+ ? JSON.parse(fs.readFileSync(filepath, 'utf8'))
31
+ : null;
32
+ return filename === 'settings'
33
+ ? content
34
+ : new Promise((resolve) => { resolve(content); });
35
+ };
36
+ const handler = globalThis.storefront_cms_handler;
37
+ if (typeof handler === 'function') {
38
+ try {
39
+ const content = handler({ dirContent, filename, loadLocal });
40
+ if (content) {
41
+ return content;
42
+ }
43
+ } catch {
44
+ //
45
+ }
19
46
  }
20
- const filepath = resolvePath(dirContent, `${filename}.json`);
21
- return JSON.parse(fs.readFileSync(filepath, 'utf8'));
47
+ return loadLocal();
22
48
  };
23
49
 
24
50
  let settings;
@@ -0,0 +1 @@
1
+ import{v as G}from"./runtime-dom.esm-bundler.acde10ec.js";import{p as J}from"./modules-info.80ae4e30.js";import{c as g,d as z,_ as R,m as Q,o as u,a as p,p as x,e as I,n as D,j as d,q as b,s as O,u as X,v as Y,x as Z,y as ee,k as $,w as m,l as q,g as C,z as te,A as ae,B as oe,F as ne,C as re,b as se}from"./_plugin-vue_export-helper.6da04e63.js";import{u as le,a as ie,b as ue}from"./index.a500792d.js";/* empty css */import"./session-utm.72684b84.js";import"./idle-callback.889bf0ea.js";import"./format-money.6f464cee.js";const ce=o=>{const r=g(()=>o.slides.map(({html:e})=>J(e).value)),a=g(()=>r.value.filter(e=>e).length);return{parsedContents:r,countValidSlides:a}},K=Symbol("carousel"),de=z({__name:"CarouselControl",props:{direction:{default:1}},setup(o,{expose:r}){r();const{changeSlide:a}=Q(K),e={changeSlide:a};return Object.defineProperty(e,"__isScriptSetup",{enumerable:!1,value:!0}),e}}),fe=["aria-label","data-carousel-control"];function pe(o,r,a,e,s,n){return u(),p("button",{type:"button","aria-label":a.direction>0?"Próximo":"Anterior",onClick:r[0]||(r[0]=i=>e.changeSlide(a.direction)),"data-carousel-control":a.direction>0?"next":"previous"},[x(o.$slots,"default",{},()=>[I("i",{class:D(["m-0",a.direction>0?"i-chevron-right":"i-chevron-left"])},null,2)])],8,fe)}const U=R(de,[["render",pe]]),me=z({__name:"Carousel",props:{as:{default:"ul"},modelValue:{default:1},autoplay:null},emits:["update:modelValue"],setup(o,{expose:r,emit:a}){r();const e=o,s=d(e.modelValue-1);b(O(e,"modelValue"),t=>{s.value=t-1}),b(s,(t,l)=>{t!==l&&a("update:modelValue",t+1)});const n=d(null),{x:i,isScrolling:f,arrivedState:S}=le(n),y=g(()=>S.left),w=g(()=>S.right),h=d([]),B=d(0),P=d(0),V=d(0),j=()=>{B.value=n.value.scrollWidth,P.value=n.value.offsetWidth},A=()=>{const t=[...n.value.children];h.value=t.map(l=>({offsetLeft:l.offsetLeft,width:l.offsetWidth}))},E=t=>{const l=t>0?s.value:s.value+t,M=h.value[l]?.width||0;return M?M*t:0},L=()=>{const t=h.value.findIndex(l=>Math.abs(l.offsetLeft-i.value)<=5);t>-1&&(s.value=t||0)},T=()=>{const t=B.value-P.value;V.value=h.value.findIndex(({offsetLeft:l})=>l>=t-5)};let c=null;const v=()=>{e.autoplay&&(clearTimeout(c),c=setTimeout(()=>{_(1)},e.autoplay))},_=t=>{if(t<0){if(y.value){T(),s.value=V.value-1,_(1);return}}else if(w.value){s.value=1,_(-1);return}const l=E(t);l&&(n.value.scrollBy({left:l,behavior:"smooth"}),v())};b(f,t=>{t?clearTimeout(c):(L(),v())});const N=d(null),F=ie(N);b(F,t=>{t?clearTimeout(c):v()});const W=()=>{n.value&&(j(),A(),L(),T())},k=ue(W,400);X(()=>{W(),Y(()=>{[...n.value.children].forEach(t=>{t.setAttribute("tabindex","0")})}),v(),window.addEventListener("resize",k)}),Z(()=>{window.removeEventListener("resize",k),clearTimeout(c)}),ee(K,{autoplay:O(e,"autoplay"),changeSlide:_,isBoundLeft:y,isBoundRight:w});const H={props:e,emit:a,currentIndex:s,wrapper:n,currentPos:i,isScrolling:f,arrivedState:S,isBoundLeft:y,isBoundRight:w,slidesWidth:h,wrapperScrollWidth:B,wrapperVisibleWidth:P,indexCount:V,calcWrapperWidth:j,calcSlidesWidth:A,calcNextWidth:E,calcCurrentIndex:L,calcIndexCount:T,get autoplayTimer(){return c},set autoplayTimer(t){c=t},restartAutoplay:v,changeSlide:_,carousel:N,isHovered:F,calcOnInit:W,onResize:k,CarouselControl:U};return Object.defineProperty(H,"__isScriptSetup",{enumerable:!1,value:!0}),H}}),he={ref:"carousel","data-carousel":""};function ve(o,r,a,e,s,n){return u(),p("div",he,[(u(),$(q(a.as),{ref:"wrapper","data-carousel-wrapper":""},{default:m(()=>[x(o.$slots,"default")]),_:3},512)),x(o.$slots,"controls",te(ae({changeSlide:e.changeSlide,isBoundLeft:e.isBoundLeft,isBoundRight:e.isBoundRight,currentPage:e.currentIndex+1,pageCount:e.indexCount+1})),()=>[C(e.CarouselControl,{direction:-1},{default:m(()=>[x(o.$slots,"previous")]),_:3}),C(e.CarouselControl,null,{default:m(()=>[x(o.$slots,"next")]),_:3})])],512)}const _e=R(me,[["render",ve]]),xe=z({__name:"PitchBar",props:{slides:null},setup(o,{expose:r}){r();const a=o,{parsedContents:e,countValidSlides:s}=ce(a),n={props:a,parsedContents:e,countValidSlides:s,Carousel:_e,CarouselControl:U};return Object.defineProperty(n,"__isScriptSetup",{enumerable:!1,value:!0}),n}}),Ce={class:"bg-base-100 relative z-1"},be={class:"container md:w-2/3 mx-auto px-3 py-1"},ge=["innerHTML"],Se={class:"text-xl leading-none text-base-400"};function ye(o,r,a,e,s,n){return u(),p("div",Ce,[I("div",be,[C(e.Carousel,{autoplay:e.countValidSlides>1?7e3:null},{controls:m(()=>[oe(I("div",Se,[C(e.CarouselControl,{direction:-1,class:"pr-2 bg-base-100 hover:text-base-700"}),C(e.CarouselControl,{class:"pl-2 bg-base-100 hover:text-base-700"})],512),[[G,e.countValidSlides>1]])]),default:m(()=>[(u(!0),p(ne,null,re(a.slides,(i,f)=>(u(),p("li",{key:f},[(u(),$(q(i.href?"ALink":"span"),{href:i.href,target:i.target,class:D(["inline-block px-8",i.href?"hover:underline":null])},{default:m(()=>[e.parsedContents[f]?(u(),p("span",{key:0,innerHTML:e.parsedContents[f],class:"prose text-sm text-base-800"},null,8,ge)):se("",!0)]),_:2},1032,["href","target","class"]))]))),128))]),_:1},8,["autoplay"])])])}const Ie=R(xe,[["render",ye]]);export{Ie as default};
@@ -0,0 +1 @@
1
+ import{m as k}from"./modules-info.80ae4e30.js";import{g,c as S}from"./format-money.6f464cee.js";import{c as a,d as M,_ as T,a as i,t as o,b as u,e as h,f as C,n as I,g as L,w as D,r as z,o as l}from"./_plugin-vue_export-helper.6da04e63.js";/* empty css */import"./session-utm.72684b84.js";import"./idle-callback.889bf0ea.js";const j=(n,c)=>{const{type:s,value:t}=c;let r;return t?(s==="percentage"?r=n*((100-t)/100):r=n-t,r>0?r:0):n},E=n=>{const c=a(()=>n.product||{price:n.price||0,base_price:n.basePrice}),s=a(()=>{const{variations:e}=c.value;if(e){const d=g(c.value);for(let v=0;v<e.length;v++)if(g({...c.value,...e[v]})>d)return!0}return!1}),t=a(()=>k.apply_discount.available_extra_discount),r=a(()=>{const e=g(c.value),d=t.value;return d&&(!d.min_amount||e>d.min_amount)?j(e,d):e}),f=a(()=>{if(S(c.value))return c.value.base_price;const e=g(c.value);return e>r.value?e:0}),m=a(()=>n.installmentsOption||k.list_payments.installments_option||{max_number:1}),b=a(()=>{if(m.value.max_number<=1)return 1;const e=m.value.min_installment||5,d=Math.round(r.value/e);return Math.min(d,m.value.max_number)}),y=a(()=>m.value.monthly_interest||0),V=a(()=>{if(b.value>=2){if(!y.value)return r.value/b.value;const e=y.value/100;return r.value*e/(1-(1+e)**-b.value)}return 0}),p=a(()=>{const e=n.discountOption||k.list_payments.discount_option;return e&&(!e.min_amount||e.min_amount<=r.value)&&(!n.isAmountTotal||e.apply_at==="total")?e:{}}),x=a(()=>{const{label:e}=p.value;return e?e.includes(" ")?e:`via ${e}`:""}),O=a(()=>j(r.value,p.value)),_=a(()=>{if(n.loyaltyPointsProgram)return n.loyaltyPointsProgram;const e=k.list_payments.loyalty_points_programs;if(e){const d=Object.keys(e);for(let v=0;v<d.length;v++){const P=e[d[v]];if(P&&P.earn_percentage>0)return P}}return{ratio:0}}),W=a(()=>_.value.min_subtotal_to_earn||0),w=a(()=>_.value.name||""),N=a(()=>_.value.earn_percentage||0),B=a(()=>N.value*_.value.ratio),A=a(()=>B.value>=1?r.value*(B.value/100):0);return{hasVariedPrices:s,salePrice:r,comparePrice:f,installmentsObject:m,installmentsNumber:b,monthlyInterest:y,installmentValue:V,discountObject:p,discountLabel:x,priceWithDiscount:O,pointsProgramObject:_,pointsMinPrice:W,pointsProgramName:w,earnPointsPercentage:N,cashbackPercentage:B,cashbackValue:A}},F=M({__name:"Prices",props:{product:null,price:null,basePrice:null,isAmountTotal:{type:Boolean},installmentsOption:null,discountOption:null,isBig:{type:Boolean},isLiteral:{type:Boolean},hasCashback:{type:Boolean,default:!0},hasPriceOptions:{type:Boolean,default:!0}},setup(n,{expose:c}){c();const s=n,{hasVariedPrices:t,salePrice:r,comparePrice:f,cashbackPercentage:m,cashbackValue:b,installmentsNumber:y,monthlyInterest:V,installmentValue:p,priceWithDiscount:x,discountLabel:O}=E(s),_={props:s,hasVariedPrices:t,salePrice:r,comparePrice:f,cashbackPercentage:m,cashbackValue:b,installmentsNumber:y,monthlyInterest:V,installmentValue:p,priceWithDiscount:x,discountLabel:O};return Object.defineProperty(_,"__isScriptSetup",{enumerable:!1,value:!0}),_}}),R={key:0,class:"text-base-500 mr-1"},q={key:0},G={key:1},H={key:0},J={key:0,class:"relative z-10"},K=["data-tooltip"],Q=h("i",{class:"i-cashback mr-1"},null,-1),U={class:"font-medium"},X=h("small",null," cashback",-1),Y={key:0},Z={key:0},$={key:1},ee={key:2},te={key:0},ne={key:0},ae={key:1};function se(n,c,s,t,r,f){const m=z("Fade");return l(),i("div",{class:I(["text-base-600",s.isBig?"text-lg":null]),"data-prices":""},[t.comparePrice?(l(),i("span",R,[s.isLiteral?(l(),i("small",q,o("De "))):u("",!0),h("s",null,o(n.$money(t.comparePrice)),1),s.isLiteral?(l(),i("small",G,o(" Por"))):u("",!0)])):u("",!0),h("strong",{class:I(["inline-block text-base-800",s.isBig?"text-5xl block":null])},[t.hasVariedPrices?(l(),i("small",H,o("A partir de "))):u("",!0),C(" "+o(n.$money(t.salePrice)),1)],2),L(m,{slide:"down"},{default:D(()=>[t.cashbackValue&&s.hasCashback?(l(),i("div",J,[h("span",{"data-tooltip":"Receba $1 de volta".replace("$1",n.$percentage(t.cashbackPercentage))},[Q,h("span",U,o(n.$money(t.cashbackValue)),1),X],8,K)])):u("",!0)]),_:1}),L(m,{slide:"down"},{default:D(()=>[t.installmentValue&&s.hasPriceOptions?(l(),i("div",Y,[s.isLiteral?(l(),i("small",Z,o("Até "))):u("",!0),C(" "+o(t.installmentsNumber)+"x ",1),s.isLiteral?(l(),i("small",$,o(" De "))):u("",!0),h("span",null,o(n.$money(t.installmentValue)),1),!t.monthlyInterest&&s.isLiteral?(l(),i("small",ee,o("Sem juros"))):u("",!0)])):u("",!0)]),_:1}),L(m,{slide:"down"},{default:D(()=>[t.priceWithDiscount<t.salePrice&&s.hasPriceOptions?(l(),i("div",te,[t.discountLabel?u("",!0):(l(),i("small",ne,o("A partir de "))),h("span",null,o(n.$money(t.priceWithDiscount)),1),t.discountLabel?(l(),i("small",ae,o(` ${t.discountLabel}`),1)):u("",!0)])):u("",!0)]),_:1})],2)}const me=T(F,[["render",se]]);export{me as default};
@@ -0,0 +1 @@
1
+ import d from"./Prices.a1302bf9.js";import{d as _,_ as u,j as o,k as m,w as a,l as f,o as P,g as r,f as l,t as n}from"./_plugin-vue_export-helper.6da04e63.js";import"./modules-info.80ae4e30.js";import"./session-utm.72684b84.js";import"./idle-callback.889bf0ea.js";import"./format-money.6f464cee.js";/* empty css */const b=_({__name:"ProductCard",props:{as:{default:"div"}},setup(p,{expose:s}){s();const i=o(12),e=o(!1);setTimeout(()=>{i.value=8,e.value=!0},5e3);const c={price:i,isBig:e,Prices:d};return Object.defineProperty(c,"__isScriptSetup",{enumerable:!1,value:!0}),c}});function g(p,s,i,e,c,v){return P(),m(f(i.as),null,{default:a(()=>[r(e.Prices,null,{default:a(({salePrice:t})=>[l(" ProductCard "+n(t),1)]),_:1}),r(e.Prices,{product:{price:e.price}},null,8,["product"]),r(e.Prices,{price:12,"base-price":17}),r(e.Prices,{price:12,"base-price":16,"is-literal":!0}),r(e.Prices,{price:12,"is-big":e.isBig},null,8,["is-big"]),r(e.Prices,{price:14,"base-price":18,"is-big":e.isBig,"is-literal":!0},null,8,["is-big"]),r(e.Prices,{price:12,"base-price":16},{"compare-value":a(({comparePrice:t})=>[l(" x"+n(t),1)]),_:1})]),_:1})}const j=u(b,[["render",g]]);export{j as default};
@@ -0,0 +1 @@
1
+ import{c as oe,u as ne,p as re,b as ie}from"./index.a500792d.js";import{j as k,c as v,q as C,u as Q,d as L,s as le,_ as P,r as U,o as c,k as $,w as M,a as p,n as x,e as l,p as V,b as I,a3 as ce,g as B,h as ue,l as de,t as E,F as z,C as H,f as me,a4 as he,a5 as pe,a6 as fe}from"./_plugin-vue_export-helper.6da04e63.js";import{w as _e}from"./runtime-dom.esm-bundler.acde10ec.js";import{_ as ge}from"./preload-helper.101896b7.js";import{i as ye}from"./idle-callback.889bf0ea.js";const we=e=>{if(e){if(e.display_name)return e.display_name;if(e.name&&e.name.given_name)return e.name.given_name}return""},ve=we,be=e=>{const{header:s,canSetStyles:t,canCreateHeightDiv:a,isShownOnScrollDown:n}={canSetStyles:!0,canCreateHeightDiv:!0,...e},{ready:r,start:o}=oe(100,{controls:!0,immediate:!1}),i=k(0),u=k(0);let f;const{y:S}=ne(document),m=v(()=>r.value&&S.value>u.value*1.2),h=k("none");C(m,async y=>{t&&(s.value.style.position=y?"sticky":null),f&&(f.style.height=y?`${i.value}px`:null),y?(await re(300),h.value="opacity var(--transition-slow), transform var(--transition)"):(o(),h.value="none")});const A=k(!1);return C(S,(y,d)=>{A.value=y>0&&y<d}),Q(()=>{const y=()=>{i.value=s.value.offsetHeight,u.value=i.value+window.pageYOffset+s.value.getBoundingClientRect().top,o()},d=s.value.getElementsByTagName("IMG");let w=!0;for(let _=0;_<d.length;_++){const T=d[_];(!T.complete||T.naturalHeight===0)&&(w=!1,T.onload=y)}w&&y(),window.addEventListener("resize",ie(y,300)),t&&(s.value.style.willChange="transform",C([m,A],([_,T])=>{let j=null,K=null;_&&(!T||n)&&(j="0",K="translateY(-100%)"),s.value.style.opacity=j,s.value.style.transform=K}),C(h,_=>{s.value.style.transition=_})),a&&(f=document.createElement("div"),s.value.parentElement.insertBefore(f,s.value))}),{staticHeight:i,staticY:u,isSticky:m,isScrollUp:A,transition:h}},Se=e=>e.filter(({slug:s,parent:t})=>s&&!t),ke=(e,s)=>e.filter(({slug:t,parent:a})=>t&&a?a._id===s._id||a.slug&&a.slug===s.slug:!1),xe=e=>{const{header:s}=e,{isSticky:t,staticHeight:a,staticY:n}=be({header:s}),r=v(()=>t.value?s.value.offsetHeight:n.value),o=Se(e.categories),i=m=>ke(e.categories,m),u=m=>({...m,subcategories:i(m).map(h=>u(h))}),f=o.map(u),S=k(!1);return{isSticky:t,staticHeight:a,staticY:n,positionY:r,mainCategories:o,getSubcategories:i,getCategoryTree:u,categoryTrees:f,isSidenavOpen:S}},Te=L({__name:"Drawer",props:{modelValue:{type:Boolean,default:!1},placement:{default:"start"},position:{default:"fixed"},hasCloseButton:{type:Boolean,default:!0}},emits:["update:modelValue"],setup(e,{expose:s,emit:t}){s();const a=e,n=()=>t("update:modelValue",!1),r=k(null),o=h=>{r.value?.contains(h.target)||n()},i=h=>{h.key==="Escape"&&n()};C(le(a,"modelValue"),async h=>{h?(document.body.style.overflow="hidden",setTimeout(()=>{document.addEventListener("click",o,{passive:!0}),document.addEventListener("keydown",i,{passive:!0})},500)):(document.body.style.overflow=null,document.removeEventListener("click",o),document.removeEventListener("keydown",i))});const u=v(()=>{switch(a.placement){case"start":return"left";case"end":return"right";case"top":return"up";default:return"down"}}),f=v(()=>a.position==="fixed"),S=v(()=>a.placement==="start"||a.placement==="end"),m={props:a,emit:t,close:n,drawer:r,outsideClickListener:o,escClickListener:i,slideTo:u,isFixed:f,isPlacementX:S};return Object.defineProperty(m,"__isScriptSetup",{enumerable:!1,value:!0}),m}}),Ce=["open","data-drawer"],Oe={class:"relative h-full"},Ee=["onClick"],Ae=l("i",{class:"i-close text-base-400 text-3xl"},null,-1),Ne={key:0,class:"fixed top-0 left-0 w-screen h-screen bg-black/50 z-40","data-drawer-backdrop":""};function Ie(e,s,t,a,n,r){const o=U("Fade");return c(),$(o,{slide:a.slideTo,speed:"slow","is-floating":""},{default:M(()=>[t.modelValue?(c(),p("dialog",{key:0,ref:"drawer",class:x(["w-screen max-w-sm shadow p-0 m-0 z-50",[t.position,a.isFixed?`top-0 left-0 ${a.isPlacementX?"h-screen":""}`:null]]),open:t.modelValue,"data-drawer":t.placement},[l("div",Oe,[t.hasCloseButton?(c(),p("button",{key:0,type:"button","aria-label":"Fechar",onClick:_e(a.close,["prevent"]),class:x(["absolute top-2",t.placement==="end"?"left-2":"right-2"]),"data-drawer-close":""},[V(e.$slots,"close",{},()=>[Ae])],10,Ee)):I("",!0),V(e.$slots,"default")]),(c(),$(ce,{to:"#teleported-top"},[B(o,null,{default:M(()=>[t.modelValue?(c(),p("div",Ne)):I("",!0)]),_:1})]))],10,Ce)):I("",!0)]),_:3},8,["slide"])}const $e=P(Te,[["render",Ie]]);globalThis.__apiCache||(globalThis.__apiCache={});const N={BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0};class q extends Error{constructor(s,t,a,n=!1){t?(super(t.statusText),this.data=t.data,this.statusCode=t.status):super(a||"Request error"),this.config=s,this.response=t,this.isTimeout=n}}const Le={middleware(e){const s={...e.headers};if(!e.isNoAuth)if(e.accessToken)s.Authorization=`Bearer ${e.accessToken}`;else{const r=e.authenticationId||N.ECOM_AUTHENTICATION_ID,o=e.apiKey||N.ECOM_API_KEY;if(r&&o){const i=`${r}:${o}`,u=typeof Buffer=="function"?Buffer.from(i).toString("base64"):btoa(i);s.Authorization=`Basic ${u}`}}let t=e.baseUrl||N.API_BASE_URL||"https://ecomplus.io/v2";const{endpoint:a,params:n}=e;if(a!=="login"&&a!=="authenticate"&&a!=="ask-auth-callback"&&a!=="check-username"){const r=e.storeId||N.ECOM_STORE_ID;if(!r)throw new Error("`storeId` must be set in config or `ECOM_STORE_ID` env var");t+=`/:${r}`;const o=e.lang||N.ECOM_LANG;o&&(t+=`,lang:${o}`)}if(t+=`/${a}`,n){if(typeof n=="string")t+=`?${n}`;else if(typeof n=="object"){const r=new URLSearchParams;Object.keys(n).forEach(o=>{const i=n[o];Array.isArray(i)?i.forEach(u=>{r.append(o,u)}):r.append(o,i)}),t+=`?${r.toString()}`}}return{url:t,headers:s}}},g=async(e,s=0)=>{const{url:t,headers:a}=Le.middleware(e),{method:n="get",timeout:r=2e4,maxRetries:o=3,cacheMaxAge:i=6e5}=e,u=n==="get"&&(e.canCache||e.canCache===void 0&&N.SSR);let f;if(u){f=`${t}${JSON.stringify(a)}`;const w=globalThis.__apiCache[f];if(w&&Date.now()-w.timestamp<=i)return{...w.res,config:e}}const S=e.body||e.data;let m;S&&(m=JSON.stringify(S),a["Content-Type"]="application/json",a["Content-Length"]=m.length.toString());const h=new AbortController;let A=!1;const y=setTimeout(()=>{h.abort(),A=!0},r);let d;try{d=await(e.fetch||fetch)(t,{method:n,headers:a,body:m,signal:h.signal})}catch(w){throw new q(e,d,w.message,A)}if(clearTimeout(y),d){if(d.ok){const _={...d,data:await d.json()};return u&&f&&(globalThis.__apiCache[f]={timestamp:Date.now(),res:_}),{..._,config:e}}const{status:w}=d;if(o<s&&(w===429||w>=500)){const _=d.headers.get("retry-after");return new Promise((T,j)=>{setTimeout(()=>{g(e,s+1).then(T).catch(j)},_&&parseInt(_,10)||5e3)})}}try{d.data=await d?.json()}catch{}throw new q(e,d)},Pe=(e,s)=>g({...s,endpoint:e}),Ve=(e,s,t)=>g({...t,method:"post",endpoint:e,body:s}),Be=(e,s,t)=>g({...t,method:"put",endpoint:e,body:s}),De=(e,s,t)=>g({...t,method:"patch",endpoint:e,body:s}),Z=(e,s)=>g({...s,method:"delete",endpoint:e});g.get=Pe;g.post=Ve;g.put=Be;g.patch=De;g.del=Z;g.delete=Z;const je=(e,s,t=localStorage)=>{let a;const n=t.getItem(e);if(n)try{a=JSON.parse(n)}catch{a=null,t.removeItem(e)}const r=ue(a||s);return C(r,()=>{t.setItem(e,JSON.stringify(r))}),r},ee="SESSION",R={customer:{display_name:"",main_email:""},auth:null},b=je(ee,R),Y=v(()=>{const{auth:e}=b;return e&&new Date(e.expires).getTime()-Date.now()>1e3*10}),te=v(()=>b.customer),F=v(()=>ve(te.value)),G=v({get(){return te.value.main_email},set(e){b.customer.main_email=e}});let O;const Me=v(()=>Y.value||!!O?.currentUser?.emailVerified),ae=()=>{b.auth=R.auth,b.customer=R.customer,localStorage.removeItem(ee),O.signOut()},se=async()=>{const e=await O.currentUser.getIdToken(),{domain:s}=window.storefront.settings;try{const t=await fetch(`https://${s}/api/passport/token`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${e}`}});b.auth=await t.json()}catch(t){console.error(t)}},ze=async()=>(Y.value||await se(),b.auth.access_token),He=async()=>{const e=await ze(),{data:s}=await g.get(`customers/${b.auth.customer_id}`,{accessToken:e});return b.customer=s,s};let W=!1;const Re=(e=!window.location.pathname.startsWith("/app/"))=>{if(W)return;W=!0;const s=()=>ge(()=>import("./firebase-app.7ce2ebb1.js"),[]).then(({getAuth:t,onAuthStateChanged:a,isSignInWithEmailLink:n,signInWithEmailLink:r})=>{if(O=t(),a(O,async o=>{if(o){if(o.displayName&&!F.value&&(b.customer.display_name=o.displayName),o.email&&(!G.value||o.emailVerified)&&(b.customer.main_email=o.email),o.emailVerified){const i=o.email!==G.value;(i||!Y.value)&&(await se(),(i||!F.value)&&await He())}}else ae()}),n(O,window.location.href)){const i=new URLSearchParams(window.location.search).get("email");i&&r(O,i,window.location.href).then(()=>window.localStorage.removeItem("emailForSignIn")).catch(console.error)}}).catch(console.error);e?ye(s):s()},{settings:X,context:Lt}=globalThis.storefront,Fe=["whatsapp","instagram","facebook","twitter","youtube","tiktok","pinterest"],J={};Fe.forEach(e=>{X[e]&&(J[e]=X[e])});let D;D=navigator.userAgent,document.body?document.body.offsetWidth:window.screen.width;D.includes("Safari")&&D.includes("Chrome");const Ue=/iPad|iPhone|iPod/.test(D)&&!window.MSStream,Ye=Ue||/Android|webOS|BlackBerry|IEMobile|Opera Mini/i.test(D),Je=L({__name:"SocialNetworkIcon",props:{as:{default:"i"},network:null},setup(e,{expose:s}){s();const t=e,a=v(()=>{switch(t.network){case"facebook":return"i-facebook";case"instagram":return"i-instagram";case"whatsapp":return"i-whatsapp";case"youtube":return"i-youtube";case"pinterest":return"i-pinterest";case"tiktok":return"i-tiktok";case"twitter":return"i-twitter";default:return""}}),n={props:t,iconClassName:a};return Object.defineProperty(n,"__isScriptSetup",{enumerable:!1,value:!0}),n}});function Ke(e,s,t,a,n,r){return c(),$(de(t.as),{class:x(a.iconClassName)},null,8,["class"])}const qe=P(Je,[["render",Ke]]),Ge=L({__name:"SocialNetworkLink",props:{network:null,href:null,message:null},setup(e,{expose:s}){s();const t=e,a=v(()=>{let r=t.href||J[t.network];if(t.network==="whatsapp"){const o=r.replace(/[^+\d]/g,"");r=`https://${Ye?"api":"web"}.whatsapp.com/send?phone=`+encodeURIComponent(o.charAt(0)==="+"?o:`+55${o}`),t.message&&(r+=`&text=${encodeURIComponent(t.message)}`)}return r}),n={props:t,fixedHref:a,SocialNetworkIcon:qe};return Object.defineProperty(n,"__isScriptSetup",{enumerable:!1,value:!0}),n}});function We(e,s,t,a,n,r){const o=U("ALink");return c(),$(o,{href:a.fixedHref},{default:M(()=>[V(e.$slots,"default",{},()=>[B(a.SocialNetworkIcon,{network:t.network},null,8,["network"]),V(e.$slots,"append")])]),_:3},8,["href"])}const Xe=P(Ge,[["render",We]]),Qe=L({__name:"ShopSidenavCategory",props:{categoryTree:null},setup(e,{expose:s}){s();const t=k(!1),a=k(!0);C(t,r=>{r?setTimeout(()=>{a.value=!1},25):a.value=!0});const n={isOpen:t,isFaded:a};return Object.defineProperty(n,"__isScriptSetup",{enumerable:!1,value:!0}),n}}),Ze={class:"text-lg text-base-800"},et=["src"],tt=["href"],at=["href"],st=["src"],ot={class:"inline"};function nt(e,s,t,a,n,r){const o=U("ShopSidenavCategory",!0);return c(),p("li",Ze,[t.categoryTree.subcategories.length?(c(),p("details",{key:0,class:"bg-white overflow-y-auto overflow-x-hidden z-10 open:absolute open:top-0 open:left-0 open:w-full open:h-full",onToggle:s[0]||(s[0]=i=>a.isOpen=!a.isOpen)},[l("summary",{class:x(["cursor-pointer list-none px-6 py-3 active:bg-base-100 transition-colors",a.isOpen?"bg-base-100":null])},[l("i",{class:x(a.isOpen?"i-arrow-left text-lg":"i-arrow-right float-right mb-0 mt-1 text-xl text-base-500")},null,2),!a.isOpen&&t.categoryTree.icon?(c(),p("img",{key:0,loading:"lazy",src:t.categoryTree.icon.url,class:"w-auto h-5 inline mr-3"},null,8,et)):I("",!0),l("h3",{class:x(["inline",a.isOpen?"ml-4 text-base":null])},E(t.categoryTree.name),3)],2),l("ul",{class:x(["mt-2 transition-opacity",a.isFaded?"opacity-20":"opacity-100"]),tabindex:"-1"},[(c(!0),p(z,null,H(t.categoryTree.subcategories,i=>(c(),$(o,{key:i._id,"category-tree":i},null,8,["category-tree"]))),128)),l("li",null,[l("a",{href:`/${t.categoryTree.slug}`,class:"block px-6 py-3 text-base underline active:bg-base-200"},E("Ver toda a categoria $1".replace("$1",t.categoryTree.name)),9,tt)])],2)],32)):(c(),p("a",{key:1,href:`/${t.categoryTree.slug}`,class:"block px-6 py-3 active:bg-base-200"},[!a.isOpen&&t.categoryTree.icon?(c(),p("img",{key:0,loading:"lazy",src:t.categoryTree.icon.url,class:"w-auto h-5 inline mr-3"},null,8,st)):I("",!0),l("h3",ot,E(t.categoryTree.name),1)],8,at))])}const rt=P(Qe,[["render",nt]]),it=L({__name:"ShopSidenav",props:{categoryTrees:null},setup(e,{expose:s}){s(),Q(()=>Re());const t={get customerName(){return F},get isLogged(){return Me},get logout(){return ae},get socialNetworks(){return J},SocialNetworkLink:Xe,ShopSidenavCategory:rt};return Object.defineProperty(t,"__isScriptSetup",{enumerable:!1,value:!0}),t}}),lt={class:"flex flex-col h-full"},ct={class:"py-4 grow"},ut={class:"relative h-full"},dt={class:"text-base"},mt={class:"flex items-center px-2 py-4 bg-base-100"},ht={href:"/app/account",class:"p-2 grow flex items-center gap-3"},pt=l("i",{class:"i-account text-4xl text-base-500 m-0"},null,-1),ft={class:"leading-tight"},_t=l("small",{class:"block lowercase font-semibold text-primary"},E("Meus pedidos")+", "+E("Minha conta"),-1),gt=l("span",{class:"text-base-600"},E("Sair"),-1),yt=l("i",{class:"i-logout text-lg ml-1"},null,-1),wt=[gt,yt],vt={class:"flex gap-3 p-4 bg-base-200 text-xl text-base-700"};function bt(e,s,t,a,n,r){return c(),p("aside",lt,[l("nav",ct,[l("ul",ut,[(c(!0),p(z,null,H(t.categoryTrees,o=>(c(),$(a.ShopSidenavCategory,{key:o._id,"category-tree":o},null,8,["category-tree"]))),128))])]),l("footer",dt,[l("div",mt,[l("a",ht,[pt,l("span",ft,[me(E(`Olá ${a.customerName||"Visitante"}`)+" ",1),_t])]),a.isLogged?(c(),p("button",{key:0,onClick:s[0]||(s[0]=(...o)=>a.logout&&a.logout(...o)),class:"p-2 text-right text-base-800"},wt)):I("",!0)]),l("ul",vt,[(c(!0),p(z,null,H(a.socialNetworks,(o,i)=>(c(),p("li",{key:i},[B(a.SocialNetworkLink,{network:i,class:"p-1 active:text-primary"},null,8,["network"])]))),128))])])])}const St=P(it,[["render",bt]]),kt=L({__name:"ShopHeader",props:{categories:null},setup(e,{expose:s}){s();const t=e,a=k(null),{isSticky:n,positionY:r,categoryTrees:o,isSidenavOpen:i}=xe({...t,header:a}),u={props:t,header:a,isSticky:n,positionY:r,categoryTrees:o,isSidenavOpen:i,Drawer:$e,ShopSidenav:St};return Object.defineProperty(u,"__isScriptSetup",{enumerable:!1,value:!0}),u}}),xt={class:"container lg:max-w-7xl mx-auto px-1 lg:pl-3 grid grid-flow-col grid-cols-3 justify-between items-center md:grid-cols-none md:auto-cols-max"},Tt={class:"md:hidden"},Ct=pe('<nav class="hidden md:block"></nav><div class="px-2 flex justify-end items-center gap-3 lg:gap-4 text-base-800"><button aria-label="Buscar produtos"><i class="i-search w-7 h-7 hover:text-primary hover:scale-110 active:scale-125"></i></button><button class="hidden sm:block" aria-label="Minha conta"><i class="i-account w-7 h-7 hover:text-primary hover:scale-110 active:scale-125"></i></button><button aria-label="Abrir carrinho"><i class="i-shopping-cart w-7 h-7 hover:text-primary hover:scale-110 active:scale-125"></i></button></div>',2);function Ot(e,s,t,a,n,r){return c(),p("header",{ref:"header",class:x(["top-0 z-50 transition-colors",[a.isSticky&&!a.isSidenavOpen?"bg-white/80":"bg-white",a.isSticky?"backdrop-blur-md shadow py-2 md:py-3":"py-3 sm:py-4 md:py-5"]])},[l("div",xt,[l("div",Tt,[l("button",{class:"px-2 my-1","aria-label":"Abrir/fechar menu",onClick:s[0]||(s[0]=o=>a.isSidenavOpen=!a.isSidenavOpen)},[l("i",{class:x(["text-base-500 text-3xl",a.isSidenavOpen?"i-close":"i-menu"])},null,2)])]),V(e.$slots,"logo"),Ct]),B(a.Drawer,{modelValue:a.isSidenavOpen,"onUpdate:modelValue":s[1]||(s[1]=o=>a.isSidenavOpen=o),"has-close-button":!1,position:"absolute",class:"mt-3 -z-1",style:he({height:`calc(100vh - ${a.positionY}px + .5rem)`})},{default:M(()=>[B(a.ShopSidenav,fe({class:"bg-white pt-6"},{categoryTrees:a.categoryTrees}),null,16)]),_:1},8,["modelValue","style"])],2)}const Pt=P(kt,[["render",Ot]]);export{Pt as default};
@@ -0,0 +1 @@
1
+ *,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:var(--font-family);font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--font-mono);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#94a3b8}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}:root{--font-size: 14.5px;--font-sans: var(--custom-font-sans, ui-sans-serif), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono: var(--custom-font-mono, ui-monospace), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--font-family: var(--font-sans);--transition-fast: 75ms linear;--transition: .15s ease-in-out;--transition-slow: .25s ease-in-out;--transition-slower: .45s ease-in-out;--c-on-dark: rgb(255, 255, 255);--c-on-light: rgb(0, 0, 0);--c-background: #fff;--c-on-background: #1e293b;--un-prose-body: #334155;--un-prose-headings: #0f172a;--un-prose-links: var(--c-primary);--un-prose-captions: #64748b;--un-prose-borders: #e2e8f0;--un-prose-hr: #cbd5e1;--un-prose-bg-soft: #f1f5f9;color-scheme:light;accent-color:var(--c-secondary)}@media (prefers-reduced-motion: reduce){:root{--transition-fast: 0s;--transition: 0s;--transition-slow: 0s;--transition-slower: .15s linear}}html{font-size:var(--font-size)}@media (min-width: 640px){html{font-size:calc(var(--font-size) * 1.0345)}}@media (min-width: 768px){html{font-size:calc(var(--font-size) * 1.0689)}}@media (min-width: 1024px){html{font-size:calc(var(--font-size) * 1.1034)}}@media (min-width: 1280px){html{font-size:calc(var(--font-size) * 1.1379)}}@media (min-width: 1536px){html{font-size:calc(var(--font-size) * 1.1724)}}:focus-visible{outline-color:var(--c-outline, rgba(var(--rgb-secondary), .1))}::selection{background-color:var(--c-selection-background, rgba(var(--rgb-secondary), .15))}::marker{color:var(--c-primary)}:is(::-webkit-calendar-picker-indicator,::-webkit-clear-button,::-webkit-inner-spin-button,::-webkit-outer-spin-button){color:var(--c-secondary)}body{background:var(--c-background);color:var(--c-on-background)}d-md{display:none}@media (min-width: 768px){d-md{display:inline}}details>summary.list-none::-webkit-details-marker,details>summary.list-none::marker{display:none}[type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--c-background);border-color:#64748b;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--un-shadow: 0 0 #0000}[type=text]:focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 0px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(1px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);border-color:var(--c-primary)}input::-moz-placeholder,textarea::-moz-placeholder{color:#64748b;opacity:1}input::placeholder,textarea::placeholder{color:#64748b;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;print-color-adjust:exact}[multiple]{background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:var(--c-primary);background-color:var(--c-background);border-color:#64748b;border-width:1px;--un-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 2px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(2px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}[data-tooltip]{position:relative;cursor:help;--background-color: var(--c-tooltip-background, rgba(44, 44, 44, .85));--color: var(--c-tooltip-foreground, var(--c-on-dark));--border-color: transparent transparent var(--background-color) transparent}[data-tooltip]:before{content:attr(data-tooltip);visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:0;top:102%;margin-top:5px;font-size:clamp(.75rem,90%,1rem);width:max-content;background-color:var(--background-color);color:var(--color);text-align:center;border-radius:.125rem;padding:.25rem .5rem;line-height:1.375}[data-tooltip]:after{content:"";visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:50%;top:102%;margin-left:-5px;margin-top:-4px;border-width:5px;border-style:solid;border-color:var(--border-color)}[data-tooltip]:hover:before,[data-tooltip]:hover:after{opacity:1;visibility:visible}*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }:root{--rgb-primary-50:246,250,249;--rgb-primary-100:226,239,235;--rgb-primary-200:204,227,220;--rgb-primary-300:180,214,204;--rgb-primary-400:148,196,181;--rgb-primary-500:106,172,152;--rgb-primary-600:59,146,120;--rgb-primary-700:19,123,91;--rgb-primary-800:16,101,75;--rgb-primary-900:11,72,54;--rgb-primary-subtle:103,197,161;--c-primary-subtle:rgb(103,197,161);--c-on-primary-subtle:var(--c-on-light);--rgb-primary:19,124,92;--c-primary:rgb(19,124,92);--c-on-primary:var(--c-on-dark);--rgb-primary-bold:0,68,41;--c-primary-bold:rgb(0,68,41);--c-on-primary-bold:var(--c-on-dark);--rgb-secondary-50:246,250,249;--rgb-secondary-100:226,239,235;--rgb-secondary-200:204,227,220;--rgb-secondary-300:180,214,204;--rgb-secondary-400:148,196,181;--rgb-secondary-500:106,172,152;--rgb-secondary-600:59,146,120;--rgb-secondary-700:19,123,91;--rgb-secondary-800:16,101,75;--rgb-secondary-900:11,72,54;--rgb-secondary-subtle:103,197,161;--c-secondary-subtle:rgb(103,197,161);--c-on-secondary-subtle:var(--c-on-light);--rgb-secondary:19,124,92;--c-secondary:rgb(19,124,92);--c-on-secondary:var(--c-on-dark);--rgb-secondary-bold:0,68,41;--c-secondary-bold:rgb(0,68,41);--c-on-secondary-bold:var(--c-on-dark);--rgb-on-primary:--c-on-dark;--rgb-on-primary-subtle:--c-on-light;--rgb-on-primary-bold:--c-on-dark;--rgb-on-secondary:--c-on-dark;--rgb-on-secondary-subtle:--c-on-light;--rgb-on-secondary-bold:--c-on-dark}.prose :where(h1,h2,h3,h4,h5,h6):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-headings);font-weight:600;line-height:1.25}.prose :where(a):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links);text-decoration:underline;font-weight:500}.prose :where(a code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links)}.prose :where(p,ul,ol,pre):not(:where(.not-prose,.not-prose *)){margin:1em 0;line-height:1.75}.prose :where(blockquote):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding-left:1em;font-style:italic;border-left:.25em solid var(--un-prose-borders)}.prose :where(h1):not(:where(.not-prose,.not-prose *)){margin:1rem 0;font-size:2.25em}.prose :where(h2):not(:where(.not-prose,.not-prose *)){margin:1.75em 0 .5em;font-size:1.75em}.prose :where(h3):not(:where(.not-prose,.not-prose *)){margin:1.5em 0 .5em;font-size:1.375em}.prose :where(h4):not(:where(.not-prose,.not-prose *)){margin:1em 0;font-size:1.125em}.prose :where(img,video):not(:where(.not-prose,.not-prose *)){max-width:100%}.prose :where(figure,picture):not(:where(.not-prose,.not-prose *)){margin:1em 0}.prose :where(figcaption):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-captions);font-size:.875em}.prose :where(code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);font-size:.875em;font-weight:600;font-family:var(--un-prose-font-mono)}.prose :where(:not(pre) > code):not(:where(.not-prose,.not-prose *)):before,.prose :where(:not(pre) > code):not(:where(.not-prose,.not-prose *)):after{content:"`"}.prose :where(pre):not(:where(.not-prose,.not-prose *)){padding:1.25rem 1.5rem;overflow-x:auto;border-radius:.375rem}.prose :where(pre,code):not(:where(.not-prose,.not-prose *)){white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;hyphens:none;background:transparent}.prose :where(pre code):not(:where(.not-prose,.not-prose *)){font-weight:inherit}.prose :where(ol,ul):not(:where(.not-prose,.not-prose *)){padding-left:1.25em}.prose :where(ol):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ol[type="A"]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type="a"]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type="A" s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type="a" s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type="I"]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type="i"]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type="I" s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type="i" s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ul):not(:where(.not-prose,.not-prose *)){list-style-type:disc}.prose :where(ol > li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(ul > li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(summary):not(:where(.not-prose,.not-prose *))::marker{color:var(--un-prose-lists)}.prose :where(hr):not(:where(.not-prose,.not-prose *)){margin:2em 0;border:1px solid var(--un-prose-hr)}.prose :where(table):not(:where(.not-prose,.not-prose *)){display:block;margin:1em 0;border-collapse:collapse;overflow-x:auto}.prose :where(tr):not(:where(.not-prose,.not-prose *)):nth-child(2n){background:var(--un-prose-bg-soft)}.prose :where(td,th):not(:where(.not-prose,.not-prose *)){border:1px solid var(--un-prose-borders);padding:.625em 1em}.prose :where(abbr):not(:where(.not-prose,.not-prose *)){cursor:help}.prose :where(kbd):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);border:1px solid;padding:.25rem .5rem;font-size:.875em;border-radius:.25rem}.prose :where(details):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding:1.25rem 1.5rem;background:var(--un-prose-bg-soft)}.prose :where(summary):not(:where(.not-prose,.not-prose *)){cursor:pointer;font-weight:600}.prose{color:var(--un-prose-body);max-width:65ch}.i-account{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-arrow-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-arrow-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-cashback{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 15L3 9m0 0l6-6M3 9h12a6 6 0 0 1 0 12h-3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 19.5L8.25 12l7.5-7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m8.25 4.5l7.5 7.5l-7.5 7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-facebook{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48c27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-instagram{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9S287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7s74.7 33.5 74.7 74.7s-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8c-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8s26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9c-26.2-26.2-58-34.4-93.9-36.2c-37-2.1-147.9-2.1-184.9 0c-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9c1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0c35.9-1.7 67.7-9.9 93.9-36.2c26.2-26.2 34.4-58 36.2-93.9c2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6c-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6c-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6c29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6c11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-logout{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0l3-3m0 0l-3-3m3 3H9'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-menu{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-pinterest{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 496 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M496 256c0 137-111 248-248 248c-25.6 0-50.2-3.9-73.4-11.1c10.1-16.5 25.2-43.5 30.8-65c3-11.6 15.4-59 15.4-59c8.1 15.4 31.7 28.5 56.8 28.5c74.8 0 128.7-68.8 128.7-154.3c0-81.9-66.9-143.2-152.9-143.2c-107 0-163.9 71.8-163.9 150.1c0 36.4 19.4 81.7 50.3 96.1c4.7 2.2 7.2 1.2 8.3-3.3c.8-3.4 5-20.3 6.9-28.1c.6-2.5.3-4.7-1.7-7.1c-10.1-12.5-18.3-35.3-18.3-56.6c0-54.7 41.4-107.6 112-107.6c60.9 0 103.6 41.5 103.6 100.9c0 67.1-33.9 113.6-78 113.6c-24.3 0-42.6-20.1-36.7-44.8c7-29.5 20.5-61.3 20.5-82.6c0-19-10.2-34.9-31.4-34.9c-24.9 0-44.9 25.7-44.9 60.2c0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256C0 119 111 8 248 8s248 111 248 248z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-search{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-shopping-cart{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-tiktok{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25v178.72A162.55 162.55 0 1 1 185 188.31v89.89a74.62 74.62 0 1 0 52.23 71.18V0h88a121.18 121.18 0 0 0 1.86 22.17A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-twitter{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645c0 138.72-105.583 298.558-298.558 298.558c-59.452 0-114.68-17.219-161.137-47.106c8.447.974 16.568 1.299 25.34 1.299c49.055 0 94.213-16.568 130.274-44.832c-46.132-.975-84.792-31.188-98.112-72.772c6.498.974 12.995 1.624 19.818 1.624c9.421 0 18.843-1.3 27.614-3.573c-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319c-28.264-18.843-46.781-51.005-46.781-87.391c0-19.492 5.197-37.36 14.294-52.954c51.655 63.675 129.3 105.258 216.365 109.807c-1.624-7.797-2.599-15.918-2.599-24.04c0-57.828 46.782-104.934 104.934-104.934c30.213 0 57.502 12.67 76.67 33.137c23.715-4.548 46.456-13.32 66.599-25.34c-7.798 24.366-24.366 44.833-46.132 57.827c21.117-2.273 41.584-8.122 60.426-16.243c-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-whatsapp{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222c0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4l-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2c0-101.7 82.8-184.5 184.6-184.5c49.3 0 95.6 19.2 130.4 54.1c34.8 34.9 56.2 81.2 56.1 130.5c0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18c-5.1-1.9-8.8-2.8-12.5 2.8c-3.7 5.6-14.3 18-17.6 21.8c-3.2 3.7-6.5 4.2-12 1.4c-32.6-16.3-54-29.1-75.5-66c-5.7-9.8 5.7-9.1 16.3-30.3c1.8-3.7.9-6.9-.5-9.7c-1.4-2.8-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5c-3.2-.2-6.9-.2-10.6-.2c-3.7 0-9.7 1.4-14.8 6.9c-5.1 5.6-19.4 19-19.4 46.3c0 27.3 19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8c35.2 15.2 49 16.5 66.6 13.9c10.7-1.6 32.8-13.4 37.4-26.4c4.6-13 4.6-24.1 3.2-26.4c-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-youtube{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 576 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597c-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821c11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205l-142.739 81.201z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.container{max-width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.absolute,.open\:absolute[open]{position:absolute}.fixed{position:fixed}.relative{position:relative}.left-0,.open\:left-0[open]{left:0rem}.left-2{left:.5rem}.open\:top-0[open],.top-0{top:0rem}.right-2{right:.5rem}.top-2{top:.5rem}.-z-1{z-index:-1}.z-0{z-index:0}.z-1{z-index:1}.z-10{z-index:10}.z-40{z-index:40}.z-50{z-index:50}.grid{display:grid}.grid-flow-col{grid-auto-flow:column}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.float-right{float:right}.m-0{margin:0rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mb-0{margin-bottom:0rem}.me{margin-inline-end:1rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.mr-1{margin-right:.25rem}.mr-3{margin-right:.75rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.hidden{display:none}.h-5{height:1.25rem}.h-7{height:1.75rem}.h-full,.open\:h-full[open]{height:100%}.h-screen{height:100vh}.h1{height:.25rem}.h2{height:.5rem}.max-w-sm{max-width:24rem}.open\:w-full[open],.w-full{width:100%}.w-7{width:1.75rem}.w-auto{width:auto}.w-screen{width:100vw}.flex{display:flex}.inline-flex{display:inline-flex}.grow{flex-grow:1}.flex-col{flex-direction:column}.hover\:scale-110:hover{--un-scale-x:1.1;--un-scale-y:1.1;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.active\:scale-125:active{--un-scale-x:1.25;--un-scale-y:1.25;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.transform{transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.cursor-pointer{cursor:pointer}.resize{resize:both}.list-none{list-style-type:none}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-between{justify-content:space-between}.gap-3{grid-gap:.75rem;gap:.75rem}.overflow-x-hidden{overflow-x:hidden}.overflow-y-auto{overflow-y:auto}.bg-base-100,.active\:bg-base-100:active{--un-bg-opacity:1;background-color:rgba(241,245,249,var(--un-bg-opacity))}.bg-base-200,.active\:bg-base-200:active{--un-bg-opacity:1;background-color:rgba(226,232,240,var(--un-bg-opacity))}.bg-black\/50{background-color:#00000080}.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity))}.bg-white\/80{background-color:#fffc}.p-0{padding:0rem}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-4{padding:1rem}.px{padding-left:1rem;padding-right:1rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.pt-6{padding-top:1.5rem}.text-right{text-align:right}.font-brand{font-family:var(--font-brand, var(--font-sans))}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-5xl{font-size:3rem;line-height:1}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-none{line-height:1}.leading-tight{line-height:1.25}.lowercase{text-transform:lowercase}.hover\:text-base-700:hover,.text-base-700{--un-text-opacity:1;color:rgba(51,65,85,var(--un-text-opacity))}.hover\:text-primary:hover,.text-primary,.active\:text-primary:active{--un-text-opacity:1;color:rgba(var(--rgb-primary),var(--un-text-opacity))}.text-base-400{--un-text-opacity:1;color:rgba(148,163,184,var(--un-text-opacity))}.text-base-500{--un-text-opacity:1;color:rgba(100,116,139,var(--un-text-opacity))}.text-base-600{--un-text-opacity:1;color:rgba(71,85,105,var(--un-text-opacity))}.text-base-800{--un-text-opacity:1;color:rgba(30,41,59,var(--un-text-opacity))}.text-gray-700{--un-text-opacity:1;color:rgba(55,65,81,var(--un-text-opacity))}.hover\:underline:hover,.underline{text-decoration-line:underline}.opacity-100{opacity:1}.opacity-20{opacity:.2}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.backdrop-blur-md{--un-backdrop-blur:blur(12px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia)}.hover\:drop-shadow-sm:hover{--un-drop-shadow:drop-shadow(0 1px 1px var(--un-drop-shadow-color, rgba(0,0,0,.05)));filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia)}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}@media (min-width: 640px){.sm\:block{display:block}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}}@media (min-width: 768px){.md\:auto-cols-max{grid-auto-columns:max-content}.md\:grid-cols-none{grid-template-columns:none}.md\:block{display:block}.md\:hidden{display:none}.md\:w-2\/3{width:66.6666666667%}.md\:py-3{padding-top:.75rem;padding-bottom:.75rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}}@media (min-width: 1024px){.lg\:max-w-7xl{max-width:80rem}.lg\:gap-4{grid-gap:1rem;gap:1rem}.lg\:pl-3{padding-left:.75rem}}html{scroll-behavior:smooth}body{overflow-x:hidden}a,button,button>*{transition:color var(--transition),background-color var(--transition),opacity var(--transition),transform var(--transition-fast)}[data-carousel]{position:relative}[data-carousel-wrapper]{display:flex;overflow-x:scroll;overflow-y:hidden;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;list-style:none;margin:0;padding:0}[data-carousel-wrapper]::-webkit-scrollbar{display:none}[data-carousel-wrapper]>*{flex:0 0 100%;height:100%;scroll-snap-align:start;display:flex;justify-content:center;align-items:center;outline:none}[data-carousel-control]{position:absolute;top:0;bottom:0;z-index:1}[data-carousel-control=previous]{left:0}[data-carousel-control=next]{right:0}
@@ -0,0 +1 @@
1
+ function Fn(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r<s.length;r++)n[s[r]]=!0;return t?r=>!!n[r.toLowerCase()]:r=>!!n[r]}function Yt(e){if(U(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=re(s)?Or(s):Yt(s);if(r)for(const l in r)t[l]=r[l]}return t}else{if(re(e))return e;if(G(e))return e}}const Er=/;(?![^(]*\))/g,Ar=/:([^]+)/,Fr=/\/\*.*?\*\//gs;function Or(e){const t={};return e.replace(Fr,"").split(Er).forEach(n=>{if(n){const s=n.split(Ar);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function qt(e){let t="";if(re(e))t=e;else if(U(e))for(let n=0;n<e.length;n++){const s=qt(e[n]);s&&(t+=s+" ")}else if(G(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}function Bi(e){if(!e)return null;let{class:t,style:n}=e;return t&&!re(t)&&(e.class=qt(t)),n&&(e.style=Yt(n)),e}const Mr="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Di=Fn(Mr);function vi(e){return!!e||e===""}const $i=e=>re(e)?e:e==null?"":U(e)||G(e)&&(e.toString===Es||!v(e.toString))?JSON.stringify(e,xs,2):String(e),xs=(e,t)=>t&&t.__v_isRef?xs(e,t.value):tt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r])=>(n[`${s} =>`]=r,n),{})}:Ts(t)?{[`Set(${t.size})`]:[...t.values()]}:G(t)&&!U(t)&&!As(t)?String(t):t,Q={},et=[],Ee=()=>{},Ir=()=>!1,Pr=/^on[^a-z]/,Jt=e=>Pr.test(e),Cs=e=>e.startsWith("onUpdate:"),de=Object.assign,On=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Rr=Object.prototype.hasOwnProperty,V=(e,t)=>Rr.call(e,t),U=Array.isArray,tt=e=>zt(e)==="[object Map]",Ts=e=>zt(e)==="[object Set]",v=e=>typeof e=="function",re=e=>typeof e=="string",Mn=e=>typeof e=="symbol",G=e=>e!==null&&typeof e=="object",ws=e=>G(e)&&v(e.then)&&v(e.catch),Es=Object.prototype.toString,zt=e=>Es.call(e),Nr=e=>zt(e).slice(8,-1),As=e=>zt(e)==="[object Object]",In=e=>re(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,ht=Fn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Zt=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},jr=/-(\w)/g,je=Zt(e=>e.replace(jr,(t,n)=>n?n.toUpperCase():"")),Lr=/\B([A-Z])/g,Qt=Zt(e=>e.replace(Lr,"-$1").toLowerCase()),Pn=Zt(e=>e.charAt(0).toUpperCase()+e.slice(1)),cn=Zt(e=>e?`on${Pn(e)}`:""),mt=(e,t)=>!Object.is(e,t),fn=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},Bt=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Hr=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Ki=e=>{const t=re(e)?Number(e):NaN;return isNaN(t)?e:t};let Xn;const Ur=()=>Xn||(Xn=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let _e;class kr{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=_e,!t&&_e&&(this.index=(_e.scopes||(_e.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=_e;try{return _e=this,t()}finally{_e=n}}}on(){_e=this}off(){_e=this.parent}stop(t){if(this._active){let n,s;for(n=0,s=this.effects.length;n<s;n++)this.effects[n].stop();for(n=0,s=this.cleanups.length;n<s;n++)this.cleanups[n]();if(this.scopes)for(n=0,s=this.scopes.length;n<s;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this._active=!1}}}function Br(e,t=_e){t&&t.active&&t.effects.push(e)}function Dr(){return _e}function Wi(e){_e&&_e.cleanups.push(e)}const Rn=e=>{const t=new Set(e);return t.w=0,t.n=0,t},Fs=e=>(e.w&$e)>0,Os=e=>(e.n&$e)>0,vr=({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=$e},$r=e=>{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s<t.length;s++){const r=t[s];Fs(r)&&!Os(r)?r.delete(e):t[n++]=r,r.w&=~$e,r.n&=~$e}t.length=n}},Dt=new WeakMap;let at=0,$e=1;const pn=30;let Te;const Ze=Symbol(""),gn=Symbol("");class Nn{constructor(t,n=null,s){this.fn=t,this.scheduler=n,this.active=!0,this.deps=[],this.parent=void 0,Br(this,s)}run(){if(!this.active)return this.fn();let t=Te,n=De;for(;t;){if(t===this)return;t=t.parent}try{return this.parent=Te,Te=this,De=!0,$e=1<<++at,at<=pn?vr(this):Gn(this),this.fn()}finally{at<=pn&&$r(this),$e=1<<--at,Te=this.parent,De=n,this.parent=void 0,this.deferStop&&this.stop()}}stop(){Te===this?this.deferStop=!0:this.active&&(Gn(this),this.onStop&&this.onStop(),this.active=!1)}}function Gn(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let De=!0;const Ms=[];function ct(){Ms.push(De),De=!1}function ft(){const e=Ms.pop();De=e===void 0?!0:e}function pe(e,t,n){if(De&&Te){let s=Dt.get(e);s||Dt.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=Rn()),Is(r)}}function Is(e,t){let n=!1;at<=pn?Os(e)||(e.n|=$e,n=!Fs(e)):n=!e.has(Te),n&&(e.add(Te),Te.deps.push(e))}function Le(e,t,n,s,r,l){const i=Dt.get(e);if(!i)return;let o=[];if(t==="clear")o=[...i.values()];else if(n==="length"&&U(e)){const u=Number(s);i.forEach((a,d)=>{(d==="length"||d>=u)&&o.push(a)})}else switch(n!==void 0&&o.push(i.get(n)),t){case"add":U(e)?In(n)&&o.push(i.get("length")):(o.push(i.get(Ze)),tt(e)&&o.push(i.get(gn)));break;case"delete":U(e)||(o.push(i.get(Ze)),tt(e)&&o.push(i.get(gn)));break;case"set":tt(e)&&o.push(i.get(Ze));break}if(o.length===1)o[0]&&_n(o[0]);else{const u=[];for(const a of o)a&&u.push(...a);_n(Rn(u))}}function _n(e,t){const n=U(e)?e:[...e];for(const s of n)s.computed&&es(s);for(const s of n)s.computed||es(s)}function es(e,t){(e!==Te||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}function Kr(e,t){var n;return(n=Dt.get(e))===null||n===void 0?void 0:n.get(t)}const Wr=Fn("__proto__,__v_isRef,__isVue"),Ps=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Mn)),Vr=jn(),Sr=jn(!1,!0),Yr=jn(!0),ts=qr();function qr(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=S(this);for(let l=0,i=this.length;l<i;l++)pe(s,"get",l+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(S)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){ct();const s=S(this)[t].apply(this,n);return ft(),s}}),e}function Jr(e){const t=S(this);return pe(t,"has",e),t.hasOwnProperty(e)}function jn(e=!1,t=!1){return function(s,r,l){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&l===(e?t?ul:Hs:t?Ls:js).get(s))return s;const i=U(s);if(!e){if(i&&V(ts,r))return Reflect.get(ts,r,l);if(r==="hasOwnProperty")return Jr}const o=Reflect.get(s,r,l);return(Mn(r)?Ps.has(r):Wr(r))||(e||pe(s,"get",r),t)?o:le(o)?i&&In(r)?o:o.value:G(o)?e?Us(o):Un(o):o}}const zr=Rs(),Zr=Rs(!0);function Rs(e=!1){return function(n,s,r,l){let i=n[s];if(lt(i)&&le(i)&&!le(r))return!1;if(!e&&(!vt(r)&&!lt(r)&&(i=S(i),r=S(r)),!U(n)&&le(i)&&!le(r)))return i.value=r,!0;const o=U(n)&&In(s)?Number(s)<n.length:V(n,s),u=Reflect.set(n,s,r,l);return n===S(l)&&(o?mt(r,i)&&Le(n,"set",s,r):Le(n,"add",s,r)),u}}function Qr(e,t){const n=V(e,t);e[t];const s=Reflect.deleteProperty(e,t);return s&&n&&Le(e,"delete",t,void 0),s}function Xr(e,t){const n=Reflect.has(e,t);return(!Mn(t)||!Ps.has(t))&&pe(e,"has",t),n}function Gr(e){return pe(e,"iterate",U(e)?"length":Ze),Reflect.ownKeys(e)}const Ns={get:Vr,set:zr,deleteProperty:Qr,has:Xr,ownKeys:Gr},el={get:Yr,set(e,t){return!0},deleteProperty(e,t){return!0}},tl=de({},Ns,{get:Sr,set:Zr}),Ln=e=>e,Xt=e=>Reflect.getPrototypeOf(e);function At(e,t,n=!1,s=!1){e=e.__v_raw;const r=S(e),l=S(t);n||(t!==l&&pe(r,"get",t),pe(r,"get",l));const{has:i}=Xt(r),o=s?Ln:n?Bn:bt;if(i.call(r,t))return o(e.get(t));if(i.call(r,l))return o(e.get(l));e!==r&&e.get(t)}function Ft(e,t=!1){const n=this.__v_raw,s=S(n),r=S(e);return t||(e!==r&&pe(s,"has",e),pe(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function Ot(e,t=!1){return e=e.__v_raw,!t&&pe(S(e),"iterate",Ze),Reflect.get(e,"size",e)}function ns(e){e=S(e);const t=S(this);return Xt(t).has.call(t,e)||(t.add(e),Le(t,"add",e,e)),this}function ss(e,t){t=S(t);const n=S(this),{has:s,get:r}=Xt(n);let l=s.call(n,e);l||(e=S(e),l=s.call(n,e));const i=r.call(n,e);return n.set(e,t),l?mt(t,i)&&Le(n,"set",e,t):Le(n,"add",e,t),this}function rs(e){const t=S(this),{has:n,get:s}=Xt(t);let r=n.call(t,e);r||(e=S(e),r=n.call(t,e)),s&&s.call(t,e);const l=t.delete(e);return r&&Le(t,"delete",e,void 0),l}function ls(){const e=S(this),t=e.size!==0,n=e.clear();return t&&Le(e,"clear",void 0,void 0),n}function Mt(e,t){return function(s,r){const l=this,i=l.__v_raw,o=S(i),u=t?Ln:e?Bn:bt;return!e&&pe(o,"iterate",Ze),i.forEach((a,d)=>s.call(r,u(a),u(d),l))}}function It(e,t,n){return function(...s){const r=this.__v_raw,l=S(r),i=tt(l),o=e==="entries"||e===Symbol.iterator&&i,u=e==="keys"&&i,a=r[e](...s),d=n?Ln:t?Bn:bt;return!t&&pe(l,"iterate",u?gn:Ze),{next(){const{value:b,done:y}=a.next();return y?{value:b,done:y}:{value:o?[d(b[0]),d(b[1])]:d(b),done:y}},[Symbol.iterator](){return this}}}}function Ue(e){return function(...t){return e==="delete"?!1:this}}function nl(){const e={get(l){return At(this,l)},get size(){return Ot(this)},has:Ft,add:ns,set:ss,delete:rs,clear:ls,forEach:Mt(!1,!1)},t={get(l){return At(this,l,!1,!0)},get size(){return Ot(this)},has:Ft,add:ns,set:ss,delete:rs,clear:ls,forEach:Mt(!1,!0)},n={get(l){return At(this,l,!0)},get size(){return Ot(this,!0)},has(l){return Ft.call(this,l,!0)},add:Ue("add"),set:Ue("set"),delete:Ue("delete"),clear:Ue("clear"),forEach:Mt(!0,!1)},s={get(l){return At(this,l,!0,!0)},get size(){return Ot(this,!0)},has(l){return Ft.call(this,l,!0)},add:Ue("add"),set:Ue("set"),delete:Ue("delete"),clear:Ue("clear"),forEach:Mt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(l=>{e[l]=It(l,!1,!1),n[l]=It(l,!0,!1),t[l]=It(l,!1,!0),s[l]=It(l,!0,!0)}),[e,n,t,s]}const[sl,rl,ll,il]=nl();function Hn(e,t){const n=t?e?il:ll:e?rl:sl;return(s,r,l)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(V(n,r)&&r in s?n:s,r,l)}const ol={get:Hn(!1,!1)},cl={get:Hn(!1,!0)},fl={get:Hn(!0,!1)},js=new WeakMap,Ls=new WeakMap,Hs=new WeakMap,ul=new WeakMap;function al(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function hl(e){return e.__v_skip||!Object.isExtensible(e)?0:al(Nr(e))}function Un(e){return lt(e)?e:kn(e,!1,Ns,ol,js)}function dl(e){return kn(e,!1,tl,cl,Ls)}function Us(e){return kn(e,!0,el,fl,Hs)}function kn(e,t,n,s,r){if(!G(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const l=r.get(e);if(l)return l;const i=hl(e);if(i===0)return e;const o=new Proxy(e,i===2?s:n);return r.set(e,o),o}function nt(e){return lt(e)?nt(e.__v_raw):!!(e&&e.__v_isReactive)}function lt(e){return!!(e&&e.__v_isReadonly)}function vt(e){return!!(e&&e.__v_isShallow)}function ks(e){return nt(e)||lt(e)}function S(e){const t=e&&e.__v_raw;return t?S(t):e}function Bs(e){return Bt(e,"__v_skip",!0),e}const bt=e=>G(e)?Un(e):e,Bn=e=>G(e)?Us(e):e;function Ds(e){De&&Te&&(e=S(e),Is(e.dep||(e.dep=Rn())))}function vs(e,t){e=S(e);const n=e.dep;n&&_n(n)}function le(e){return!!(e&&e.__v_isRef===!0)}function Vi(e){return pl(e,!1)}function pl(e,t){return le(e)?e:new gl(e,t)}class gl{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:S(t),this._value=n?t:bt(t)}get value(){return Ds(this),this._value}set value(t){const n=this.__v_isShallow||vt(t)||lt(t);t=n?t:S(t),mt(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:bt(t),vs(this))}}function _l(e){return le(e)?e.value:e}const ml={get:(e,t,n)=>_l(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return le(r)&&!le(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function $s(e){return nt(e)?e:new Proxy(e,ml)}class bl{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Kr(S(this._object),this._key)}}function Si(e,t,n){const s=e[t];return le(s)?s:new bl(e,t,n)}var Ks;class yl{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[Ks]=!1,this._dirty=!0,this.effect=new Nn(t,()=>{this._dirty||(this._dirty=!0,vs(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=S(this);return Ds(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}Ks="__v_isReadonly";function xl(e,t,n=!1){let s,r;const l=v(e);return l?(s=e,r=Ee):(s=e.get,r=e.set),new yl(s,r,l||!r,n)}function ve(e,t,n,s){let r;try{r=s?e(...s):e()}catch(l){Gt(l,t,n)}return r}function Ae(e,t,n,s){if(v(e)){const l=ve(e,t,n,s);return l&&ws(l)&&l.catch(i=>{Gt(i,t,n)}),l}const r=[];for(let l=0;l<e.length;l++)r.push(Ae(e[l],t,n,s));return r}function Gt(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let l=t.parent;const i=t.proxy,o=n;for(;l;){const a=l.ec;if(a){for(let d=0;d<a.length;d++)if(a[d](e,i,o)===!1)return}l=l.parent}const u=t.appContext.config.errorHandler;if(u){ve(u,null,10,[e,i,o]);return}}Cl(e,n,r,s)}function Cl(e,t,n,s=!0){console.error(e)}let yt=!1,mn=!1;const fe=[];let Pe=0;const st=[];let Ne=null,qe=0;const Ws=Promise.resolve();let Dn=null;function Tl(e){const t=Dn||Ws;return e?t.then(this?e.bind(this):e):t}function wl(e){let t=Pe+1,n=fe.length;for(;t<n;){const s=t+n>>>1;xt(fe[s])<e?t=s+1:n=s}return t}function vn(e){(!fe.length||!fe.includes(e,yt&&e.allowRecurse?Pe+1:Pe))&&(e.id==null?fe.push(e):fe.splice(wl(e.id),0,e),Vs())}function Vs(){!yt&&!mn&&(mn=!0,Dn=Ws.then(Ss))}function El(e){const t=fe.indexOf(e);t>Pe&&fe.splice(t,1)}function Al(e){U(e)?st.push(...e):(!Ne||!Ne.includes(e,e.allowRecurse?qe+1:qe))&&st.push(e),Vs()}function is(e,t=yt?Pe+1:0){for(;t<fe.length;t++){const n=fe[t];n&&n.pre&&(fe.splice(t,1),t--,n())}}function $t(e){if(st.length){const t=[...new Set(st)];if(st.length=0,Ne){Ne.push(...t);return}for(Ne=t,Ne.sort((n,s)=>xt(n)-xt(s)),qe=0;qe<Ne.length;qe++)Ne[qe]();Ne=null,qe=0}}const xt=e=>e.id==null?1/0:e.id,Fl=(e,t)=>{const n=xt(e)-xt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Ss(e){mn=!1,yt=!0,fe.sort(Fl);const t=Ee;try{for(Pe=0;Pe<fe.length;Pe++){const n=fe[Pe];n&&n.active!==!1&&ve(n,null,14)}}finally{Pe=0,fe.length=0,$t(),yt=!1,Dn=null,(fe.length||st.length)&&Ss()}}function Ol(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||Q;let r=n;const l=t.startsWith("update:"),i=l&&t.slice(7);if(i&&i in s){const d=`${i==="modelValue"?"model":i}Modifiers`,{number:b,trim:y}=s[d]||Q;y&&(r=n.map(M=>re(M)?M.trim():M)),b&&(r=n.map(Hr))}let o,u=s[o=cn(t)]||s[o=cn(je(t))];!u&&l&&(u=s[o=cn(Qt(t))]),u&&Ae(u,e,6,r);const a=s[o+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[o])return;e.emitted[o]=!0,Ae(a,e,6,r)}}function Ys(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const l=e.emits;let i={},o=!1;if(!v(e)){const u=a=>{const d=Ys(a,t,!0);d&&(o=!0,de(i,d))};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}return!l&&!o?(G(e)&&s.set(e,null),null):(U(l)?l.forEach(u=>i[u]=null):de(i,l),G(e)&&s.set(e,i),i)}function en(e,t){return!e||!Jt(t)?!1:(t=t.slice(2).replace(/Once$/,""),V(e,t[0].toLowerCase()+t.slice(1))||V(e,Qt(t))||V(e,t))}let ie=null,qs=null;function Kt(e){const t=ie;return ie=e,qs=e&&e.type.__scopeId||null,t}function Ml(e,t=ie,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&ms(-1);const l=Kt(t);let i;try{i=e(...r)}finally{Kt(l),s._d&&ms(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function un(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:l,propsOptions:[i],slots:o,attrs:u,emit:a,render:d,renderCache:b,data:y,setupState:M,ctx:$,inheritAttrs:R}=e;let X,_;const E=Kt(e);try{if(n.shapeFlag&4){const L=r||s;X=Ce(d.call(L,L,b,l,M,y,$)),_=u}else{const L=t;X=Ce(L.length>1?L(l,{attrs:u,slots:o,emit:a}):L(l,null)),_=t.props?u:Il(u)}}catch(L){_t.length=0,Gt(L,e,1),X=oe(me)}let F=X;if(_&&R!==!1){const L=Object.keys(_),{shapeFlag:k}=F;L.length&&k&7&&(i&&L.some(Cs)&&(_=Pl(_,i)),F=Ke(F,_))}return n.dirs&&(F=Ke(F),F.dirs=F.dirs?F.dirs.concat(n.dirs):n.dirs),n.transition&&(F.transition=n.transition),X=F,Kt(E),X}const Il=e=>{let t;for(const n in e)(n==="class"||n==="style"||Jt(n))&&((t||(t={}))[n]=e[n]);return t},Pl=(e,t)=>{const n={};for(const s in e)(!Cs(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Rl(e,t,n){const{props:s,children:r,component:l}=e,{props:i,children:o,patchFlag:u}=t,a=l.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return s?os(s,i,a):!!i;if(u&8){const d=t.dynamicProps;for(let b=0;b<d.length;b++){const y=d[b];if(i[y]!==s[y]&&!en(a,y))return!0}}}else return(r||o)&&(!o||!o.$stable)?!0:s===i?!1:s?i?os(s,i,a):!0:!!i;return!1}function os(e,t,n){const s=Object.keys(t);if(s.length!==Object.keys(e).length)return!0;for(let r=0;r<s.length;r++){const l=s[r];if(t[l]!==e[l]&&!en(n,l))return!0}return!1}function Nl({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const jl=e=>e.__isSuspense;function Js(e,t){t&&t.pendingBranch?U(e)?t.effects.push(...e):t.effects.push(e):Al(e)}function Ll(e,t){if(ne){let n=ne.provides;const s=ne.parent&&ne.parent.provides;s===n&&(n=ne.provides=Object.create(s)),n[e]=t}}function Lt(e,t,n=!1){const s=ne||ie;if(s){const r=s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&v(t)?t.call(s.proxy):t}}function Yi(e,t){return $n(e,null,{flush:"post"})}const Pt={};function an(e,t,n){return $n(e,t,n)}function $n(e,t,{immediate:n,deep:s,flush:r,onTrack:l,onTrigger:i}=Q){const o=Dr()===ne?.scope?ne:null;let u,a=!1,d=!1;if(le(e)?(u=()=>e.value,a=vt(e)):nt(e)?(u=()=>e,s=!0):U(e)?(d=!0,a=e.some(F=>nt(F)||vt(F)),u=()=>e.map(F=>{if(le(F))return F.value;if(nt(F))return ze(F);if(v(F))return ve(F,o,2)})):v(e)?t?u=()=>ve(e,o,2):u=()=>{if(!(o&&o.isUnmounted))return b&&b(),Ae(e,o,3,[y])}:u=Ee,t&&s){const F=u;u=()=>ze(F())}let b,y=F=>{b=_.onStop=()=>{ve(F,o,4)}},M;if(Tt)if(y=Ee,t?n&&Ae(t,o,3,[u(),d?[]:void 0,y]):u(),r==="sync"){const F=Mi();M=F.__watcherHandles||(F.__watcherHandles=[])}else return Ee;let $=d?new Array(e.length).fill(Pt):Pt;const R=()=>{if(_.active)if(t){const F=_.run();(s||a||(d?F.some((L,k)=>mt(L,$[k])):mt(F,$)))&&(b&&b(),Ae(t,o,3,[F,$===Pt?void 0:d&&$[0]===Pt?[]:$,y]),$=F)}else _.run()};R.allowRecurse=!!t;let X;r==="sync"?X=R:r==="post"?X=()=>ae(R,o&&o.suspense):(R.pre=!0,o&&(R.id=o.uid),X=()=>vn(R));const _=new Nn(u,X);t?n?R():$=_.run():r==="post"?ae(_.run.bind(_),o&&o.suspense):_.run();const E=()=>{_.stop(),o&&o.scope&&On(o.scope.effects,_)};return M&&M.push(E),E}function Hl(e,t,n){const s=this.proxy,r=re(e)?e.includes(".")?zs(s,e):()=>s[e]:e.bind(s,s);let l;v(t)?l=t:(l=t.handler,n=t);const i=ne;ot(this);const o=$n(r,l.bind(s),n);return i?ot(i):Qe(),o}function zs(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r<n.length&&s;r++)s=s[n[r]];return s}}function ze(e,t){if(!G(e)||e.__v_skip||(t=t||new Set,t.has(e)))return e;if(t.add(e),le(e))ze(e.value,t);else if(U(e))for(let n=0;n<e.length;n++)ze(e[n],t);else if(Ts(e)||tt(e))e.forEach(n=>{ze(n,t)});else if(As(e))for(const n in e)ze(e[n],t);return e}function Ul(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Gs(()=>{e.isMounted=!0}),er(()=>{e.isUnmounting=!0}),e}const be=[Function,Array],kl={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:be,onEnter:be,onAfterEnter:be,onEnterCancelled:be,onBeforeLeave:be,onLeave:be,onAfterLeave:be,onLeaveCancelled:be,onBeforeAppear:be,onAppear:be,onAfterAppear:be,onAppearCancelled:be},setup(e,{slots:t}){const n=yi(),s=Ul();let r;return()=>{const l=t.default&&Qs(t.default(),!0);if(!l||!l.length)return;let i=l[0];if(l.length>1){for(const R of l)if(R.type!==me){i=R;break}}const o=S(e),{mode:u}=o;if(s.isLeaving)return hn(i);const a=cs(i);if(!a)return hn(i);const d=bn(a,o,s,n);yn(a,d);const b=n.subTree,y=b&&cs(b);let M=!1;const{getTransitionKey:$}=a.type;if($){const R=$();r===void 0?r=R:R!==r&&(r=R,M=!0)}if(y&&y.type!==me&&(!Je(a,y)||M)){const R=bn(y,o,s,n);if(yn(y,R),u==="out-in")return s.isLeaving=!0,R.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&n.update()},hn(i);u==="in-out"&&a.type!==me&&(R.delayLeave=(X,_,E)=>{const F=Zs(s,y);F[String(y.key)]=y,X._leaveCb=()=>{_(),X._leaveCb=void 0,delete d.delayedLeave},d.delayedLeave=E})}return i}}},qi=kl;function Zs(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function bn(e,t,n,s){const{appear:r,mode:l,persisted:i=!1,onBeforeEnter:o,onEnter:u,onAfterEnter:a,onEnterCancelled:d,onBeforeLeave:b,onLeave:y,onAfterLeave:M,onLeaveCancelled:$,onBeforeAppear:R,onAppear:X,onAfterAppear:_,onAppearCancelled:E}=t,F=String(e.key),L=Zs(n,e),k=(w,D)=>{w&&Ae(w,s,9,D)},Y=(w,D)=>{const H=D[1];k(w,D),U(w)?w.every(W=>W.length<=1)&&H():w.length<=1&&H()},B={mode:l,persisted:i,beforeEnter(w){let D=o;if(!n.isMounted)if(r)D=R||o;else return;w._leaveCb&&w._leaveCb(!0);const H=L[F];H&&Je(e,H)&&H.el._leaveCb&&H.el._leaveCb(),k(D,[w])},enter(w){let D=u,H=a,W=d;if(!n.isMounted)if(r)D=X||u,H=_||a,W=E||d;else return;let ce=!1;const ee=w._enterCb=N=>{ce||(ce=!0,N?k(W,[w]):k(H,[w]),B.delayedLeave&&B.delayedLeave(),w._enterCb=void 0)};D?Y(D,[w,ee]):ee()},leave(w,D){const H=String(e.key);if(w._enterCb&&w._enterCb(!0),n.isUnmounting)return D();k(b,[w]);let W=!1;const ce=w._leaveCb=ee=>{W||(W=!0,D(),ee?k($,[w]):k(M,[w]),w._leaveCb=void 0,L[H]===e&&delete L[H])};L[H]=e,y?Y(y,[w,ce]):ce()},clone(w){return bn(w,t,n,s)}};return B}function hn(e){if(tn(e))return e=Ke(e),e.children=null,e}function cs(e){return tn(e)?e.children?e.children[0]:void 0:e}function yn(e,t){e.shapeFlag&6&&e.component?yn(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Qs(e,t=!1,n){let s=[],r=0;for(let l=0;l<e.length;l++){let i=e[l];const o=n==null?i.key:String(n)+String(i.key!=null?i.key:l);i.type===he?(i.patchFlag&128&&r++,s=s.concat(Qs(i.children,t,o))):(t||i.type!==me)&&s.push(o!=null?Ke(i,{key:o}):i)}if(r>1)for(let l=0;l<s.length;l++)s[l].patchFlag=-2;return s}function Ji(e){return v(e)?{setup:e,name:e.name}:e}const rt=e=>!!e.type.__asyncLoader,tn=e=>e.type.__isKeepAlive;function Bl(e,t){Xs(e,"a",t)}function Dl(e,t){Xs(e,"da",t)}function Xs(e,t,n=ne){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(nn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)tn(r.parent.vnode)&&vl(s,t,n,r),r=r.parent}}function vl(e,t,n,s){const r=nn(t,e,s,!0);tr(()=>{On(s[t],r)},n)}function nn(e,t,n=ne,s=!1){if(n){const r=n[e]||(n[e]=[]),l=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;ct(),ot(n);const o=Ae(t,n,e,i);return Qe(),ft(),o});return s?r.unshift(l):r.push(l),l}}const He=e=>(t,n=ne)=>(!Tt||e==="sp")&&nn(e,(...s)=>t(...s),n),$l=He("bm"),Gs=He("m"),Kl=He("bu"),Wl=He("u"),er=He("bum"),tr=He("um"),Vl=He("sp"),Sl=He("rtg"),Yl=He("rtc");function ql(e,t=ne){nn("ec",e,t)}function zi(e,t){const n=ie;if(n===null)return e;const s=rn(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let l=0;l<t.length;l++){let[i,o,u,a=Q]=t[l];i&&(v(i)&&(i={mounted:i,updated:i}),i.deep&&ze(o),r.push({dir:i,instance:s,value:o,oldValue:void 0,arg:u,modifiers:a}))}return e}function Ie(e,t,n,s){const r=e.dirs,l=t&&t.dirs;for(let i=0;i<r.length;i++){const o=r[i];l&&(o.oldValue=l[i].value);let u=o.dir[s];u&&(ct(),Ae(u,n,8,[e.el,o,e,t]),ft())}}const Kn="components";function Zi(e,t){return sr(Kn,e,!0,t)||e}const nr=Symbol();function Qi(e){return re(e)?sr(Kn,e,!1)||e:e||nr}function sr(e,t,n=!0,s=!1){const r=ie||ne;if(r){const l=r.type;if(e===Kn){const o=Ei(l,!1);if(o&&(o===t||o===je(t)||o===Pn(je(t))))return l}const i=fs(r[e]||l[e],t)||fs(r.appContext[e],t);return!i&&s?l:i}}function fs(e,t){return e&&(e[t]||e[je(t)]||e[Pn(je(t))])}function Xi(e,t,n,s){let r;const l=n&&n[s];if(U(e)||re(e)){r=new Array(e.length);for(let i=0,o=e.length;i<o;i++)r[i]=t(e[i],i,void 0,l&&l[i])}else if(typeof e=="number"){r=new Array(e);for(let i=0;i<e;i++)r[i]=t(i+1,i,void 0,l&&l[i])}else if(G(e))if(e[Symbol.iterator])r=Array.from(e,(i,o)=>t(i,o,void 0,l&&l[o]));else{const i=Object.keys(e);r=new Array(i.length);for(let o=0,u=i.length;o<u;o++){const a=i[o];r[o]=t(e[a],a,o,l&&l[o])}}else r=[];return n&&(n[s]=r),r}function Gi(e,t,n={},s,r){if(ie.isCE||ie.parent&&rt(ie.parent)&&ie.parent.isCE)return t!=="default"&&(n.name=t),oe("slot",n,s&&s());let l=e[t];l&&l._c&&(l._d=!1),pr();const i=l&&rr(l(n)),o=_r(he,{key:n.key||i&&i.key||`_${t}`},i||(s?s():[]),i&&e._===1?64:-2);return!r&&o.scopeId&&(o.slotScopeIds=[o.scopeId+"-s"]),l&&l._c&&(l._d=!0),o}function rr(e){return e.some(t=>St(t)?!(t.type===me||t.type===he&&!rr(t.children)):!0)?e:null}const xn=e=>e?xr(e)?rn(e)||e.proxy:xn(e.parent):null,dt=de(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>xn(e.parent),$root:e=>xn(e.root),$emit:e=>e.emit,$options:e=>Wn(e),$forceUpdate:e=>e.f||(e.f=()=>vn(e.update)),$nextTick:e=>e.n||(e.n=Tl.bind(e.proxy)),$watch:e=>Hl.bind(e)}),dn=(e,t)=>e!==Q&&!e.__isScriptSetup&&V(e,t),Jl={get({_:e},t){const{ctx:n,setupState:s,data:r,props:l,accessCache:i,type:o,appContext:u}=e;let a;if(t[0]!=="$"){const M=i[t];if(M!==void 0)switch(M){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return l[t]}else{if(dn(s,t))return i[t]=1,s[t];if(r!==Q&&V(r,t))return i[t]=2,r[t];if((a=e.propsOptions[0])&&V(a,t))return i[t]=3,l[t];if(n!==Q&&V(n,t))return i[t]=4,n[t];Cn&&(i[t]=0)}}const d=dt[t];let b,y;if(d)return t==="$attrs"&&pe(e,"get",t),d(e);if((b=o.__cssModules)&&(b=b[t]))return b;if(n!==Q&&V(n,t))return i[t]=4,n[t];if(y=u.config.globalProperties,V(y,t))return y[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:l}=e;return dn(r,t)?(r[t]=n,!0):s!==Q&&V(s,t)?(s[t]=n,!0):V(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(l[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:l}},i){let o;return!!n[i]||e!==Q&&V(e,i)||dn(t,i)||(o=l[0])&&V(o,i)||V(s,i)||V(dt,i)||V(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:V(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let Cn=!0;function zl(e){const t=Wn(e),n=e.proxy,s=e.ctx;Cn=!1,t.beforeCreate&&us(t.beforeCreate,e,"bc");const{data:r,computed:l,methods:i,watch:o,provide:u,inject:a,created:d,beforeMount:b,mounted:y,beforeUpdate:M,updated:$,activated:R,deactivated:X,beforeDestroy:_,beforeUnmount:E,destroyed:F,unmounted:L,render:k,renderTracked:Y,renderTriggered:B,errorCaptured:w,serverPrefetch:D,expose:H,inheritAttrs:W,components:ce,directives:ee,filters:N}=t;if(a&&Zl(a,s,null,e.appContext.config.unwrapInjectedRef),i)for(const te in i){const J=i[te];v(J)&&(s[te]=J.bind(n))}if(r){const te=r.call(n,n);G(te)&&(e.data=Un(te))}if(Cn=!0,l)for(const te in l){const J=l[te],We=v(J)?J.bind(n,n):v(J.get)?J.get.bind(n,n):Ee,wt=!v(J)&&v(J.set)?J.set.bind(n):Ee,Ve=Fi({get:We,set:wt});Object.defineProperty(s,te,{enumerable:!0,configurable:!0,get:()=>Ve.value,set:Oe=>Ve.value=Oe})}if(o)for(const te in o)lr(o[te],s,n,te);if(u){const te=v(u)?u.call(n):u;Reflect.ownKeys(te).forEach(J=>{Ll(J,te[J])})}d&&us(d,e,"c");function Z(te,J){U(J)?J.forEach(We=>te(We.bind(n))):J&&te(J.bind(n))}if(Z($l,b),Z(Gs,y),Z(Kl,M),Z(Wl,$),Z(Bl,R),Z(Dl,X),Z(ql,w),Z(Yl,Y),Z(Sl,B),Z(er,E),Z(tr,L),Z(Vl,D),U(H))if(H.length){const te=e.exposed||(e.exposed={});H.forEach(J=>{Object.defineProperty(te,J,{get:()=>n[J],set:We=>n[J]=We})})}else e.exposed||(e.exposed={});k&&e.render===Ee&&(e.render=k),W!=null&&(e.inheritAttrs=W),ce&&(e.components=ce),ee&&(e.directives=ee)}function Zl(e,t,n=Ee,s=!1){U(e)&&(e=Tn(e));for(const r in e){const l=e[r];let i;G(l)?"default"in l?i=Lt(l.from||r,l.default,!0):i=Lt(l.from||r):i=Lt(l),le(i)&&s?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[r]=i}}function us(e,t,n){Ae(U(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function lr(e,t,n,s){const r=s.includes(".")?zs(n,s):()=>n[s];if(re(e)){const l=t[e];v(l)&&an(r,l)}else if(v(e))an(r,e.bind(n));else if(G(e))if(U(e))e.forEach(l=>lr(l,t,n,s));else{const l=v(e.handler)?e.handler.bind(n):t[e.handler];v(l)&&an(r,l,e)}}function Wn(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:l,config:{optionMergeStrategies:i}}=e.appContext,o=l.get(t);let u;return o?u=o:!r.length&&!n&&!s?u=t:(u={},r.length&&r.forEach(a=>Wt(u,a,i,!0)),Wt(u,t,i)),G(t)&&l.set(t,u),u}function Wt(e,t,n,s=!1){const{mixins:r,extends:l}=t;l&&Wt(e,l,n,!0),r&&r.forEach(i=>Wt(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const o=Ql[i]||n&&n[i];e[i]=o?o(e[i],t[i]):t[i]}return e}const Ql={data:as,props:Ye,emits:Ye,methods:Ye,computed:Ye,beforeCreate:ue,created:ue,beforeMount:ue,mounted:ue,beforeUpdate:ue,updated:ue,beforeDestroy:ue,beforeUnmount:ue,destroyed:ue,unmounted:ue,activated:ue,deactivated:ue,errorCaptured:ue,serverPrefetch:ue,components:Ye,directives:Ye,watch:Gl,provide:as,inject:Xl};function as(e,t){return t?e?function(){return de(v(e)?e.call(this,this):e,v(t)?t.call(this,this):t)}:t:e}function Xl(e,t){return Ye(Tn(e),Tn(t))}function Tn(e){if(U(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function ue(e,t){return e?[...new Set([].concat(e,t))]:t}function Ye(e,t){return e?de(de(Object.create(null),e),t):t}function Gl(e,t){if(!e)return t;if(!t)return e;const n=de(Object.create(null),e);for(const s in t)n[s]=ue(e[s],t[s]);return n}function ei(e,t,n,s=!1){const r={},l={};Bt(l,sn,1),e.propsDefaults=Object.create(null),ir(e,t,r,l);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:dl(r):e.type.props?e.props=r:e.props=l,e.attrs=l}function ti(e,t,n,s){const{props:r,attrs:l,vnode:{patchFlag:i}}=e,o=S(r),[u]=e.propsOptions;let a=!1;if((s||i>0)&&!(i&16)){if(i&8){const d=e.vnode.dynamicProps;for(let b=0;b<d.length;b++){let y=d[b];if(en(e.emitsOptions,y))continue;const M=t[y];if(u)if(V(l,y))M!==l[y]&&(l[y]=M,a=!0);else{const $=je(y);r[$]=wn(u,o,$,M,e,!1)}else M!==l[y]&&(l[y]=M,a=!0)}}}else{ir(e,t,r,l)&&(a=!0);let d;for(const b in o)(!t||!V(t,b)&&((d=Qt(b))===b||!V(t,d)))&&(u?n&&(n[b]!==void 0||n[d]!==void 0)&&(r[b]=wn(u,o,b,void 0,e,!0)):delete r[b]);if(l!==o)for(const b in l)(!t||!V(t,b))&&(delete l[b],a=!0)}a&&Le(e,"set","$attrs")}function ir(e,t,n,s){const[r,l]=e.propsOptions;let i=!1,o;if(t)for(let u in t){if(ht(u))continue;const a=t[u];let d;r&&V(r,d=je(u))?!l||!l.includes(d)?n[d]=a:(o||(o={}))[d]=a:en(e.emitsOptions,u)||(!(u in s)||a!==s[u])&&(s[u]=a,i=!0)}if(l){const u=S(n),a=o||Q;for(let d=0;d<l.length;d++){const b=l[d];n[b]=wn(r,u,b,a[b],e,!V(a,b))}}return i}function wn(e,t,n,s,r,l){const i=e[n];if(i!=null){const o=V(i,"default");if(o&&s===void 0){const u=i.default;if(i.type!==Function&&v(u)){const{propsDefaults:a}=r;n in a?s=a[n]:(ot(r),s=a[n]=u.call(null,t),Qe())}else s=u}i[0]&&(l&&!o?s=!1:i[1]&&(s===""||s===Qt(n))&&(s=!0))}return s}function or(e,t,n=!1){const s=t.propsCache,r=s.get(e);if(r)return r;const l=e.props,i={},o=[];let u=!1;if(!v(e)){const d=b=>{u=!0;const[y,M]=or(b,t,!0);de(i,y),M&&o.push(...M)};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}if(!l&&!u)return G(e)&&s.set(e,et),et;if(U(l))for(let d=0;d<l.length;d++){const b=je(l[d]);hs(b)&&(i[b]=Q)}else if(l)for(const d in l){const b=je(d);if(hs(b)){const y=l[d],M=i[b]=U(y)||v(y)?{type:y}:Object.assign({},y);if(M){const $=gs(Boolean,M.type),R=gs(String,M.type);M[0]=$>-1,M[1]=R<0||$<R,($>-1||V(M,"default"))&&o.push(b)}}}const a=[i,o];return G(e)&&s.set(e,a),a}function hs(e){return e[0]!=="$"}function ds(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function ps(e,t){return ds(e)===ds(t)}function gs(e,t){return U(t)?t.findIndex(n=>ps(n,e)):v(t)&&ps(t,e)?0:-1}const cr=e=>e[0]==="_"||e==="$stable",Vn=e=>U(e)?e.map(Ce):[Ce(e)],ni=(e,t,n)=>{if(t._n)return t;const s=Ml((...r)=>Vn(t(...r)),n);return s._c=!1,s},fr=(e,t,n)=>{const s=e._ctx;for(const r in e){if(cr(r))continue;const l=e[r];if(v(l))t[r]=ni(r,l,s);else if(l!=null){const i=Vn(l);t[r]=()=>i}}},ur=(e,t)=>{const n=Vn(t);e.slots.default=()=>n},si=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=S(t),Bt(t,"_",n)):fr(t,e.slots={})}else e.slots={},t&&ur(e,t);Bt(e.slots,sn,1)},ri=(e,t,n)=>{const{vnode:s,slots:r}=e;let l=!0,i=Q;if(s.shapeFlag&32){const o=t._;o?n&&o===1?l=!1:(de(r,t),!n&&o===1&&delete r._):(l=!t.$stable,fr(t,r)),i=t}else t&&(ur(e,t),i={default:1});if(l)for(const o in r)!cr(o)&&!(o in i)&&delete r[o]};function ar(){return{app:null,config:{isNativeTag:Ir,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let li=0;function ii(e,t){return function(s,r=null){v(s)||(s=Object.assign({},s)),r!=null&&!G(r)&&(r=null);const l=ar(),i=new Set;let o=!1;const u=l.app={_uid:li++,_component:s,_props:r,_container:null,_context:l,_instance:null,version:Ii,get config(){return l.config},set config(a){},use(a,...d){return i.has(a)||(a&&v(a.install)?(i.add(a),a.install(u,...d)):v(a)&&(i.add(a),a(u,...d))),u},mixin(a){return l.mixins.includes(a)||l.mixins.push(a),u},component(a,d){return d?(l.components[a]=d,u):l.components[a]},directive(a,d){return d?(l.directives[a]=d,u):l.directives[a]},mount(a,d,b){if(!o){const y=oe(s,r);return y.appContext=l,d&&t?t(y,a):e(y,a,b),o=!0,u._container=a,a.__vue_app__=u,rn(y.component)||y.component.proxy}},unmount(){o&&(e(null,u._container),delete u._container.__vue_app__)},provide(a,d){return l.provides[a]=d,u}};return u}}function Vt(e,t,n,s,r=!1){if(U(e)){e.forEach((y,M)=>Vt(y,t&&(U(t)?t[M]:t),n,s,r));return}if(rt(s)&&!r)return;const l=s.shapeFlag&4?rn(s.component)||s.component.proxy:s.el,i=r?null:l,{i:o,r:u}=e,a=t&&t.r,d=o.refs===Q?o.refs={}:o.refs,b=o.setupState;if(a!=null&&a!==u&&(re(a)?(d[a]=null,V(b,a)&&(b[a]=null)):le(a)&&(a.value=null)),v(u))ve(u,o,12,[i,d]);else{const y=re(u),M=le(u);if(y||M){const $=()=>{if(e.f){const R=y?V(b,u)?b[u]:d[u]:u.value;r?U(R)&&On(R,l):U(R)?R.includes(l)||R.push(l):y?(d[u]=[l],V(b,u)&&(b[u]=d[u])):(u.value=[l],e.k&&(d[e.k]=u.value))}else y?(d[u]=i,V(b,u)&&(b[u]=i)):M&&(u.value=i,e.k&&(d[e.k]=i))};i?($.id=-1,ae($,n)):$()}}}let ke=!1;const Rt=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",Nt=e=>e.nodeType===8;function oi(e){const{mt:t,p:n,o:{patchProp:s,createText:r,nextSibling:l,parentNode:i,remove:o,insert:u,createComment:a}}=e,d=(_,E)=>{if(!E.hasChildNodes()){n(null,_,E),$t(),E._vnode=_;return}ke=!1,b(E.firstChild,_,null,null,null),$t(),E._vnode=_,ke&&console.error("Hydration completed but contains mismatches.")},b=(_,E,F,L,k,Y=!1)=>{const B=Nt(_)&&_.data==="[",w=()=>R(_,E,F,L,k,B),{type:D,ref:H,shapeFlag:W,patchFlag:ce}=E;let ee=_.nodeType;E.el=_,ce===-2&&(Y=!1,E.dynamicChildren=null);let N=null;switch(D){case it:ee!==3?E.children===""?(u(E.el=r(""),i(_),_),N=_):N=w():(_.data!==E.children&&(ke=!0,_.data=E.children),N=l(_));break;case me:ee!==8||B?N=w():N=l(_);break;case gt:if(B&&(_=l(_),ee=_.nodeType),ee===1||ee===3){N=_;const Fe=!E.children.length;for(let Z=0;Z<E.staticCount;Z++)Fe&&(E.children+=N.nodeType===1?N.outerHTML:N.data),Z===E.staticCount-1&&(E.anchor=N),N=l(N);return B?l(N):N}else w();break;case he:B?N=$(_,E,F,L,k,Y):N=w();break;default:if(W&1)ee!==1||E.type.toLowerCase()!==_.tagName.toLowerCase()?N=w():N=y(_,E,F,L,k,Y);else if(W&6){E.slotScopeIds=k;const Fe=i(_);if(t(E,Fe,null,F,L,Rt(Fe),Y),N=B?X(_):l(_),N&&Nt(N)&&N.data==="teleport end"&&(N=l(N)),rt(E)){let Z;B?(Z=oe(he),Z.anchor=N?N.previousSibling:Fe.lastChild):Z=_.nodeType===3?yr(""):oe("div"),Z.el=_,E.component.subTree=Z}}else W&64?ee!==8?N=w():N=E.type.hydrate(_,E,F,L,k,Y,e,M):W&128&&(N=E.type.hydrate(_,E,F,L,Rt(i(_)),k,Y,e,b))}return H!=null&&Vt(H,null,L,E),N},y=(_,E,F,L,k,Y)=>{Y=Y||!!E.dynamicChildren;const{type:B,props:w,patchFlag:D,shapeFlag:H,dirs:W}=E,ce=B==="input"&&W||B==="option";if(ce||D!==-1){if(W&&Ie(E,null,F,"created"),w)if(ce||!Y||D&48)for(const N in w)(ce&&N.endsWith("value")||Jt(N)&&!ht(N))&&s(_,N,null,w[N],!1,void 0,F);else w.onClick&&s(_,"onClick",null,w.onClick,!1,void 0,F);let ee;if((ee=w&&w.onVnodeBeforeMount)&&ye(ee,F,E),W&&Ie(E,null,F,"beforeMount"),((ee=w&&w.onVnodeMounted)||W)&&Js(()=>{ee&&ye(ee,F,E),W&&Ie(E,null,F,"mounted")},L),H&16&&!(w&&(w.innerHTML||w.textContent))){let N=M(_.firstChild,E,_,F,L,k,Y);for(;N;){ke=!0;const Fe=N;N=N.nextSibling,o(Fe)}}else H&8&&_.textContent!==E.children&&(ke=!0,_.textContent=E.children)}return _.nextSibling},M=(_,E,F,L,k,Y,B)=>{B=B||!!E.dynamicChildren;const w=E.children,D=w.length;for(let H=0;H<D;H++){const W=B?w[H]:w[H]=Ce(w[H]);if(_)_=b(_,W,L,k,Y,B);else{if(W.type===it&&!W.children)continue;ke=!0,n(null,W,F,null,L,k,Rt(F),Y)}}return _},$=(_,E,F,L,k,Y)=>{const{slotScopeIds:B}=E;B&&(k=k?k.concat(B):B);const w=i(_),D=M(l(_),E,w,F,L,k,Y);return D&&Nt(D)&&D.data==="]"?l(E.anchor=D):(ke=!0,u(E.anchor=a("]"),w,D),D)},R=(_,E,F,L,k,Y)=>{if(ke=!0,E.el=null,Y){const D=X(_);for(;;){const H=l(_);if(H&&H!==D)o(H);else break}}const B=l(_),w=i(_);return o(_),n(null,E,w,B,F,L,Rt(w),k),B},X=_=>{let E=0;for(;_;)if(_=l(_),_&&Nt(_)&&(_.data==="["&&E++,_.data==="]")){if(E===0)return l(_);E--}return _};return[d,b]}const ae=Js;function eo(e){return hr(e)}function to(e){return hr(e,oi)}function hr(e,t){const n=Ur();n.__VUE__=!0;const{insert:s,remove:r,patchProp:l,createElement:i,createText:o,createComment:u,setText:a,setElementText:d,parentNode:b,nextSibling:y,setScopeId:M=Ee,insertStaticContent:$}=e,R=(c,f,h,g=null,p=null,C=null,A=!1,x=null,T=!!f.dynamicChildren)=>{if(c===f)return;c&&!Je(c,f)&&(g=Et(c),Oe(c,p,C,!0),c=null),f.patchFlag===-2&&(T=!1,f.dynamicChildren=null);const{type:m,ref:I,shapeFlag:O}=f;switch(m){case it:X(c,f,h,g);break;case me:_(c,f,h,g);break;case gt:c==null&&E(f,h,g,A);break;case he:ce(c,f,h,g,p,C,A,x,T);break;default:O&1?k(c,f,h,g,p,C,A,x,T):O&6?ee(c,f,h,g,p,C,A,x,T):(O&64||O&128)&&m.process(c,f,h,g,p,C,A,x,T,Xe)}I!=null&&p&&Vt(I,c&&c.ref,C,f||c,!f)},X=(c,f,h,g)=>{if(c==null)s(f.el=o(f.children),h,g);else{const p=f.el=c.el;f.children!==c.children&&a(p,f.children)}},_=(c,f,h,g)=>{c==null?s(f.el=u(f.children||""),h,g):f.el=c.el},E=(c,f,h,g)=>{[c.el,c.anchor]=$(c.children,f,h,g,c.el,c.anchor)},F=({el:c,anchor:f},h,g)=>{let p;for(;c&&c!==f;)p=y(c),s(c,h,g),c=p;s(f,h,g)},L=({el:c,anchor:f})=>{let h;for(;c&&c!==f;)h=y(c),r(c),c=h;r(f)},k=(c,f,h,g,p,C,A,x,T)=>{A=A||f.type==="svg",c==null?Y(f,h,g,p,C,A,x,T):D(c,f,p,C,A,x,T)},Y=(c,f,h,g,p,C,A,x)=>{let T,m;const{type:I,props:O,shapeFlag:P,transition:j,dirs:K}=c;if(T=c.el=i(c.type,C,O&&O.is,O),P&8?d(T,c.children):P&16&&w(c.children,T,null,g,p,C&&I!=="foreignObject",A,x),K&&Ie(c,null,g,"created"),B(T,c,c.scopeId,A,g),O){for(const q in O)q!=="value"&&!ht(q)&&l(T,q,null,O[q],C,c.children,g,p,Re);"value"in O&&l(T,"value",null,O.value),(m=O.onVnodeBeforeMount)&&ye(m,g,c)}K&&Ie(c,null,g,"beforeMount");const z=(!p||p&&!p.pendingBranch)&&j&&!j.persisted;z&&j.beforeEnter(T),s(T,f,h),((m=O&&O.onVnodeMounted)||z||K)&&ae(()=>{m&&ye(m,g,c),z&&j.enter(T),K&&Ie(c,null,g,"mounted")},p)},B=(c,f,h,g,p)=>{if(h&&M(c,h),g)for(let C=0;C<g.length;C++)M(c,g[C]);if(p){let C=p.subTree;if(f===C){const A=p.vnode;B(c,A,A.scopeId,A.slotScopeIds,p.parent)}}},w=(c,f,h,g,p,C,A,x,T=0)=>{for(let m=T;m<c.length;m++){const I=c[m]=x?Be(c[m]):Ce(c[m]);R(null,I,f,h,g,p,C,A,x)}},D=(c,f,h,g,p,C,A)=>{const x=f.el=c.el;let{patchFlag:T,dynamicChildren:m,dirs:I}=f;T|=c.patchFlag&16;const O=c.props||Q,P=f.props||Q;let j;h&&Se(h,!1),(j=P.onVnodeBeforeUpdate)&&ye(j,h,f,c),I&&Ie(f,c,h,"beforeUpdate"),h&&Se(h,!0);const K=p&&f.type!=="foreignObject";if(m?H(c.dynamicChildren,m,x,h,g,K,C):A||J(c,f,x,null,h,g,K,C,!1),T>0){if(T&16)W(x,f,O,P,h,g,p);else if(T&2&&O.class!==P.class&&l(x,"class",null,P.class,p),T&4&&l(x,"style",O.style,P.style,p),T&8){const z=f.dynamicProps;for(let q=0;q<z.length;q++){const se=z[q],xe=O[se],Ge=P[se];(Ge!==xe||se==="value")&&l(x,se,xe,Ge,p,c.children,h,g,Re)}}T&1&&c.children!==f.children&&d(x,f.children)}else!A&&m==null&&W(x,f,O,P,h,g,p);((j=P.onVnodeUpdated)||I)&&ae(()=>{j&&ye(j,h,f,c),I&&Ie(f,c,h,"updated")},g)},H=(c,f,h,g,p,C,A)=>{for(let x=0;x<f.length;x++){const T=c[x],m=f[x],I=T.el&&(T.type===he||!Je(T,m)||T.shapeFlag&70)?b(T.el):h;R(T,m,I,null,g,p,C,A,!0)}},W=(c,f,h,g,p,C,A)=>{if(h!==g){if(h!==Q)for(const x in h)!ht(x)&&!(x in g)&&l(c,x,h[x],null,A,f.children,p,C,Re);for(const x in g){if(ht(x))continue;const T=g[x],m=h[x];T!==m&&x!=="value"&&l(c,x,m,T,A,f.children,p,C,Re)}"value"in g&&l(c,"value",h.value,g.value)}},ce=(c,f,h,g,p,C,A,x,T)=>{const m=f.el=c?c.el:o(""),I=f.anchor=c?c.anchor:o("");let{patchFlag:O,dynamicChildren:P,slotScopeIds:j}=f;j&&(x=x?x.concat(j):j),c==null?(s(m,h,g),s(I,h,g),w(f.children,h,I,p,C,A,x,T)):O>0&&O&64&&P&&c.dynamicChildren?(H(c.dynamicChildren,P,h,p,C,A,x),(f.key!=null||p&&f===p.subTree)&&Sn(c,f,!0)):J(c,f,h,I,p,C,A,x,T)},ee=(c,f,h,g,p,C,A,x,T)=>{f.slotScopeIds=x,c==null?f.shapeFlag&512?p.ctx.activate(f,h,g,A,T):N(f,h,g,p,C,A,T):Fe(c,f,T)},N=(c,f,h,g,p,C,A)=>{const x=c.component=bi(c,g,p);if(tn(c)&&(x.ctx.renderer=Xe),xi(x),x.asyncDep){if(p&&p.registerDep(x,Z),!c.el){const T=x.subTree=oe(me);_(null,T,f,h)}return}Z(x,c,f,h,p,C,A)},Fe=(c,f,h)=>{const g=f.component=c.component;if(Rl(c,f,h))if(g.asyncDep&&!g.asyncResolved){te(g,f,h);return}else g.next=f,El(g.update),g.update();else f.el=c.el,g.vnode=f},Z=(c,f,h,g,p,C,A)=>{const x=()=>{if(c.isMounted){let{next:I,bu:O,u:P,parent:j,vnode:K}=c,z=I,q;Se(c,!1),I?(I.el=K.el,te(c,I,A)):I=K,O&&fn(O),(q=I.props&&I.props.onVnodeBeforeUpdate)&&ye(q,j,I,K),Se(c,!0);const se=un(c),xe=c.subTree;c.subTree=se,R(xe,se,b(xe.el),Et(xe),c,p,C),I.el=se.el,z===null&&Nl(c,se.el),P&&ae(P,p),(q=I.props&&I.props.onVnodeUpdated)&&ae(()=>ye(q,j,I,K),p)}else{let I;const{el:O,props:P}=f,{bm:j,m:K,parent:z}=c,q=rt(f);if(Se(c,!1),j&&fn(j),!q&&(I=P&&P.onVnodeBeforeMount)&&ye(I,z,f),Se(c,!0),O&&on){const se=()=>{c.subTree=un(c),on(O,c.subTree,c,p,null)};q?f.type.__asyncLoader().then(()=>!c.isUnmounted&&se()):se()}else{const se=c.subTree=un(c);R(null,se,h,g,c,p,C),f.el=se.el}if(K&&ae(K,p),!q&&(I=P&&P.onVnodeMounted)){const se=f;ae(()=>ye(I,z,se),p)}(f.shapeFlag&256||z&&rt(z.vnode)&&z.vnode.shapeFlag&256)&&c.a&&ae(c.a,p),c.isMounted=!0,f=h=g=null}},T=c.effect=new Nn(x,()=>vn(m),c.scope),m=c.update=()=>T.run();m.id=c.uid,Se(c,!0),m()},te=(c,f,h)=>{f.component=c;const g=c.vnode.props;c.vnode=f,c.next=null,ti(c,f.props,g,h),ri(c,f.children,h),ct(),is(),ft()},J=(c,f,h,g,p,C,A,x,T=!1)=>{const m=c&&c.children,I=c?c.shapeFlag:0,O=f.children,{patchFlag:P,shapeFlag:j}=f;if(P>0){if(P&128){wt(m,O,h,g,p,C,A,x,T);return}else if(P&256){We(m,O,h,g,p,C,A,x,T);return}}j&8?(I&16&&Re(m,p,C),O!==m&&d(h,O)):I&16?j&16?wt(m,O,h,g,p,C,A,x,T):Re(m,p,C,!0):(I&8&&d(h,""),j&16&&w(O,h,g,p,C,A,x,T))},We=(c,f,h,g,p,C,A,x,T)=>{c=c||et,f=f||et;const m=c.length,I=f.length,O=Math.min(m,I);let P;for(P=0;P<O;P++){const j=f[P]=T?Be(f[P]):Ce(f[P]);R(c[P],j,h,null,p,C,A,x,T)}m>I?Re(c,p,C,!0,!1,O):w(f,h,g,p,C,A,x,T,O)},wt=(c,f,h,g,p,C,A,x,T)=>{let m=0;const I=f.length;let O=c.length-1,P=I-1;for(;m<=O&&m<=P;){const j=c[m],K=f[m]=T?Be(f[m]):Ce(f[m]);if(Je(j,K))R(j,K,h,null,p,C,A,x,T);else break;m++}for(;m<=O&&m<=P;){const j=c[O],K=f[P]=T?Be(f[P]):Ce(f[P]);if(Je(j,K))R(j,K,h,null,p,C,A,x,T);else break;O--,P--}if(m>O){if(m<=P){const j=P+1,K=j<I?f[j].el:g;for(;m<=P;)R(null,f[m]=T?Be(f[m]):Ce(f[m]),h,K,p,C,A,x,T),m++}}else if(m>P)for(;m<=O;)Oe(c[m],p,C,!0),m++;else{const j=m,K=m,z=new Map;for(m=K;m<=P;m++){const ge=f[m]=T?Be(f[m]):Ce(f[m]);ge.key!=null&&z.set(ge.key,m)}let q,se=0;const xe=P-K+1;let Ge=!1,zn=0;const ut=new Array(xe);for(m=0;m<xe;m++)ut[m]=0;for(m=j;m<=O;m++){const ge=c[m];if(se>=xe){Oe(ge,p,C,!0);continue}let Me;if(ge.key!=null)Me=z.get(ge.key);else for(q=K;q<=P;q++)if(ut[q-K]===0&&Je(ge,f[q])){Me=q;break}Me===void 0?Oe(ge,p,C,!0):(ut[Me-K]=m+1,Me>=zn?zn=Me:Ge=!0,R(ge,f[Me],h,null,p,C,A,x,T),se++)}const Zn=Ge?ci(ut):et;for(q=Zn.length-1,m=xe-1;m>=0;m--){const ge=K+m,Me=f[ge],Qn=ge+1<I?f[ge+1].el:g;ut[m]===0?R(null,Me,h,Qn,p,C,A,x,T):Ge&&(q<0||m!==Zn[q]?Ve(Me,h,Qn,2):q--)}}},Ve=(c,f,h,g,p=null)=>{const{el:C,type:A,transition:x,children:T,shapeFlag:m}=c;if(m&6){Ve(c.component.subTree,f,h,g);return}if(m&128){c.suspense.move(f,h,g);return}if(m&64){A.move(c,f,h,Xe);return}if(A===he){s(C,f,h);for(let O=0;O<T.length;O++)Ve(T[O],f,h,g);s(c.anchor,f,h);return}if(A===gt){F(c,f,h);return}if(g!==2&&m&1&&x)if(g===0)x.beforeEnter(C),s(C,f,h),ae(()=>x.enter(C),p);else{const{leave:O,delayLeave:P,afterLeave:j}=x,K=()=>s(C,f,h),z=()=>{O(C,()=>{K(),j&&j()})};P?P(C,K,z):z()}else s(C,f,h)},Oe=(c,f,h,g=!1,p=!1)=>{const{type:C,props:A,ref:x,children:T,dynamicChildren:m,shapeFlag:I,patchFlag:O,dirs:P}=c;if(x!=null&&Vt(x,null,h,c,!0),I&256){f.ctx.deactivate(c);return}const j=I&1&&P,K=!rt(c);let z;if(K&&(z=A&&A.onVnodeBeforeUnmount)&&ye(z,f,c),I&6)wr(c.component,h,g);else{if(I&128){c.suspense.unmount(h,g);return}j&&Ie(c,null,f,"beforeUnmount"),I&64?c.type.remove(c,f,h,p,Xe,g):m&&(C!==he||O>0&&O&64)?Re(m,f,h,!1,!0):(C===he&&O&384||!p&&I&16)&&Re(T,f,h),g&&qn(c)}(K&&(z=A&&A.onVnodeUnmounted)||j)&&ae(()=>{z&&ye(z,f,c),j&&Ie(c,null,f,"unmounted")},h)},qn=c=>{const{type:f,el:h,anchor:g,transition:p}=c;if(f===he){Tr(h,g);return}if(f===gt){L(c);return}const C=()=>{r(h),p&&!p.persisted&&p.afterLeave&&p.afterLeave()};if(c.shapeFlag&1&&p&&!p.persisted){const{leave:A,delayLeave:x}=p,T=()=>A(h,C);x?x(c.el,C,T):T()}else C()},Tr=(c,f)=>{let h;for(;c!==f;)h=y(c),r(c),c=h;r(f)},wr=(c,f,h)=>{const{bum:g,scope:p,update:C,subTree:A,um:x}=c;g&&fn(g),p.stop(),C&&(C.active=!1,Oe(A,c,f,h)),x&&ae(x,f),ae(()=>{c.isUnmounted=!0},f),f&&f.pendingBranch&&!f.isUnmounted&&c.asyncDep&&!c.asyncResolved&&c.suspenseId===f.pendingId&&(f.deps--,f.deps===0&&f.resolve())},Re=(c,f,h,g=!1,p=!1,C=0)=>{for(let A=C;A<c.length;A++)Oe(c[A],f,h,g,p)},Et=c=>c.shapeFlag&6?Et(c.component.subTree):c.shapeFlag&128?c.suspense.next():y(c.anchor||c.el),Jn=(c,f,h)=>{c==null?f._vnode&&Oe(f._vnode,null,null,!0):R(f._vnode||null,c,f,null,null,null,h),is(),$t(),f._vnode=c},Xe={p:R,um:Oe,m:Ve,r:qn,mt:N,mc:w,pc:J,pbc:H,n:Et,o:e};let ln,on;return t&&([ln,on]=t(Xe)),{render:Jn,hydrate:ln,createApp:ii(Jn,ln)}}function Se({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Sn(e,t,n=!1){const s=e.children,r=t.children;if(U(s)&&U(r))for(let l=0;l<s.length;l++){const i=s[l];let o=r[l];o.shapeFlag&1&&!o.dynamicChildren&&((o.patchFlag<=0||o.patchFlag===32)&&(o=r[l]=Be(r[l]),o.el=i.el),n||Sn(i,o)),o.type===it&&(o.el=i.el)}}function ci(e){const t=e.slice(),n=[0];let s,r,l,i,o;const u=e.length;for(s=0;s<u;s++){const a=e[s];if(a!==0){if(r=n[n.length-1],e[r]<a){t[s]=r,n.push(s);continue}for(l=0,i=n.length-1;l<i;)o=l+i>>1,e[n[o]]<a?l=o+1:i=o;a<e[n[l]]&&(l>0&&(t[s]=n[l-1]),n[l]=s)}}for(l=n.length,i=n[l-1];l-- >0;)n[l]=i,i=t[i];return n}const fi=e=>e.__isTeleport,pt=e=>e&&(e.disabled||e.disabled===""),_s=e=>typeof SVGElement<"u"&&e instanceof SVGElement,En=(e,t)=>{const n=e&&e.to;return re(n)?t?t(n):null:n},ui={__isTeleport:!0,process(e,t,n,s,r,l,i,o,u,a){const{mc:d,pc:b,pbc:y,o:{insert:M,querySelector:$,createText:R,createComment:X}}=a,_=pt(t.props);let{shapeFlag:E,children:F,dynamicChildren:L}=t;if(e==null){const k=t.el=R(""),Y=t.anchor=R("");M(k,n,s),M(Y,n,s);const B=t.target=En(t.props,$),w=t.targetAnchor=R("");B&&(M(w,B),i=i||_s(B));const D=(H,W)=>{E&16&&d(F,H,W,r,l,i,o,u)};_?D(n,Y):B&&D(B,w)}else{t.el=e.el;const k=t.anchor=e.anchor,Y=t.target=e.target,B=t.targetAnchor=e.targetAnchor,w=pt(e.props),D=w?n:Y,H=w?k:B;if(i=i||_s(Y),L?(y(e.dynamicChildren,L,D,r,l,i,o),Sn(e,t,!0)):u||b(e,t,D,H,r,l,i,o,!1),_)w||jt(t,n,k,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const W=t.target=En(t.props,$);W&&jt(t,W,null,a,0)}else w&&jt(t,Y,B,a,1)}dr(t)},remove(e,t,n,s,{um:r,o:{remove:l}},i){const{shapeFlag:o,children:u,anchor:a,targetAnchor:d,target:b,props:y}=e;if(b&&l(d),(i||!pt(y))&&(l(a),o&16))for(let M=0;M<u.length;M++){const $=u[M];r($,t,n,!0,!!$.dynamicChildren)}},move:jt,hydrate:ai};function jt(e,t,n,{o:{insert:s},m:r},l=2){l===0&&s(e.targetAnchor,t,n);const{el:i,anchor:o,shapeFlag:u,children:a,props:d}=e,b=l===2;if(b&&s(i,t,n),(!b||pt(d))&&u&16)for(let y=0;y<a.length;y++)r(a[y],t,n,2);b&&s(o,t,n)}function ai(e,t,n,s,r,l,{o:{nextSibling:i,parentNode:o,querySelector:u}},a){const d=t.target=En(t.props,u);if(d){const b=d._lpa||d.firstChild;if(t.shapeFlag&16)if(pt(t.props))t.anchor=a(i(e),t,o(e),n,s,r,l),t.targetAnchor=b;else{t.anchor=i(e);let y=b;for(;y;)if(y=i(y),y&&y.nodeType===8&&y.data==="teleport anchor"){t.targetAnchor=y,d._lpa=t.targetAnchor&&i(t.targetAnchor);break}a(b,t,d,n,s,r,l)}dr(t)}return t.anchor&&i(t.anchor)}const no=ui;function dr(e){const t=e.ctx;if(t&&t.ut){let n=e.children[0].el;for(;n!==e.targetAnchor;)n.nodeType===1&&n.setAttribute("data-v-owner",t.uid),n=n.nextSibling;t.ut()}}const he=Symbol(void 0),it=Symbol(void 0),me=Symbol(void 0),gt=Symbol(void 0),_t=[];let we=null;function pr(e=!1){_t.push(we=e?null:[])}function hi(){_t.pop(),we=_t[_t.length-1]||null}let Ct=1;function ms(e){Ct+=e}function gr(e){return e.dynamicChildren=Ct>0?we||et:null,hi(),Ct>0&&we&&we.push(e),e}function so(e,t,n,s,r,l){return gr(br(e,t,n,s,r,l,!0))}function _r(e,t,n,s,r){return gr(oe(e,t,n,s,r,!0))}function St(e){return e?e.__v_isVNode===!0:!1}function Je(e,t){return e.type===t.type&&e.key===t.key}const sn="__vInternal",mr=({key:e})=>e??null,Ht=({ref:e,ref_key:t,ref_for:n})=>e!=null?re(e)||le(e)||v(e)?{i:ie,r:e,k:t,f:!!n}:e:null;function br(e,t=null,n=null,s=0,r=null,l=e===he?0:1,i=!1,o=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&mr(t),ref:t&&Ht(t),scopeId:qs,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:l,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:ie};return o?(Yn(u,n),l&128&&e.normalize(u)):n&&(u.shapeFlag|=re(n)?8:16),Ct>0&&!i&&we&&(u.patchFlag>0||l&6)&&u.patchFlag!==32&&we.push(u),u}const oe=di;function di(e,t=null,n=null,s=0,r=null,l=!1){if((!e||e===nr)&&(e=me),St(e)){const o=Ke(e,t,!0);return n&&Yn(o,n),Ct>0&&!l&&we&&(o.shapeFlag&6?we[we.indexOf(e)]=o:we.push(o)),o.patchFlag|=-2,o}if(Ai(e)&&(e=e.__vccOpts),t){t=pi(t);let{class:o,style:u}=t;o&&!re(o)&&(t.class=qt(o)),G(u)&&(ks(u)&&!U(u)&&(u=de({},u)),t.style=Yt(u))}const i=re(e)?1:jl(e)?128:fi(e)?64:G(e)?4:v(e)?2:0;return br(e,t,n,s,r,i,l,!0)}function pi(e){return e?ks(e)||sn in e?de({},e):e:null}function Ke(e,t,n=!1){const{props:s,ref:r,patchFlag:l,children:i}=e,o=t?gi(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:o,key:o&&mr(o),ref:t&&t.ref?n&&r?U(r)?r.concat(Ht(t)):[r,Ht(t)]:Ht(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==he?l===-1?16:l|16:l,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ke(e.ssContent),ssFallback:e.ssFallback&&Ke(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function yr(e=" ",t=0){return oe(it,null,e,t)}function ro(e,t){const n=oe(gt,null,e);return n.staticCount=t,n}function lo(e="",t=!1){return t?(pr(),_r(me,null,e)):oe(me,null,e)}function Ce(e){return e==null||typeof e=="boolean"?oe(me):U(e)?oe(he,null,e.slice()):typeof e=="object"?Be(e):oe(it,null,String(e))}function Be(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ke(e)}function Yn(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(U(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),Yn(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(sn in t)?t._ctx=ie:r===3&&ie&&(ie.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else v(t)?(t={default:t,_ctx:ie},n=32):(t=String(t),s&64?(n=16,t=[yr(t)]):n=8);e.children=t,e.shapeFlag|=n}function gi(...e){const t={};for(let n=0;n<e.length;n++){const s=e[n];for(const r in s)if(r==="class")t.class!==s.class&&(t.class=qt([t.class,s.class]));else if(r==="style")t.style=Yt([t.style,s.style]);else if(Jt(r)){const l=t[r],i=s[r];i&&l!==i&&!(U(l)&&l.includes(i))&&(t[r]=l?[].concat(l,i):i)}else r!==""&&(t[r]=s[r])}return t}function ye(e,t,n,s=null){Ae(e,t,7,[n,s])}const _i=ar();let mi=0;function bi(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||_i,l={uid:mi++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new kr(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:or(s,r),emitsOptions:Ys(s,r),emit:null,emitted:null,propsDefaults:Q,inheritAttrs:s.inheritAttrs,ctx:Q,data:Q,props:Q,attrs:Q,slots:Q,refs:Q,setupState:Q,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return l.ctx={_:l},l.root=t?t.root:l,l.emit=Ol.bind(null,l),e.ce&&e.ce(l),l}let ne=null;const yi=()=>ne||ie,ot=e=>{ne=e,e.scope.on()},Qe=()=>{ne&&ne.scope.off(),ne=null};function xr(e){return e.vnode.shapeFlag&4}let Tt=!1;function xi(e,t=!1){Tt=t;const{props:n,children:s}=e.vnode,r=xr(e);ei(e,n,r,t),si(e,s);const l=r?Ci(e,t):void 0;return Tt=!1,l}function Ci(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Bs(new Proxy(e.ctx,Jl));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?wi(e):null;ot(e),ct();const l=ve(s,e,0,[e.props,r]);if(ft(),Qe(),ws(l)){if(l.then(Qe,Qe),t)return l.then(i=>{bs(e,i,t)}).catch(i=>{Gt(i,e,0)});e.asyncDep=l}else bs(e,l,t)}else Cr(e,t)}function bs(e,t,n){v(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:G(t)&&(e.setupState=$s(t)),Cr(e,n)}let ys;function Cr(e,t,n){const s=e.type;if(!e.render){if(!t&&ys&&!s.render){const r=s.template||Wn(e).template;if(r){const{isCustomElement:l,compilerOptions:i}=e.appContext.config,{delimiters:o,compilerOptions:u}=s,a=de(de({isCustomElement:l,delimiters:o},i),u);s.render=ys(r,a)}}e.render=s.render||Ee}ot(e),ct(),zl(e),ft(),Qe()}function Ti(e){return new Proxy(e.attrs,{get(t,n){return pe(e,"get","$attrs"),t[n]}})}function wi(e){const t=s=>{e.exposed=s||{}};let n;return{get attrs(){return n||(n=Ti(e))},slots:e.slots,emit:e.emit,expose:t}}function rn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy($s(Bs(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in dt)return dt[n](e)},has(t,n){return n in t||n in dt}}))}function Ei(e,t=!0){return v(e)?e.displayName||e.name:e.name||t&&e.__name}function Ai(e){return v(e)&&"__vccOpts"in e}const Fi=(e,t)=>xl(e,t,Tt);function io(e,t,n){const s=arguments.length;return s===2?G(t)&&!U(t)?St(t)?oe(e,null,[t]):oe(e,t):oe(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&St(n)&&(n=[n]),oe(e,t,n))}const Oi=Symbol(""),Mi=()=>Lt(Oi),Ii="3.2.47";let Ut,kt;typeof window=="object"&&window?kt=Ut=window:typeof process=="object"&&process.env?(kt=global,Ut=process.env):kt=Ut=typeof self=="object"&&self||{};const Pi="en_us",Ri="USD",Ni="$",ji="US",Li=1011,Hi="5b1abe30a4d4531b8fe40725",Ui=e=>{if(typeof document=="object"&&document){const t=document.getElementsByTagName("meta");for(let n=0;n<t.length;n++)if(t[n].getAttribute("name")===e.replace(/_/g,"-")){const s=t[n].getAttribute("content");return e==="ecom_store_id"?parseInt(s,10):s}}return Ut[e.toUpperCase()]},An={};["lang","currency","currency_symbol","country_code","store_id","store_object_id"].forEach(e=>{An[e]=Ui("ecom_"+e)});const ki={get(e){const t=An[e];if(t!=null&&t!=="")return t;switch(e){case"lang":return Pi;case"currency":return Ri;case"currency_symbol":return Ni;case"country_code":return ji;case"store_id":return Li;case"store_object_id":return Hi}return null},set(e,t){An[e]=t}};kt.$ecomConfig;const oo=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n};export{_l as $,pi as A,zi as B,Xi as C,v as D,re as E,he as F,io as G,qi as H,de as I,G as J,eo as K,to as L,U as M,Ki as N,Yi as O,tr as P,yi as Q,Jt as R,gt as S,Cs as T,Qt as U,je as V,Pn as W,Di as X,vi as Y,Ae as Z,oo as _,so as a,Us as a0,Dr as a1,Wi as a2,no as a3,Yt as a4,ro as a5,gi as a6,Pi as a7,lo as b,Fi as c,Ji as d,br as e,yr as f,oe as g,Un as h,ki as i,Vi as j,_r as k,Qi as l,Lt as m,qt as n,pr as o,Gi as p,an as q,Zi as r,Si as s,$i as t,Gs as u,Tl as v,Ml as w,er as x,Ll as y,Bi as z};
@@ -0,0 +1 @@
1
+ import{T as L,u as C,c as P,a as B}from"./runtime-dom.esm-bundler.acde10ec.js";/* empty css */import{a7 as O,i as j,d as _,_ as $,c as a,k as x,w as H,o as A,p as E,$ as c,a as z,G as p}from"./_plugin-vue_export-helper.6da04e63.js";import{f as W}from"./format-money.6f464cee.js";const T=(t,r=j.get("lang"))=>{if(typeof t=="object"&&t!==null){const e=Object.keys(t)[0];if(/^[a-z]{2}(_[a-z]{2})?$/.test(e))return t[r]||t[O]||t[e];{const s=Array.isArray(t)?[]:{};for(const o in t)t[o]!==void 0&&(s[o]=T(t[o],r));return s}}return t},q=T,D=_({__name:"Fade",props:{speed:{default:"default"},slide:null,isFloating:{type:Boolean,default:!1},isLeaveTo:{type:Boolean,default:!0},isEnterFrom:{type:Boolean,default:!0}},setup(t,{expose:r}){r();const e=t;C(n=>({"68e3b484":c(F),"17a22876":c(s),bc2eb02a:c(f),da7ab968:c(d),43026547:c(y),"6e5955a6":c(w),"6f10697b":c(i),"95ff7e48":c(v)}));const s=a(()=>e.speed==="default"?"var(--transition, .2s linear)":`var(--transition-${e.speed}, .4s linear)`),o=a(()=>{switch(e.slide){case"down":return"translate3d(0, -100%, 0)";case"left":return"translate3d(-100%, 0, 0)";case"right":return"translate3d(100%, 0, 0)";case"up":return"translate3d(0, 100%, 0)";default:return"none"}}),u=a(()=>o.value!=="none"?.1:0),f=a(()=>e.isEnterFrom?u.value:1),i=a(()=>e.isLeaveTo?u.value:1),d=a(()=>e.isEnterFrom?o.value:"none"),v=a(()=>e.isLeaveTo?o.value:"none"),l=a(()=>e.slide==="down"||e.slide==="up"),g=a(()=>e.isFloating?null:l.value?0:"auto"),m=a(()=>e.isFloating?null:e.slide&&!l.value?0:"auto"),y=a(()=>e.isEnterFrom?g.value:"auto"),w=a(()=>e.isEnterFrom?m.value:"auto"),F=a(()=>{let n="opacity";return o.value!=="none"&&(n+=", transform"),g.value===0&&(n+=", height"),m.value===0&&(n+=", width"),n}),b={props:e,duration:s,transform:o,opacity:u,enterFromOpacity:f,leaveToOpacity:i,enterFromTransform:d,leaveToTransform:v,isSlideY:l,height:g,width:m,enterFromHeight:y,enterFromWidth:w,willChange:F,onEnter:n=>{if(e.slide&&!e.isFloating&&e.isEnterFrom){l.value?(n.style.width=getComputedStyle(n).width,n.style.height="auto"):(n.style.width="auto",n.style.height=getComputedStyle(n).height),n.style.position="absolute",n.style.visibility="hidden";const{width:h,height:k}=getComputedStyle(n);n.style.width=l.value?null:"0",n.style.height=l.value?"0":null,n.style.position=null,n.style.visibility=null,getComputedStyle(n)[l.value?"height":"width"],requestAnimationFrame(()=>{l.value?n.style.height=k:n.style.width=h})}},onAfterEnter:n=>{e.slide&&!e.isFloating&&e.isEnterFrom&&(n.style[l.value?"height":"width"]=null)},onLeave:n=>{if(e.slide&&!e.isFloating&&e.isLeaveTo){l.value?n.style.height=getComputedStyle(n).height:n.style.width=getComputedStyle(n).width;const h=l.value?"height":"width";getComputedStyle(n)[h],requestAnimationFrame(()=>{n.style[h]="0"})}}};return Object.defineProperty(b,"__isScriptSetup",{enumerable:!1,value:!0}),b}});function G(t,r,e,s,o,u){return A(),x(L,{name:"sf-fade",onEnter:s.onEnter,onAfterEnter:s.onAfterEnter,onLeave:s.onLeave},{default:H(()=>[E(t.$slots,"default",{},void 0,!0)]),_:3})}const I=$(D,[["render",G],["__scopeId","data-v-d3912920"]]),M=_({__name:"ALink",props:{href:null,target:null},setup(t,{expose:r}){r();const e=t,s=a(()=>{if(e.target)return e.target;if(e.href.startsWith("http")){const u=globalThis.storefront.settings.domain||window.location.host;if(e.href.startsWith(`https://${u}`))return null}return"_blank"}),o={props:e,linkTarget:s};return Object.defineProperty(o,"__isScriptSetup",{enumerable:!1,value:!0}),o}}),N=["href","target","rel"];function R(t,r,e,s,o,u){return A(),z("a",{href:e.href,target:s.linkTarget,rel:s.linkTarget==="_blank"?"noopener":null},[E(t.$slots,"default")],8,N)}const U=$(M,[["render",R]]),V=(t,r=1)=>Number.isInteger(t)?`${t}%`:`${t.toFixed(r)}%`,S=t=>{t.use({install:(r,e)=>{r.config.globalProperties.$t=(s,o)=>q(s,o||e?.lang),r.config.globalProperties.$money=W,r.config.globalProperties.$percentage=V}}),t.component("Fade",I),t.component("ALink",U)},Y=_({props:{value:String,name:String},setup({name:t,value:r}){return r?()=>p("astro-slot",{name:t,innerHTML:r}):()=>null}}),ne=t=>async(r,e,s,{client:o})=>{if(delete e.class,!t.hasAttribute("ssr"))return;const u=r.name?`${r.name} Host`:void 0,f={};for(const[i,d]of Object.entries(s))f[i]=()=>p(Y,{value:d,name:i==="default"?void 0:i});if(o==="only"){const i=P({name:u,render:()=>p(r,e,f)});await S(i),i.mount(t,!1)}else{const i=B({name:u,render:()=>p(r,e,f)});await S(i),i.mount(t,!0)}};export{ne as default};