uikit 3.21.14-dev.028df7be8 → 3.21.14-dev.2e8a07c7e

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 (140) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist/css/uikit-core-rtl.css +233 -85
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +233 -85
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +237 -81
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +237 -81
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +1 -1
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +2 -11
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +425 -126
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +442 -131
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +2 -2
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +2 -2
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +17 -27
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +2 -2
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +22 -33
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +3 -3
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +8 -12
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +225 -221
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +20 -17
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +644 -530
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +2 -2
  43. package/src/images/icons/arrow-down-arrow-up.svg +6 -0
  44. package/src/images/icons/arrow-down.svg +3 -3
  45. package/src/images/icons/arrow-left.svg +3 -3
  46. package/src/images/icons/arrow-right.svg +3 -3
  47. package/src/images/icons/arrow-up-right.svg +3 -3
  48. package/src/images/icons/arrow-up.svg +3 -3
  49. package/src/images/icons/close-circle.svg +5 -0
  50. package/src/images/icons/cloud-download.svg +4 -4
  51. package/src/images/icons/cloud-upload.svg +4 -4
  52. package/src/images/icons/download.svg +4 -4
  53. package/src/images/icons/expand.svg +5 -5
  54. package/src/images/icons/link-external.svg +4 -4
  55. package/src/images/icons/pull.svg +4 -4
  56. package/src/images/icons/push.svg +3 -3
  57. package/src/images/icons/shrink.svg +5 -5
  58. package/src/images/icons/sign-in.svg +4 -3
  59. package/src/images/icons/sign-out.svg +4 -3
  60. package/src/images/icons/sorting.svg +6 -0
  61. package/src/images/icons/upload.svg +4 -4
  62. package/src/js/api/events.js +15 -14
  63. package/src/js/api/instance.js +1 -1
  64. package/src/js/components/internal/lightbox-animations.js +2 -1
  65. package/src/js/components/internal/slideshow-animations.js +5 -5
  66. package/src/js/components/lightbox-panel.js +180 -45
  67. package/src/js/components/lightbox.js +59 -6
  68. package/src/js/components/slideshow.js +1 -2
  69. package/src/js/components/sortable.js +2 -2
  70. package/src/js/core/grid.js +1 -1
  71. package/src/js/core/icon.js +2 -2
  72. package/src/js/core/img.js +3 -5
  73. package/src/js/core/navbar.js +6 -2
  74. package/src/js/core/scrollspy-nav.js +1 -1
  75. package/src/js/core/svg.js +8 -10
  76. package/src/js/core/video.js +4 -3
  77. package/src/js/mixin/internal/slideshow-animations.js +1 -6
  78. package/src/js/mixin/modal.js +1 -4
  79. package/src/js/mixin/slider-drag.js +5 -6
  80. package/src/js/mixin/slider-nav.js +1 -1
  81. package/src/js/mixin/slider.js +11 -13
  82. package/src/js/mixin/slideshow.js +1 -1
  83. package/src/js/mixin/togglable.js +7 -2
  84. package/src/js/util/dom.js +3 -1
  85. package/src/js/util/filter.js +3 -1
  86. package/src/js/util/player.js +0 -4
  87. package/src/less/components/background.less +1 -9
  88. package/src/less/components/breadcrumb.less +6 -2
  89. package/src/less/components/button.less +1 -1
  90. package/src/less/components/form-range.less +52 -0
  91. package/src/less/components/form.less +1 -1
  92. package/src/less/components/lightbox.less +57 -89
  93. package/src/less/components/margin.less +14 -0
  94. package/src/less/components/search.less +49 -23
  95. package/src/less/components/sticky.less +1 -10
  96. package/src/less/components/totop.less +1 -1
  97. package/src/less/components/transition.less +4 -4
  98. package/src/less/components/visibility.less +3 -2
  99. package/src/less/theme/form-range.less +12 -0
  100. package/src/less/theme/lightbox.less +2 -20
  101. package/src/less/theme/search.less +24 -10
  102. package/src/scss/components/background.scss +1 -9
  103. package/src/scss/components/breadcrumb.scss +6 -2
  104. package/src/scss/components/button.scss +1 -1
  105. package/src/scss/components/form-range.scss +12 -0
  106. package/src/scss/components/form.scss +1 -1
  107. package/src/scss/components/lightbox.scss +50 -77
  108. package/src/scss/components/margin.scss +13 -0
  109. package/src/scss/components/search.scss +30 -12
  110. package/src/scss/components/sticky.scss +1 -10
  111. package/src/scss/components/totop.scss +1 -1
  112. package/src/scss/components/transition.scss +4 -4
  113. package/src/scss/components/visibility.scss +3 -2
  114. package/src/scss/mixins-theme.scss +51 -12
  115. package/src/scss/mixins.scss +45 -6
  116. package/src/scss/theme/form-range.scss +10 -0
  117. package/src/scss/theme/lightbox.scss +2 -20
  118. package/src/scss/theme/search.scss +10 -6
  119. package/src/scss/variables-theme.scss +32 -20
  120. package/src/scss/variables.scss +29 -24
  121. package/tests/badge.html +2 -2
  122. package/tests/base.html +1 -1
  123. package/tests/breadcrumb.html +23 -5
  124. package/tests/card.html +24 -24
  125. package/tests/dropbar.html +15 -15
  126. package/tests/dropdown.html +6 -6
  127. package/tests/dropnav.html +100 -100
  128. package/tests/icon.html +8 -0
  129. package/tests/index.html +15 -15
  130. package/tests/lightbox.html +379 -28
  131. package/tests/margin.html +19 -0
  132. package/tests/nav.html +21 -21
  133. package/tests/navbar.html +292 -292
  134. package/tests/offcanvas.html +27 -27
  135. package/tests/placeholder.html +2 -2
  136. package/tests/slider.html +0 -1
  137. package/tests/slideshow.html +1 -1
  138. package/tests/sortable.html +5 -5
  139. package/tests/sticky-navbar.html +114 -114
  140. package/tests/transition.html +2 -1
@@ -1 +1 @@
1
- /*! UIkit 3.21.14-dev.028df7be8 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */(function(Xt,Jt){typeof exports=="object"&&typeof module<"u"?module.exports=Jt():typeof define=="function"&&define.amd?define("uikit",Jt):(Xt=typeof globalThis<"u"?globalThis:Xt||self,Xt.UIkit=Jt())})(this,function(){"use strict";const{hasOwnProperty:Xt,toString:Jt}=Object.prototype;function st(t,e){return Xt.call(t,e)}const Lo=/\B([A-Z])/g,pt=G(t=>t.replace(Lo,"-$1").toLowerCase()),Wo=/-(\w)/g,Kt=G(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(Wo,(e,i)=>i.toUpperCase())),Ot=G(t=>t.charAt(0).toUpperCase()+t.slice(1));function et(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function Zt(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function d(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function ke(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:z,from:Se}=Array,{assign:Qt}=Object;function q(t){return typeof t=="function"}function lt(t){return t!==null&&typeof t=="object"}function Pt(t){return Jt.call(t)==="[object Object]"}function Ee(t){return lt(t)&&t===t.window}function te(t){return ei(t)===9}function ee(t){return ei(t)>=1}function Te(t){return ei(t)===1}function ei(t){return!Ee(t)&&lt(t)&&t.nodeType}function Bt(t){return typeof t=="boolean"}function P(t){return typeof t=="string"}function ii(t){return typeof t=="number"}function gt(t){return ii(t)||P(t)&&!isNaN(t-parseFloat(t))}function ni(t){return!(z(t)?t.length:lt(t)&&Object.keys(t).length)}function R(t){return t===void 0}function oi(t){return Bt(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function ie(t){const e=Number(t);return isNaN(e)?!1:e}function w(t){return parseFloat(t)||0}function B(t){return t&&m(t)[0]}function m(t){return ee(t)?[t]:Array.from(t||[]).filter(ee)}function mt(t){if(Ee(t))return t;t=B(t);const e=te(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function an(t,e){return t===e||lt(t)&&lt(e)&&Object.keys(t).length===Object.keys(e).length&&oe(t,(i,n)=>i===e[n])}function si(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),n=>n===e?i:e)}function ne(t){return t[t.length-1]}function oe(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function ln(t,e){return t.slice().sort(({[e]:i=0},{[e]:n=0})=>i>n?1:n>i?-1:0)}function se(t,e){return t.reduce((i,n)=>i+w(q(e)?e(n):n[e]),0)}function jo(t,e){const i=new Set;return t.filter(({[e]:n})=>i.has(n)?!1:i.add(n))}function ri(t,e){return e.reduce((i,n)=>({...i,[n]:t[n]}),{})}function rt(t,e=0,i=1){return Math.min(Math.max(ie(t)||0,e),i)}function it(){}function Ce(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:n})=>n))-Math.max(...t.map(({[i]:n})=>n))>0)}function ai(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function li(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function cn(t,e){t={...t};for(const i in t)t=t[i]>e[i]?li(t,i,e[i]):t;return t}function qo(t,e){t=cn(t,e);for(const i in t)t=t[i]<e[i]?li(t,i,e[i]):t;return t}const hn={ratio:li,contain:cn,cover:qo};function ct(t,e,i=0,n=!1){e=m(e);const{length:o}=e;return o?(t=gt(t)?ie(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?o-1:e.indexOf(B(t)),n?rt(t,0,o-1):(t%=o,t<0?t+o:t)):-1}function G(t){const e=Object.create(null);return(i,...n)=>e[i]||(e[i]=t(i,...n))}function S(t,...e){for(const i of m(t)){const n=vt(e).filter(o=>!v(i,o));n.length&&i.classList.add(...n)}}function A(t,...e){for(const i of m(t)){const n=vt(e).filter(o=>v(i,o));n.length&&i.classList.remove(...n)}}function _e(t,e,i){i=vt(i),e=vt(e).filter(n=>!d(i,n)),A(t,e),S(t,i)}function v(t,e){return[e]=vt(e),m(t).some(i=>i.classList.contains(e))}function U(t,e,i){const n=vt(e);R(i)||(i=!!i);for(const o of m(t))for(const s of n)o.classList.toggle(s,i)}function vt(t){return t?z(t)?t.map(vt).flat():String(t).split(" ").filter(Boolean):[]}function g(t,e,i){var n;if(lt(e)){for(const o in e)g(t,o,e[o]);return}if(R(i))return(n=B(t))==null?void 0:n.getAttribute(e);for(const o of m(t))q(i)&&(i=i.call(o,g(o,e))),i===null?re(o,e):o.setAttribute(e,i)}function ht(t,e){return m(t).some(i=>i.hasAttribute(e))}function re(t,e){m(t).forEach(i=>i.removeAttribute(e))}function Dt(t,e){for(const i of[e,`data-${e}`])if(ht(t,i))return g(t,i)}const bt=typeof window<"u",wt=bt&&document.dir==="rtl",Mt=bt&&"ontouchstart"in window,At=bt&&window.PointerEvent,Nt=At?"pointerdown":Mt?"touchstart":"mousedown",Ro=At?"pointermove":Mt?"touchmove":"mousemove",It=At?"pointerup":Mt?"touchend":"mouseup",ae=At?"pointerenter":Mt?"":"mouseenter",Oe=At?"pointerleave":Mt?"":"mouseleave",Pe=At?"pointercancel":"touchcancel",Uo={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function ci(t){return m(t).some(e=>Uo[e.tagName.toLowerCase()])}const Vo=bt&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function W(t){return m(t).some(e=>Vo.call(e))}const Be="input,select,textarea,button";function hi(t){return m(t).some(e=>E(e,Be))}const De=`${Be},a[href],[tabindex]`;function ui(t){return E(t,De)}function D(t){var e;return(e=B(t))==null?void 0:e.parentElement}function le(t,e){return m(t).filter(i=>E(i,e))}function E(t,e){return m(t).some(i=>i.matches(e))}function ce(t,e){const i=[];for(;t=D(t);)(!e||E(t,e))&&i.push(t);return i}function Q(t,e){t=B(t);const i=t?Se(t.children):[];return e?le(i,e):i}function Ft(t,e){return e?m(t).indexOf(B(e)):Q(D(t)).indexOf(t)}function Ht(t){return t=B(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function fi(t){if(Ht(t)){const{hash:e,ownerDocument:i}=B(t),n=decodeURIComponent(e).slice(1);return i.getElementById(n)||i.getElementsByName(n)[0]}}function V(t,e){return di(t,un(t,e))}function he(t,e){return ue(t,un(t,e))}function di(t,e){return B(pn(t,B(e),"querySelector"))}function ue(t,e){return m(pn(t,B(e),"querySelectorAll"))}function un(t,e=document){return te(e)||fn(t).isContextSelector?e:e.ownerDocument}const Yo=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Go=/(\([^)]*\)|[^,])+/g,fn=G(t=>{let e=!1;if(!t||!P(t))return{};const i=[];for(let n of t.match(Go))n=n.trim().replace(Yo,"$1 *"),e||(e=["!","+","~","-",">"].includes(n[0])),i.push(n);return{selector:i.join(","),selectors:i,isContextSelector:e}}),Xo=/(\([^)]*\)|\S)*/,dn=G(t=>{t=t.slice(1).trim();const[e]=t.match(Xo);return[e,t.slice(e.length+1)]});function pn(t,e=document,i){const n=fn(t);if(!n.isContextSelector)return n.selector?pi(e,i,n.selector):t;t="";const o=n.selectors.length===1;for(let s of n.selectors){let r,a=e;if(s[0]==="!"&&([r,s]=dn(s),a=e.parentElement.closest(r),!s&&o)||a&&s[0]==="-"&&([r,s]=dn(s),a=a.previousElementSibling,a=E(a,r)?a:null,!s&&o))return a;if(a){if(o)return s[0]==="~"||s[0]==="+"?(s=`:scope > :nth-child(${Ft(a)+1}) ${s}`,a=a.parentElement):s[0]===">"&&(s=`:scope ${s}`),pi(a,i,s);t+=`${t?",":""}${Jo(a)} ${s}`}}return te(e)||(e=e.ownerDocument),pi(e,i,t)}function pi(t,e,i){try{return t[e](i)}catch{return null}}function Jo(t){const e=[];for(;t.parentNode;){const i=g(t,"id");if(i){e.unshift(`#${gi(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${Ft(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function gi(t){return P(t)?CSS.escape(t):""}function x(...t){let[e,i,n,o,s=!1]=vi(t);o.length>1&&(o=Zo(o)),s!=null&&s.self&&(o=Qo(o)),n&&(o=Ko(n,o));for(const r of i)for(const a of e)a.addEventListener(r,o,s);return()=>mi(e,i,o,s)}function mi(...t){let[e,i,,n,o=!1]=vi(t);for(const s of i)for(const r of e)r.removeEventListener(s,n,o)}function N(...t){const[e,i,n,o,s=!1,r]=vi(t),a=x(e,i,n,l=>{const h=!r||r(l);h&&(a(),o(l,h))},s);return a}function C(t,e,i){return bi(t).every(n=>n.dispatchEvent(Me(e,!0,!0,i)))}function Me(t,e=!0,i=!1,n){return P(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function vi(t){return t[0]=bi(t[0]),P(t[1])&&(t[1]=t[1].split(" ")),q(t[2])&&t.splice(2,0,!1),t}function Ko(t,e){return i=>{const n=t[0]===">"?ue(t,i.currentTarget).reverse().find(o=>o.contains(i.target)):i.target.closest(t);n&&(i.current=n,e.call(this,i),delete i.current)}}function Zo(t){return e=>z(e.detail)?t(e,...e.detail):t(e)}function Qo(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function gn(t){return t&&"addEventListener"in t}function ts(t){return gn(t)?t:B(t)}function bi(t){return z(t)?t.map(ts).filter(Boolean):P(t)?ue(t):gn(t)?[t]:m(t)}function ut(t){return t.pointerType==="touch"||!!t.touches}function zt(t){var e,i;const{clientX:n,clientY:o}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:o}}const es={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){const o=m(t);for(const s of o)if(P(e)){if(e=wi(e),R(i))return getComputedStyle(s).getPropertyValue(e);s.style.setProperty(e,gt(i)&&!es[e]?`${i}px`:i||ii(i)?i:"",n)}else if(z(e)){const r={};for(const a of e)r[a]=c(s,a);return r}else if(lt(e))for(const r in e)c(s,r,e[r],i);return o[0]}const wi=G(t=>{if(et(t,"--"))return t;t=pt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n=`-${i}-${t}`;if(n in e)return n}}),$i="uk-transition",yi="transitionend",xi="transitioncanceled";function is(t,e,i=400,n="linear"){return i=Math.round(i),Promise.all(m(t).map(o=>new Promise((s,r)=>{for(const l in e)c(o,l);const a=setTimeout(()=>C(o,yi),i);N(o,[yi,xi],({type:l})=>{clearTimeout(a),A(o,$i),c(o,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),l===xi?r():s(o)},{self:!0}),S(o,$i),c(o,{transitionProperty:Object.keys(e).map(wi).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:n,...e})})))}const X={start:is,async stop(t){C(t,yi),await Promise.resolve()},async cancel(t){C(t,xi),await Promise.resolve()},inProgress(t){return v(t,$i)}},fe="uk-animation",mn="animationend",Ae="animationcanceled";function vn(t,e,i=200,n,o){return Promise.all(m(t).map(s=>new Promise((r,a)=>{v(s,fe)&&C(s,Ae);const l=[e,fe,`${fe}-${o?"leave":"enter"}`,n&&`uk-transform-origin-${n}`,o&&`${fe}-reverse`],h=setTimeout(()=>C(s,mn),i);N(s,[mn,Ae],({type:u})=>{clearTimeout(h),u===Ae?a():r(s),c(s,"animationDuration",""),A(s,l)},{self:!0}),c(s,"animationDuration",`${i}ms`),S(s,l)})))}const ft={in:vn,out(t,e,i,n){return vn(t,e,i,n,!0)},inProgress(t){return v(t,fe)},cancel(t){C(t,Ae)}};function ns(t){if(document.readyState!=="loading"){t();return}N(document,"DOMContentLoaded",t)}function I(t,...e){return e.some(i=>{var n;return((n=t==null?void 0:t.tagName)==null?void 0:n.toLowerCase())===i.toLowerCase()})}function bn(t){return t=$(t),t.innerHTML="",t}function Ne(t,e){return R(e)?$(t).innerHTML:tt(bn(t),e)}const os=Fe("prepend"),tt=Fe("append"),ki=Fe("before"),Ie=Fe("after");function Fe(t){return function(e,i){var n;const o=m(P(i)?Lt(i):i);return(n=$(e))==null||n[t](...o),wn(o)}}function $t(t){m(t).forEach(e=>e.remove())}function He(t,e){for(e=B(ki(t,e));e.firstElementChild;)e=e.firstElementChild;return tt(e,t),e}function Si(t,e){return m(m(t).map(i=>i.hasChildNodes()?He(Se(i.childNodes),e):tt(i,e)))}function de(t){m(t).map(D).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const ss=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Lt(t){const e=ss.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),wn(i.content.childNodes)}function wn(t){return t.length>1?t:t[0]}function yt(t,e){if(Te(t))for(e(t),t=t.firstElementChild;t;)yt(t,e),t=t.nextElementSibling}function $(t,e){return $n(t)?B(Lt(t)):di(t,e)}function F(t,e){return $n(t)?m(Lt(t)):ue(t,e)}function $n(t){return P(t)&&et(t.trim(),"<")}const xt={width:["left","right"],height:["top","bottom"]};function _(t){const e=Te(t)?B(t).getBoundingClientRect():{height:at(t),width:ze(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function b(t,e){e&&c(t,{left:0,top:0});const i=_(t);if(t){const{scrollY:n,scrollX:o}=mt(t),s={height:n,width:o};for(const r in xt)for(const a of xt[r])i[a]+=s[r]}if(!e)return i;for(const n of["left","top"])c(t,n,e[n]-i[n])}function rs(t){let{top:e,left:i}=b(t);const{ownerDocument:{body:n,documentElement:o},offsetParent:s}=B(t);let r=s||o;for(;r&&(r===n||r===o)&&c(r,"position")==="static";)r=r.parentNode;if(Te(r)){const a=b(r);e-=a.top+w(c(r,"borderTopWidth")),i-=a.left+w(c(r,"borderLeftWidth"))}return{top:e-w(c(t,"marginTop")),left:i-w(c(t,"marginLeft"))}}function pe(t){t=B(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+w(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+w(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=mt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const at=yn("height"),ze=yn("width");function yn(t){const e=Ot(t);return(i,n)=>{if(R(n)){if(Ee(i))return i[`inner${e}`];if(te(i)){const o=i.documentElement;return Math.max(o[`offset${e}`],o[`scroll${e}`])}return i=B(i),n=c(i,t),n=n==="auto"?i[`offset${e}`]:w(n)||0,n-Wt(i,t)}else return c(i,t,!n&&n!==0?"":+n+Wt(i,t)+"px")}}function Wt(t,e,i="border-box"){return c(t,"boxSizing")===i?se(xt[e],n=>w(c(t,`padding-${n}`))+w(c(t,`border-${n}-width`))):0}function xn(t){for(const e in xt)for(const i in xt[e])if(xt[e][i]===t)return xt[e][1-i];return t}function J(t,e="width",i=window,n=!1){return P(t)?se(ls(t),o=>{const s=hs(o);return s?us(s==="vh"?fs():s==="vw"?ze(mt(i)):n?i[`offset${Ot(e)}`]:_(i)[e],o):o}):w(t)}const as=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,ls=G(t=>t.toString().replace(/\s/g,"").match(as)||[]),cs=/(?:v[hw]|%)$/,hs=G(t=>(t.match(cs)||[])[0]);function us(t,e){return t*w(e)/100}let ge,jt;function fs(){return ge||(jt||(jt=$("<div>"),c(jt,{height:"100vh",position:"fixed"}),x(window,"resize",()=>ge=null)),tt(document.body,jt),ge=jt.clientHeight,$t(jt),ge)}const Ei={read:ds,write:ps,clear:gs,flush:kn},Le=[],We=[];function ds(t){return Le.push(t),Ci(),t}function ps(t){return We.push(t),Ci(),t}function gs(t){En(Le,t),En(We,t)}let Ti=!1;function kn(){Sn(Le),Sn(We.splice(0)),Ti=!1,(Le.length||We.length)&&Ci()}function Ci(){Ti||(Ti=!0,queueMicrotask(kn))}function Sn(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function En(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}class Tn{init(){this.positions=[];let e;this.unbind=x(document,"mousemove",i=>e=zt(i)),this.interval=setInterval(()=>{e&&(this.positions.push(e),this.positions.length>5&&this.positions.shift())},50)}cancel(){var e;(e=this.unbind)==null||e.call(this),clearInterval(this.interval)}movesTo(e){if(!this.positions||this.positions.length<2)return!1;const i=_(e),{left:n,right:o,top:s,bottom:r}=i,[a]=this.positions,l=ne(this.positions),h=[a,l];return ai(l,i)?!1:[[{x:n,y:s},{x:o,y:r}],[{x:n,y:r},{x:o,y:s}]].some(f=>{const p=ms(h,f);return p&&ai(p,i)})}}function ms([{x:t,y:e},{x:i,y:n}],[{x:o,y:s},{x:r,y:a}]){const l=(a-s)*(i-t)-(r-o)*(n-e);if(l===0)return!1;const h=((r-o)*(e-s)-(a-s)*(t-o))/l;return h<0?!1:{x:t+h*(i-t),y:e+h*(n-e)}}function Cn(t,e,i={},{intersecting:n=!0}={}){const o=new IntersectionObserver(n?(s,r)=>{s.some(a=>a.isIntersecting)&&e(s,r)}:e,i);for(const s of m(t))o.observe(s);return o}const vs=bt&&window.ResizeObserver;function me(t,e,i={box:"border-box"}){if(vs)return _n(ResizeObserver,t,e,i);const n=[x(window,"load resize",e),x(document,"loadedmetadata load",e,!0)];return{disconnect:()=>n.map(o=>o())}}function _i(t){return{disconnect:x([window,window.visualViewport],"resize",t)}}function Oi(t,e,i){return _n(MutationObserver,t,e,i)}function _n(t,e,i,n){const o=new t(i);for(const s of m(e))o.observe(s,n);return o}function Pi(t){Re(t)&&Bi(t,{func:"playVideo",method:"play"}),qe(t)&&t.play().catch(it)}function je(t){Re(t)&&Bi(t,{func:"pauseVideo",method:"pause"}),qe(t)&&t.pause()}function On(t){Re(t)&&Bi(t,{func:"mute",method:"setVolume",value:0}),qe(t)&&(t.muted=!0)}function Pn(t){return qe(t)||Re(t)}function qe(t){return I(t,"video")}function Re(t){return I(t,"iframe")&&(Bn(t)||Dn(t))}function Bn(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Dn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Bi(t,e){await ws(t),Mn(t,e)}function Mn(t,e){t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}const Di="_ukPlayer";let bs=0;function ws(t){if(t[Di])return t[Di];const e=Bn(t),i=Dn(t),n=++bs;let o;return t[Di]=new Promise(s=>{e&&N(t,"load",()=>{const r=()=>Mn(t,{event:"listening",id:n});o=setInterval(r,100),r()}),N(window,"message",s,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===n&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===n}catch{}}),t.src=`${t.src}${d(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${n}`}`}).then(()=>clearInterval(o))}function $s(t,e=0,i=0){return W(t)?Ce(...Rt(t).map(n=>{const{top:o,left:s,bottom:r,right:a}=K(n);return{top:o-e,left:s-i,bottom:r+e,right:a+i}}).concat(b(t))):!1}function An(t,{offset:e=0}={}){const i=W(t)?qt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:h,scrollHeight:u,offsetHeight:f}=a,p=K(a),O=u-p.height,{height:y,top:k}=i[l-1]?K(i[l-1]):b(t);let T=Math.ceil(k-p.top-e+h);return e>0&&f<y+e?T+=e:e=0,T>O?(e-=T-O,T=O):T<0&&(e-=T,T=0),()=>n(a,T-h,t,O).then(r)},()=>Promise.resolve())();function n(r,a,l,h){return new Promise(u=>{const f=r.scrollTop,p=o(Math.abs(a)),O=Date.now(),y=Ni(r)===r,k=b(l).top+(y?0:f);let T=0,Ct=15;(function sn(){const Qe=s(rt((Date.now()-O)/p));let ot=0;i[0]===r&&f+a<h&&(ot=b(l).top+(y?0:r.scrollTop)-k-_(Mi(l)).height),c(r,"scrollBehavior")!=="auto"&&c(r,"scrollBehavior","auto"),r.scrollTop=f+(a+ot)*Qe,c(r,"scrollBehavior",""),Qe===1&&(T===ot||!Ct--)?u():(T=ot,requestAnimationFrame(sn))})()})}function o(r){return 40*Math.pow(r,.375)}function s(r){return .5*(1-Math.cos(Math.PI*r))}}function Nn(t,e=0,i=0){if(!W(t))return 0;const n=kt(t,!0),{scrollHeight:o,scrollTop:s}=n,{height:r}=K(n),a=o-r,l=pe(t)[0]-pe(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return h<u?rt((s-h)/(u-h)):1}function qt(t,e=!1,i=[]){const n=Ni(t);let o=ce(t).reverse();o=o.slice(o.indexOf(n)+1);const s=ke(o,r=>c(r,"position")==="fixed");return~s&&(o=o.slice(s)),[n].concat(o.filter(r=>c(r,"overflow").split(" ").some(a=>d(["auto","scroll",...i],a))&&(!e||r.scrollHeight>K(r).height))).reverse()}function kt(...t){return qt(...t)[0]}function Rt(t){return qt(t,!1,["hidden","clip"])}function K(t){const e=mt(t),i=Ni(t),n=!ee(t)||t.contains(i);if(n&&e.visualViewport){let{height:l,width:h,scale:u,pageTop:f,pageLeft:p}=e.visualViewport;return l=Math.round(l*u),h=Math.round(h*u),{height:l,width:h,top:f,left:p,bottom:f+l,right:p+h}}let o=b(n?e:t);if(c(t,"display")==="inline")return o;const{body:s,documentElement:r}=e.document,a=n?i===r||i.clientHeight<s.clientHeight?i:s:t;for(let[l,h,u,f]of[["width","x","left","right"],["height","y","top","bottom"]]){const p=o[l]%1;o[u]+=w(c(a,`border-${u}-width`)),o[l]=o[h]=a[`client${Ot(l)}`]-(p?p<.5?-p:1-p:0),o[f]=o[l]+o[u]}return o}function Mi(t){const{left:e,width:i,top:n}=_(t);for(const o of n?[0,n]:[0]){let s;for(const r of mt(t).document.elementsFromPoint(e+i/2,o))!r.contains(t)&&!v(r,"uk-togglable-leave")&&(Ai(r,"fixed")&&In(ce(t).reverse().find(a=>!a.contains(r)&&!Ai(a,"static")))<In(r)||Ai(r,"sticky")&&D(r).contains(t))&&(!s||_(s).height<_(r).height)&&(s=r);if(s)return s}}function In(t){return w(c(t,"zIndex"))}function Ai(t,e){return c(t,"position")===e}function Ni(t){return mt(t).document.scrollingElement}const Y=[["width","x","left","right"],["height","y","top","bottom"]];function Fn(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},z(e)||(e=[e,e]),b(t,Hn(t,e,i))}function Hn(t,e,i){const n=zn(t,e,i),{boundary:o,viewportOffset:s=0,placement:r}=i;let a=n;for(const[l,[h,,u,f]]of Object.entries(Y)){const p=ys(t,e[l],s,o,l);if(Ue(n,p,l))continue;let O=0;if(r[l]==="flip"){const y=i.attach.target[l];if(y===f&&n[f]<=p[f]||y===u&&n[u]>=p[u])continue;O=ks(t,e,i,l)[u]-n[u];const k=xs(t,e[l],s,l);if(!Ue(Ii(n,O,l),k,l)){if(Ue(n,k,l))continue;if(i.recursion)return!1;const T=Ss(t,e,i);if(T&&Ue(T,k,1-l))return T;continue}}else if(r[l]==="shift"){const y=b(e[l]),{offset:k}=i;O=rt(rt(n[u],p[u],p[f]-n[h]),y[u]-n[h]+k[l],y[f]-k[l])-n[u]}a=Ii(a,O,l)}return a}function zn(t,e,i){let{attach:n,offset:o}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},s=b(t);for(const[r,[a,,l,h]]of Object.entries(Y)){const u=n.target[r]===n.element[r]?K(e[r]):b(e[r]);s=Ii(s,u[l]-s[l]+Ln(n.target[r],h,u[a])-Ln(n.element[r],h,s[a])+ +o[r],r)}return s}function Ii(t,e,i){const[,n,o,s]=Y[i],r={...t};return r[o]=t[n]=t[o]+e,r[s]+=e,r}function Ln(t,e,i){return t==="center"?i/2:t===e?i:0}function ys(t,e,i,n,o){let s=jn(...Wn(t,e).map(K));return i&&(s[Y[o][2]]+=i,s[Y[o][3]]-=i),n&&(s=jn(s,b(z(n)?n[o]:n))),s}function xs(t,e,i,n){const[o,s,r,a]=Y[n],[l]=Wn(t,e),h=K(l);return["auto","scroll"].includes(c(l,`overflow-${s}`))&&(h[r]-=l[`scroll${Ot(r)}`],h[a]=h[r]+l[`scroll${Ot(o)}`]),h[r]+=i,h[a]-=i,h}function Wn(t,e){return Rt(e).filter(i=>i.contains(t))}function jn(...t){let e={};for(const i of t)for(const[,,n,o]of Y)e[n]=Math.max(e[n]||0,i[n]),e[o]=Math.min(...[e[o],i[o]].filter(Boolean));return e}function Ue(t,e,i){const[,,n,o]=Y[i];return t[n]>=e[n]&&t[o]<=e[o]}function ks(t,e,{offset:i,attach:n},o){return zn(t,e,{attach:{element:qn(n.element,o),target:qn(n.target,o)},offset:Es(i,o)})}function Ss(t,e,i){return Hn(t,e,{...i,attach:{element:i.attach.element.map(Rn).reverse(),target:i.attach.target.map(Rn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function qn(t,e){const i=[...t],n=Y[e].indexOf(t[e]);return~n&&(i[e]=Y[e][1-n%2+2]),i}function Rn(t){for(let e=0;e<Y.length;e++){const i=Y[e].indexOf(t);if(~i)return Y[1-e][i%2+2]}}function Es(t,e){return t=[...t],t[e]*=-1,t}var Ts=Object.freeze({__proto__:null,$,$$:F,Animation:ft,Dimensions:hn,MouseTracker:Tn,Transition:X,addClass:S,after:Ie,append:tt,apply:yt,assign:Qt,attr:g,before:ki,boxModelAdjust:Wt,camelize:Kt,children:Q,clamp:rt,createEvent:Me,css:c,data:Dt,dimensions:_,each:oe,empty:bn,endsWith:Zt,escape:gi,fastdom:Ei,filter:le,find:di,findAll:ue,findIndex:ke,flipPosition:xn,fragment:Lt,getCoveringElement:Mi,getEventPos:zt,getIndex:ct,getTargetedElement:fi,hasAttr:ht,hasClass:v,hasOwn:st,hasTouch:Mt,height:at,html:Ne,hyphenate:pt,inBrowser:bt,includes:d,index:Ft,intersectRect:Ce,isArray:z,isBoolean:Bt,isDocument:te,isElement:Te,isEmpty:ni,isEqual:an,isFocusable:ui,isFunction:q,isInView:$s,isInput:hi,isNode:ee,isNumber:ii,isNumeric:gt,isObject:lt,isPlainObject:Pt,isRtl:wt,isSameSiteAnchor:Ht,isString:P,isTag:I,isTouch:ut,isUndefined:R,isVideo:Pn,isVisible:W,isVoidElement:ci,isWindow:Ee,last:ne,matches:E,memoize:G,mute:On,noop:it,observeIntersection:Cn,observeMutation:Oi,observeResize:me,observeViewportResize:_i,off:mi,offset:b,offsetPosition:pe,offsetViewport:K,on:x,once:N,overflowParents:Rt,parent:D,parents:ce,pause:je,pick:ri,play:Pi,pointInRect:ai,pointerCancel:Pe,pointerDown:Nt,pointerEnter:ae,pointerLeave:Oe,pointerMove:Ro,pointerUp:It,position:rs,positionAt:Fn,prepend:os,propName:wi,query:V,queryAll:he,ready:ns,remove:$t,removeAttr:re,removeClass:A,replaceClass:_e,scrollIntoView:An,scrollParent:kt,scrollParents:qt,scrolledOver:Nn,selFocusable:De,selInput:Be,sortBy:ln,startsWith:et,sumBy:se,swap:si,toArray:Se,toBoolean:oi,toEventTargets:bi,toFloat:w,toNode:B,toNodes:m,toNumber:ie,toPx:J,toWindow:mt,toggleClass:U,trigger:C,ucfirst:Ot,uniqueBy:jo,unwrap:de,width:ze,wrapAll:He,wrapInner:Si});function Cs(t){t._data={},t._updates=[...t.$options.update||[]],t._disconnect.push(()=>t._updates=t._data=null)}function _s(t,e){t._updates.unshift(e)}function ve(t,e="update"){t._connected&&t._updates.length&&(t._queued||(t._queued=new Set,Ei.read(()=>{t._connected&&Os(t,t._queued),t._queued=null})),t._queued.add(e.type||e))}function Os(t,e){for(const{read:i,write:n,events:o=[]}of t._updates){if(!e.has("update")&&!o.some(r=>e.has(r)))continue;let s;i&&(s=i.call(t,t._data,e),s&&Pt(s)&&Qt(t._data,s)),n&&s!==!1&&Ei.write(()=>{t._connected&&n.call(t,t._data,e)})}}function Ps(t){t._watches=[];for(const e of t.$options.watch||[])for(const[i,n]of Object.entries(e))Un(t,n,i);t._initial=!0}function Un(t,e,i){t._watches.push({name:i,...Pt(e)?e:{handler:e}})}function Bs(t,e){for(const{name:i,handler:n,immediate:o=!0}of t._watches)(t._initial&&o||st(e,i)&&!an(e[i],t[i]))&&n.call(t,t[i],e[i]);t._initial=!1}function Ds(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)Yn(t,i,e[i])}const Vn={subtree:!0,childList:!0};function Yn(t,e,i){t._hasComputed=!0,Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:o,$el:s}=t;if(!st(n,e)&&(n[e]=(i.get||i).call(t,o,s),i.observe&&t._computedObserver)){const r=i.observe.call(t,o);t._computedObserver.observe(["~","+","-"].includes(r[0])?s.parentElement:s.getRootNode(),Vn)}return n[e]},set(n){const{_computed:o}=t;o[e]=i.set?i.set.call(t,n):n,R(o[e])&&delete o[e]}})}function Ms(t){t._hasComputed&&(_s(t,{read:()=>Bs(t,Gn(t)),events:["resize","computed"]}),t._computedObserver=Oi(t.$el,()=>ve(t,"computed"),Vn),t._disconnect.push(()=>{t._computedObserver.disconnect(),t._computedObserver=null,Gn(t)}))}function Gn(t){const e={...t._computed};return t._computed={},e}function As(t){for(const e of t.$options.events||[])if(st(e,"handler"))Xn(t,e);else for(const i in e)Xn(t,e[i],i)}function Xn(t,e,i){let{name:n,el:o,handler:s,capture:r,passive:a,delegate:l,filter:h,self:u}=Pt(e)?e:{name:i,handler:e};o=o?o.call(t,t):t.$el,!(!o||z(o)&&!o.length||h&&!h.call(t,t))&&t._disconnect.push(x(o,n,l==null?void 0:l.call(t,t),s.bind(t),{passive:a,capture:r,self:u}))}function Ns(t){for(const e of t.$options.observe||[])Is(t,e)}function Is(t,e){let{observe:i,target:n=t.$el,handler:o,options:s,filter:r,args:a}=e;if(r&&!r.call(t,t))return;const l=`_observe${t._disconnect.length}`;q(n)&&!st(t,l)&&Yn(t,l,()=>{const f=n.call(t,t);return z(f)?m(f):f}),o=P(o)?t[o]:o.bind(t),q(s)&&(s=s.call(t,t));const h=st(t,l)?t[l]:n,u=i(h,o,s,a);q(n)&&z(t[l])&&Un(t,{handler:Fs(u,s),immediate:!1},l),t._disconnect.push(()=>u.disconnect())}function Fs(t,e){return(i,n)=>{for(const o of n)d(i,o)||(t.unobserve?t.unobserve(o):t.observe&&t.disconnect());for(const o of i)(!d(n,o)||!t.unobserve)&&t.observe(o,e)}}const H={};H.events=H.watch=H.observe=H.created=H.beforeConnect=H.connected=H.beforeDisconnect=H.disconnected=H.destroy=Fi,H.args=function(t,e){return e!==!1&&Fi(e||t)},H.update=function(t,e){return ln(Fi(t,q(e)?{read:e}:e),"order")},H.props=function(t,e){if(z(e)){const i={};for(const n of e)i[n]=String;e=i}return H.methods(t,e)},H.computed=H.methods=function(t,e){return e?t?{...t,...e}:e:t},H.i18n=H.data=function(t,e,i){return i?Jn(t,e,i):e?t?function(n){return Jn(t,e,n)}:e:t};function Jn(t,e,i){return H.computed(q(t)?t.call(i,i):t,q(e)?e.call(i,i):e)}function Fi(t,e){return t=t&&!z(t)?[t]:t,e?t?t.concat(e):z(e)?e:[e]:t}function Hs(t,e){return R(e)?t:e}function be(t,e,i){const n={};if(q(e)&&(e=e.options),e.extends&&(t=be(t,e.extends,i)),e.mixins)for(const s of e.mixins)t=be(t,s,i);for(const s in t)o(s);for(const s in e)st(t,s)||o(s);function o(s){n[s]=(H[s]||Hs)(t[s],e[s],i)}return n}function Hi(t,e=[]){try{return t?et(t,"{")?JSON.parse(t):e.length&&!d(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[o,s]=n.split(/:(.*)/);return o&&!R(s)&&(i[o.trim()]=s.trim()),i},{}):{}}catch{return{}}}function zi(t,e){return t===Boolean?oi(e):t===Number?ie(e):t==="list"?Ls(e):t===Object&&P(e)?Hi(e):t?t(e):e}const zs=/,(?![^(]*\))/;function Ls(t){return z(t)?t:P(t)?t.split(zs).map(e=>gt(e)?ie(e):oi(e.trim())):[t]}function Ws(t){const{$options:e,$props:i}=t,n=Kn(e);Qt(i,n);const{computed:o,methods:s}=e;for(let r in i)r in n&&(!o||!st(o,r))&&(!s||!st(s,r))&&(t[r]=i[r])}function Kn(t){const e={},{args:i=[],props:n={},el:o,id:s}=t;if(!n)return e;for(const a in n){const l=pt(a);let h=Dt(o,l);R(h)||(h=n[a]===Boolean&&h===""?!0:zi(n[a],h),!(l==="target"&&et(h,"_"))&&(e[a]=h))}const r=Hi(Dt(o,s),i);for(const a in r){const l=Kt(a);R(n[l])||(e[l]=zi(n[l],r[a]))}return e}const js=G((t,e)=>{const i=Object.keys(e),n=i.concat(t).map(o=>[pt(o),`data-${pt(o)}`]).flat();return{attributes:i,filter:n}});function qs(t){const{$options:e,$props:i}=t,{id:n,props:o,el:s}=e;if(!o)return;const{attributes:r,filter:a}=js(n,o),l=new MutationObserver(h=>{const u=Kn(e);h.some(({attributeName:f})=>{const p=f.replace("data-","");return(p===n?r:[Kt(p),Kt(f)]).some(O=>!R(u[O])&&u[O]!==i[O])})&&t.$reset()});l.observe(s,{attributes:!0,attributeFilter:a}),t._disconnect.push(()=>l.disconnect())}function Ut(t,e){var i;(i=t.$options[e])==null||i.forEach(n=>n.call(t))}function Li(t){t._connected||(Ws(t),Ut(t,"beforeConnect"),t._connected=!0,t._disconnect=[],As(t),Cs(t),Ps(t),Ns(t),qs(t),Ms(t),Ut(t,"connected"),ve(t))}function Wi(t){t._connected&&(Ut(t,"beforeDisconnect"),t._disconnect.forEach(e=>e()),t._disconnect=null,Ut(t,"disconnected"),t._connected=!1)}let Rs=0;function Zn(t,e={}){e.data=Ys(e,t.constructor.options),t.$options=be(t.constructor.options,e,t),t.$props={},t._uid=Rs++,Us(t),Vs(t),Ds(t),Ut(t,"created"),e.el&&t.$mount(e.el)}function Us(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function Vs(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function Ys({data:t={}},{args:e=[],props:i={}}){z(t)&&(t=t.slice(0,e.length).reduce((n,o,s)=>(Pt(o)?Qt(n,o):n[e[s]]=o,n),{}));for(const n in t)R(t[n])?delete t[n]:i[n]&&(t[n]=zi(i[n],t[n]));return t}const Z=function(t){Zn(this,t)};Z.util=Ts,Z.options={},Z.version="3.21.14-dev.028df7be8";const Gs="uk-",St="__uikit__",Vt={};function Qn(t,e){var i,n;const o=Gs+pt(t);if(!e)return Vt[o].options||(Vt[o]=Z.extend(Vt[o])),Vt[o];t=Kt(t),Z[t]=(r,a)=>we(t,r,a);const s=(i=e.options)!=null?i:{...e};return s.id=o,s.name=t,(n=s.install)==null||n.call(s,Z,s,t),Z._initialized&&!s.functional&&requestAnimationFrame(()=>we(t,`[${o}],[data-${o}]`)),Vt[o]=s}function we(t,e,i,...n){const o=Qn(t);return o.options.functional?new o({data:Pt(e)?e:[e,i,...n]}):e?F(e).map(s)[0]:s();function s(r){const a=Ve(r,t);if(a)if(i)a.$destroy();else return a;return new o({el:r,data:i})}}function $e(t){return(t==null?void 0:t[St])||{}}function Ve(t,e){return $e(t)[e]}function Xs(t,e){t[St]||(t[St]={}),t[St][e.$options.name]=e}function Js(t,e){var i;(i=t[St])==null||delete i[e.$options.name],ni(t[St])&&delete t[St]}function Ks(t){bt&&window.MutationObserver&&(document.body?requestAnimationFrame(()=>to(t)):new MutationObserver((e,i)=>{document.body&&(to(t),i.disconnect())}).observe(document.documentElement,{childList:!0}))}function to(t){C(document,"uikit:init",t),document.body&&yt(document.body,eo),new MutationObserver(Zs).observe(document,{subtree:!0,childList:!0,attributes:!0}),t._initialized=!0}function Zs(t){var e;for(const{addedNodes:i,removedNodes:n,target:o,attributeName:s}of t){for(const a of i)yt(a,eo);for(const a of n)yt(a,Qs);const r=s&&io(s);r&&(ht(o,s)?we(r,o):(e=Ve(o,r))==null||e.$destroy())}}function eo(t){const e=$e(t);for(const i in e)Li(e[i]);for(const i of t.getAttributeNames()){const n=io(i);n&&we(n,t)}}function Qs(t){const e=$e(t);for(const i in e)Wi(e[i])}function io(t){et(t,"data-")&&(t=t.slice(5));const e=Vt[t];return e&&(e.options||e).name}function tr(t){t.component=Qn,t.getComponents=$e,t.getComponent=Ve,t.update=no,t.use=function(i){if(!i.installed)return i.call(null,this),i.installed=!0,this},t.mixin=function(i,n){n=(P(n)?this.component(n):n)||this,n.options=be(n.options,i)},t.extend=function(i){i||(i={});const n=this,o=function(r){Zn(this,r)};return o.prototype=Object.create(n.prototype),o.prototype.constructor=o,o.options=be(n.options,i),o.super=n,o.extend=n.extend,o};let e;Object.defineProperty(t,"container",{get(){return e||document.body},set(i){e=$(i)}})}function no(t,e){t=t?B(t):document.body;for(const i of ce(t).reverse())oo(i,e);yt(t,i=>oo(i,e))}function oo(t,e){const i=$e(t);for(const n in i)ve(i[n],e)}function er(t){t.prototype.$mount=function(e){const i=this;Xs(e,i),i.$options.el=e,document.contains(e)&&Li(i)},t.prototype.$destroy=function(e=!1){const i=this,{el:n}=i.$options;n&&Wi(i),Ut(i,"destroy"),Js(n,i),e&&$t(i.$el)},t.prototype.$create=we,t.prototype.$emit=function(e){ve(this,e)},t.prototype.$update=function(e=this.$el,i){no(e,i)},t.prototype.$reset=function(){Wi(this),Li(this)},t.prototype.$getComponent=Ve,Object.defineProperties(t.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(t,"container")})}let ir=1;function Ye(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${ir++}`}tr(Z),er(Z);function dt(t){return ye(me,t,"resize")}function Yt(t){return ye(Cn,t)}function Ge(t){return ye(Oi,t)}function ji(t={}){return Yt({handler:function(e,i){const{targets:n=this.$el,preload:o=5}=t;for(const s of m(q(n)?n(this):n))F('[loading="lazy"]',s).slice(0,o-1).forEach(r=>re(r,"loading"));for(const s of e.filter(({isIntersecting:r})=>r).map(({target:r})=>r))i.unobserve(s)},...t})}function so(t){return ye((e,i)=>_i(i),t,"resize")}function qi(t){return ye((e,i)=>({disconnect:x(or(e),"scroll",i,{passive:!0})}),t,"scroll")}function ro(t){return{observe(e,i){return{observe:it,unobserve:it,disconnect:x(e,Nt,i,{passive:!0})}},handler(e){if(!ut(e))return;const i=zt(e),n="tagName"in e.target?e.target:D(e.target);N(document,`${It} ${Pe} scroll`,o=>{const{x:s,y:r}=zt(o);(o.type!=="scroll"&&n&&s&&Math.abs(i.x-s)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{C(n,"swipe"),C(n,`swipe${nr(i.x,i.y,s,r)}`)})})},...t}}function ye(t,e,i){return{observe:t,handler(){ve(this,i)},...e}}function nr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function or(t){return m(t).map(e=>{const{ownerDocument:i}=e,n=kt(e,!0);return n===i.scrollingElement?i:n})}var nt={connected(){S(this.$el,this.$options.id)}},Gt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:t})=>!!t[0],hasTransition:({animation:t})=>["slide","reveal"].some(e=>et(t[0],e))},methods:{async toggleElement(t,e,i){try{return await Promise.all(m(t).map(n=>{const o=Bt(e)?e:!this.isToggled(n);if(!C(n,`before${o?"show":"hide"}`,[this]))return Promise.reject();const s=(q(i)?i:i===!1||!this.hasAnimation?sr:this.hasTransition?rr:ar)(n,o,this),r=o?this.clsEnter:this.clsLeave;S(n,r),C(n,o?"show":"hide",[this]);const a=()=>{A(n,r),C(n,o?"shown":"hidden",[this])};return s?s.then(a,()=>(A(n,r),Promise.reject())):a()})),!0}catch{return!1}},isToggled(t=this.$el){return t=B(t),v(t,this.clsEnter)?!0:v(t,this.clsLeave)?!1:this.cls?v(t,this.cls.split(" ")[0]):W(t)},_toggle(t,e){if(!t)return;e=!!e;let i;this.cls?(i=d(this.cls," ")||e!==v(t,this.cls),i&&U(t,this.cls,d(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),i&&C(t,"toggled",[e,this]),F("[autofocus]",t).some(n=>W(n)?n.focus()||!0:n.blur())}}};function sr(t,e,{_toggle:i}){return ft.cancel(t),X.cancel(t),i(t,e)}async function rr(t,e,{animation:i,duration:n,velocity:o,transition:s,_toggle:r}){var a;const[l="reveal",h="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],f=u[d(u[0],h)?0:1],p=f[1]===h,y=["width","height"][u.indexOf(f)],k=`margin-${f[0]}`,T=`margin-${h}`;let Ct=_(t)[y];const sn=X.inProgress(t);await X.cancel(t),e&&r(t,!0);const Qe=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",k,T].map(zo=>[zo,t.style[zo]])),ot=_(t),rn=w(c(t,k)),Io=w(c(t,T)),_t=ot[y]+Io;!sn&&!e&&(Ct+=Io);const[ti]=Si(t,"<div>");c(ti,{boxSizing:"border-box",height:ot.height,width:ot.width,...c(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",T])}),c(t,{padding:0,border:0,minWidth:0,minHeight:0,[T]:0,width:ot.width,height:ot.height,overflow:"hidden",[y]:Ct});const Fo=Ct/_t;n=(o*_t+n)*(e?1-Fo:Fo);const Ho={[y]:e?_t:0};p&&(c(t,k,_t-Ct+rn),Ho[k]=e?rn:_t+rn),!p^l==="reveal"&&(c(ti,k,-_t+Ct),X.start(ti,{[k]:e?0:-_t},n,s));try{await X.start(t,Ho,n,s)}finally{c(t,Qe),de(ti.firstChild),e||r(t,!1)}}function ar(t,e,i){const{animation:n,duration:o,_toggle:s}=i;return e?(s(t,!0),ft.in(t,n[0],o,i.origin)):ft.out(t,n[1]||n[0],o,i.origin).then(()=>s(t,!1))}const M={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var ao={mixins:[nt,Gt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:({targets:t},e)=>F(t,e),toggles({toggle:t}){return this.items.map(e=>$(t,e))},contents({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||$(t,e)})}},watch:{items(t,e){if(e||v(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},toggles(){this.$emit()},contents(t){for(const e of t){const i=v(this.items.find(n=>n.contains(e)),this.clsOpen);Xe(e,!i)}this.$emit()}},observe:ji(),events:[{name:"click keydown",delegate:({targets:t,$props:e})=>`${t} ${e.toggle}`,async handler(t){var e;t.type==="keydown"&&t.keyCode!==M.SPACE||(t.preventDefault(),(e=this._off)==null||e.call(this),this._off=cr(t.target),await this.toggle(Ft(this.toggles,t.current)),this._off())}},{name:"shown hidden",self:!0,delegate:({targets:t})=>t,handler(){this.$emit()}}],update(){const t=le(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],n=this.contents[e];if(!i||!n)continue;i.id=Ye(this,i),n.id=Ye(this,n);const o=d(t,this.items[e]);g(i,{role:I(i,"a")?"button":null,"aria-controls":n.id,"aria-expanded":o,"aria-disabled":!this.collapsible&&t.length<2&&o}),g(n,{role:"region","aria-labelledby":i.id}),I(n,"ul")&&g(Q(n),"role","presentation")}},methods:{toggle(t,e){t=this.items[ct(t,this.items)];let i=[t];const n=le(this.items,`.${this.clsOpen}`);if(!this.multiple&&!d(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&d(n,t)))return Promise.all(i.map(o=>this.toggleElement(o,!d(n,o),(s,r)=>{if(U(s,this.clsOpen,r),e===!1||!this.animation){Xe($(this.content,s),!r);return}return lr(s,r,this)})))}}};function Xe(t,e){t&&(t.hidden=e)}async function lr(t,e,{content:i,duration:n,velocity:o,transition:s}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||$(i,t),t._wrapper||(t._wrapper=He(i,"<div>"));const a=t._wrapper;c(a,"overflow","hidden");const l=w(c(a,"height"));await X.cancel(a),Xe(i,!1);const h=se(["marginTop","marginBottom"],f=>c(i,f))+_(i).height,u=l/h;n=(o*h+n)*(e?1-u:u),c(a,"height",l),await X.start(a,{height:e?h:0},n,s),de(i),delete t._wrapper,e||Xe(i,!0)}function cr(t){const e=kt(t,!0);let i;return function n(){i=requestAnimationFrame(()=>{const{top:o}=_(t);o<0&&(e.scrollTop+=o),n()})}(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var hr={mixins:[nt,Gt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate:({selClose:t})=>t,handler(t){t.preventDefault(),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,ur),this.$destroy(!0)}}};function ur(t,e,{duration:i,transition:n,velocity:o}){const s=w(c(t,"height"));return c(t,"height",s),X.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},o*s+i,n)}var lo={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},beforeConnect(){this.autoplay==="inview"&&!ht(this.$el,"preload")&&(this.$el.preload="none"),I(this.$el,"iframe")&&!ht(this.$el,"allow")&&(this.$el.allow="autoplay"),this.autoplay==="hover"&&(I(this.$el,"video")?this.$el.tabindex=0:this.autoplay=!0),this.automute&&On(this.$el)},events:[{name:`${ae} focusin`,filter:({autoplay:t})=>d(t,"hover"),handler(t){!ut(t)||!fr(this.$el)?Pi(this.$el):je(this.$el)}},{name:`${Oe} focusout`,filter:({autoplay:t})=>d(t,"hover"),handler(t){ut(t)||je(this.$el)}}],observe:[Yt({filter:({$el:t,autoplay:e})=>e!=="hover"&&Pn(t),handler([{isIntersecting:t}]){document.fullscreenElement||(t?this.autoplay&&Pi(this.$el):je(this.$el))},args:{intersecting:!1},options:({$el:t,autoplay:e})=>({root:e==="inview"?null:D(t)})})]};function fr(t){return!t.paused&&!t.ended}var dr={mixins:[lo],props:{width:Number,height:Number},data:{automute:!0},created(){this.useObjectFit=I(this.$el,"img","video")},observe:dt({target:({$el:t})=>co(t)||D(t),filter:({useObjectFit:t})=>!t}),update:{read(){if(this.useObjectFit)return!1;const{ratio:t,cover:e}=hn,{$el:i,width:n,height:o}=this;let s={width:n,height:o};if(!n||!o){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};n?s=t(h,"width",n):o?s=t(h,"height",o):s=h}const{offsetHeight:r,offsetWidth:a}=co(i)||D(i),l=e(s,{width:a,height:r});return!l.width||!l.height?!1:l},write({height:t,width:e}){c(this.$el,{height:t,width:e})},events:["resize"]}};function co(t){for(;t=D(t);)if(c(t,"position")!=="static")return t}var Ri={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&$(t)}}},pr={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${wt?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=d(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const o=[this.flip&&"flip",this.shift&&"shift"],s={element:[this.inset?this.dir:xn(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in s)s[l].reverse();n.reverse(),o.reverse()}const r=ho(t),a=_(t);c(t,{top:-a.height,left:-a.width}),Fn(t,e,{attach:s,offset:n,boundary:i,placement:o,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t=this.$el){return J(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(d(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t=this.$el){return this.align==="center"?0:J(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(d(["left","top"],this.align)?1:-1)},getViewportOffset(t){return J(c(t,"--uk-position-viewport-offset"))}}};function ho(t){const e=kt(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}let Ui;function uo(t){const e=x(t,"touchstart",n=>{if(n.targetTouches.length!==1||E(n.target,'input[type="range"'))return;let o=zt(n).y;const s=x(t,"touchmove",r=>{const a=zt(r).y;a!==o&&(o=a,qt(r.target).some(l=>{if(!t.contains(l))return!1;let{scrollHeight:h,clientHeight:u}=l;return u<h})||r.preventDefault())},{passive:!1});N(t,"scroll touchend touchcanel",s,{capture:!0})},{passive:!0});if(Ui)return e;Ui=!0;const{scrollingElement:i}=document;return c(i,{overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:ze(window)-i.clientWidth||""}),()=>{Ui=!1,e(),c(i,{overflowY:"",touchAction:"",paddingRight:""})}}let L;var fo={mixins:[Ri,pr,Gt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean,closeOnScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1,closeOnScroll:!1},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},n){return[V(e||t,n)||window,V(i||t,n)||window]},target({target:t,targetX:e,targetY:i},n){return e||(e=t||this.targetEl),i||(i=t||this.targetEl),[e===!0?window:V(e,n),i===!0?window:V(i,n)]}},created(){this.tracker=new Tn},beforeConnect(){this.clsDrop=this.$props.clsDrop||this.$options.id},connected(){S(this.$el,"uk-drop",this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=mr(this)),this._style=ri(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),L=null),c(this.$el,this._style)},events:[{name:"click",delegate:()=>".uk-drop-close",handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate:()=>'a[href*="#"]',handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&Ht(e)&&!this.$el.contains($(i))&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),E(this.$el,":focus,:hover")||this.hide()}},{name:`${ae} focusin`,filter:({mode:t})=>d(t,"hover"),handler(t){ut(t)||this.clearTimers()}},{name:`${Oe} focusout`,filter:({mode:t})=>d(t,"hover"),handler(t){!ut(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){L=this,this.tracker.init(),g(this.targetEl,"aria-expanded",!0);const t=[vr(this),br(this),$r(this),this.autoUpdate&&po(this),this.closeOnScroll&&wr(this)];N(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0}),this.bgScroll||N(this.$el,"hidden",uo(this.$el),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){L=L===null&&this.$el.contains(t)&&this.isToggled()?this:L;return}L=this.isActive()?null:L,this.tracker.cancel(),g(this.targetEl,"aria-expanded",null)}}],update:{write(){this.isToggled()&&!v(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(L){if(e&&L.isDelaying()){this.showTimer=setTimeout(()=>E(t,":hover")&&this.show(),10);return}let i;for(;L&&i!==L&&!L.$el.contains(this.$el);)i=L,L.hide(!1,!1)}this.container&&D(this.$el)!==this.container&&tt(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelayedHide=t,t&&this.isDelaying()?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null},isActive(){return L===this},isDelaying(){return[this.$el,...F(".uk-drop",this.$el)].some(t=>this.tracker.movesTo(t))},position(){const t=ho(this.$el);A(this.$el,"uk-drop-stack"),c(this.$el,this._style),this.$el.hidden=!0;const e=this.target.map(s=>gr(this.$el,s)),i=this.getViewportOffset(this.$el),n=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[s,[r,a]]of n)this.axis!==r&&d([r,!0],this.stretch)&&c(this.$el,{[a]:Math.min(b(this.boundary[s])[a],e[s][a]-2*i),[`overflow-${r}`]:"auto"});const o=e[0].width-2*i;this.$el.hidden=!1,c(this.$el,"maxWidth",""),this.$el.offsetWidth>o&&S(this.$el,"uk-drop-stack"),c(this.$el,"maxWidth",o),this.positionAt(this.$el,this.target,this.boundary);for(const[s,[r,a,l,h]]of n)if(this.axis===r&&d([r,!0],this.stretch)){const u=Math.abs(this.getPositionOffset()),f=b(this.target[s]),p=b(this.$el);c(this.$el,{[a]:(f[l]>p[l]?f[this.inset?h:l]-Math.max(b(this.boundary[s])[l],e[s][l]+i):Math.min(b(this.boundary[s])[h],e[s][h]-i)-f[this.inset?l:h])-u,[`overflow-${r}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}t()}}};function gr(t,e){return K(Rt(e).find(i=>i.contains(t)))}function mr(t){const{$el:e}=t.$create("toggle",V(t.toggle,t.$el),{target:t.$el,mode:t.mode});return g(e,"aria-haspopup",!0),e}function vr(t){const e=()=>t.$emit(),i=[_i(e),me(Rt(t.$el).concat(t.target),e)];return()=>i.map(n=>n.disconnect())}function po(t,e=()=>t.$emit()){return x([document,...Rt(t.$el)],"scroll",e,{passive:!0})}function br(t){return x(document,"keydown",e=>{e.keyCode===M.ESC&&t.hide(!1)})}function wr(t){return po(t,()=>t.hide(!1))}function $r(t){return x(document,Nt,({target:e})=>{t.$el.contains(e)||N(document,`${It} ${Pe} scroll`,({defaultPrevented:i,type:n,target:o})=>{var s;!i&&n===It&&e===o&&!((s=t.targetEl)!=null&&s.contains(e))&&t.hide(!1)},!0)})}var go={mixins:[nt,Ri],props:{align:String,clsDrop:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean,closeOnScroll:Boolean},data:{align:wt?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1,selNavItem:"> li > a, > ul > li > a"},computed:{dropbarAnchor:({dropbarAnchor:t},e)=>V(t,e)||e,dropbar({dropbar:t}){return t?(t=this._dropbar||V(t,this.$el)||$(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=$("<div></div>"))):null},dropContainer(t,e){return this.container||e},dropdowns({clsDrop:t},e){var i;const n=F(`.${t}`,e);if(this.dropContainer!==e)for(const o of F(`.${t}`,this.dropContainer)){const s=(i=this.getDropdown(o))==null?void 0:i.targetEl;!d(n,o)&&s&&this.$el.contains(s)&&n.push(o)}return n},items({selNavItem:t},e){return F(t,e)}},watch:{dropbar(t){S(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},dropdowns(){this.initializeDropdowns()}},connected(){this.initializeDropdowns()},disconnected(){$t(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:({selNavItem:t})=>t,handler({current:t}){const e=this.getActive();e&&d(e.mode,"hover")&&e.targetEl&&!t.contains(e.targetEl)&&!e.isDelaying()&&e.hide(!1)}},{name:"keydown",self:!0,delegate:({selNavItem:t})=>t,handler(t){var e;const{current:i,keyCode:n}=t,o=this.getActive();n===M.DOWN&&(o==null?void 0:o.targetEl)===i&&(t.preventDefault(),(e=$(De,o.$el))==null||e.focus()),mo(t,this.items,o)}},{name:"keydown",el:({dropContainer:t})=>t,delegate:({clsDrop:t})=>`.${t}`,handler(t){var e;const{current:i,keyCode:n,target:o}=t;if(hi(o)||!d(this.dropdowns,i))return;const s=this.getActive();let r=-1;if(n===M.HOME?r=0:n===M.END?r="last":n===M.UP?r="previous":n===M.DOWN?r="next":n===M.ESC&&((e=s.targetEl)==null||e.focus()),~r){t.preventDefault();const a=F(De,i);a[ct(r,a,ke(a,l=>E(l,":focus")))].focus()}mo(t,this.items,s)}},{name:"mouseleave",el:({dropbar:t})=>t,filter:({dropbar:t})=>t,handler(){const t=this.getActive();t&&d(t.mode,"hover")&&!this.dropdowns.some(e=>E(e,":hover"))&&t.hide()}},{name:"beforeshow",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&Ie(this.dropbarAnchor,this.dropbar),S(t,`${this.clsDrop}-dropbar`))}},{name:"show",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const n=Math.max(...ce(t,`.${this.clsDrop}`).concat(t).map(o=>b(o).bottom));b(this.dropbar,{left:b(this.dropbar).left,top:this.getDropbarOffset(e.getPositionOffset())}),this.transitionTo(n-b(this.dropbar).top+w(c(t,"marginBottom")),t)};this._observer=me([e.$el,...e.target],i),i()}},{name:"beforehide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler(t){const e=this.getActive();E(this.dropbar,":hover")&&e.$el===t.target&&this.isDropbarDrop(e.$el)&&d(e.mode,"hover")&&e.isDelayedHide&&!this.items.some(i=>e.targetEl!==i&&E(i,":focus"))&&t.preventDefault()}},{name:"hide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return d(this.dropdowns,(t=L)==null?void 0:t.$el)&&L},async transitionTo(t,e){const{dropbar:i}=this,n=at(i);if(e=n<t&&e,await X.cancel([e,i]),e){const o=b(e).top-b(i).top-n;o>0&&c(e,"transitionDelay",`${o/t*this.duration}ms`)}c(e,"clipPath",`polygon(0 0,100% 0,100% ${n}px,0 ${n}px)`),at(i,n),await Promise.all([X.start(i,{height:t},this.duration),X.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>c(e,{clipPath:"",transitionDelay:""}))]).catch(it)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return d(this.dropdowns,t)&&v(t,this.clsDrop)},getDropbarOffset(t){const{$el:e,target:i,targetY:n}=this,{top:o,height:s}=b(V(n||i||e,e));return o+s+t},initializeDropdowns(){this.$create("drop",this.dropdowns.filter(t=>!this.getDropdown(t)),{...this.$props,flip:!1,shift:!0,pos:`bottom-${this.align}`,boundary:this.boundary===!0?this.$el:this.boundary})}}};function mo(t,e,i){var n,o,s;const{current:r,keyCode:a}=t;let l=-1;a===M.HOME?l=0:a===M.END?l="last":a===M.LEFT?l="previous":a===M.RIGHT?l="next":a===M.TAB&&((n=i.targetEl)==null||n.focus(),(o=i.hide)==null||o.call(i,!1)),~l&&(t.preventDefault(),(s=i.hide)==null||s.call(i,!1),e[ct(l,e,e.indexOf(i.targetEl||r))].focus())}var yr={mixins:[nt],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:(t,e)=>$(Be,e),state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&D(this.input)===e&&this.input.nextElementSibling||$(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const o=hi(e)?"value":"textContent",s=e[o],r=(t=i.files)!=null&&t[0]?i.files[0].name:E(i,"select")&&(n=F("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;s!==r&&(e[o]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el:({$el:t})=>t.closest("form"),handler(){this.$emit()}}]},vo={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},observe:[Ge({options:{childList:!0}}),Ge({options:{attributes:!0,attributeFilter:["style"]},target:({$el:t})=>[t,...Q(t)]}),dt({target:({$el:t})=>[t,...Q(t)]})],update:{read(){return{rows:bo(Q(this.$el))}},write({rows:t}){for(const e of t)for(const i of e)U(i,this.margin,t[0]!==e),U(i,this.firstColumn,e[wt?e.length-1:0]===i)},events:["resize"]}};function bo(t){const e=[[]],i=t.some((n,o)=>o&&t[o-1].offsetParent!==n.offsetParent);for(const n of t){if(!W(n))continue;const o=Vi(n,i);for(let s=e.length-1;s>=0;s--){const r=e[s];if(!r[0]){r.push(n);break}const a=Vi(r[0],i);if(o.top>=a.bottom-1&&o.top!==a.top){e.push([n]);break}if(o.bottom-1>a.top||o.top===a.top){let l=r.length-1;for(;l>=0;l--){const h=Vi(r[l],i);if(o.left>=h.left)break}r.splice(l+1,0,n);break}if(s===0){e.unshift([n]);break}}}return e}function Vi(t,e=!1){let{offsetTop:i,offsetLeft:n,offsetHeight:o,offsetWidth:s}=t;return e&&([i,n]=pe(t)),{top:i,left:n,bottom:i+o,right:n+s}}var xr={extends:vo,mixins:[nt],name:"grid",props:{masonry:Boolean,parallax:String,parallaxStart:String,parallaxEnd:String,parallaxJustify:Boolean},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0,parallaxStart:0,parallaxEnd:0,parallaxJustify:!1},connected(){this.masonry&&S(this.$el,"uk-flex-top","uk-flex-wrap-top")},observe:qi({filter:({parallax:t,parallaxJustify:e})=>t||e}),update:[{write({rows:t}){U(this.$el,this.clsStack,!t.some(e=>e.length>1))},events:["resize"]},{read(t){const{rows:e}=t;let{masonry:i,parallax:n,parallaxJustify:o,margin:s}=this;if(n=Math.max(0,J(n)),!(i||n||o)||wo(e)||e[0].some((y,k)=>e.some(T=>T[k]&&T[k].offsetWidth!==y.offsetWidth)))return t.translates=t.scrollColumns=!1;let r=Sr(e,s),a,l;i?[a,l]=kr(e,r,i==="next"):a=Er(e);const h=a.map(y=>se(y,"offsetHeight")+r*(y.length-1)),u=Math.max(0,...h);let f,p,O;return(n||o)&&(f=h.map((y,k)=>o?u-y+n:n/(k%2||8)),o||(n=Math.max(...h.map((y,k)=>y+f[k]-u))),p=J(this.parallaxStart,"height",this.$el,!0),O=J(this.parallaxEnd,"height",this.$el,!0)),{columns:a,translates:l,scrollColumns:f,parallaxStart:p,parallaxEnd:O,padding:n,height:l?u:""}},write({height:t,padding:e}){c(this.$el,"paddingBottom",e||""),t!==!1&&c(this.$el,"height",t)},events:["resize"]},{read({rows:t,scrollColumns:e,parallaxStart:i,parallaxEnd:n}){return{scrolled:e&&!wo(t)?Nn(this.$el,i,n):!1}},write({columns:t,scrolled:e,scrollColumns:i,translates:n}){!e&&!n||t.forEach((o,s)=>o.forEach((r,a)=>{let[l,h]=n&&n[s][a]||[0,0];e&&(h+=e*i[s]),c(r,"transform",`translate(${l}px, ${h}px)`)}))},events:["scroll","resize"]}]};function wo(t){return t.flat().some(e=>c(e,"position")==="absolute")}function kr(t,e,i){const n=[],o=[],s=Array(t[0].length).fill(0);let r=0;for(let a of t){wt&&(a=a.reverse());let l=0;for(const h in a){const{offsetWidth:u,offsetHeight:f}=a[h],p=i?h:s.indexOf(Math.min(...s));Yi(n,p,a[h]),Yi(o,p,[(p-h)*u*(wt?-1:1),s[p]-r]),s[p]+=f+e,l=Math.max(l,f)}r+=l+e}return[n,o]}function Sr(t,e){const i=t.flat().find(n=>v(n,e));return w(i?c(i,"marginTop"):c(t[0][0],"paddingLeft"))}function Er(t){const e=[];for(const i of t)for(const n in i)Yi(e,n,i[n]);return e}function Yi(t,e,i){t[e]||(t[e]=[]),t[e].push(i)}var Tr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:({target:t},e)=>F(t,e)},observe:dt({target:({$el:t,elements:e})=>e.reduce((i,n)=>i.concat(n,...n.children),[t])}),events:{name:"loadingdone",el:()=>document.fonts,handler(){this.$emit("resize")}},update:{read(){return{rows:(this.row?bo(this.elements):[this.elements]).map(Cr)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((n,o)=>c(n,"minHeight",e[o]))},events:["resize"]}};function Cr(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(_r);const i=Math.max(...e);return{heights:t.map((n,o)=>e[o].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function _r(t){const e=ri(t.style,["display","minHeight"]);W(t)||c(t,"display","block","important"),c(t,"minHeight","");const i=_(t).height-Wt(t,"height","content-box");return c(t,e),i}var Or={args:"target",props:{target:String},data:{target:""},computed:{target:{get:({target:t},e)=>V(t,e),observe:({target:t})=>t}},observe:dt({target:({target:t})=>t}),update:{read(){return this.target?{height:this.target.offsetHeight}:!1},write({height:t}){c(this.$el,{minHeight:t})},events:["resize"]}},Pr={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},observe:[so({filter:({expand:t})=>t}),dt({target:({$el:t})=>qt(t)})],update:{read(){if(!W(this.$el))return!1;let t="";const e=Wt(this.$el,"height","content-box"),{body:i,scrollingElement:n}=document,o=kt(this.$el),{height:s}=K(o===i?n:o),r=n===o||i===o;if(t=`calc(${r?"100vh":`${s}px`}`,this.expand){const a=_(o).height-_(this.$el).height;t+=` - ${a}px`}else{if(this.offsetTop)if(r){const a=this.offsetTop===!0?this.$el:V(this.offsetTop,this.$el),{top:l}=b(a);t+=l>0&&l<s/2?` - ${l}px`:""}else t+=` - ${Wt(o,"height",c(o,"boxSizing"))}px`;this.offsetBottom===!0?t+=` - ${_(this.$el.nextElementSibling).height}px`:gt(this.offsetBottom)?t+=` - ${this.offsetBottom}vh`:this.offsetBottom&&Zt(this.offsetBottom,"px")?t+=` - ${w(this.offsetBottom)}px`:P(this.offsetBottom)&&(t+=` - ${_(V(this.offsetBottom,this.$el)).height}px`)}return t+=`${e?` - ${e}px`:""})`,{minHeight:t}},write({minHeight:t}){c(this.$el,"minHeight",`max(${this.minHeight||0}px, ${t})`)},events:["resize"]}},Br='<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',Dr='<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Mr='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Ar='<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="11" x="9" y="4"/><rect width="11" height="1" x="4" y="9"/></svg>',Nr='<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',Ir='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Fr='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Hr='<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg&gt;[class*=&quot;line-&quot;]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg&gt;.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-1,.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width="20" height="2" y="3" class="line-1"/><rect width="20" height="2" y="9" class="line-2"/><rect width="20" height="2" y="9" class="line-3"/><rect width="20" height="2" y="15" class="line-4"/></svg>',zr='<svg width="40" height="40" viewBox="0 0 40 40"><rect width="1" height="40" x="19" y="0"/><rect width="40" height="1" x="0" y="19"/></svg>',Lr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Wr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',$o='<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',jr='<svg width="40" height="40" viewBox="0 0 40 40"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',qr='<svg width="24" height="24" viewBox="0 0 24 24"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Rr='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5"/></svg>',Ur='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1"/></svg>',Vr='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547"/></svg>',Yr='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23"/></svg>',Gr='<svg width="30" height="30" viewBox="0 0 30 30"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Xr='<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9"/></svg>',yo={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,o;let s=0;return((o=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:o.replace(/%s/g,()=>e[s++]||""))||""}}},xo={args:"src",props:{width:Number,height:Number,ratio:Number},data:{ratio:1},connected(){this.svg=this.getSvg().then(t=>{if(!this._connected)return;const e=Jr(t,this.$el);return this.svgEl&&e!==this.svgEl&&$t(this.svgEl),Kr.call(this,e,t),this.svgEl=e},it)},disconnected(){this.svg.then(t=>{this._connected||(ci(this.$el)&&(this.$el.hidden=!1),$t(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){}}};function Jr(t,e){if(ci(e)||I(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return ko(t,n)?n:Ie(e,t)}const i=e.lastElementChild;return ko(t,i)?i:tt(e,t)}function ko(t,e){return I(t,"svg")&&I(e,"svg")&&t.innerHTML===e.innerHTML}function Kr(t,e){const i=["width","height"];let n=i.map(s=>this[s]);n.some(s=>s)||(n=i.map(s=>g(e,s)));const o=g(e,"viewBox");o&&!n.some(s=>s)&&(n=o.split(" ").slice(2)),n.forEach((s,r)=>g(t,i[r],w(s)*this.ratio||null))}function Zr(t){return W(t)?Math.ceil(Math.max(0,...F("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}var Qr={mixins:[xo],args:"src",props:{src:String,icon:String,attributes:"list",strokeAnimation:Boolean},data:{strokeAnimation:!1},observe:[Ge({async handler(){const t=await this.svg;t&&So.call(this,t)},options:{attributes:!0,attributeFilter:["id","class","style"]}})],async connected(){d(this.src,"#")&&([this.src,this.icon]=this.src.split("#"));const t=await this.svg;t&&(So.call(this,t),this.strokeAnimation&&na(t))},methods:{async getSvg(){return I(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"&&await new Promise(t=>N(this.$el,"load",t)),ea(await ta(this.src),this.icon)||Promise.reject("SVG not found.")}}};function So(t){const{$el:e}=this;S(t,g(e,"class"),"uk-svg");for(let i=0;i<e.style.length;i++){const n=e.style[i];c(t,n,c(e,n))}for(const i in this.attributes){const[n,o]=this.attributes[i].split(":",2);g(t,n,o)}this.$el.id||re(t,"id")}const ta=G(async t=>t?et(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function ea(t,e){return e&&d(t,"<symbol")&&(t=ia(t)[e]||t),To(t)}const Eo=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,ia=G(function(t){const e={};Eo.lastIndex=0;let i;for(;i=Eo.exec(t);)e[i[3]]=`<svg ${i[1]}svg>`;return e});function na(t){const e=Zr(t);e&&c(t,"--uk-animation-stroke",e)}function To(t){const e=document.createElement("template");return e.innerHTML=t,e.content.firstElementChild}const Je={spinner:Gr,totop:Xr,marker:Ar,"close-icon":Br,"close-large":Dr,"drop-parent-icon":Mr,"nav-parent-icon":Ir,"nav-parent-icon-large":Nr,"navbar-parent-icon":Fr,"navbar-toggle-icon":Hr,"overlay-icon":zr,"pagination-next":Lr,"pagination-previous":Wr,"search-icon":$o,"search-medium":qr,"search-large":jr,"search-toggle-icon":$o,"slidenav-next":Ur,"slidenav-next-large":Rr,"slidenav-previous":Yr,"slidenav-previous-large":Vr},Gi={install:da,mixins:[xo],args:"icon",props:{icon:String},isIcon:!0,beforeConnect(){S(this.$el,"uk-icon")},methods:{async getSvg(){const t=ga(this.icon);if(!t)throw"Icon not found.";return t}}},Et={args:!1,extends:Gi,data:t=>({icon:pt(t.constructor.options.name)}),beforeConnect(){S(this.$el,this.$options.id)}},oa={extends:Et,beforeConnect(){const t=this.$props.icon;this.icon=this.$el.closest(".uk-nav-primary")?`${t}-large`:t}},sa={extends:Et,mixins:[yo],i18n:{toggle:"Open Search",submit:"Submit Search"},beforeConnect(){const t=v(this.$el,"uk-search-toggle")||v(this.$el,"uk-navbar-toggle");if(this.icon=t?"search-toggle-icon":v(this.$el,"uk-search-icon")&&this.$el.closest(".uk-search-large")?"search-large":this.$el.closest(".uk-search-medium")?"search-medium":this.$props.icon,!ht(this.$el,"aria-label"))if(t){const e=this.t("toggle");g(this.$el,"aria-label",e)}else{const e=this.$el.closest("a,button");if(e){const i=this.t("submit");g(e,"aria-label",i)}}}},ra={extends:Et,beforeConnect(){g(this.$el,"role","status")},methods:{async getSvg(){const t=await Gi.methods.getSvg.call(this);return this.ratio!==1&&c($("circle",t),"strokeWidth",1/this.ratio),t}}},Tt={extends:Et,mixins:[yo],beforeConnect(){const t=this.$el.closest("a,button");g(t,"role",this.role!==null&&I(t,"a")?"button":this.role);const e=this.t("label");e&&!ht(t,"aria-label")&&g(t,"aria-label",e)}},Co={extends:Tt,beforeConnect(){S(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=v(this.$el,"uk-slidenav-large")?`${t}-large`:t}},aa={extends:Tt,i18n:{label:"Open menu"}},la={extends:Tt,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${v(this.$el,"uk-close-large")?"large":"icon"}`}},ca={extends:Tt,i18n:{label:"Open"}},ha={extends:Tt,i18n:{label:"Back to top"}},ua={extends:Tt,i18n:{label:"Next page"},data:{role:null}},fa={extends:Tt,i18n:{label:"Previous page"},data:{role:null}},Ke={};function da(t){t.icon.add=(e,i)=>{const n=P(e)?{[e]:i}:e;oe(n,(o,s)=>{Je[s]=o,delete Ke[s]}),t._initialized&&yt(document.body,o=>oe(t.getComponents(o),s=>{s.$options.isIcon&&s.icon in n&&s.$reset()}))}}const pa={twitter:"x"};function ga(t){return t=pa[t]||t,Je[t]?(Ke[t]||(Ke[t]=To(Je[ma(t)]||Je[t])),Ke[t].cloneNode(!0)):null}function ma(t){return wt?si(si(t,"left","right"),"previous","next"):t}var va={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){this.loading!=="lazy"?this.load():Ji(this.$el)&&(this.$el.loading="lazy",Xi(this.$el))},disconnected(){this.img&&(this.img.onload=""),delete this.img},observe:Yt({handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy",target:({$el:t,$props:e})=>e.target?[t,...he(e.target,t)]:t}),methods:{load(){if(this.img)return this.img;const t=Ji(this.$el)?this.$el:wa(this.$el,this.dataSrc,this.sources);return re(t,"loading"),Xi(this.$el,t.currentSrc),this.img=t}}};function Xi(t,e){if(Ji(t)){const i=D(t);(I(i,"picture")?Q(i):[t]).forEach(o=>_o(o,o))}else e&&!d(t.style.backgroundImage,e)&&(c(t,"backgroundImage",`url(${gi(e)})`),C(t,Me("load",!1)))}const ba=["data-src","data-srcset","sizes"];function _o(t,e){for(const i of ba){const n=Dt(t,i);n&&g(e,i.replace(/^(data-)+/,""),n)}}function wa(t,e,i){const n=new Image;return $a(n,i),_o(t,n),n.onload=()=>{Xi(t,n.currentSrc)},g(n,"src",e),n}function $a(t,e){if(e=ya(e),e.length){const i=Lt("<picture>");for(const n of e){const o=Lt("<source>");g(o,n),tt(i,o)}tt(i,t)}}function ya(t){if(!t)return[];if(et(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Hi(t);return z(t)||(t=[t]),t.filter(e=>!ni(e))}function Ji(t){return I(t,"img")}var xa={props:{target:String,selActive:String},data:{target:!1,selActive:!1},computed:{target:({target:t},e)=>t?F(t,e):e},observe:[Yt({handler(t){this.isIntersecting=t.some(({isIntersecting:e})=>e),this.$emit()},target:({target:t})=>t,args:{intersecting:!1}}),Ge({target:({target:t})=>t,options:{attributes:!0,attributeFilter:["class"],attributeOldValue:!0}}),{target:({target:t})=>t,observe:(t,e)=>{const i=me([...m(t),document.documentElement],e),n=[x(document,"scroll itemshown itemhidden",e,{passive:!0,capture:!0}),x(document,"show hide transitionstart",o=>(e(),i.observe(o.target))),x(document,"shown hidden transitionend transitioncancel",o=>(e(),i.unobserve(o.target)))];return{observe:i.observe.bind(i),unobserve:i.unobserve.bind(i),disconnect(){i.disconnect(),n.map(o=>o())}}},handler(){this.$emit()}}],update:{read(){if(!this.isIntersecting)return!1;for(const t of m(this.target)){let e=!this.selActive||E(t,this.selActive)?ka(t):"";e!==!1&&_e(t,"uk-light uk-dark",e)}}}};function ka(t){const e=_(t),i=_(window);if(!Ce(e,i))return!1;const{left:n,top:o,height:s,width:r}=e;let a;for(const l of[.25,.5,.75]){const h=t.ownerDocument.elementsFromPoint(Math.max(0,Math.min(n+r*l,i.width-1)),Math.max(0,Math.min(o+s/2,i.height-1)));for(const u of h){if(t.contains(u)||!Sa(u)||u.closest('[class*="-leave"]')&&h.some(p=>u!==p&&E(p,'[class*="-enter"]')))continue;const f=c(u,"--uk-inverse");if(f){if(f===a)return`uk-${f}`;a=f;break}}}return a?`uk-${a}`:""}function Sa(t){if(c(t,"visibility")!=="visible")return!1;for(;t;){if(c(t,"opacity")==="0")return!1;t=D(t)}return!0}var Ki={props:{media:Boolean},data:{media:!1},connected(){const t=Ea(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,C(this.$el,Me("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=x(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function Ea(t,e){if(P(t)){if(et(t,"@"))t=w(c(e,`--uk-breakpoint-${t.slice(1)}`));else if(isNaN(t))return t}return t&&gt(t)?`(min-width: ${t}px)`:""}var Ta={mixins:[nt,Ki],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:({fill:t},e)=>t||c(e,"--uk-leader-fill-content")},connected(){[this.wrapper]=Si(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){de(this.wrapper.childNodes)},observe:dt(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){U(this.wrapper,this.clsHide,i),g(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}};const j=[];var Oo={mixins:[nt,Ri,Gt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:t},e)=>$(t,e),transitionElement(){return this.panel},bgClose({bgClose:t}){return t&&this.panel}},connected(){g(this.panel||this.$el,"role",this.role),this.overlay&&g(this.panel||this.$el,"aria-modal",!0)},beforeDisconnect(){d(j,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:t})=>`${t},a[href*="#"]`,handler(t){const{current:e,defaultPrevented:i}=t,{hash:n}=e;!i&&n&&Ht(e)&&!this.$el.contains($(n))?this.hide():E(e,this.selClose)&&(t.preventDefault(),this.hide())}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===d(j,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(d(j,this))return!1;!this.stack&&j.length?(Promise.all(j.map(e=>e.hide())).then(this.show),t.preventDefault()):j.push(this)}},{name:"show",self:!0,handler(){this.stack&&c(this.$el,"zIndex",w(c(this.$el,"zIndex"))+j.length);const t=[this.overlay&&_a(this),this.overlay&&uo(this.$el),this.bgClose&&Oa(this),this.escClose&&Pa(this)];N(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),S(document.documentElement,this.clsPage)}},{name:"shown",self:!0,handler(){ui(this.$el)||g(this.$el,"tabindex","-1"),E(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){d(j,this)&&j.splice(j.indexOf(this),1),c(this.$el,"zIndex",""),j.some(t=>t.clsPage===this.clsPage)||A(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&D(this.$el)!==this.container?(tt(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Po)},hide(){return this.toggleElement(this.$el,!1,Po)}}};function Po(t,e,{transitionElement:i,_toggle:n}){return new Promise((o,s)=>N(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=s,n(t,e);const a=N(i,"transitionstart",()=>{N(i,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},Ca(c(i,"transitionDuration")))})).then(()=>delete t._reject)}function Ca(t){return t?Zt(t,"ms")?w(t):w(t)*1e3:0}function _a(t){return x(document,"focusin",e=>{ne(j)===t&&!t.$el.contains(e.target)&&t.$el.focus()})}function Oa(t){return x(document,Nt,({target:e})=>{ne(j)!==t||t.overlay&&!t.$el.contains(e)||t.panel.contains(e)||N(document,`${It} ${Pe} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===It&&e===o&&t.hide()},!0)})}function Pa(t){return x(document,"keydown",e=>{e.keyCode===27&&ne(j)===t&&t.hide()})}var Ba={install:Da,mixins:[Oo],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:'[class*="uk-modal-close"]'},events:[{name:"fullscreenchange webkitendfullscreen",capture:!0,handler(t){I(t.target,"video")&&this.isToggled()&&!document.fullscreenElement&&this.hide()}},{name:"show",self:!0,handler(){v(this.panel,"uk-margin-auto-vertical")?S(this.$el,"uk-flex"):c(this.$el,"display","block"),at(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),A(this.$el,"uk-flex")}}]};function Da({modal:t}){t.dialog=function(i,n){const o=t($(`<div><div class="uk-modal-dialog">${i}</div></div>`),{stack:!0,role:"alertdialog",...n});return o.show(),x(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},t.alert=function(i,n){return e(({i18n:o})=>`<div class="uk-modal-body">${P(i)?i:Ne(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>${o.ok}</button> </div>`,n)},t.confirm=function(i,n){return e(({i18n:o})=>`<form> <div class="uk-modal-body">${P(i)?i:Ne(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${o.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${o.ok}</button> </div> </form>`,n,()=>Promise.reject())},t.prompt=function(i,n,o){const s=e(({i18n:l})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${P(i)?i:Ne(i)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${l.cancel}</button> <button class="uk-button uk-button-primary">${l.ok}</button> </div> </form>`,o,()=>null,()=>a.value),{$el:r}=s.dialog,a=$("input",r);return a.value=n||"",x(r,"show",()=>a.select()),s},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,n,o=it,s=it){n={bgClose:!1,escClose:!0,...n,i18n:{...t.i18n,...n==null?void 0:n.i18n}};const r=t.dialog(i(n),n);return Qt(new Promise(a=>{const l=x(r.$el,"hide",()=>a(o()));x(r.$el,"submit","form",h=>{h.preventDefault(),a(s(r)),l(),r.hide()})}),{dialog:r})}}var Ma={extends:ao,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Zi="uk-navbar-transparent";var Aa={extends:go,props:{dropbarTransparentMode:Boolean},data:{clsDrop:"uk-navbar-dropdown",selNavItem:".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle",dropbarTransparentMode:!1},computed:{navbarContainer:(t,e)=>e.closest(".uk-navbar-container")},watch:{items(){const t=v(this.$el,"uk-navbar-justify"),e=F(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el);for(const i of e){const n=t?F(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",i).length:"";c(i,"flexGrow",n)}}},events:[{name:"show",el:({dropContainer:t})=>t,handler({target:t}){this.getTransparentMode(t)==="remove"&&v(this.navbarContainer,Zi)&&(A(this.navbarContainer,Zi),this._transparent=!0)}},{name:"hide",el:({dropContainer:t})=>t,async handler(){await Na(),!this.getActive()&&this._transparent&&(S(this.navbarContainer,Zi),this._transparent=null)}}],methods:{getTransparentMode(t){if(!this.navbarContainer)return;if(this.dropbar&&this.isDropbarDrop(t))return this.dropbarTransparentMode;const e=this.getDropdown(t);if(e&&v(t,"uk-dropbar"))return e.inset?"behind":"remove"},getDropbarOffset(t){const{top:e,height:i}=b(this.navbarContainer);return e+(this.dropbarTransparentMode==="behind"?0:i+t)}}};function Na(){return new Promise(t=>setTimeout(t))}var Ia={mixins:[Oo],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip:({flip:t,clsFlip:e})=>t?e:"",clsOverlay:({overlay:t,clsOverlay:e})=>t?e:"",clsMode:({mode:t,clsMode:e})=>`${e}-${t}`,clsSidebarAnimation:({mode:t,clsSidebarAnimation:e})=>t==="none"||t==="reveal"?"":e,clsContainerAnimation:({mode:t,clsContainerAnimation:e})=>t!=="push"&&t!=="reveal"?"":e,transitionElement({mode:t}){return t==="reveal"?D(this.panel):this.panel}},observe:ro({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!W(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter:({overlay:t})=>t,handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!v(D(this.panel),this.clsMode)&&S(He(this.panel,"<div>"),this.clsMode);const{body:t,scrollingElement:e}=document;S(t,this.clsContainer,this.clsFlip),c(t,"touchAction","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),S(this.$el,this.clsOverlay),S(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),at(t),S(t,this.clsContainerAnimation),this.clsContainerAnimation&&Fa()}},{name:"hide",self:!0,handler(){A(document.body,this.clsContainerAnimation),c(document.body,"touchAction","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Ha(),this.mode==="reveal"&&v(D(this.panel),this.clsMode)&&de(this.panel),A(this.panel,this.clsSidebarAnimation,this.clsMode),A(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),A(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Zt(t.type,"Left")^this.flip&&this.hide()}}]};function Fa(){Bo().content+=",user-scalable=0"}function Ha(){const t=Bo();t.content=t.content.replace(/,user-scalable=0$/,"")}function Bo(){return $('meta[name="viewport"]',document.head)||tt(document.head,'<meta name="viewport">')}var za={mixins:[nt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:({selContainer:t},e)=>e.closest(t),content:({selContent:t},e)=>e.closest(t)},observe:dt({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!W(this.$el)?!1:{max:Math.max(this.minHeight,at(this.container)-(_(this.content).height-at(this.$el)))}},write({max:t}){c(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},La={props:["width","height"],connected(){S(this.$el,"uk-responsive-width"),c(this.$el,"aspectRatio",`${this.width}/${this.height}`)}},Wa={props:{offset:Number},data:{offset:0},connected(){ja(this)},disconnected(){qa(this)},methods:{async scrollTo(t){t=t&&$(t)||document.body,C(this.$el,"beforescroll",[this,t])&&(await An(t,{offset:this.offset}),C(this.$el,"scrolled",[this,t]))}}};const xe=new Set;function ja(t){xe.size||x(document,"click",Do),xe.add(t)}function qa(t){xe.delete(t),xe.size||mi(document,"click",Do)}function Do(t){if(!t.defaultPrevented)for(const e of xe)e.$el.contains(t.target)&&Ht(e.$el)&&(t.preventDefault(),window.location.href!==e.$el.href&&window.history.pushState({},"",e.$el.href),e.scrollTo(fi(e.$el)))}const Qi="uk-scrollspy-inview";var Ra={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0}),computed:{elements:({target:t},e)=>t?F(t,e):[e]},watch:{elements(t){this.hidden&&c(le(t,`:not(.${Qi})`),"opacity",0)}},connected(){this.elementData=new Map},disconnected(){for(const[t,e]of this.elementData.entries())A(t,Qi,(e==null?void 0:e.cls)||"");delete this.elementData},observe:Yt({target:({elements:t})=>t,handler(t){const e=this.elementData;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Dt(i,"uk-scrollspy-class")||this.cls});const o=e.get(i);!this.repeat&&o.show||(o.show=n)}this.$emit()},options:({margin:t})=>({rootMargin:t}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of this.elementData.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i,n;const o=(i=this.elementData)==null?void 0:i.get(t);if(!o)return;(n=o.off)==null||n.call(o),c(t,"opacity",!e&&this.hidden?0:""),U(t,Qi,e),U(t,o.cls);let s;if(s=o.cls.match(/\buk-animation-[\w-]+/g)){const r=()=>A(t,s);e?o.off=N(t,"animationcancel animationend",r,{self:!0}):r()}C(t,e?"inview":"outview"),o.inview=e}}},Ua={props:{cls:String,closest:Boolean,scroll:Boolean,target:String,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,target:'a[href]:not([role="button"])',offset:0},computed:{links:({target:t},e)=>F(t,e).filter(i=>Ht(i)),elements({closest:t}){return this.links.map(e=>e.closest(t||"*"))}},watch:{links(t){this.scroll&&this.$create("scroll",t,{offset:this.offset})}},observe:[Yt(),qi()],update:[{read(){const t=this.links.map(l=>fi(l)||l.ownerDocument),{length:e}=t;if(!e||!W(this.$el))return!1;const i=kt(t,!0),{scrollTop:n,scrollHeight:o}=i,s=K(i),r=o-s.height;let a=!1;if(n>=r)a=e-1;else{const l=this.offset+_(Mi()).height+s.height*.1;for(let h=0;h<t.length&&!(b(t[h]).top-s.top-l>0);h++)a=+h}return{active:a}},write({active:t}){const e=t!==!1&&!v(this.elements[t],this.cls);this.links.forEach(i=>i.blur());for(let i=0;i<this.elements.length;i++)U(this.elements[i],this.cls,+i===t);e&&C(this.$el,"active",[t,this.elements[t]])},events:["scroll","resize"]}]},Va={mixins:[nt,Ki],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{target:({selTarget:t},e)=>t&&$(t,e)||e},connected(){this.start=Mo(this.start||this.top),this.end=Mo(this.end||this.bottom),this.placeholder=$("+ .uk-sticky-placeholder",this.$el)||$('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},beforeDisconnect(){this.isFixed&&(this.hide(),A(this.target,this.clsInactive)),Ao(this.$el),$t(this.placeholder),this.placeholder=null},observe:[so(),qi({target:()=>document.scrollingElement}),dt({target:({$el:t})=>[t,Ze(t),document.scrollingElement],handler(t){this.$emit(this._data.resized&&t.some(({target:e})=>e===Ze(this.$el))?"update":"resize"),this._data.resized=!0}})],events:[{name:"load hashchange popstate",el:()=>window,filter:({targetOffset:t})=>t!==!1,handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=b($(location.hash)),i=b(this.$el);this.isFixed&&Ce(e,i)&&(t.scrollTop=Math.ceil(e.top-i.height-J(this.targetOffset,"height",this.placeholder)-J(this.offset,"height",this.placeholder)))})}}],update:[{read({height:t,width:e,margin:i,sticky:n},o){if(this.inactive=!this.matchMedia||!W(this.$el)||!this.$el.offsetHeight,this.inactive)return;const s=at(window),r=Math.max(0,document.scrollingElement.scrollHeight-s);if(!r){this.inactive=!0;return}const a=this.isFixed&&o.has("update");a&&(nn(this.target),this.hide()),this.active||({height:t,width:e}=_(this.$el),i=c(this.$el,"margin")),a&&this.show();const l=J("100vh","height");let h=this.position;this.overflowFlip&&t>l&&(h=h==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let f=J(this.offset,"height",n?this.$el:u);h==="bottom"&&(t<s||this.overflowFlip)&&(f+=s-t);const p=this.overflowFlip?0:Math.max(0,t+f-l),O=b(u).top-new DOMMatrix(c(u,"transform")).m42,y=_(this.$el).height,k=(this.start===!1?O:tn(this.start,this.$el,O))-f,T=this.end===!1?r:Math.min(r,tn(this.end,this.$el,O+t,!0)-y-f+p);return n=!this.showOnUp&&k+f===O&&T===Math.min(r,tn(!0,this.$el,0,!0)-y-f+p)&&c(Ze(this.$el),"overflowY")!=="hidden",{start:k,end:T,offset:f,overflow:p,height:t,elHeight:y,width:e,margin:i,top:pe(u)[0],sticky:n,viewport:l,maxScrollHeight:r}},write({height:t,width:e,margin:i,offset:n,sticky:o}){if((this.inactive||o||!this.isFixed)&&Ao(this.$el),this.inactive)return;o&&(t=e=i=0,c(this.$el,{position:"sticky",top:n}));const{placeholder:s}=this;c(s,{height:t,width:e,margin:i}),(D(s)!==D(this.$el)||o^Ft(s)<Ft(this.$el))&&((o?ki:Ie)(this.$el,s),s.hidden=!0)},events:["resize"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:n=0,start:o,end:s,elHeight:r,height:a,sticky:l,maxScrollHeight:h}){const u=Math.min(document.scrollingElement.scrollTop,h),f=t<=u?"down":"up",p=this.isFixed?this.placeholder:this.$el;return{dir:f,prevDir:e,scroll:u,prevScroll:t,below:u>b(p).top+(l?Math.min(a,r):a),offsetParentTop:b(p.offsetParent).top,overflowScroll:rt(n+rt(u,o,s)-rt(t,o,s),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:o,prevDir:s,scroll:r,prevScroll:a=0,top:l,start:h,below:u}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const f=Date.now();if((f-n>300||o!==s)&&(t.initScroll=r,t.initTimestamp=f),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||o==="down"&&i||o==="up"&&!this.isFixed&&!u)){if(!this.isFixed){ft.inProgress(this.$el)&&l>r&&(ft.cancel(this.$el),this.hide());return}if(this.animation&&u){if(v(this.$el,"uk-animation-leave"))return;ft.out(this.$el,this.animation).then(()=>this.hide(),it)}else this.hide()}else this.isFixed?this.update():this.animation&&u?(this.show(),ft.in(this.$el,this.animation).catch(it)):(nn(this.target),this.show())},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),A(this.$el,this.clsFixed,this.clsBelow),e?c(this.$el,"top",t):c(this.$el,{position:"",top:"",width:"",marginTop:""}),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:o,end:s,offset:r,offsetParentTop:a,sticky:l,below:h}=this._data;const u=o!==0||e>o;if(!l){let f="fixed";e>s&&(r+=s-a+n-i,f="absolute"),c(this.$el,{position:f,width:t,marginTop:0},"important")}c(this.$el,"top",r-n),this.setActive(u),U(this.$el,this.clsBelow,h),S(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(_e(this.target,this.clsInactive,this.clsActive),e!==t&&C(this.$el,"active")):(_e(this.target,this.clsActive,this.clsInactive),e!==t&&(nn(this.target),C(this.$el,"inactive")))}}};function tn(t,e,i,n){if(!t)return 0;if(gt(t)||P(t)&&t.match(/^-?\d/))return i+J(t,"height",e,!0);{const o=t===!0?Ze(e):V(t,e);return b(o).bottom-(n&&(o!=null&&o.contains(e))?w(c(o,"paddingBottom"))+w(c(o,"borderBottomWidth")):0)}}function Mo(t){return t==="true"?!0:t==="false"?!1:t}function Ao(t){c(t,{position:"",top:"",marginTop:"",width:""})}const en="uk-transition-disable";function nn(t){v(t,en)||(S(t,en),requestAnimationFrame(()=>A(t,en)))}function Ze(t){for(;t=D(t);)if(W(t))return t}const on=".uk-disabled *, .uk-disabled, [disabled]";var No={mixins:[Gt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{connects:{get:({connect:t},e)=>he(t,e),observe:({connect:t})=>t},connectChildren(){return this.connects.map(t=>Q(t)).flat()},toggles:({toggle:t},e)=>F(t,e),children(t,e){return Q(e).filter(i=>this.toggles.some(n=>i.contains(n)))}},watch:{connects(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom"),this.$emit()},connectChildren(){let t=Math.max(0,this.index());for(const e of this.connects)Q(e).forEach((i,n)=>U(i,this.cls,n===t));this.$emit()},toggles(t){this.$emit();const e=this.index();this.show(~e?e:t[this.active]||t[0])}},connected(){g(this.$el,"role","tablist")},observe:[ji({targets:({connectChildren:t})=>t}),ro({target:({connects:t})=>t,filter:({swiping:t})=>t})],events:[{name:"click keydown",delegate:({toggle:t})=>t,handler(t){!E(t.current,on)&&(t.type==="click"||t.keyCode===M.SPACE)&&(t.preventDefault(),this.show(t.current))}},{name:"keydown",delegate:({toggle:t})=>t,handler(t){const{current:e,keyCode:i}=t,n=E(this.$el,this.selVertical);let o=i===M.HOME?0:i===M.END?"last":i===M.LEFT&&!n||i===M.UP&&n?"previous":i===M.RIGHT&&!n||i===M.DOWN&&n?"next":-1;if(~o){t.preventDefault();const s=this.toggles.filter(a=>!E(a,on)),r=s[ct(o,s,s.indexOf(e))];r.focus(),this.followFocus&&this.show(r)}}},{name:"click",el:({$el:t,connects:e,itemNav:i})=>e.concat(i?he(i,t):[]),delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.target.closest("a,button")&&(t.preventDefault(),this.show(Dt(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter:({swiping:t})=>t,el:({connects:t})=>t,handler({type:t}){this.show(Zt(t,"Left")?"next":"previous")}}],update(){var t;for(const e of this.connects)I(e,"ul")&&g(e,"role","presentation");g(Q(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],n=(t=this.connects[0])==null?void 0:t.children[e];g(i,"role","tab"),n&&(i.id=Ye(this,i),n.id=Ye(this,n),g(i,"aria-controls",n.id),g(n,{role:"tabpanel","aria-labelledby":i.id}))}g(this.$el,"aria-orientation",E(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return ke(this.children,t=>v(t,this.cls))},show(t){const e=this.toggles.filter(r=>!E(r,on)),i=this.index(),n=ct(!ee(t)||d(e,t)?t:0,e,ct(this.toggles[i],e)),o=ct(e[n],this.toggles);this.children.forEach((r,a)=>{U(r,this.cls,o===a),g(this.toggles[a],{"aria-selected":o===a,tabindex:o===a?null:-1})});const s=i>=0&&i!==n;this.connects.forEach(async({children:r})=>{const a=Se(r).filter((l,h)=>h!==o&&v(l,this.cls));await this.toggleElement(a,!1,s)&&await this.toggleElement(r[o],!0,s)})}}},Ya={mixins:[nt],extends:No,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=v(this.$el,"uk-tab-left")?"uk-tab-left":v(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Ga=32;var Xa={mixins:[Ki,Gt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get:({target:t},e)=>(t=he(t||e.hash,e),t.length?t:[e]),observe:({target:t})=>t}},connected(){d(this.mode,"media")||(ui(this.$el)||g(this.$el,"tabindex","0"),!this.cls&&I(this.$el,"a")&&g(this.$el,"role","button"))},observe:ji({targets:({target:t})=>t}),events:[{name:Nt,filter:({mode:t})=>d(t,"hover"),handler(t){this._preventClick=null,!(!ut(t)||Bt(this._showState)||this.$el.disabled)&&(C(this.$el,"focus"),N(document,Nt,()=>C(this.$el,"blur"),!0,e=>!this.$el.contains(e.target)),d(this.mode,"click")&&(this._preventClick=!0))}},{name:`mouseenter mouseleave ${ae} ${Oe} focus blur`,filter:({mode:t})=>d(t,"hover"),handler(t){if(ut(t)||this.$el.disabled)return;const e=d(["mouseenter",ae,"focus"],t.type),i=this.isToggled(this.target);if(!e&&(!Bt(this._showState)||t.type!=="blur"&&E(this.$el,":focus")||t.type==="blur"&&E(this.$el,":hover"))){i===this._showState&&(this._showState=null);return}e&&Bt(this._showState)&&i!==this._showState||(this._showState=e?i:null,this.toggle(`toggle${e?"show":"hide"}`))}},{name:"keydown",filter:({$el:t,mode:e})=>d(e,"click")&&!I(t,"input"),handler(t){t.keyCode===Ga&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:({mode:t})=>["click","hover"].some(e=>d(t,e)),handler(t){let e;(this._preventClick||t.target.closest('a[href="#"], a[href=""]')||(e=t.target.closest("a[href]"))&&(!this.isToggled(this.target)||e.hash&&E(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&d(this.mode,"click")&&this.toggle()}},{name:"mediachange",filter:({mode:t})=>d(t,"media"),el:({target:t})=>t,handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!C(this.target,t||"toggle",[this]))return;if(ht(this.$el,"aria-expanded")&&g(this.$el,"aria-expanded",!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>v(n,this.clsLeave));if(e.length){for(const n of this.target){const o=d(e,n);this.toggleElement(n,o,o)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1)&&await this.toggleElement(this.target.filter(n=>!d(i,n)),!0)}}},Ja=Object.freeze({__proto__:null,Accordion:ao,Alert:hr,Close:la,Cover:dr,Drop:fo,DropParentIcon:Et,Dropdown:fo,Dropnav:go,FormCustom:yr,Grid:xr,HeightMatch:Tr,HeightPlaceholder:Or,HeightViewport:Pr,Icon:Gi,Img:va,Inverse:xa,Leader:Ta,Margin:vo,Marker:ca,Modal:Ba,Nav:Ma,NavParentIcon:oa,Navbar:Aa,NavbarParentIcon:Et,NavbarToggleIcon:aa,Offcanvas:Ia,OverflowAuto:za,OverlayIcon:Et,PaginationNext:ua,PaginationPrevious:fa,Responsive:La,Scroll:Wa,Scrollspy:Ra,ScrollspyNav:Ua,SearchIcon:sa,SlidenavNext:Co,SlidenavPrevious:Co,Spinner:ra,Sticky:Va,Svg:Qr,Switcher:No,Tab:Ya,Toggle:Xa,Totop:ha,Video:lo});return oe(Ja,(t,e)=>Z.component(e,t)),Ks(Z),Z});
1
+ /*! UIkit 3.21.14-dev.2e8a07c7e | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */(function(Gt,Xt){typeof exports=="object"&&typeof module<"u"?module.exports=Xt():typeof define=="function"&&define.amd?define("uikit",Xt):(Gt=typeof globalThis<"u"?globalThis:Gt||self,Gt.UIkit=Xt())})(this,function(){"use strict";const{hasOwnProperty:Gt,toString:Xt}=Object.prototype;function st(t,e){return Gt.call(t,e)}const Fo=/\B([A-Z])/g,gt=G(t=>t.replace(Fo,"-$1").toLowerCase()),Ho=/-(\w)/g,Jt=G(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(Ho,(e,i)=>i.toUpperCase())),Pt=G(t=>t.charAt(0).toUpperCase()+t.slice(1));function et(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function Kt(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function d(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function ke(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:L,from:Se}=Array,{assign:Zt}=Object;function q(t){return typeof t=="function"}function lt(t){return t!==null&&typeof t=="object"}function Qt(t){return Xt.call(t)==="[object Object]"}function Ee(t){return lt(t)&&t===t.window}function te(t){return Qe(t)===9}function ee(t){return Qe(t)>=1}function Te(t){return Qe(t)===1}function Qe(t){return!Ee(t)&&lt(t)&&t.nodeType}function Bt(t){return typeof t=="boolean"}function P(t){return typeof t=="string"}function ti(t){return typeof t=="number"}function mt(t){return ti(t)||P(t)&&!isNaN(t-parseFloat(t))}function ei(t){return!(L(t)?t.length:lt(t)&&Object.keys(t).length)}function R(t){return t===void 0}function ii(t){return Bt(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function ie(t){const e=Number(t);return isNaN(e)?!1:e}function w(t){return parseFloat(t)||0}function D(t){return t&&m(t)[0]}function m(t){return ee(t)?[t]:Array.from(t||[]).filter(ee)}function vt(t){if(Ee(t))return t;t=D(t);const e=te(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function ln(t,e){return t===e||lt(t)&&lt(e)&&Object.keys(t).length===Object.keys(e).length&&oe(t,(i,n)=>i===e[n])}function ni(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),n=>n===e?i:e)}function ne(t){return t[t.length-1]}function oe(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function cn(t,e){return t.slice().sort(({[e]:i=0},{[e]:n=0})=>i>n?1:n>i?-1:0)}function se(t,e){return t.reduce((i,n)=>i+w(q(e)?e(n):n[e]),0)}function zo(t,e){const i=new Set;return t.filter(({[e]:n})=>i.has(n)?!1:i.add(n))}function oi(t,e){return e.reduce((i,n)=>({...i,[n]:t[n]}),{})}function rt(t,e=0,i=1){return Math.min(Math.max(ie(t)||0,e),i)}function it(){}function Ce(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:n})=>n))-Math.max(...t.map(({[i]:n})=>n))>0)}function si(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function ri(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function Lo(t,e){t={...t};for(const i in t)t=t[i]>e[i]?ri(t,i,e[i]):t;return t}function Wo(t,e){t=Lo(t,e);for(const i in t)t=t[i]<e[i]?ri(t,i,e[i]):t;return t}const hn={ratio:ri,cover:Wo};function ct(t,e,i=0,n=!1){e=m(e);const{length:o}=e;return o?(t=mt(t)?ie(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?o-1:e.indexOf(D(t)),n?rt(t,0,o-1):(t%=o,t<0?t+o:t)):-1}function G(t){const e=Object.create(null);return(i,...n)=>e[i]||(e[i]=t(i,...n))}function S(t,...e){for(const i of m(t)){const n=bt(e).filter(o=>!v(i,o));n.length&&i.classList.add(...n)}}function A(t,...e){for(const i of m(t)){const n=bt(e).filter(o=>v(i,o));n.length&&i.classList.remove(...n)}}function _e(t,e,i){i=bt(i),e=bt(e).filter(n=>!d(i,n)),A(t,e),S(t,i)}function v(t,e){return[e]=bt(e),m(t).some(i=>i.classList.contains(e))}function U(t,e,i){const n=bt(e);R(i)||(i=!!i);for(const o of m(t))for(const s of n)o.classList.toggle(s,i)}function bt(t){return t?L(t)?t.map(bt).flat():String(t).split(" ").filter(Boolean):[]}function g(t,e,i){var n;if(lt(e)){for(const o in e)g(t,o,e[o]);return}if(R(i))return(n=D(t))==null?void 0:n.getAttribute(e);for(const o of m(t))q(i)&&(i=i.call(o,g(o,e))),i===null?re(o,e):o.setAttribute(e,i)}function ht(t,e){return m(t).some(i=>i.hasAttribute(e))}function re(t,e){m(t).forEach(i=>i.removeAttribute(e))}function Dt(t,e){for(const i of[e,`data-${e}`])if(ht(t,i))return g(t,i)}const wt=typeof window<"u",$t=wt&&document.dir==="rtl",Mt=wt&&"ontouchstart"in window,At=wt&&window.PointerEvent,Nt=At?"pointerdown":Mt?"touchstart":"mousedown",jo=At?"pointermove":Mt?"touchmove":"mousemove",It=At?"pointerup":Mt?"touchend":"mouseup",ae=At?"pointerenter":Mt?"":"mouseenter",Oe=At?"pointerleave":Mt?"":"mouseleave",Pe=At?"pointercancel":"touchcancel",qo={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function ai(t){return m(t).some(e=>qo[e.tagName.toLowerCase()])}const Ro=wt&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function W(t){return m(t).some(e=>Ro.call(e))}const Be="input,select,textarea,button";function li(t){return m(t).some(e=>E(e,Be))}const De=`${Be},a[href],[tabindex]`;function ci(t){return E(t,De)}function B(t){var e;return(e=D(t))==null?void 0:e.parentElement}function le(t,e){return m(t).filter(i=>E(i,e))}function E(t,e){return m(t).some(i=>i.matches(e))}function ce(t,e){const i=[];for(;t=B(t);)(!e||E(t,e))&&i.push(t);return i}function Q(t,e){t=D(t);const i=t?Se(t.children):[];return e?le(i,e):i}function Ft(t,e){return e?m(t).indexOf(D(e)):Q(B(t)).indexOf(t)}function Ht(t){return t=D(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function hi(t){if(Ht(t)){const{hash:e,ownerDocument:i}=D(t),n=decodeURIComponent(e).slice(1);return n?i.getElementById(n)||i.getElementsByName(n)[0]:i}}function V(t,e){return ui(t,un(t,e))}function he(t,e){return ue(t,un(t,e))}function ui(t,e){return D(pn(t,D(e),"querySelector"))}function ue(t,e){return m(pn(t,D(e),"querySelectorAll"))}function un(t,e=document){return te(e)||fn(t).isContextSelector?e:e.ownerDocument}const Uo=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Vo=/(\([^)]*\)|[^,])+/g,fn=G(t=>{let e=!1;if(!t||!P(t))return{};const i=[];for(let n of t.match(Vo))n=n.trim().replace(Uo,"$1 *"),e||(e=["!","+","~","-",">"].includes(n[0])),i.push(n);return{selector:i.join(","),selectors:i,isContextSelector:e}}),Yo=/(\([^)]*\)|\S)*/,dn=G(t=>{t=t.slice(1).trim();const[e]=t.match(Yo);return[e,t.slice(e.length+1)]});function pn(t,e=document,i){const n=fn(t);if(!n.isContextSelector)return n.selector?fi(e,i,n.selector):t;t="";const o=n.selectors.length===1;for(let s of n.selectors){let r,a=e;if(s[0]==="!"&&([r,s]=dn(s),a=e.parentElement.closest(r),!s&&o)||a&&s[0]==="-"&&([r,s]=dn(s),a=a.previousElementSibling,a=E(a,r)?a:null,!s&&o))return a;if(a){if(o)return s[0]==="~"||s[0]==="+"?(s=`:scope > :nth-child(${Ft(a)+1}) ${s}`,a=a.parentElement):s[0]===">"&&(s=`:scope ${s}`),fi(a,i,s);t+=`${t?",":""}${Go(a)} ${s}`}}return te(e)||(e=e.ownerDocument),fi(e,i,t)}function fi(t,e,i){try{return t[e](i)}catch{return null}}function Go(t){const e=[];for(;t.parentNode;){const i=g(t,"id");if(i){e.unshift(`#${di(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${Ft(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function di(t){return P(t)?CSS.escape(t):""}function x(...t){let[e,i,n,o,s=!1]=gi(t);o.length>1&&(o=Jo(o)),s!=null&&s.self&&(o=Ko(o)),n&&(o=Xo(n,o));for(const r of i)for(const a of e)a.addEventListener(r,o,s);return()=>pi(e,i,o,s)}function pi(...t){let[e,i,,n,o=!1]=gi(t);for(const s of i)for(const r of e)r.removeEventListener(s,n,o)}function N(...t){const[e,i,n,o,s=!1,r]=gi(t),a=x(e,i,n,l=>{const h=!r||r(l);h&&(a(),o(l,h))},s);return a}function C(t,e,i){return mi(t).every(n=>n.dispatchEvent(Me(e,!0,!0,i)))}function Me(t,e=!0,i=!1,n){return P(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function gi(t){return t[0]=mi(t[0]),P(t[1])&&(t[1]=t[1].split(" ")),q(t[2])&&t.splice(2,0,!1),t}function Xo(t,e){return i=>{const n=t[0]===">"?ue(t,i.currentTarget).reverse().find(o=>o.contains(i.target)):i.target.closest(t);n&&(i.current=n,e.call(this,i),delete i.current)}}function Jo(t){return e=>L(e.detail)?t(e,...e.detail):t(e)}function Ko(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function gn(t){return t&&"addEventListener"in t}function Zo(t){return gn(t)?t:D(t)}function mi(t){return L(t)?t.map(Zo).filter(Boolean):P(t)?ue(t):gn(t)?[t]:m(t)}function ut(t){return t.pointerType==="touch"||!!t.touches}function zt(t){var e,i;const{clientX:n,clientY:o}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:o}}const Qo={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){const o=m(t);for(const s of o)if(P(e)){if(e=vi(e),R(i))return getComputedStyle(s).getPropertyValue(e);s.style.setProperty(e,mt(i)&&!Qo[e]?`${i}px`:i||ti(i)?i:"",n)}else if(L(e)){const r={};for(const a of e)r[a]=c(s,a);return r}else if(lt(e))for(const r in e)c(s,r,e[r],i);return o[0]}const vi=G(t=>{if(et(t,"--"))return t;t=gt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n=`-${i}-${t}`;if(n in e)return n}}),bi="uk-transition",wi="transitionend",$i="transitioncanceled";function ts(t,e,i=400,n="linear"){return i=Math.round(i),Promise.all(m(t).map(o=>new Promise((s,r)=>{for(const l in e)c(o,l);const a=setTimeout(()=>C(o,wi),i);N(o,[wi,$i],({type:l})=>{clearTimeout(a),A(o,bi),c(o,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),l===$i?r():s(o)},{self:!0}),S(o,bi),c(o,{transitionProperty:Object.keys(e).map(vi).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:n,...e})})))}const X={start:ts,async stop(t){C(t,wi),await Promise.resolve()},async cancel(t){C(t,$i),await Promise.resolve()},inProgress(t){return v(t,bi)}},fe="uk-animation",mn="animationend",Ae="animationcanceled";function vn(t,e,i=200,n,o){return Promise.all(m(t).map(s=>new Promise((r,a)=>{v(s,fe)&&C(s,Ae);const l=[e,fe,`${fe}-${o?"leave":"enter"}`,n&&`uk-transform-origin-${n}`,o&&`${fe}-reverse`],h=setTimeout(()=>C(s,mn),i);N(s,[mn,Ae],({type:u})=>{clearTimeout(h),u===Ae?a():r(s),c(s,"animationDuration",""),A(s,l)},{self:!0}),c(s,"animationDuration",`${i}ms`),S(s,l)})))}const ft={in:vn,out(t,e,i,n){return vn(t,e,i,n,!0)},inProgress(t){return v(t,fe)},cancel(t){C(t,Ae)}};function es(t){if(document.readyState!=="loading"){t();return}N(document,"DOMContentLoaded",t)}function I(t,...e){return e.some(i=>{var n;return((n=t==null?void 0:t.tagName)==null?void 0:n.toLowerCase())===i.toLowerCase()})}function bn(t){return t=$(t),t&&(t.innerHTML=""),t}function Ne(t,e){return R(e)?$(t).innerHTML:tt(bn(t),e)}const is=Fe("prepend"),tt=Fe("append"),yi=Fe("before"),Ie=Fe("after");function Fe(t){return function(e,i){var n;const o=m(P(i)?dt(i):i);return(n=$(e))==null||n[t](...o),wn(o)}}function yt(t){m(t).forEach(e=>e.remove())}function He(t,e){for(e=D(yi(t,e));e.firstElementChild;)e=e.firstElementChild;return tt(e,t),e}function xi(t,e){return m(m(t).map(i=>i.hasChildNodes()?He(Se(i.childNodes),e):tt(i,e)))}function de(t){m(t).map(B).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const ns=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function dt(t){const e=ns.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),wn(i.content.childNodes)}function wn(t){return t.length>1?t:t[0]}function xt(t,e){if(Te(t))for(e(t),t=t.firstElementChild;t;)xt(t,e),t=t.nextElementSibling}function $(t,e){return $n(t)?D(dt(t)):ui(t,e)}function F(t,e){return $n(t)?m(dt(t)):ue(t,e)}function $n(t){return P(t)&&et(t.trim(),"<")}const kt={width:["left","right"],height:["top","bottom"]};function _(t){const e=Te(t)?D(t).getBoundingClientRect():{height:at(t),width:ze(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function b(t,e){e&&c(t,{left:0,top:0});const i=_(t);if(t){const{scrollY:n,scrollX:o}=vt(t),s={height:n,width:o};for(const r in kt)for(const a of kt[r])i[a]+=s[r]}if(!e)return i;for(const n of["left","top"])c(t,n,e[n]-i[n])}function os(t){let{top:e,left:i}=b(t);const{ownerDocument:{body:n,documentElement:o},offsetParent:s}=D(t);let r=s||o;for(;r&&(r===n||r===o)&&c(r,"position")==="static";)r=r.parentNode;if(Te(r)){const a=b(r);e-=a.top+w(c(r,"borderTopWidth")),i-=a.left+w(c(r,"borderLeftWidth"))}return{top:e-w(c(t,"marginTop")),left:i-w(c(t,"marginLeft"))}}function pe(t){t=D(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+w(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+w(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=vt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const at=yn("height"),ze=yn("width");function yn(t){const e=Pt(t);return(i,n)=>{if(R(n)){if(Ee(i))return i[`inner${e}`];if(te(i)){const o=i.documentElement;return Math.max(o[`offset${e}`],o[`scroll${e}`])}return i=D(i),n=c(i,t),n=n==="auto"?i[`offset${e}`]:w(n)||0,n-Lt(i,t)}else return c(i,t,!n&&n!==0?"":+n+Lt(i,t)+"px")}}function Lt(t,e,i="border-box"){return c(t,"boxSizing")===i?se(kt[e],n=>w(c(t,`padding-${n}`))+w(c(t,`border-${n}-width`))):0}function xn(t){for(const e in kt)for(const i in kt[e])if(kt[e][i]===t)return kt[e][1-i];return t}function J(t,e="width",i=window,n=!1){return P(t)?se(rs(t),o=>{const s=ls(o);return s?cs(s==="vh"?hs():s==="vw"?ze(vt(i)):n?i[`offset${Pt(e)}`]:_(i)[e],o):o}):w(t)}const ss=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,rs=G(t=>t.toString().replace(/\s/g,"").match(ss)||[]),as=/(?:v[hw]|%)$/,ls=G(t=>(t.match(as)||[])[0]);function cs(t,e){return t*w(e)/100}let ge,Wt;function hs(){return ge||(Wt||(Wt=$("<div>"),c(Wt,{height:"100vh",position:"fixed"}),x(window,"resize",()=>ge=null)),tt(document.body,Wt),ge=Wt.clientHeight,yt(Wt),ge)}const ki={read:us,write:fs,clear:ds,flush:kn},Le=[],We=[];function us(t){return Le.push(t),Ei(),t}function fs(t){return We.push(t),Ei(),t}function ds(t){En(Le,t),En(We,t)}let Si=!1;function kn(){Sn(Le),Sn(We.splice(0)),Si=!1,(Le.length||We.length)&&Ei()}function Ei(){Si||(Si=!0,queueMicrotask(kn))}function Sn(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function En(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}class Tn{init(){this.positions=[];let e;this.unbind=x(document,"mousemove",i=>e=zt(i)),this.interval=setInterval(()=>{e&&(this.positions.push(e),this.positions.length>5&&this.positions.shift())},50)}cancel(){var e;(e=this.unbind)==null||e.call(this),clearInterval(this.interval)}movesTo(e){if(!this.positions||this.positions.length<2)return!1;const i=_(e),{left:n,right:o,top:s,bottom:r}=i,[a]=this.positions,l=ne(this.positions),h=[a,l];return si(l,i)?!1:[[{x:n,y:s},{x:o,y:r}],[{x:n,y:r},{x:o,y:s}]].some(f=>{const p=ps(h,f);return p&&si(p,i)})}}function ps([{x:t,y:e},{x:i,y:n}],[{x:o,y:s},{x:r,y:a}]){const l=(a-s)*(i-t)-(r-o)*(n-e);if(l===0)return!1;const h=((r-o)*(e-s)-(a-s)*(t-o))/l;return h<0?!1:{x:t+h*(i-t),y:e+h*(n-e)}}function Cn(t,e,i={},{intersecting:n=!0}={}){const o=new IntersectionObserver(n?(s,r)=>{s.some(a=>a.isIntersecting)&&e(s,r)}:e,i);for(const s of m(t))o.observe(s);return o}const gs=wt&&window.ResizeObserver;function me(t,e,i={box:"border-box"}){if(gs)return _n(ResizeObserver,t,e,i);const n=[x(window,"load resize",e),x(document,"loadedmetadata load",e,!0)];return{disconnect:()=>n.map(o=>o())}}function Ti(t){return{disconnect:x([window,window.visualViewport],"resize",t)}}function Ci(t,e,i){return _n(MutationObserver,t,e,i)}function _n(t,e,i,n){const o=new t(i);for(const s of m(e))o.observe(s,n);return o}function _i(t){Pi(t)&&Bi(t,{func:"playVideo",method:"play"}),Oi(t)&&t.play().catch(it)}function je(t){Pi(t)&&Bi(t,{func:"pauseVideo",method:"pause"}),Oi(t)&&t.pause()}function On(t){Pi(t)&&Bi(t,{func:"mute",method:"setVolume",value:0}),Oi(t)&&(t.muted=!0)}function Oi(t){return I(t,"video")}function Pi(t){return I(t,"iframe")&&(Pn(t)||Bn(t))}function Pn(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Bn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Bi(t,e){await vs(t),Dn(t,e)}function Dn(t,e){t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}const Di="_ukPlayer";let ms=0;function vs(t){if(t[Di])return t[Di];const e=Pn(t),i=Bn(t),n=++ms;let o;return t[Di]=new Promise(s=>{e&&N(t,"load",()=>{const r=()=>Dn(t,{event:"listening",id:n});o=setInterval(r,100),r()}),N(window,"message",s,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===n&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===n}catch{}}),t.src=`${t.src}${d(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${n}`}`}).then(()=>clearInterval(o))}function bs(t,e=0,i=0){return W(t)?Ce(...qt(t).map(n=>{const{top:o,left:s,bottom:r,right:a}=K(n);return{top:o-e,left:s-i,bottom:r+e,right:a+i}}).concat(b(t))):!1}function Mn(t,{offset:e=0}={}){const i=W(t)?jt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:h,scrollHeight:u,offsetHeight:f}=a,p=K(a),O=u-p.height,{height:y,top:k}=i[l-1]?K(i[l-1]):b(t);let T=Math.ceil(k-p.top-e+h);return e>0&&f<y+e?T+=e:e=0,T>O?(e-=T-O,T=O):T<0&&(e-=T,T=0),()=>n(a,T-h,t,O).then(r)},()=>Promise.resolve())();function n(r,a,l,h){return new Promise(u=>{const f=r.scrollTop,p=o(Math.abs(a)),O=Date.now(),y=Ni(r)===r,k=b(l).top+(y?0:f);let T=0,_t=15;(function rn(){const Ke=s(rt((Date.now()-O)/p));let ot=0;i[0]===r&&f+a<h&&(ot=b(l).top+(y?0:r.scrollTop)-k-_(Mi(l)).height),c(r,"scrollBehavior")!=="auto"&&c(r,"scrollBehavior","auto"),r.scrollTop=f+(a+ot)*Ke,c(r,"scrollBehavior",""),Ke===1&&(T===ot||!_t--)?u():(T=ot,requestAnimationFrame(rn))})()})}function o(r){return 40*Math.pow(r,.375)}function s(r){return .5*(1-Math.cos(Math.PI*r))}}function An(t,e=0,i=0){if(!W(t))return 0;const n=St(t,!0),{scrollHeight:o,scrollTop:s}=n,{height:r}=K(n),a=o-r,l=pe(t)[0]-pe(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return h<u?rt((s-h)/(u-h)):1}function jt(t,e=!1,i=[]){const n=Ni(t);let o=ce(t).reverse();o=o.slice(o.indexOf(n)+1);const s=ke(o,r=>c(r,"position")==="fixed");return~s&&(o=o.slice(s)),[n].concat(o.filter(r=>c(r,"overflow").split(" ").some(a=>d(["auto","scroll",...i],a))&&(!e||r.scrollHeight>K(r).height))).reverse()}function St(...t){return jt(...t)[0]}function qt(t){return jt(t,!1,["hidden","clip"])}function K(t){const e=vt(t),i=Ni(t),n=!ee(t)||t.contains(i);if(n&&e.visualViewport){let{height:l,width:h,scale:u,pageTop:f,pageLeft:p}=e.visualViewport;return l=Math.round(l*u),h=Math.round(h*u),{height:l,width:h,top:f,left:p,bottom:f+l,right:p+h}}let o=b(n?e:t);if(c(t,"display")==="inline")return o;const{body:s,documentElement:r}=e.document,a=n?i===r||i.clientHeight<s.clientHeight?i:s:t;for(let[l,h,u,f]of[["width","x","left","right"],["height","y","top","bottom"]]){const p=o[l]%1;o[u]+=w(c(a,`border-${u}-width`)),o[l]=o[h]=a[`client${Pt(l)}`]-(p?p<.5?-p:1-p:0),o[f]=o[l]+o[u]}return o}function Mi(t){const{left:e,width:i,top:n}=_(t);for(const o of n?[0,n]:[0]){let s;for(const r of vt(t).document.elementsFromPoint(e+i/2,o))!r.contains(t)&&!v(r,"uk-togglable-leave")&&(Ai(r,"fixed")&&Nn(ce(t).reverse().find(a=>!a.contains(r)&&!Ai(a,"static")))<Nn(r)||Ai(r,"sticky")&&B(r).contains(t))&&(!s||_(s).height<_(r).height)&&(s=r);if(s)return s}}function Nn(t){return w(c(t,"zIndex"))}function Ai(t,e){return c(t,"position")===e}function Ni(t){return vt(t).document.scrollingElement}const Y=[["width","x","left","right"],["height","y","top","bottom"]];function In(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},L(e)||(e=[e,e]),b(t,Fn(t,e,i))}function Fn(t,e,i){const n=Hn(t,e,i),{boundary:o,viewportOffset:s=0,placement:r}=i;let a=n;for(const[l,[h,,u,f]]of Object.entries(Y)){const p=ws(t,e[l],s,o,l);if(qe(n,p,l))continue;let O=0;if(r[l]==="flip"){const y=i.attach.target[l];if(y===f&&n[f]<=p[f]||y===u&&n[u]>=p[u])continue;O=ys(t,e,i,l)[u]-n[u];const k=$s(t,e[l],s,l);if(!qe(Ii(n,O,l),k,l)){if(qe(n,k,l))continue;if(i.recursion)return!1;const T=xs(t,e,i);if(T&&qe(T,k,1-l))return T;continue}}else if(r[l]==="shift"){const y=b(e[l]),{offset:k}=i;O=rt(rt(n[u],p[u],p[f]-n[h]),y[u]-n[h]+k[l],y[f]-k[l])-n[u]}a=Ii(a,O,l)}return a}function Hn(t,e,i){let{attach:n,offset:o}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},s=b(t);for(const[r,[a,,l,h]]of Object.entries(Y)){const u=n.target[r]===n.element[r]?K(e[r]):b(e[r]);s=Ii(s,u[l]-s[l]+zn(n.target[r],h,u[a])-zn(n.element[r],h,s[a])+ +o[r],r)}return s}function Ii(t,e,i){const[,n,o,s]=Y[i],r={...t};return r[o]=t[n]=t[o]+e,r[s]+=e,r}function zn(t,e,i){return t==="center"?i/2:t===e?i:0}function ws(t,e,i,n,o){let s=Wn(...Ln(t,e).map(K));return i&&(s[Y[o][2]]+=i,s[Y[o][3]]-=i),n&&(s=Wn(s,b(L(n)?n[o]:n))),s}function $s(t,e,i,n){const[o,s,r,a]=Y[n],[l]=Ln(t,e),h=K(l);return["auto","scroll"].includes(c(l,`overflow-${s}`))&&(h[r]-=l[`scroll${Pt(r)}`],h[a]=h[r]+l[`scroll${Pt(o)}`]),h[r]+=i,h[a]-=i,h}function Ln(t,e){return qt(e).filter(i=>i.contains(t))}function Wn(...t){let e={};for(const i of t)for(const[,,n,o]of Y)e[n]=Math.max(e[n]||0,i[n]),e[o]=Math.min(...[e[o],i[o]].filter(Boolean));return e}function qe(t,e,i){const[,,n,o]=Y[i];return t[n]>=e[n]&&t[o]<=e[o]}function ys(t,e,{offset:i,attach:n},o){return Hn(t,e,{attach:{element:jn(n.element,o),target:jn(n.target,o)},offset:ks(i,o)})}function xs(t,e,i){return Fn(t,e,{...i,attach:{element:i.attach.element.map(qn).reverse(),target:i.attach.target.map(qn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function jn(t,e){const i=[...t],n=Y[e].indexOf(t[e]);return~n&&(i[e]=Y[e][1-n%2+2]),i}function qn(t){for(let e=0;e<Y.length;e++){const i=Y[e].indexOf(t);if(~i)return Y[1-e][i%2+2]}}function ks(t,e){return t=[...t],t[e]*=-1,t}var Ss=Object.freeze({__proto__:null,$,$$:F,Animation:ft,Dimensions:hn,MouseTracker:Tn,Transition:X,addClass:S,after:Ie,append:tt,apply:xt,assign:Zt,attr:g,before:yi,boxModelAdjust:Lt,camelize:Jt,children:Q,clamp:rt,createEvent:Me,css:c,data:Dt,dimensions:_,each:oe,empty:bn,endsWith:Kt,escape:di,fastdom:ki,filter:le,find:ui,findAll:ue,findIndex:ke,flipPosition:xn,fragment:dt,getCoveringElement:Mi,getEventPos:zt,getIndex:ct,getTargetedElement:hi,hasAttr:ht,hasClass:v,hasOwn:st,hasTouch:Mt,height:at,html:Ne,hyphenate:gt,inBrowser:wt,includes:d,index:Ft,intersectRect:Ce,isArray:L,isBoolean:Bt,isDocument:te,isElement:Te,isEmpty:ei,isEqual:ln,isFocusable:ci,isFunction:q,isInView:bs,isInput:li,isNode:ee,isNumber:ti,isNumeric:mt,isObject:lt,isPlainObject:Qt,isRtl:$t,isSameSiteAnchor:Ht,isString:P,isTag:I,isTouch:ut,isUndefined:R,isVisible:W,isVoidElement:ai,isWindow:Ee,last:ne,matches:E,memoize:G,mute:On,noop:it,observeIntersection:Cn,observeMutation:Ci,observeResize:me,observeViewportResize:Ti,off:pi,offset:b,offsetPosition:pe,offsetViewport:K,on:x,once:N,overflowParents:qt,parent:B,parents:ce,pause:je,pick:oi,play:_i,pointInRect:si,pointerCancel:Pe,pointerDown:Nt,pointerEnter:ae,pointerLeave:Oe,pointerMove:jo,pointerUp:It,position:os,positionAt:In,prepend:is,propName:vi,query:V,queryAll:he,ready:es,remove:yt,removeAttr:re,removeClass:A,replaceClass:_e,scrollIntoView:Mn,scrollParent:St,scrollParents:jt,scrolledOver:An,selFocusable:De,selInput:Be,sortBy:cn,startsWith:et,sumBy:se,swap:ni,toArray:Se,toBoolean:ii,toEventTargets:mi,toFloat:w,toNode:D,toNodes:m,toNumber:ie,toPx:J,toWindow:vt,toggleClass:U,trigger:C,ucfirst:Pt,uniqueBy:zo,unwrap:de,width:ze,wrapAll:He,wrapInner:xi});function Es(t){t._data={},t._updates=[...t.$options.update||[]],t._disconnect.push(()=>t._updates=t._data=null)}function Ts(t,e){t._updates.unshift(e)}function ve(t,e="update"){t._connected&&t._updates.length&&(t._queued||(t._queued=new Set,ki.read(()=>{t._connected&&Cs(t,t._queued),t._queued=null})),t._queued.add(e.type||e))}function Cs(t,e){for(const{read:i,write:n,events:o=[]}of t._updates){if(!e.has("update")&&!o.some(r=>e.has(r)))continue;let s;i&&(s=i.call(t,t._data,e),s&&Qt(s)&&Zt(t._data,s)),n&&s!==!1&&ki.write(()=>{t._connected&&n.call(t,t._data,e)})}}function _s(t){t._watches=[];for(const e of t.$options.watch||[])for(const[i,n]of Object.entries(e))Rn(t,n,i);t._initial=!0}function Rn(t,e,i){t._watches.push({name:i,...Qt(e)?e:{handler:e}})}function Os(t,e){for(const{name:i,handler:n,immediate:o=!0}of t._watches)(t._initial&&o||st(e,i)&&!ln(e[i],t[i]))&&n.call(t,t[i],e[i]);t._initial=!1}function Ps(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)Vn(t,i,e[i])}const Un={subtree:!0,childList:!0};function Vn(t,e,i){t._hasComputed=!0,Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:o,$el:s}=t;if(!st(n,e)&&(n[e]=(i.get||i).call(t,o,s),i.observe&&t._computedObserver)){const r=i.observe.call(t,o);t._computedObserver.observe(["~","+","-"].includes(r[0])?s.parentElement:s.getRootNode(),Un)}return n[e]},set(n){const{_computed:o}=t;o[e]=i.set?i.set.call(t,n):n,R(o[e])&&delete o[e]}})}function Bs(t){t._hasComputed&&(Ts(t,{read:()=>Os(t,Yn(t)),events:["resize","computed"]}),t._computedObserver=Ci(t.$el,()=>ve(t,"computed"),Un),t._disconnect.push(()=>{t._computedObserver.disconnect(),t._computedObserver=null,Yn(t)}))}function Yn(t){const e={...t._computed};return t._computed={},e}function Ds(t){for(const e of t.$options.events||[])if(st(e,"handler"))Gn(t,e);else for(const i in e)Gn(t,{name:i,handler:e[i]})}function Gn(t,{name:e,el:i,handler:n,capture:o,passive:s,delegate:r,filter:a,self:l}){a&&!a.call(t,t)||t._disconnect.push(x(i?i.call(t,t):t.$el,e,r==null?void 0:r.call(t,t),n.bind(t),{passive:s,capture:o,self:l}))}function Ms(t){for(const e of t.$options.observe||[])As(t,e)}function As(t,e){let{observe:i,target:n=t.$el,handler:o,options:s,filter:r,args:a}=e;if(r&&!r.call(t,t))return;const l=`_observe${t._disconnect.length}`;q(n)&&!st(t,l)&&Vn(t,l,()=>{const f=n.call(t,t);return L(f)?m(f):f}),o=P(o)?t[o]:o.bind(t),q(s)&&(s=s.call(t,t));const h=st(t,l)?t[l]:n,u=i(h,o,s,a);q(n)&&L(t[l])&&Rn(t,{handler:Ns(u,s),immediate:!1},l),t._disconnect.push(()=>u.disconnect())}function Ns(t,e){return(i,n)=>{for(const o of n)d(i,o)||(t.unobserve?t.unobserve(o):t.observe&&t.disconnect());for(const o of i)(!d(n,o)||!t.unobserve)&&t.observe(o,e)}}const H={};H.events=H.watch=H.observe=H.created=H.beforeConnect=H.connected=H.beforeDisconnect=H.disconnected=H.destroy=Fi,H.args=function(t,e){return e!==!1&&Fi(e||t)},H.update=function(t,e){return cn(Fi(t,q(e)?{read:e}:e),"order")},H.props=function(t,e){if(L(e)){const i={};for(const n of e)i[n]=String;e=i}return H.methods(t,e)},H.computed=H.methods=function(t,e){return e?t?{...t,...e}:e:t},H.i18n=H.data=function(t,e,i){return i?Xn(t,e,i):e?t?function(n){return Xn(t,e,n)}:e:t};function Xn(t,e,i){return H.computed(q(t)?t.call(i,i):t,q(e)?e.call(i,i):e)}function Fi(t,e){return t=t&&!L(t)?[t]:t,e?t?t.concat(e):L(e)?e:[e]:t}function Is(t,e){return R(e)?t:e}function be(t,e,i){const n={};if(q(e)&&(e=e.options),e.extends&&(t=be(t,e.extends,i)),e.mixins)for(const s of e.mixins)t=be(t,s,i);for(const s in t)o(s);for(const s in e)st(t,s)||o(s);function o(s){n[s]=(H[s]||Is)(t[s],e[s],i)}return n}function Hi(t,e=[]){try{return t?et(t,"{")?JSON.parse(t):e.length&&!d(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[o,s]=n.split(/:(.*)/);return o&&!R(s)&&(i[o.trim()]=s.trim()),i},{}):{}}catch{return{}}}function zi(t,e){return t===Boolean?ii(e):t===Number?ie(e):t==="list"?Hs(e):t===Object&&P(e)?Hi(e):t?t(e):e}const Fs=/,(?![^(]*\))/;function Hs(t){return L(t)?t:P(t)?t.split(Fs).map(e=>mt(e)?ie(e):ii(e.trim())):[t]}function zs(t){const{$options:e,$props:i}=t,n=Jn(e);Zt(i,n);const{computed:o,methods:s}=e;for(let r in i)r in n&&(!o||!st(o,r))&&(!s||!st(s,r))&&(t[r]=i[r])}function Jn(t){const e={},{args:i=[],props:n={},el:o,id:s}=t;if(!n)return e;for(const a in n){const l=gt(a);let h=Dt(o,l);R(h)||(h=n[a]===Boolean&&h===""?!0:zi(n[a],h),!(l==="target"&&et(h,"_"))&&(e[a]=h))}const r=Hi(Dt(o,s),i);for(const a in r){const l=Jt(a);R(n[l])||(e[l]=zi(n[l],r[a]))}return e}const Ls=G((t,e)=>{const i=Object.keys(e),n=i.concat(t).map(o=>[gt(o),`data-${gt(o)}`]).flat();return{attributes:i,filter:n}});function Ws(t){const{$options:e,$props:i}=t,{id:n,props:o,el:s}=e;if(!o)return;const{attributes:r,filter:a}=Ls(n,o),l=new MutationObserver(h=>{const u=Jn(e);h.some(({attributeName:f})=>{const p=f.replace("data-","");return(p===n?r:[Jt(p),Jt(f)]).some(O=>!R(u[O])&&u[O]!==i[O])})&&t.$reset()});l.observe(s,{attributes:!0,attributeFilter:a}),t._disconnect.push(()=>l.disconnect())}function Rt(t,e){var i;(i=t.$options[e])==null||i.forEach(n=>n.call(t))}function Li(t){t._connected||(zs(t),Rt(t,"beforeConnect"),t._connected=!0,t._disconnect=[],Ds(t),Es(t),_s(t),Ms(t),Ws(t),Bs(t),Rt(t,"connected"),ve(t))}function Wi(t){t._connected&&(Rt(t,"beforeDisconnect"),t._disconnect.forEach(e=>e()),t._disconnect=null,Rt(t,"disconnected"),t._connected=!1)}let js=0;function Kn(t,e={}){e.data=Us(e,t.constructor.options),t.$options=be(t.constructor.options,e,t),t.$props={},t._uid=js++,qs(t),Rs(t),Ps(t),Rt(t,"created"),e.el&&t.$mount(e.el)}function qs(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function Rs(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function Us({data:t={}},{args:e=[],props:i={}}){L(t)&&(t=t.slice(0,e.length).reduce((n,o,s)=>(Qt(o)?Zt(n,o):n[e[s]]=o,n),{}));for(const n in t)R(t[n])?delete t[n]:i[n]&&(t[n]=zi(i[n],t[n]));return t}const Z=function(t){Kn(this,t)};Z.util=Ss,Z.options={},Z.version="3.21.14-dev.2e8a07c7e";const Vs="uk-",Et="__uikit__",Ut={};function Zn(t,e){var i,n;const o=Vs+gt(t);if(!e)return Ut[o].options||(Ut[o]=Z.extend(Ut[o])),Ut[o];t=Jt(t),Z[t]=(r,a)=>we(t,r,a);const s=(i=e.options)!=null?i:{...e};return s.id=o,s.name=t,(n=s.install)==null||n.call(s,Z,s,t),Z._initialized&&!s.functional&&requestAnimationFrame(()=>we(t,`[${o}],[data-${o}]`)),Ut[o]=s}function we(t,e,i,...n){const o=Zn(t);return o.options.functional?new o({data:Qt(e)?e:[e,i,...n]}):e?F(e).map(s)[0]:s();function s(r){const a=Re(r,t);if(a)if(i)a.$destroy();else return a;return new o({el:r,data:i})}}function $e(t){return(t==null?void 0:t[Et])||{}}function Re(t,e){return $e(t)[e]}function Ys(t,e){t[Et]||(t[Et]={}),t[Et][e.$options.name]=e}function Gs(t,e){var i;(i=t[Et])==null||delete i[e.$options.name],ei(t[Et])&&delete t[Et]}function Xs(t){wt&&window.MutationObserver&&(document.body?requestAnimationFrame(()=>Qn(t)):new MutationObserver((e,i)=>{document.body&&(Qn(t),i.disconnect())}).observe(document.documentElement,{childList:!0}))}function Qn(t){C(document,"uikit:init",t),document.body&&xt(document.body,to),new MutationObserver(Js).observe(document,{subtree:!0,childList:!0,attributes:!0}),t._initialized=!0}function Js(t){var e;for(const{addedNodes:i,removedNodes:n,target:o,attributeName:s}of t){for(const a of i)xt(a,to);for(const a of n)xt(a,Ks);const r=s&&eo(s);r&&(ht(o,s)?we(r,o):(e=Re(o,r))==null||e.$destroy())}}function to(t){const e=$e(t);for(const i in e)Li(e[i]);for(const i of t.getAttributeNames()){const n=eo(i);n&&we(n,t)}}function Ks(t){const e=$e(t);for(const i in e)Wi(e[i])}function eo(t){et(t,"data-")&&(t=t.slice(5));const e=Ut[t];return e&&(e.options||e).name}function Zs(t){t.component=Zn,t.getComponents=$e,t.getComponent=Re,t.update=io,t.use=function(i){if(!i.installed)return i.call(null,this),i.installed=!0,this},t.mixin=function(i,n){n=(P(n)?this.component(n):n)||this,n.options=be(n.options,i)},t.extend=function(i){i||(i={});const n=this,o=function(r){Kn(this,r)};return o.prototype=Object.create(n.prototype),o.prototype.constructor=o,o.options=be(n.options,i),o.super=n,o.extend=n.extend,o};let e;Object.defineProperty(t,"container",{get(){return e||document.body},set(i){e=$(i)}})}function io(t,e){t=t?D(t):document.body;for(const i of ce(t).reverse())no(i,e);xt(t,i=>no(i,e))}function no(t,e){const i=$e(t);for(const n in i)ve(i[n],e)}function Qs(t){t.prototype.$mount=function(e){const i=this;Ys(e,i),i.$options.el=e,e.isConnected&&Li(i)},t.prototype.$destroy=function(e=!1){const i=this,{el:n}=i.$options;n&&Wi(i),Rt(i,"destroy"),Gs(n,i),e&&yt(i.$el)},t.prototype.$create=we,t.prototype.$emit=function(e){ve(this,e)},t.prototype.$update=function(e=this.$el,i){io(e,i)},t.prototype.$reset=function(){Wi(this),Li(this)},t.prototype.$getComponent=Re,Object.defineProperties(t.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(t,"container")})}let tr=1;function Ue(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${tr++}`}Zs(Z),Qs(Z);function pt(t){return ye(me,t,"resize")}function Vt(t){return ye(Cn,t)}function Ve(t){return ye(Ci,t)}function ji(t={}){return Vt({handler:function(e,i){const{targets:n=this.$el,preload:o=5}=t;for(const s of m(q(n)?n(this):n))F('[loading="lazy"]',s).slice(0,o-1).forEach(r=>re(r,"loading"));for(const s of e.filter(({isIntersecting:r})=>r).map(({target:r})=>r))i.unobserve(s)},...t})}function oo(t){return ye((e,i)=>Ti(i),t,"resize")}function qi(t){return ye((e,i)=>({disconnect:x(ir(e),"scroll",i,{passive:!0})}),t,"scroll")}function so(t){return{observe(e,i){return{observe:it,unobserve:it,disconnect:x(e,Nt,i,{passive:!0})}},handler(e){if(!ut(e))return;const i=zt(e),n="tagName"in e.target?e.target:B(e.target);N(document,`${It} ${Pe} scroll`,o=>{const{x:s,y:r}=zt(o);(o.type!=="scroll"&&n&&s&&Math.abs(i.x-s)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{C(n,"swipe"),C(n,`swipe${er(i.x,i.y,s,r)}`)})})},...t}}function ye(t,e,i){return{observe:t,handler(){ve(this,i)},...e}}function er(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function ir(t){return m(t).map(e=>{const{ownerDocument:i}=e,n=St(e,!0);return n===i.scrollingElement?i:n})}var nt={connected(){S(this.$el,this.$options.id)}},nr={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${$t?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=d(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const o=[this.flip&&"flip",this.shift&&"shift"],s={element:[this.inset?this.dir:xn(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in s)s[l].reverse();n.reverse(),o.reverse()}const r=Ri(t),a=_(t);c(t,{top:-a.height,left:-a.width}),In(t,e,{attach:s,offset:n,boundary:i,placement:o,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t=this.$el){return J(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(d(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t=this.$el){return this.align==="center"?0:J(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(d(["left","top"],this.align)?1:-1)},getViewportOffset(t){return J(c(t,"--uk-position-viewport-offset"))}}};function Ri(t){const e=St(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}var Yt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:t})=>!!t[0],hasTransition:({animation:t})=>["slide","reveal"].some(e=>et(t[0],e))},methods:{async toggleElement(t,e,i){try{return await Promise.all(m(t).map(n=>{const o=Bt(e)?e:!this.isToggled(n);if(!C(n,`before${o?"show":"hide"}`,[this]))return Promise.reject();const s=(q(i)?i:i===!1||!this.hasAnimation?or:this.hasTransition?sr:rr)(n,o,this),r=o?this.clsEnter:this.clsLeave;S(n,r),C(n,o?"show":"hide",[this]);const a=()=>{var l;if(A(n,r),C(n,o?"shown":"hidden",[this]),o){const h=Ri(n);(l=F("[autofocus]",n).find(W))==null||l.focus(),h()}};return s?s.then(a,()=>(A(n,r),Promise.reject())):a()})),!0}catch{return!1}},isToggled(t=this.$el){return t=D(t),v(t,this.clsEnter)?!0:v(t,this.clsLeave)?!1:this.cls?v(t,this.cls.split(" ")[0]):W(t)},_toggle(t,e){if(!t)return;e=!!e;let i;this.cls?(i=d(this.cls," ")||e!==v(t,this.cls),i&&U(t,this.cls,d(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),i&&C(t,"toggled",[e,this])}}};function or(t,e,{_toggle:i}){return ft.cancel(t),X.cancel(t),i(t,e)}async function sr(t,e,{animation:i,duration:n,velocity:o,transition:s,_toggle:r}){var a;const[l="reveal",h="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],f=u[d(u[0],h)?0:1],p=f[1]===h,y=["width","height"][u.indexOf(f)],k=`margin-${f[0]}`,T=`margin-${h}`;let _t=_(t)[y];const rn=X.inProgress(t);await X.cancel(t),e&&r(t,!0);const Ke=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",k,T].map(Io=>[Io,t.style[Io]])),ot=_(t),an=w(c(t,k)),Mo=w(c(t,T)),Ot=ot[y]+Mo;!rn&&!e&&(_t+=Mo);const[Ze]=xi(t,"<div>");c(Ze,{boxSizing:"border-box",height:ot.height,width:ot.width,...c(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",T])}),c(t,{padding:0,border:0,minWidth:0,minHeight:0,[T]:0,width:ot.width,height:ot.height,overflow:"hidden",[y]:_t});const Ao=_t/Ot;n=(o*Ot+n)*(e?1-Ao:Ao);const No={[y]:e?Ot:0};p&&(c(t,k,Ot-_t+an),No[k]=e?an:Ot+an),!p^l==="reveal"&&(c(Ze,k,-Ot+_t),X.start(Ze,{[k]:e?0:-Ot},n,s));try{await X.start(t,No,n,s)}finally{c(t,Ke),de(Ze.firstChild),e||r(t,!1)}}function rr(t,e,i){const{animation:n,duration:o,_toggle:s}=i;return e?(s(t,!0),ft.in(t,n[0],o,i.origin)):ft.out(t,n[1]||n[0],o,i.origin).then(()=>s(t,!1))}const M={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var ro={mixins:[nt,Yt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:({targets:t},e)=>F(t,e),toggles({toggle:t}){return this.items.map(e=>$(t,e))},contents({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||$(t,e)})}},watch:{items(t,e){if(e||v(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},toggles(){this.$emit()},contents(t){for(const e of t){const i=v(this.items.find(n=>n.contains(e)),this.clsOpen);Ye(e,!i)}this.$emit()}},observe:ji(),events:[{name:"click keydown",delegate:({targets:t,$props:e})=>`${t} ${e.toggle}`,async handler(t){var e;t.type==="keydown"&&t.keyCode!==M.SPACE||(t.preventDefault(),(e=this._off)==null||e.call(this),this._off=lr(t.target),await this.toggle(Ft(this.toggles,t.current)),this._off())}},{name:"shown hidden",self:!0,delegate:({targets:t})=>t,handler(){this.$emit()}}],update(){const t=le(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],n=this.contents[e];if(!i||!n)continue;i.id=Ue(this,i),n.id=Ue(this,n);const o=d(t,this.items[e]);g(i,{role:I(i,"a")?"button":null,"aria-controls":n.id,"aria-expanded":o,"aria-disabled":!this.collapsible&&t.length<2&&o}),g(n,{role:"region","aria-labelledby":i.id}),I(n,"ul")&&g(Q(n),"role","presentation")}},methods:{toggle(t,e){t=this.items[ct(t,this.items)];let i=[t];const n=le(this.items,`.${this.clsOpen}`);if(!this.multiple&&!d(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&d(n,t)))return Promise.all(i.map(o=>this.toggleElement(o,!d(n,o),(s,r)=>{if(U(s,this.clsOpen,r),e===!1||!this.animation){Ye($(this.content,s),!r);return}return ar(s,r,this)})))}}};function Ye(t,e){t&&(t.hidden=e)}async function ar(t,e,{content:i,duration:n,velocity:o,transition:s}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||$(i,t),t._wrapper||(t._wrapper=He(i,"<div>"));const a=t._wrapper;c(a,"overflow","hidden");const l=w(c(a,"height"));await X.cancel(a),Ye(i,!1);const h=se(["marginTop","marginBottom"],f=>c(i,f))+_(i).height,u=l/h;n=(o*h+n)*(e?1-u:u),c(a,"height",l),await X.start(a,{height:e?h:0},n,s),de(i),delete t._wrapper,e||Ye(i,!0)}function lr(t){const e=St(t,!0);let i;return function n(){i=requestAnimationFrame(()=>{const{top:o}=_(t);o<0&&(e.scrollTop+=o),n()})}(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var cr={mixins:[nt,Yt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate:({selClose:t})=>t,handler(t){t.preventDefault(),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,hr),this.$destroy(!0)}}};function hr(t,e,{duration:i,transition:n,velocity:o}){const s=w(c(t,"height"));return c(t,"height",s),X.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},o*s+i,n)}var ao={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},beforeConnect(){this.autoplay==="inview"&&!ht(this.$el,"preload")&&(this.$el.preload="none"),I(this.$el,"iframe")&&!ht(this.$el,"allow")&&(this.$el.allow="autoplay"),this.autoplay==="hover"&&(I(this.$el,"video")?this.$el.tabindex=0:this.autoplay=!0),this.automute&&On(this.$el)},events:[{name:`${ae} focusin`,filter:({autoplay:t})=>d(t,"hover"),handler(t){!ut(t)||!ur(this.$el)?_i(this.$el):je(this.$el)}},{name:`${Oe} focusout`,filter:({autoplay:t})=>d(t,"hover"),handler(t){ut(t)||je(this.$el)}}],observe:[Vt({filter:({autoplay:t})=>t!=="hover",handler([{isIntersecting:t}]){document.fullscreenElement||(t?this.autoplay&&_i(this.$el):je(this.$el))},args:{intersecting:!1},options:({$el:t,autoplay:e})=>({root:e==="inview"?null:B(t).closest(":not(a)")})})]};function ur(t){return!t.paused&&!t.ended}var fr={mixins:[ao],props:{width:Number,height:Number},data:{automute:!0},created(){this.useObjectFit=I(this.$el,"img","video")},observe:pt({target:({$el:t})=>lo(t)||B(t),filter:({useObjectFit:t})=>!t}),update:{read(){if(this.useObjectFit)return!1;const{ratio:t,cover:e}=hn,{$el:i,width:n,height:o}=this;let s={width:n,height:o};if(!n||!o){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};n?s=t(h,"width",n):o?s=t(h,"height",o):s=h}const{offsetHeight:r,offsetWidth:a}=lo(i)||B(i),l=e(s,{width:a,height:r});return!l.width||!l.height?!1:l},write({height:t,width:e}){c(this.$el,{height:t,width:e})},events:["resize"]}};function lo(t){for(;t=B(t);)if(c(t,"position")!=="static")return t}var Ui={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&$(t)}}};let Vi;function co(t){const e=x(t,"touchstart",n=>{if(n.targetTouches.length!==1||E(n.target,'input[type="range"'))return;let o=zt(n).y;const s=x(t,"touchmove",r=>{const a=zt(r).y;a!==o&&(o=a,jt(r.target).some(l=>{if(!t.contains(l))return!1;let{scrollHeight:h,clientHeight:u}=l;return u<h})||r.preventDefault())},{passive:!1});N(t,"scroll touchend touchcanel",s,{capture:!0})},{passive:!0});if(Vi)return e;Vi=!0;const{scrollingElement:i}=document;return c(i,{overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:ze(window)-i.clientWidth||""}),()=>{Vi=!1,e(),c(i,{overflowY:"",touchAction:"",paddingRight:""})}}let z;var ho={mixins:[Ui,nr,Yt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean,closeOnScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1,closeOnScroll:!1},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},n){return[V(e||t,n)||window,V(i||t,n)||window]},target({target:t,targetX:e,targetY:i},n){return e||(e=t||this.targetEl),i||(i=t||this.targetEl),[e===!0?window:V(e,n),i===!0?window:V(i,n)]}},created(){this.tracker=new Tn},beforeConnect(){this.clsDrop=this.$props.clsDrop||this.$options.id},connected(){S(this.$el,"uk-drop",this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=pr(this)),this._style=oi(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),z=null),c(this.$el,this._style)},events:[{name:"click",delegate:()=>".uk-drop-close",handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate:()=>'a[href*="#"]',handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&Ht(e)&&!this.$el.contains($(i))&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),E(this.$el,":focus,:hover")||this.hide()}},{name:`${ae} focusin`,filter:({mode:t})=>d(t,"hover"),handler(t){ut(t)||this.clearTimers()}},{name:`${Oe} focusout`,filter:({mode:t})=>d(t,"hover"),handler(t){!ut(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){z=this,this.tracker.init(),g(this.targetEl,"aria-expanded",!0);const t=[gr(this),mr(this),br(this),this.autoUpdate&&uo(this),this.closeOnScroll&&vr(this)];N(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0}),this.bgScroll||N(this.$el,"hidden",co(this.$el),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){z=z===null&&this.$el.contains(t)&&this.isToggled()?this:z;return}z=this.isActive()?null:z,this.tracker.cancel(),g(this.targetEl,"aria-expanded",null)}}],update:{write(){this.isToggled()&&!v(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(z){if(e&&z.isDelaying()){this.showTimer=setTimeout(()=>E(t,":hover")&&this.show(),10);return}let i;for(;z&&i!==z&&!z.$el.contains(this.$el);)i=z,z.hide(!1,!1)}this.container&&B(this.$el)!==this.container&&tt(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelayedHide=t,t&&this.isDelaying()?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null},isActive(){return z===this},isDelaying(){return[this.$el,...F(".uk-drop",this.$el)].some(t=>this.tracker.movesTo(t))},position(){const t=Ri(this.$el);A(this.$el,"uk-drop-stack"),c(this.$el,this._style),this.$el.hidden=!0;const e=this.target.map(s=>dr(this.$el,s)),i=this.getViewportOffset(this.$el),n=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[s,[r,a]]of n)this.axis!==r&&d([r,!0],this.stretch)&&c(this.$el,{[a]:Math.min(b(this.boundary[s])[a],e[s][a]-2*i),[`overflow-${r}`]:"auto"});const o=e[0].width-2*i;this.$el.hidden=!1,c(this.$el,"maxWidth",""),this.$el.offsetWidth>o&&S(this.$el,"uk-drop-stack"),c(this.$el,"maxWidth",o),this.positionAt(this.$el,this.target,this.boundary);for(const[s,[r,a,l,h]]of n)if(this.axis===r&&d([r,!0],this.stretch)){const u=Math.abs(this.getPositionOffset()),f=b(this.target[s]),p=b(this.$el);c(this.$el,{[a]:(f[l]>p[l]?f[this.inset?h:l]-Math.max(b(this.boundary[s])[l],e[s][l]+i):Math.min(b(this.boundary[s])[h],e[s][h]-i)-f[this.inset?l:h])-u,[`overflow-${r}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}t()}}};function dr(t,e){return K(qt(e).find(i=>i.contains(t)))}function pr(t){const{$el:e}=t.$create("toggle",V(t.toggle,t.$el),{target:t.$el,mode:t.mode});return g(e,"aria-haspopup",!0),e}function gr(t){const e=()=>t.$emit(),i=[Ti(e),me(qt(t.$el).concat(t.target),e)];return()=>i.map(n=>n.disconnect())}function uo(t,e=()=>t.$emit()){return x([document,...qt(t.$el)],"scroll",e,{passive:!0})}function mr(t){return x(document,"keydown",e=>{e.keyCode===M.ESC&&t.hide(!1)})}function vr(t){return uo(t,()=>t.hide(!1))}function br(t){return x(document,Nt,({target:e})=>{t.$el.contains(e)||N(document,`${It} ${Pe} scroll`,({defaultPrevented:i,type:n,target:o})=>{var s;!i&&n===It&&e===o&&!((s=t.targetEl)!=null&&s.contains(e))&&t.hide(!1)},!0)})}var fo={mixins:[nt,Ui],props:{align:String,clsDrop:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean,closeOnScroll:Boolean},data:{align:$t?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1,selNavItem:"> li > a, > ul > li > a"},computed:{dropbarAnchor:({dropbarAnchor:t},e)=>V(t,e)||e,dropbar({dropbar:t}){return t?(t=this._dropbar||V(t,this.$el)||$(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=$("<div></div>"))):null},dropContainer(t,e){return this.container||e},dropdowns({clsDrop:t},e){var i;const n=F(`.${t}`,e);if(this.dropContainer!==e)for(const o of F(`.${t}`,this.dropContainer)){const s=(i=this.getDropdown(o))==null?void 0:i.targetEl;!d(n,o)&&s&&this.$el.contains(s)&&n.push(o)}return n},items({selNavItem:t},e){return F(t,e)}},watch:{dropbar(t){S(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},dropdowns(){this.initializeDropdowns()}},connected(){this.initializeDropdowns()},disconnected(){yt(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:({selNavItem:t})=>t,handler({current:t}){const e=this.getActive();e&&d(e.mode,"hover")&&e.targetEl&&!t.contains(e.targetEl)&&!e.isDelaying()&&e.hide(!1)}},{name:"keydown",self:!0,delegate:({selNavItem:t})=>t,handler(t){var e;const{current:i,keyCode:n}=t,o=this.getActive();n===M.DOWN&&(o==null?void 0:o.targetEl)===i&&(t.preventDefault(),(e=$(De,o.$el))==null||e.focus()),po(t,this.items,o)}},{name:"keydown",el:({dropContainer:t})=>t,delegate:({clsDrop:t})=>`.${t}`,handler(t){var e;const{current:i,keyCode:n,target:o}=t;if(li(o)||!d(this.dropdowns,i))return;const s=this.getActive();let r=-1;if(n===M.HOME?r=0:n===M.END?r="last":n===M.UP?r="previous":n===M.DOWN?r="next":n===M.ESC&&((e=s.targetEl)==null||e.focus()),~r){t.preventDefault();const a=F(De,i);a[ct(r,a,ke(a,l=>E(l,":focus")))].focus()}po(t,this.items,s)}},{name:"mouseleave",el:({dropbar:t})=>t,filter:({dropbar:t})=>t,handler(){const t=this.getActive();t&&d(t.mode,"hover")&&!this.dropdowns.some(e=>E(e,":hover"))&&t.hide()}},{name:"beforeshow",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&Ie(this.dropbarAnchor,this.dropbar),S(t,`${this.clsDrop}-dropbar`))}},{name:"show",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const n=Math.max(...ce(t,`.${this.clsDrop}`).concat(t).map(o=>b(o).bottom));b(this.dropbar,{left:b(this.dropbar).left,top:this.getDropbarOffset(e.getPositionOffset())}),this.transitionTo(n-b(this.dropbar).top+w(c(t,"marginBottom")),t)};this._observer=me([e.$el,...e.target],i),i()}},{name:"beforehide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler(t){const e=this.getActive();E(this.dropbar,":hover")&&e.$el===t.target&&this.isDropbarDrop(e.$el)&&d(e.mode,"hover")&&e.isDelayedHide&&!this.items.some(i=>e.targetEl!==i&&E(i,":focus"))&&t.preventDefault()}},{name:"hide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return d(this.dropdowns,(t=z)==null?void 0:t.$el)&&z},async transitionTo(t,e){const{dropbar:i}=this,n=at(i);if(e=n<t&&e,await X.cancel([e,i]),e){const o=b(e).top-b(i).top-n;o>0&&c(e,"transitionDelay",`${o/t*this.duration}ms`)}c(e,"clipPath",`polygon(0 0,100% 0,100% ${n}px,0 ${n}px)`),at(i,n),await Promise.all([X.start(i,{height:t},this.duration),X.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>c(e,{clipPath:"",transitionDelay:""}))]).catch(it)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return d(this.dropdowns,t)&&v(t,this.clsDrop)},getDropbarOffset(t){const{$el:e,target:i,targetY:n}=this,{top:o,height:s}=b(V(n||i||e,e));return o+s+t},initializeDropdowns(){this.$create("drop",this.dropdowns.filter(t=>!this.getDropdown(t)),{...this.$props,flip:!1,shift:!0,pos:`bottom-${this.align}`,boundary:this.boundary===!0?this.$el:this.boundary})}}};function po(t,e,i){var n,o,s;const{current:r,keyCode:a}=t;let l=-1;a===M.HOME?l=0:a===M.END?l="last":a===M.LEFT?l="previous":a===M.RIGHT?l="next":a===M.TAB&&((n=i.targetEl)==null||n.focus(),(o=i.hide)==null||o.call(i,!1)),~l&&(t.preventDefault(),(s=i.hide)==null||s.call(i,!1),e[ct(l,e,e.indexOf(i.targetEl||r))].focus())}var wr={mixins:[nt],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:(t,e)=>$(Be,e),state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&B(this.input)===e&&this.input.nextElementSibling||$(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const o=li(e)?"value":"textContent",s=e[o],r=(t=i.files)!=null&&t[0]?i.files[0].name:E(i,"select")&&(n=F("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;s!==r&&(e[o]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el:({$el:t})=>t.closest("form"),handler(){this.$emit()}}]},go={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},observe:[Ve({options:{childList:!0}}),Ve({options:{attributes:!0,attributeFilter:["style"]},target:({$el:t})=>[t,...Q(t)]}),pt({target:({$el:t})=>[t,...Q(t)]})],update:{read(){return{rows:mo(Q(this.$el))}},write({rows:t}){for(const e of t)for(const i of e)U(i,this.margin,t[0]!==e),U(i,this.firstColumn,e[$t?e.length-1:0]===i)},events:["resize"]}};function mo(t){const e=[[]],i=t.some((n,o)=>o&&t[o-1].offsetParent!==n.offsetParent);for(const n of t){if(!W(n))continue;const o=Yi(n,i);for(let s=e.length-1;s>=0;s--){const r=e[s];if(!r[0]){r.push(n);break}const a=Yi(r[0],i);if(o.top>=a.bottom-1&&o.top!==a.top){e.push([n]);break}if(o.bottom-1>a.top||o.top===a.top){let l=r.length-1;for(;l>=0;l--){const h=Yi(r[l],i);if(o.left>=h.left)break}r.splice(l+1,0,n);break}if(s===0){e.unshift([n]);break}}}return e}function Yi(t,e=!1){let{offsetTop:i,offsetLeft:n,offsetHeight:o,offsetWidth:s}=t;return e&&([i,n]=pe(t)),{top:i,left:n,bottom:i+o,right:n+s}}var $r={extends:go,mixins:[nt],name:"grid",props:{masonry:Boolean,parallax:String,parallaxStart:String,parallaxEnd:String,parallaxJustify:Boolean},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0,parallaxStart:0,parallaxEnd:0,parallaxJustify:!1},connected(){this.masonry&&S(this.$el,"uk-flex-top","uk-flex-wrap-top")},observe:qi({filter:({parallax:t,parallaxJustify:e})=>t||e}),update:[{write({rows:t}){U(this.$el,this.clsStack,!t.some(e=>e.length>1))},events:["resize"]},{read(t){const{rows:e}=t;let{masonry:i,parallax:n,parallaxJustify:o,margin:s}=this;if(n=Math.max(0,J(n)),!(i||n||o)||vo(e)||e[0].some((y,k)=>e.some(T=>T[k]&&T[k].offsetWidth!==y.offsetWidth)))return t.translates=t.scrollColumns=!1;let r=xr(e,s),a,l;i?[a,l]=yr(e,r,i==="next"):a=kr(e);const h=a.map(y=>se(y,"offsetHeight")+r*(y.length-1)),u=Math.max(0,...h);let f,p,O;return(n||o)&&(f=h.map((y,k)=>o?u-y+n:n/(k%2||8)),o||(n=Math.max(...h.map((y,k)=>y+f[k]-u))),p=J(this.parallaxStart,"height",this.$el,!0),O=J(this.parallaxEnd,"height",this.$el,!0)),{columns:a,translates:l,scrollColumns:f,parallaxStart:p,parallaxEnd:O,padding:n,height:l?u:""}},write({height:t,padding:e}){c(this.$el,"paddingBottom",e||""),t!==!1&&c(this.$el,"height",t)},events:["resize"]},{read({rows:t,scrollColumns:e,parallaxStart:i,parallaxEnd:n}){return{scrolled:e&&!vo(t)?An(this.$el,i,n):!1}},write({columns:t,scrolled:e,scrollColumns:i,translates:n}){!e&&!n||t.forEach((o,s)=>o.forEach((r,a)=>{let[l,h]=n&&n[s][a]||[0,0];e&&(h+=e*i[s]),c(r,"transform",`translate(${l}px, ${h}px)`)}))},events:["scroll","resize"]}]};function vo(t){return t.flat().some(e=>c(e,"position")==="absolute")}function yr(t,e,i){const n=[],o=[],s=Array(t[0].length).fill(0);let r=0;for(let a of t){$t&&a.reverse();let l=0;for(const h in a){const{offsetWidth:u,offsetHeight:f}=a[h],p=i?h:s.indexOf(Math.min(...s));Gi(n,p,a[h]),Gi(o,p,[(p-h)*u*($t?-1:1),s[p]-r]),s[p]+=f+e,l=Math.max(l,f)}r+=l+e}return[n,o]}function xr(t,e){const i=t.flat().find(n=>v(n,e));return w(i?c(i,"marginTop"):c(t[0][0],"paddingLeft"))}function kr(t){const e=[];for(const i of t)for(const n in i)Gi(e,n,i[n]);return e}function Gi(t,e,i){t[e]||(t[e]=[]),t[e].push(i)}var Sr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:({target:t},e)=>F(t,e)},observe:pt({target:({$el:t,elements:e})=>e.reduce((i,n)=>i.concat(n,...n.children),[t])}),events:{name:"loadingdone",el:()=>document.fonts,handler(){this.$emit("resize")}},update:{read(){return{rows:(this.row?mo(this.elements):[this.elements]).map(Er)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((n,o)=>c(n,"minHeight",e[o]))},events:["resize"]}};function Er(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Tr);const i=Math.max(...e);return{heights:t.map((n,o)=>e[o].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function Tr(t){const e=oi(t.style,["display","minHeight"]);W(t)||c(t,"display","block","important"),c(t,"minHeight","");const i=_(t).height-Lt(t,"height","content-box");return c(t,e),i}var Cr={args:"target",props:{target:String},data:{target:""},computed:{target:{get:({target:t},e)=>V(t,e),observe:({target:t})=>t}},observe:pt({target:({target:t})=>t}),update:{read(){return this.target?{height:this.target.offsetHeight}:!1},write({height:t}){c(this.$el,{minHeight:t})},events:["resize"]}},_r={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},observe:[oo({filter:({expand:t})=>t}),pt({target:({$el:t})=>jt(t)})],update:{read(){if(!W(this.$el))return!1;let t="";const e=Lt(this.$el,"height","content-box"),{body:i,scrollingElement:n}=document,o=St(this.$el),{height:s}=K(o===i?n:o),r=n===o||i===o;if(t=`calc(${r?"100vh":`${s}px`}`,this.expand){const a=_(o).height-_(this.$el).height;t+=` - ${a}px`}else{if(this.offsetTop)if(r){const a=this.offsetTop===!0?this.$el:V(this.offsetTop,this.$el),{top:l}=b(a);t+=l>0&&l<s/2?` - ${l}px`:""}else t+=` - ${Lt(o,"height",c(o,"boxSizing"))}px`;this.offsetBottom===!0?t+=` - ${_(this.$el.nextElementSibling).height}px`:mt(this.offsetBottom)?t+=` - ${this.offsetBottom}vh`:this.offsetBottom&&Kt(this.offsetBottom,"px")?t+=` - ${w(this.offsetBottom)}px`:P(this.offsetBottom)&&(t+=` - ${_(V(this.offsetBottom,this.$el)).height}px`)}return t+=`${e?` - ${e}px`:""})`,{minHeight:t}},write({minHeight:t}){c(this.$el,"minHeight",`max(${this.minHeight||0}px, ${t})`)},events:["resize"]}},Or='<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',Pr='<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Br='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Dr='<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="11" x="9" y="4"/><rect width="11" height="1" x="4" y="9"/></svg>',Mr='<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',Ar='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Nr='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Ir='<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg&gt;[class*=&quot;line-&quot;]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg&gt;.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-1,.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded=&quot;true&quot;] svg&gt;.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width="20" height="2" y="3" class="line-1"/><rect width="20" height="2" y="9" class="line-2"/><rect width="20" height="2" y="9" class="line-3"/><rect width="20" height="2" y="15" class="line-4"/></svg>',Fr='<svg width="40" height="40" viewBox="0 0 40 40"><rect width="1" height="40" x="19" y="0"/><rect width="40" height="1" x="0" y="19"/></svg>',Hr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',zr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',bo='<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',Lr='<svg width="40" height="40" viewBox="0 0 40 40"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Wr='<svg width="24" height="24" viewBox="0 0 24 24"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',jr='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5"/></svg>',qr='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1"/></svg>',Rr='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547"/></svg>',Ur='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23"/></svg>',Vr='<svg width="30" height="30" viewBox="0 0 30 30"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Yr='<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9"/></svg>',wo={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,o;let s=0;return((o=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:o.replace(/%s/g,()=>e[s++]||""))||""}}},$o={args:"src",props:{width:Number,height:Number,ratio:Number},data:{ratio:1},connected(){this.svg=this.getSvg().then(t=>{if(!this._connected)return;const e=Gr(t,this.$el);return this.svgEl&&e!==this.svgEl&&yt(this.svgEl),Xr.call(this,e,t),this.svgEl=e},it)},disconnected(){this.svg.then(t=>{this._connected||(ai(this.$el)&&(this.$el.hidden=!1),yt(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){}}};function Gr(t,e){if(ai(e)||I(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return yo(t,n)?n:Ie(e,t)}const i=e.lastElementChild;return yo(t,i)?i:tt(e,t)}function yo(t,e){return I(t,"svg")&&I(e,"svg")&&t.innerHTML===e.innerHTML}function Xr(t,e){const i=["width","height"];let n=i.map(s=>this[s]);n.some(s=>s)||(n=i.map(s=>g(e,s)));const o=g(e,"viewBox");o&&!n.some(s=>s)&&(n=o.split(" ").slice(2)),n.forEach((s,r)=>g(t,i[r],w(s)*this.ratio||null))}const Ge={spinner:Vr,totop:Yr,marker:Dr,"close-icon":Or,"close-large":Pr,"drop-parent-icon":Br,"nav-parent-icon":Ar,"nav-parent-icon-large":Mr,"navbar-parent-icon":Nr,"navbar-toggle-icon":Ir,"overlay-icon":Fr,"pagination-next":Hr,"pagination-previous":zr,"search-icon":bo,"search-medium":Wr,"search-large":Lr,"search-toggle-icon":bo,"slidenav-next":qr,"slidenav-next-large":jr,"slidenav-previous":Ur,"slidenav-previous-large":Rr},Xi={install:sa,mixins:[$o],args:"icon",props:{icon:String},isIcon:!0,beforeConnect(){S(this.$el,"uk-icon")},methods:{async getSvg(){const t=aa(this.icon);if(!t)throw"Icon not found.";return t}}},Tt={args:!1,extends:Xi,data:t=>({icon:gt(t.constructor.options.name)}),beforeConnect(){S(this.$el,this.$options.id)}},Jr={extends:Tt,beforeConnect(){const t=this.$props.icon;this.icon=this.$el.closest(".uk-nav-primary")?`${t}-large`:t}},Kr={extends:Tt,mixins:[wo],i18n:{toggle:"Open Search",submit:"Submit Search"},beforeConnect(){const t=v(this.$el,"uk-search-toggle")||v(this.$el,"uk-navbar-toggle");if(this.icon=t?"search-toggle-icon":v(this.$el,"uk-search-icon")&&this.$el.closest(".uk-search-large")?"search-large":this.$el.closest(".uk-search-medium")?"search-medium":this.$props.icon,!ht(this.$el,"aria-label"))if(t){const e=this.t("toggle");g(this.$el,"aria-label",e)}else{const e=this.$el.closest("a,button");if(e){const i=this.t("submit");g(e,"aria-label",i)}}}},Zr={extends:Tt,beforeConnect(){g(this.$el,"role","status")},methods:{async getSvg(){const t=await Xi.methods.getSvg.call(this);return this.ratio!==1&&c($("circle",t),"strokeWidth",1/this.ratio),t}}},Ct={extends:Tt,mixins:[wo],beforeConnect(){const t=this.$el.closest("a,button");g(t,"role",this.role!==null&&I(t,"a")?"button":this.role);const e=this.t("label");e&&!ht(t,"aria-label")&&g(t,"aria-label",e)}},xo={extends:Ct,beforeConnect(){S(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=v(this.$el,"uk-slidenav-large")?`${t}-large`:t}},Qr={extends:Ct,i18n:{label:"Open menu"}},ta={extends:Ct,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${v(this.$el,"uk-close-large")?"large":"icon"}`}},ea={extends:Ct,i18n:{label:"Open"}},ia={extends:Ct,i18n:{label:"Back to top"}},na={extends:Ct,i18n:{label:"Next page"},data:{role:null}},oa={extends:Ct,i18n:{label:"Previous page"},data:{role:null}},Xe={};function sa(t){t.icon.add=(e,i)=>{const n=P(e)?{[e]:i}:e;oe(n,(o,s)=>{Ge[s]=o,delete Xe[s]}),t._initialized&&xt(document.body,o=>oe(t.getComponents(o),s=>{s.$options.isIcon&&s.icon in n&&s.$reset()}))}}const ra={twitter:"x"};function aa(t){return t=ra[t]||t,Ge[t]?(Xe[t]||(Xe[t]=dt(Ge[la(t)]||Ge[t])),Xe[t].cloneNode(!0)):null}function la(t){return $t?ni(ni(t,"left","right"),"previous","next"):t}var ca={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){this.loading!=="lazy"?this.load():Ki(this.$el)&&(this.$el.loading="lazy",Ji(this.$el))},disconnected(){this.img&&(this.img.onload=""),delete this.img},observe:Vt({handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy",target:({$el:t,$props:e})=>e.target?[t,...he(e.target,t)]:t}),methods:{load(){if(this.img)return this.img;const t=Ki(this.$el)?this.$el:ua(this.$el,this.dataSrc,this.sources);return re(t,"loading"),Ji(this.$el,t.currentSrc),this.img=t}}};function Ji(t,e){if(Ki(t)){const i=B(t);(I(i,"picture")?Q(i):[t]).forEach(o=>ko(o,o))}else e&&!d(t.style.backgroundImage,e)&&(c(t,"backgroundImage",`url(${di(e)})`),C(t,Me("load",!1)))}const ha=["data-src","data-srcset","sizes"];function ko(t,e){for(const i of ha){const n=Dt(t,i);n&&g(e,i.replace(/data-/g,""),n)}}function ua(t,e,i){const n=new Image;return fa(n,i),ko(t,n),n.onload=()=>Ji(t,n.currentSrc),g(n,"src",e),n}function fa(t,e){if(e=da(e),e.length){const i=dt("<picture>");for(const n of e){const o=dt("<source>");g(o,n),tt(i,o)}tt(i,t)}}function da(t){if(!t)return[];if(et(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Hi(t);return L(t)||(t=[t]),t.filter(e=>!ei(e))}function Ki(t){return I(t,"img")}var pa={props:{target:String,selActive:String},data:{target:!1,selActive:!1},computed:{target:({target:t},e)=>t?F(t,e):e},observe:[Vt({handler(t){this.isIntersecting=t.some(({isIntersecting:e})=>e),this.$emit()},target:({target:t})=>t,args:{intersecting:!1}}),Ve({target:({target:t})=>t,options:{attributes:!0,attributeFilter:["class"],attributeOldValue:!0}}),{target:({target:t})=>t,observe:(t,e)=>{const i=me([...m(t),document.documentElement],e),n=[x(document,"scroll itemshown itemhidden",e,{passive:!0,capture:!0}),x(document,"show hide transitionstart",o=>(e(),i.observe(o.target))),x(document,"shown hidden transitionend transitioncancel",o=>(e(),i.unobserve(o.target)))];return{observe:i.observe.bind(i),unobserve:i.unobserve.bind(i),disconnect(){i.disconnect(),n.map(o=>o())}}},handler(){this.$emit()}}],update:{read(){if(!this.isIntersecting)return!1;for(const t of m(this.target)){let e=!this.selActive||E(t,this.selActive)?ga(t):"";e!==!1&&_e(t,"uk-light uk-dark",e)}}}};function ga(t){const e=_(t),i=_(window);if(!Ce(e,i))return!1;const{left:n,top:o,height:s,width:r}=e;let a;for(const l of[.25,.5,.75]){const h=t.ownerDocument.elementsFromPoint(Math.max(0,Math.min(n+r*l,i.width-1)),Math.max(0,Math.min(o+s/2,i.height-1)));for(const u of h){if(t.contains(u)||!ma(u)||u.closest('[class*="-leave"]')&&h.some(p=>u!==p&&E(p,'[class*="-enter"]')))continue;const f=c(u,"--uk-inverse");if(f){if(f===a)return`uk-${f}`;a=f;break}}}return a?`uk-${a}`:""}function ma(t){if(c(t,"visibility")!=="visible")return!1;for(;t;){if(c(t,"opacity")==="0")return!1;t=B(t)}return!0}var Zi={props:{media:Boolean},data:{media:!1},connected(){const t=va(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,C(this.$el,Me("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=x(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function va(t,e){if(P(t)){if(et(t,"@"))t=w(c(e,`--uk-breakpoint-${t.slice(1)}`));else if(isNaN(t))return t}return t&&mt(t)?`(min-width: ${t}px)`:""}var ba={mixins:[nt,Zi],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:({fill:t},e)=>t||c(e,"--uk-leader-fill-content")},connected(){[this.wrapper]=xi(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){de(this.wrapper.childNodes)},observe:pt(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){U(this.wrapper,this.clsHide,i),g(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}};const j=[];var So={mixins:[nt,Ui,Yt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:t},e)=>$(t,e),transitionElement(){return this.panel}},connected(){g(this.panel||this.$el,"role",this.role),this.overlay&&g(this.panel||this.$el,"aria-modal",!0)},beforeDisconnect(){d(j,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:t})=>`${t},a[href*="#"]`,handler(t){const{current:e,defaultPrevented:i}=t,{hash:n}=e;!i&&n&&Ht(e)&&!this.$el.contains($(n))?this.hide():E(e,this.selClose)&&(t.preventDefault(),this.hide())}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===d(j,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(d(j,this))return!1;!this.stack&&j.length?(Promise.all(j.map(e=>e.hide())).then(this.show),t.preventDefault()):j.push(this)}},{name:"show",self:!0,handler(){this.stack&&c(this.$el,"zIndex",w(c(this.$el,"zIndex"))+j.length);const t=[this.overlay&&$a(this),this.overlay&&co(this.$el),this.bgClose&&ya(this),this.escClose&&xa(this)];N(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),S(document.documentElement,this.clsPage)}},{name:"shown",self:!0,handler(){ci(this.$el)||g(this.$el,"tabindex","-1"),E(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){d(j,this)&&j.splice(j.indexOf(this),1),c(this.$el,"zIndex",""),j.some(t=>t.clsPage===this.clsPage)||A(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&B(this.$el)!==this.container?(tt(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Eo)},hide(){return this.toggleElement(this.$el,!1,Eo)}}};function Eo(t,e,{transitionElement:i,_toggle:n}){return new Promise((o,s)=>N(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=s,n(t,e);const a=N(i,"transitionstart",()=>{N(i,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},wa(c(i,"transitionDuration")))})).then(()=>delete t._reject)}function wa(t){return t?Kt(t,"ms")?w(t):w(t)*1e3:0}function $a(t){return x(document,"focusin",e=>{ne(j)===t&&!t.$el.contains(e.target)&&t.$el.focus()})}function ya(t){return x(document,Nt,({target:e})=>{ne(j)!==t||t.overlay&&!t.$el.contains(e)||!t.panel||t.panel.contains(e)||N(document,`${It} ${Pe} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===It&&e===o&&t.hide()},!0)})}function xa(t){return x(document,"keydown",e=>{e.keyCode===27&&ne(j)===t&&t.hide()})}var ka={install:Sa,mixins:[So],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:'[class*="uk-modal-close"]'},events:[{name:"fullscreenchange webkitendfullscreen",capture:!0,handler(t){I(t.target,"video")&&this.isToggled()&&!document.fullscreenElement&&this.hide()}},{name:"show",self:!0,handler(){v(this.panel,"uk-margin-auto-vertical")?S(this.$el,"uk-flex"):c(this.$el,"display","block"),at(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),A(this.$el,"uk-flex")}}]};function Sa({modal:t}){t.dialog=function(i,n){const o=t($(`<div><div class="uk-modal-dialog">${i}</div></div>`),{stack:!0,role:"alertdialog",...n});return o.show(),x(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},t.alert=function(i,n){return e(({i18n:o})=>`<div class="uk-modal-body">${P(i)?i:Ne(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>${o.ok}</button> </div>`,n)},t.confirm=function(i,n){return e(({i18n:o})=>`<form> <div class="uk-modal-body">${P(i)?i:Ne(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${o.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${o.ok}</button> </div> </form>`,n,()=>Promise.reject())},t.prompt=function(i,n,o){const s=e(({i18n:l})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${P(i)?i:Ne(i)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${l.cancel}</button> <button class="uk-button uk-button-primary">${l.ok}</button> </div> </form>`,o,()=>null,()=>a.value),{$el:r}=s.dialog,a=$("input",r);return a.value=n||"",x(r,"show",()=>a.select()),s},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,n,o=it,s=it){n={bgClose:!1,escClose:!0,...n,i18n:{...t.i18n,...n==null?void 0:n.i18n}};const r=t.dialog(i(n),n);return Zt(new Promise(a=>{const l=x(r.$el,"hide",()=>a(o()));x(r.$el,"submit","form",h=>{h.preventDefault(),a(s(r)),l(),r.hide()})}),{dialog:r})}}var Ea={extends:ro,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Qi="uk-navbar-transparent";var Ta={extends:fo,props:{dropbarTransparentMode:Boolean},data:{clsDrop:"uk-navbar-dropdown",selNavItem:".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle",dropbarTransparentMode:!1},computed:{navbarContainer:(t,e)=>e.closest(".uk-navbar-container")},watch:{items(){const t=v(this.$el,"uk-navbar-justify"),e=F(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el);for(const i of e){const n=t?F(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",i).length:"";c(i,"flexGrow",n)}}},events:[{name:"show",el:({dropContainer:t})=>t,handler({target:t}){this.getTransparentMode(t)==="remove"&&v(this.navbarContainer,Qi)&&(A(this.navbarContainer,Qi),this._transparent=!0)}},{name:"hide",el:({dropContainer:t})=>t,async handler(t){B(t.target)===this.dropContainer&&(await Ca(),!this.getActive()&&this._transparent&&(S(this.navbarContainer,Qi),this._transparent=null))}}],methods:{getTransparentMode(t){if(!this.navbarContainer)return;if(this.dropbar&&this.isDropbarDrop(t))return this.dropbarTransparentMode;const e=this.getDropdown(t);if(e&&v(t,"uk-dropbar"))return e.inset?"behind":"remove"},getDropbarOffset(t){const{top:e,height:i}=b(this.navbarContainer);return e+(this.dropbarTransparentMode==="behind"?0:i+t)}}};function Ca(){return new Promise(t=>setTimeout(t))}var _a={mixins:[So],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip:({flip:t,clsFlip:e})=>t?e:"",clsOverlay:({overlay:t,clsOverlay:e})=>t?e:"",clsMode:({mode:t,clsMode:e})=>`${e}-${t}`,clsSidebarAnimation:({mode:t,clsSidebarAnimation:e})=>t==="none"||t==="reveal"?"":e,clsContainerAnimation:({mode:t,clsContainerAnimation:e})=>t!=="push"&&t!=="reveal"?"":e,transitionElement({mode:t}){return t==="reveal"?B(this.panel):this.panel}},observe:so({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!W(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter:({overlay:t})=>t,handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!v(B(this.panel),this.clsMode)&&S(He(this.panel,"<div>"),this.clsMode);const{body:t,scrollingElement:e}=document;S(t,this.clsContainer,this.clsFlip),c(t,"touchAction","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),S(this.$el,this.clsOverlay),S(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),at(t),S(t,this.clsContainerAnimation),this.clsContainerAnimation&&Oa()}},{name:"hide",self:!0,handler(){A(document.body,this.clsContainerAnimation),c(document.body,"touchAction","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Pa(),this.mode==="reveal"&&v(B(this.panel),this.clsMode)&&de(this.panel),A(this.panel,this.clsSidebarAnimation,this.clsMode),A(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),A(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Kt(t.type,"Left")^this.flip&&this.hide()}}]};function Oa(){To().content+=",user-scalable=0"}function Pa(){const t=To();t.content=t.content.replace(/,user-scalable=0$/,"")}function To(){return $('meta[name="viewport"]',document.head)||tt(document.head,'<meta name="viewport">')}var Ba={mixins:[nt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:({selContainer:t},e)=>e.closest(t),content:({selContent:t},e)=>e.closest(t)},observe:pt({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!W(this.$el)?!1:{max:Math.max(this.minHeight,at(this.container)-(_(this.content).height-at(this.$el)))}},write({max:t}){c(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},Da={props:["width","height"],connected(){S(this.$el,"uk-responsive-width"),c(this.$el,"aspectRatio",`${this.width}/${this.height}`)}},Ma={props:{offset:Number},data:{offset:0},connected(){Aa(this)},disconnected(){Na(this)},methods:{async scrollTo(t){t=t&&$(t)||document.body,C(this.$el,"beforescroll",[this,t])&&(await Mn(t,{offset:this.offset}),C(this.$el,"scrolled",[this,t]))}}};const xe=new Set;function Aa(t){xe.size||x(document,"click",Co),xe.add(t)}function Na(t){xe.delete(t),xe.size||pi(document,"click",Co)}function Co(t){if(!t.defaultPrevented)for(const e of xe)e.$el.contains(t.target)&&Ht(e.$el)&&(t.preventDefault(),window.location.href!==e.$el.href&&window.history.pushState({},"",e.$el.href),e.scrollTo(hi(e.$el)))}const tn="uk-scrollspy-inview";var Ia={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0}),computed:{elements:({target:t},e)=>t?F(t,e):[e]},watch:{elements(t){this.hidden&&c(le(t,`:not(.${tn})`),"opacity",0)}},connected(){this.elementData=new Map},disconnected(){for(const[t,e]of this.elementData.entries())A(t,tn,(e==null?void 0:e.cls)||"");delete this.elementData},observe:Vt({target:({elements:t})=>t,handler(t){const e=this.elementData;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Dt(i,"uk-scrollspy-class")||this.cls});const o=e.get(i);!this.repeat&&o.show||(o.show=n)}this.$emit()},options:({margin:t})=>({rootMargin:t}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of this.elementData.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i,n;const o=(i=this.elementData)==null?void 0:i.get(t);if(!o)return;(n=o.off)==null||n.call(o),c(t,"opacity",!e&&this.hidden?0:""),U(t,tn,e),U(t,o.cls);let s;if(s=o.cls.match(/\buk-animation-[\w-]+/g)){const r=()=>A(t,s);e?o.off=N(t,"animationcancel animationend",r,{self:!0}):r()}C(t,e?"inview":"outview"),o.inview=e}}},Fa={props:{cls:String,closest:Boolean,scroll:Boolean,target:String,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,target:'a[href]:not([role="button"])',offset:0},computed:{links:({target:t},e)=>F(t,e).filter(i=>Ht(i)),elements({closest:t}){return this.links.map(e=>e.closest(t||"*"))}},watch:{links(t){this.scroll&&this.$create("scroll",t,{offset:this.offset})}},observe:[Vt(),qi()],update:[{read(){const t=this.links.map(l=>hi(l)).filter(Boolean),{length:e}=t;if(!e||!W(this.$el))return!1;const i=St(t,!0),{scrollTop:n,scrollHeight:o}=i,s=K(i),r=o-s.height;let a=!1;if(n>=r)a=e-1;else{const l=this.offset+_(Mi()).height+s.height*.1;for(let h=0;h<t.length&&!(b(t[h]).top-s.top-l>0);h++)a=+h}return{active:a}},write({active:t}){const e=t!==!1&&!v(this.elements[t],this.cls);this.links.forEach(i=>i.blur());for(let i=0;i<this.elements.length;i++)U(this.elements[i],this.cls,+i===t);e&&C(this.$el,"active",[t,this.elements[t]])},events:["scroll","resize"]}]},Ha={mixins:[nt,Zi],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{target:({selTarget:t},e)=>t&&$(t,e)||e},connected(){this.start=_o(this.start||this.top),this.end=_o(this.end||this.bottom),this.placeholder=$("+ .uk-sticky-placeholder",this.$el)||$('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},beforeDisconnect(){this.isFixed&&(this.hide(),A(this.target,this.clsInactive)),Oo(this.$el),yt(this.placeholder),this.placeholder=null},observe:[oo(),qi({target:()=>document.scrollingElement}),pt({target:({$el:t})=>[t,Je(t),document.scrollingElement],handler(t){this.$emit(this._data.resized&&t.some(({target:e})=>e===Je(this.$el))?"update":"resize"),this._data.resized=!0}})],events:[{name:"load hashchange popstate",el:()=>window,filter:({targetOffset:t})=>t!==!1,handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=b($(location.hash)),i=b(this.$el);this.isFixed&&Ce(e,i)&&(t.scrollTop=Math.ceil(e.top-i.height-J(this.targetOffset,"height",this.placeholder)-J(this.offset,"height",this.placeholder)))})}}],update:[{read({height:t,width:e,margin:i,sticky:n},o){if(this.inactive=!this.matchMedia||!W(this.$el)||!this.$el.offsetHeight,this.inactive)return;const s=at(window),r=Math.max(0,document.scrollingElement.scrollHeight-s);if(!r){this.inactive=!0;return}const a=this.isFixed&&o.has("update");a&&(on(this.target),this.hide()),this.active||({height:t,width:e}=_(this.$el),i=c(this.$el,"margin")),a&&this.show();const l=J("100vh","height");let h=this.position;this.overflowFlip&&t>l&&(h=h==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let f=J(this.offset,"height",n?this.$el:u);h==="bottom"&&(t<s||this.overflowFlip)&&(f+=s-t);const p=this.overflowFlip?0:Math.max(0,t+f-l),O=b(u).top-new DOMMatrix(c(u,"transform")).m42,y=_(this.$el).height,k=(this.start===!1?O:en(this.start,this.$el,O))-f,T=this.end===!1?r:Math.min(r,en(this.end,this.$el,O+t,!0)-y-f+p);return n=!this.showOnUp&&k+f===O&&T===Math.min(r,en(!0,this.$el,0,!0)-y-f+p)&&c(Je(this.$el),"overflowY")!=="hidden",{start:k,end:T,offset:f,overflow:p,height:t,elHeight:y,width:e,margin:i,top:pe(u)[0],sticky:n,viewport:l,maxScrollHeight:r}},write({height:t,width:e,margin:i,offset:n,sticky:o}){if((this.inactive||o||!this.isFixed)&&Oo(this.$el),this.inactive)return;o&&(t=e=i=0,c(this.$el,{position:"sticky",top:n}));const{placeholder:s}=this;c(s,{height:t,width:e,margin:i}),(B(s)!==B(this.$el)||o^Ft(s)<Ft(this.$el))&&((o?yi:Ie)(this.$el,s),s.hidden=!0)},events:["resize"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:n=0,start:o,end:s,elHeight:r,height:a,sticky:l,maxScrollHeight:h}){const u=Math.min(document.scrollingElement.scrollTop,h),f=t<=u?"down":"up",p=this.isFixed?this.placeholder:this.$el;return{dir:f,prevDir:e,scroll:u,prevScroll:t,below:u>b(p).top+(l?Math.min(a,r):a),offsetParentTop:b(p.offsetParent).top,overflowScroll:rt(n+rt(u,o,s)-rt(t,o,s),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:o,prevDir:s,scroll:r,prevScroll:a=0,top:l,start:h,below:u}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const f=Date.now();if((f-n>300||o!==s)&&(t.initScroll=r,t.initTimestamp=f),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||o==="down"&&i||o==="up"&&!this.isFixed&&!u)){if(!this.isFixed){ft.inProgress(this.$el)&&l>r&&(ft.cancel(this.$el),this.hide());return}if(this.animation&&u){if(v(this.$el,"uk-animation-leave"))return;ft.out(this.$el,this.animation).then(()=>this.hide(),it)}else this.hide()}else this.isFixed?this.update():this.animation&&u?(this.show(),ft.in(this.$el,this.animation).catch(it)):(on(this.target),this.show())},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),A(this.$el,this.clsFixed,this.clsBelow),e?c(this.$el,"top",t):c(this.$el,{position:"",top:"",width:"",marginTop:""}),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:o,end:s,offset:r,offsetParentTop:a,sticky:l,below:h}=this._data;const u=o!==0||e>o;if(!l){let f="fixed";e>s&&(r+=s-a+n-i,f="absolute"),c(this.$el,{position:f,width:t,marginTop:0},"important")}c(this.$el,"top",r-n),this.setActive(u),U(this.$el,this.clsBelow,h),S(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(_e(this.target,this.clsInactive,this.clsActive),e!==t&&C(this.$el,"active")):(_e(this.target,this.clsActive,this.clsInactive),e!==t&&(on(this.target),C(this.$el,"inactive")))}}};function en(t,e,i,n){if(!t)return 0;if(mt(t)||P(t)&&t.match(/^-?\d/))return i+J(t,"height",e,!0);{const o=t===!0?Je(e):V(t,e);return b(o).bottom-(n&&(o!=null&&o.contains(e))?w(c(o,"paddingBottom"))+w(c(o,"borderBottomWidth")):0)}}function _o(t){return t==="true"?!0:t==="false"?!1:t}function Oo(t){c(t,{position:"",top:"",marginTop:"",width:""})}const nn="uk-transition-disable";function on(t){v(t,nn)||(S(t,nn),requestAnimationFrame(()=>A(t,nn)))}function Je(t){for(;t=B(t);)if(W(t))return t}function za(t){return W(t)?Math.ceil(Math.max(0,...F("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}var La={mixins:[$o],args:"src",props:{src:String,icon:String,attributes:"list",strokeAnimation:Boolean},data:{strokeAnimation:!1},observe:[Ve({async handler(){const t=await this.svg;t&&Po.call(this,t)},options:{attributes:!0,attributeFilter:["id","class","style"]}})],async connected(){d(this.src,"#")&&([this.src,this.icon]=this.src.split("#"));const t=await this.svg;t&&(Po.call(this,t),this.strokeAnimation&&Ra(t))},methods:{async getSvg(){return I(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"&&await new Promise(t=>N(this.$el,"load",t)),ja(await Wa(this.src),this.icon)||Promise.reject("SVG not found.")}}};function Po(t){const{$el:e}=this;S(t,g(e,"class"),"uk-svg");for(let i=0;i<e.style.length;i++){const n=e.style[i];c(t,n,c(e,n))}for(const i in this.attributes){const[n,o]=this.attributes[i].split(":",2);g(t,n,o)}this.$el.id||re(t,"id")}const Wa=G(async t=>{if(t){if(et(t,"data:"))return decodeURIComponent(t.split(",")[1]);{const e=await fetch(t);if(e.headers.get("Content-Type")==="image/svg+xml")return e.text()}}return Promise.reject()});function ja(t,e){return e&&d(t,"<symbol")&&(t=qa(t)[e]||t),dt(t)}const Bo=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,qa=G(function(t){const e={};Bo.lastIndex=0;let i;for(;i=Bo.exec(t);)e[i[3]]=`<svg ${i[1]}svg>`;return e});function Ra(t){const e=za(t);e&&c(t,"--uk-animation-stroke",e)}const sn=".uk-disabled *, .uk-disabled, [disabled]";var Do={mixins:[Yt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{connects:{get:({connect:t},e)=>he(t,e),observe:({connect:t})=>t},connectChildren(){return this.connects.map(t=>Q(t)).flat()},toggles:({toggle:t},e)=>F(t,e),children(t,e){return Q(e).filter(i=>this.toggles.some(n=>i.contains(n)))}},watch:{connects(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom"),this.$emit()},connectChildren(){let t=Math.max(0,this.index());for(const e of this.connects)Q(e).forEach((i,n)=>U(i,this.cls,n===t));this.$emit()},toggles(t){this.$emit();const e=this.index();this.show(~e?e:t[this.active]||t[0])}},connected(){g(this.$el,"role","tablist")},observe:[ji({targets:({connectChildren:t})=>t}),so({target:({connects:t})=>t,filter:({swiping:t})=>t})],events:[{name:"click keydown",delegate:({toggle:t})=>t,handler(t){!E(t.current,sn)&&(t.type==="click"||t.keyCode===M.SPACE)&&(t.preventDefault(),this.show(t.current))}},{name:"keydown",delegate:({toggle:t})=>t,handler(t){const{current:e,keyCode:i}=t,n=E(this.$el,this.selVertical);let o=i===M.HOME?0:i===M.END?"last":i===M.LEFT&&!n||i===M.UP&&n?"previous":i===M.RIGHT&&!n||i===M.DOWN&&n?"next":-1;if(~o){t.preventDefault();const s=this.toggles.filter(a=>!E(a,sn)),r=s[ct(o,s,s.indexOf(e))];r.focus(),this.followFocus&&this.show(r)}}},{name:"click",el:({$el:t,connects:e,itemNav:i})=>e.concat(i?he(i,t):[]),delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.target.closest("a,button")&&(t.preventDefault(),this.show(Dt(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter:({swiping:t})=>t,el:({connects:t})=>t,handler({type:t}){this.show(Kt(t,"Left")?"next":"previous")}}],update(){var t;for(const e of this.connects)I(e,"ul")&&g(e,"role","presentation");g(Q(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],n=(t=this.connects[0])==null?void 0:t.children[e];g(i,"role","tab"),n&&(i.id=Ue(this,i),n.id=Ue(this,n),g(i,"aria-controls",n.id),g(n,{role:"tabpanel","aria-labelledby":i.id}))}g(this.$el,"aria-orientation",E(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return ke(this.children,t=>v(t,this.cls))},show(t){const e=this.toggles.filter(r=>!E(r,sn)),i=this.index(),n=ct(!ee(t)||d(e,t)?t:0,e,ct(this.toggles[i],e)),o=ct(e[n],this.toggles);this.children.forEach((r,a)=>{U(r,this.cls,o===a),g(this.toggles[a],{"aria-selected":o===a,tabindex:o===a?null:-1})});const s=i>=0&&i!==n;this.connects.forEach(async({children:r})=>{const a=Se(r).filter((l,h)=>h!==o&&v(l,this.cls));await this.toggleElement(a,!1,s)&&await this.toggleElement(r[o],!0,s)})}}},Ua={mixins:[nt],extends:Do,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=v(this.$el,"uk-tab-left")?"uk-tab-left":v(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Va=32;var Ya={mixins:[Zi,Yt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get:({target:t},e)=>(t=he(t||e.hash,e),t.length?t:[e]),observe:({target:t})=>t}},connected(){d(this.mode,"media")||(ci(this.$el)||g(this.$el,"tabindex","0"),!this.cls&&I(this.$el,"a")&&g(this.$el,"role","button"))},observe:ji({targets:({target:t})=>t}),events:[{name:Nt,filter:({mode:t})=>d(t,"hover"),handler(t){this._preventClick=null,!(!ut(t)||Bt(this._showState)||this.$el.disabled)&&(C(this.$el,"focus"),N(document,Nt,()=>C(this.$el,"blur"),!0,e=>!this.$el.contains(e.target)),d(this.mode,"click")&&(this._preventClick=!0))}},{name:`mouseenter mouseleave ${ae} ${Oe} focus blur`,filter:({mode:t})=>d(t,"hover"),handler(t){if(ut(t)||this.$el.disabled)return;const e=d(["mouseenter",ae,"focus"],t.type),i=this.isToggled(this.target);if(!e&&(!Bt(this._showState)||t.type!=="blur"&&E(this.$el,":focus")||t.type==="blur"&&E(this.$el,":hover"))){i===this._showState&&(this._showState=null);return}e&&Bt(this._showState)&&i!==this._showState||(this._showState=e?i:null,this.toggle(`toggle${e?"show":"hide"}`))}},{name:"keydown",filter:({$el:t,mode:e})=>d(e,"click")&&!I(t,"input"),handler(t){t.keyCode===Va&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:({mode:t})=>["click","hover"].some(e=>d(t,e)),handler(t){let e;(this._preventClick||t.target.closest('a[href="#"], a[href=""]')||(e=t.target.closest("a[href]"))&&(!this.isToggled(this.target)||e.hash&&E(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&d(this.mode,"click")&&this.toggle()}},{name:"mediachange",filter:({mode:t})=>d(t,"media"),el:({target:t})=>t,handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!C(this.target,t||"toggle",[this]))return;if(ht(this.$el,"aria-expanded")&&g(this.$el,"aria-expanded",!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>v(n,this.clsLeave));if(e.length){for(const n of this.target){const o=d(e,n);this.toggleElement(n,o,o)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1)&&await this.toggleElement(this.target.filter(n=>!d(i,n)),!0)}}},Ga=Object.freeze({__proto__:null,Accordion:ro,Alert:cr,Close:ta,Cover:fr,Drop:ho,DropParentIcon:Tt,Dropdown:ho,Dropnav:fo,FormCustom:wr,Grid:$r,HeightMatch:Sr,HeightPlaceholder:Cr,HeightViewport:_r,Icon:Xi,Img:ca,Inverse:pa,Leader:ba,Margin:go,Marker:ea,Modal:ka,Nav:Ea,NavParentIcon:Jr,Navbar:Ta,NavbarParentIcon:Tt,NavbarToggleIcon:Qr,Offcanvas:_a,OverflowAuto:Ba,OverlayIcon:Tt,PaginationNext:na,PaginationPrevious:oa,Responsive:Da,Scroll:Ma,Scrollspy:Ia,ScrollspyNav:Fa,SearchIcon:Kr,SlidenavNext:xo,SlidenavPrevious:xo,Spinner:Zr,Sticky:Ha,Svg:La,Switcher:Do,Tab:Ua,Toggle:Ya,Totop:ia,Video:ao});return oe(Ga,(t,e)=>Z.component(e,t)),Xs(Z),Z});