uikit 3.11.2-dev.44c622843 → 3.11.2-dev.45194f70c

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 (147) hide show
  1. package/CHANGELOG.md +40 -19
  2. package/dist/css/uikit-core-rtl.css +86 -185
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +86 -185
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +88 -191
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +88 -191
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +3 -3
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +6 -8
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +29 -68
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +30 -70
  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 +115 -78
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +115 -78
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +79 -58
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +115 -78
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +35 -29
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +5 -7
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +2 -2
  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 +394 -327
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +632 -529
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/api/component.js +2 -11
  44. package/src/js/api/hooks.js +3 -3
  45. package/src/js/api/state.js +34 -1
  46. package/src/js/components/countdown.js +2 -2
  47. package/src/js/components/filter.js +2 -3
  48. package/src/js/components/internal/lightbox-animations.js +4 -3
  49. package/src/js/components/internal/slider-preload.js +18 -0
  50. package/src/js/components/internal/slideshow-animations.js +4 -3
  51. package/src/js/components/lightbox-panel.js +34 -58
  52. package/src/js/components/lightbox.js +1 -2
  53. package/src/js/components/slider.js +60 -43
  54. package/src/js/components/slideshow.js +8 -1
  55. package/src/js/components/sortable.js +1 -1
  56. package/src/js/core/accordion.js +6 -1
  57. package/src/js/core/alert.js +1 -2
  58. package/src/js/core/core.js +2 -21
  59. package/src/js/core/cover.js +5 -1
  60. package/src/js/core/drop.js +3 -1
  61. package/src/js/core/form-custom.js +2 -2
  62. package/src/js/core/height-viewport.js +3 -0
  63. package/src/js/core/icon.js +13 -6
  64. package/src/js/core/img.js +131 -122
  65. package/src/js/core/modal.js +1 -2
  66. package/src/js/core/navbar.js +3 -3
  67. package/src/js/core/sticky.js +51 -57
  68. package/src/js/core/svg.js +10 -6
  69. package/src/js/core/switcher.js +6 -1
  70. package/src/js/core/toggle.js +5 -2
  71. package/src/js/core/video.js +13 -1
  72. package/src/js/mixin/internal/animate-slide.js +9 -12
  73. package/src/js/mixin/lazyload.js +16 -0
  74. package/src/js/mixin/parallax.js +116 -79
  75. package/src/js/mixin/slider.js +8 -22
  76. package/src/js/mixin/slideshow.js +2 -6
  77. package/src/js/mixin/togglable.js +1 -2
  78. package/src/js/util/ajax.js +15 -14
  79. package/src/js/util/animation.js +7 -12
  80. package/src/js/util/dimensions.js +4 -4
  81. package/src/js/util/dom.js +23 -32
  82. package/src/js/util/index.js +1 -0
  83. package/src/js/util/lang.js +7 -6
  84. package/src/js/util/observer.js +36 -0
  85. package/src/js/util/options.js +2 -11
  86. package/src/js/util/player.js +5 -4
  87. package/src/js/util/selector.js +12 -18
  88. package/src/js/util/style.js +4 -4
  89. package/src/less/components/base.less +10 -33
  90. package/src/less/components/form-range.less +48 -95
  91. package/src/less/components/form.less +0 -1
  92. package/src/less/components/height.less +3 -0
  93. package/src/less/components/leader.less +0 -1
  94. package/src/less/components/lightbox.less +0 -1
  95. package/src/less/components/modal.less +3 -7
  96. package/src/less/components/progress.less +14 -36
  97. package/src/less/components/slider.less +0 -3
  98. package/src/less/components/slideshow.less +0 -3
  99. package/src/less/components/text.less +16 -32
  100. package/src/scss/components/base.scss +10 -33
  101. package/src/scss/components/form-range.scss +48 -95
  102. package/src/scss/components/form.scss +0 -1
  103. package/src/scss/components/height.scss +3 -0
  104. package/src/scss/components/leader.scss +0 -1
  105. package/src/scss/components/lightbox.scss +0 -1
  106. package/src/scss/components/modal.scss +3 -7
  107. package/src/scss/components/progress.scss +14 -36
  108. package/src/scss/components/slider.scss +0 -3
  109. package/src/scss/components/slideshow.scss +0 -3
  110. package/src/scss/components/text.scss +16 -32
  111. package/src/scss/mixins-theme.scss +1 -1
  112. package/src/scss/mixins.scss +1 -1
  113. package/src/scss/variables-theme.scss +3 -3
  114. package/src/scss/variables.scss +3 -3
  115. package/tests/align.html +10 -10
  116. package/tests/animation.html +2 -2
  117. package/tests/article.html +2 -2
  118. package/tests/base.html +3 -3
  119. package/tests/card.html +10 -10
  120. package/tests/column.html +3 -3
  121. package/tests/comment.html +9 -9
  122. package/tests/dotnav.html +3 -3
  123. package/tests/image.html +296 -64
  124. package/tests/images/image-type.avif +0 -0
  125. package/tests/images/image-type.jpeg +0 -0
  126. package/tests/images/image-type.webp +0 -0
  127. package/tests/index.html +8 -8
  128. package/tests/lightbox.html +10 -10
  129. package/tests/marker.html +2 -2
  130. package/tests/modal.html +8 -9
  131. package/tests/navbar.html +2 -2
  132. package/tests/overlay.html +7 -7
  133. package/tests/parallax.html +16 -7
  134. package/tests/position.html +12 -12
  135. package/tests/slidenav.html +12 -12
  136. package/tests/slider.html +20 -20
  137. package/tests/sortable.html +1 -1
  138. package/tests/sticky-parallax.html +56 -71
  139. package/tests/svg.html +6 -6
  140. package/tests/table.html +11 -11
  141. package/tests/thumbnav.html +12 -12
  142. package/tests/transition.html +30 -30
  143. package/tests/utility.html +50 -33
  144. package/tests/video.html +1 -1
  145. package/tests/width.html +1 -1
  146. package/src/js/util/promise.js +0 -0
  147. package/tests/images/animated.gif +0 -0
@@ -1 +1 @@
1
- /*! UIkit 3.11.2-dev.44c622843 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(jt,Wt){typeof exports=="object"&&typeof module<"u"?module.exports=Wt():typeof define=="function"&&define.amd?define("uikit",Wt):(jt=typeof globalThis<"u"?globalThis:jt||self,jt.UIkit=Wt())})(this,function(){"use strict";const{hasOwnProperty:jt,toString:Wt}=Object.prototype;function vt(t,e){return jt.call(t,e)}const _n=/\B([A-Z])/g,wt=Z(t=>t.replace(_n,"-$1").toLowerCase()),Nn=/-(\w)/g,_t=Z(t=>t.replace(Nn,bi)),fe=Z(t=>t.length?bi(null,t.charAt(0))+t.slice(1):"");function bi(t,e){return e?e.toUpperCase():""}function et(t,e){return t.startsWith(e)}function bt(t,e){return t.endsWith(e)}function v(t,e){return t&&t.includes(e)}function de(t,e){return t.findIndex(e)}const{isArray:J,from:Bn}=Array,{assign:O}=Object;function at(t){return typeof t=="function"}function ct(t){return t!==null&&typeof t=="object"}function ht(t){return Wt.call(t)==="[object Object]"}function qt(t){return ct(t)&&t===t.window}function Vt(t){return Fe(t)===9}function ze(t){return Fe(t)>=1}function Nt(t){return Fe(t)===1}function Fe(t){return!qt(t)&&ct(t)&&t.nodeType}function pe(t){return typeof t=="boolean"}function T(t){return typeof t=="string"}function Le(t){return typeof t=="number"}function yt(t){return Le(t)||T(t)&&!isNaN(t-parseFloat(t))}function yi(t){return!(J(t)?t.length:ct(t)?Object.keys(t).length:!1)}function q(t){return t===void 0}function Re(t){return pe(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Yt(t){const e=Number(t);return isNaN(e)?!1:e}function b(t){return parseFloat(t)||0}function A(t){return y(t)[0]}function y(t){return t&&(ze(t)?[t]:Array.from(t).filter(ze))||[]}function xt(t){return qt(t)?t:(t=A(t),t?(Vt(t)?t:t.ownerDocument).defaultView:window)}function Ie(t){return t?bt(t,"ms")?b(t):b(t)*1e3:0}function xi(t,e){return t===e||ct(t)&&ct(e)&&Object.keys(t).length===Object.keys(e).length&&Q(t,(i,n)=>i===e[n])}function je(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),n=>n===e?i:e)}function ge(t){return t[t.length-1]}function Q(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function We(t,e){return t.slice().sort((i,n)=>{let{[e]:s=0}=i,{[e]:o=0}=n;return s>o?1:o>s?-1:0})}function Mn(t,e){const i=new Set;return t.filter(n=>{let{[e]:s}=n;return i.has(s)?!1:i.add(s)})}function $t(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Yt(t)||0,e),i)}function ut(){}function $i(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(n=>{let[s,o]=n;return Math.min(...e.map(r=>{let{[s]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function qe(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const me={ratio(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}},contain(t,e){return t=O({},t),Q(t,(i,n)=>t=t[n]>e[n]?this.ratio(t,n,e[n]):t),t},cover(t,e){return t=this.contain(t,e),Q(t,(i,n)=>t=t[n]<e[n]?this.ratio(t,n,e[n]):t),t}};function ve(t,e,i,n){i===void 0&&(i=0),n===void 0&&(n=!1),e=y(e);const{length:s}=e;return s?(t=yt(t)?Yt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(A(t)),n?$t(t,0,s-1):(t%=s,t<0?t+s:t)):-1}function Z(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class ki{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function E(t,e,i){if(ct(e)){for(const s in e)E(t,s,e[s]);return}if(q(i)){var n;return(n=A(t))==null?void 0:n.getAttribute(e)}else for(const s of y(t))at(i)&&(i=i.call(s,E(s,e))),i===null?Ve(s,e):s.setAttribute(e,i)}function Gt(t,e){return y(t).some(i=>i.hasAttribute(e))}function Ve(t,e){const i=y(t);for(const n of e.split(" "))for(const s of i)s.removeAttribute(n)}function Kt(t,e){for(const i of[e,"data-"+e])if(Gt(t,i))return E(t,i)}const kt=typeof window<"u",Xt=kt&&E(document.documentElement,"dir")==="rtl",Bt=kt&&"ontouchstart"in window,Mt=kt&&window.PointerEvent,Ht=Mt?"pointerdown":Bt?"touchstart":"mousedown",Hn=Mt?"pointermove":Bt?"touchmove":"mousemove",Ot=Mt?"pointerup":Bt?"touchend":"mouseup",we=Mt?"pointerenter":Bt?"":"mouseenter",be=Mt?"pointerleave":Bt?"":"mouseleave",ye=Mt?"pointercancel":"touchcancel",On={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Ye(t){return y(t).some(e=>On[e.tagName.toLowerCase()])}function _(t){return y(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const xe="input,select,textarea,button";function Si(t){return y(t).some(e=>D(e,xe))}const $e=xe+",a[href],[tabindex]";function Ge(t){return D(t,$e)}function F(t){return t=A(t),t&&Nt(t.parentNode)&&t.parentNode}function Jt(t,e){return y(t).filter(i=>D(i,e))}function D(t,e){return y(t).some(i=>i.matches(e))}function U(t,e){return et(e,">")&&(e=e.slice(1)),Nt(t)?t.closest(e):y(t).map(i=>U(i,e)).filter(Boolean)}function L(t,e){return T(e)?D(t,e)||!!U(t,e):t===e||A(e).contains(A(t))}function Zt(t,e){const i=[];for(;t=F(t);)(!e||D(t,e))&&i.push(t);return i}function St(t,e){t=A(t);const i=t?y(t.children):[];return e?Jt(i,e):i}function Ke(t,e){return e?y(t).indexOf(A(e)):St(F(t)).indexOf(t)}function lt(t,e){return Xe(t,Ti(t,e))}function Qt(t,e){return Ut(t,Ti(t,e))}function Ti(t,e){return e===void 0&&(e=document),T(t)&&Ei(t)||Vt(e)?e:e.ownerDocument}function Xe(t,e){return A(Ci(t,e,"querySelector"))}function Ut(t,e){return y(Ci(t,e,"querySelectorAll"))}function Ci(t,e,i){if(e===void 0&&(e=document),!t||!T(t))return t;t=t.replace(zn,"$1 *"),Ei(t)&&(t=Ln(t).map(n=>{let s=e;if(n[0]==="!"){const o=n.substr(1).trim().split(" ");s=U(F(e),o[0]),n=o.slice(1).join(" ").trim()}if(n[0]==="-"){const o=n.substr(1).trim().split(" "),r=(s||e).previousElementSibling;s=D(r,n.substr(1))?r:null,n=o.slice(1).join(" ")}return s?Rn(s)+" "+n:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const Dn=/(^|[^\\],)\s*[!>+~-]/,zn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Ei=Z(t=>t.match(Dn)),Fn=/.*?[^\\](?:,|$)/g,Ln=Z(t=>t.match(Fn).map(e=>e.replace(/,$/,"").trim()));function Rn(t){const e=[];for(;t.parentNode;){const i=E(t,"id");if(i){e.unshift("#"+te(i));break}else{let{tagName:n}=t;n!=="HTML"&&(n+=":nth-child("+(Ke(t)+1)+")"),e.unshift(n),t=t.parentNode}}return e.join(" > ")}const In=kt&&window.CSS&&CSS.escape||function(t){return t.replace(/([^\x7f-\uFFFF\w-])/g,e=>"\\"+e)};function te(t){return T(t)?In.call(null,t):""}function N(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,o,r,a=!1]=Ze(e);r.length>1&&(r=Wn(r)),a!=null&&a.self&&(r=qn(r)),o&&(r=jn(o,r));for(const c of s)for(const f of n)f.addEventListener(c,r,a);return()=>Pi(n,s,r,a)}function Pi(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,,o,r=!1]=Ze(e);for(const a of s)for(const c of n)c.removeEventListener(a,o,r)}function B(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[n,s,o,r,a=!1,c]=Ze(e),f=N(n,s,o,d=>{const l=!c||c(d);l&&(f(),r(d,l))},a);return f}function S(t,e,i){return Qe(t).every(n=>n.dispatchEvent(Je(e,!0,!0,i)))}function Je(t,e,i,n){return e===void 0&&(e=!0),i===void 0&&(i=!1),T(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function Ze(t){return t[0]=Qe(t[0]),T(t[1])&&(t[1]=t[1].split(" ")),at(t[2])&&t.splice(2,0,!1),t}function jn(t,e){return i=>{const n=t[0]===">"?Ut(t,i.currentTarget).reverse().filter(s=>L(i.target,s))[0]:U(i.target,t);n&&(i.current=n,e.call(this,i))}}function Wn(t){return e=>J(e.detail)?t(e,...e.detail):t(e)}function qn(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Ai(t){return t&&"addEventListener"in t}function Vn(t){return Ai(t)?t:A(t)}function Qe(t){return J(t)?t.map(Vn).filter(Boolean):T(t)?Ut(t):Ai(t)?[t]:y(t)}function Dt(t){return t.pointerType==="touch"||!!t.touches}function ke(t){var e,i;const{clientX:n,clientY:s}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:s}}function Yn(t,e){const i=O({data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:ut,responseType:""},e);return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>Gn(t,i))}function Gn(t,e){return new Promise((i,n)=>{const{xhr:s}=e;for(const o in e)if(o in s)try{s[o]=e[o]}catch{}s.open(e.method.toUpperCase(),t);for(const o in e.headers)s.setRequestHeader(o,e.headers[o]);N(s,"load",()=>{s.status===0||s.status>=200&&s.status<300||s.status===304?i(s):n(O(Error(s.statusText),{xhr:s,status:s.status}))}),N(s,"error",()=>n(O(Error("Network Error"),{xhr:s}))),N(s,"timeout",()=>n(O(Error("Network Timeout"),{xhr:s}))),s.send(e.data)})}function _i(t,e,i){return new Promise((n,s)=>{const o=new Image;o.onerror=r=>s(r),o.onload=()=>n(o),i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const Kn={"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 h(t,e,i,n){return n===void 0&&(n=""),y(t).map(s=>{if(T(e)){if(e=Se(e),q(i))return Xn(s,e);!i&&!Le(i)?s.style.removeProperty(e):s.style.setProperty(e,yt(i)&&!Kn[e]?i+"px":i,n)}else if(J(e)){const o=Ue(s),r={};for(const a of e)r[a]=o[Se(a)];return r}else ct(e)&&(n=i,Q(e,(o,r)=>h(s,r,o,n)));return s})[0]}function Ue(t,e){return xt(t).getComputedStyle(t,e)}function Xn(t,e,i){return Ue(t,i)[e]}const Jn=/^\s*(["'])?(.*?)\1\s*$/;function ti(t){return Ue(document.documentElement).getPropertyValue("--uk-"+t).replace(Jn,"$2")}const Se=Z(t=>Zn(t)),Ni=["webkit","moz","ms"];function Zn(t){t=wt(t);const{style:e}=document.documentElement;if(t in e)return t;let i=Ni.length,n;for(;i--;)if(n="-"+Ni[i]+"-"+t,n in e)return n}function $(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Bi(t,i,"add")}function I(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Bi(t,i,"remove")}function Te(t,e){E(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function ei(t){(arguments.length<=1?void 0:arguments[1])&&I(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&$(t,arguments.length<=2?void 0:arguments[2])}function k(t,e){[e]=ii(e);for(const i of y(t))if(e&&i.classList.contains(e))return!0;return!1}function G(t,e,i){const n=ii(e);q(i)||(i=!!i);for(const s of y(t))for(const o of n)s.classList.toggle(o,i)}function Bi(t,e,i){e=e.reduce((n,s)=>n.concat(ii(s)),[]);for(const n of y(t))n.classList[i](...e)}function ii(t){return String(t).split(/\s|,/).filter(Boolean)}function Mi(t,e,i,n){return i===void 0&&(i=400),n===void 0&&(n="linear"),Promise.all(y(t).map(s=>new Promise((o,r)=>{for(const c in e){const f=h(s,c);f===""&&h(s,c,f)}const a=setTimeout(()=>S(s,"transitionend"),i);B(s,"transitionend transitioncanceled",c=>{let{type:f}=c;clearTimeout(a),I(s,"uk-transition"),h(s,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),f==="transitioncanceled"?r():o(s)},{self:!0}),$(s,"uk-transition"),h(s,O({transitionProperty:Object.keys(e).map(Se).join(","),transitionDuration:i+"ms",transitionTimingFunction:n},e))})))}const ft={start:Mi,stop(t){return S(t,"transitionend"),Promise.resolve()},cancel(t){S(t,"transitioncanceled")},inProgress(t){return k(t,"uk-transition")}},ee="uk-animation-";function ni(t,e,i,n,s){return i===void 0&&(i=200),Promise.all(y(t).map(o=>new Promise((r,a)=>{S(o,"animationcanceled");const c=setTimeout(()=>S(o,"animationend"),i);B(o,"animationend animationcanceled",f=>{let{type:d}=f;clearTimeout(c),d==="animationcanceled"?a():r(o),h(o,"animationDuration",""),Te(o,ee+"\\S*")},{self:!0}),h(o,"animationDuration",i+"ms"),$(o,e,ee+(s?"leave":"enter")),et(e,ee)&&(n&&$(o,"uk-transform-origin-"+n),s&&$(o,ee+"reverse"))})))}const Qn=new RegExp(ee+"(enter|leave)"),it={in:ni,out(t,e,i,n){return ni(t,e,i,n,!0)},inProgress(t){return Qn.test(E(t,"class"))},cancel(t){S(t,"animationcanceled")}},dt={width:["left","right"],height:["top","bottom"]};function nt(t){const e=Nt(t)?A(t).getBoundingClientRect():{height:M(t),width:ne(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 C(t,e){const i=nt(t);if(t){const{pageYOffset:s,pageXOffset:o}=xt(t),r={height:s,width:o};for(const a in dt)for(const c in dt[a])i[dt[a][c]]+=r[a]}if(!e)return i;const n=h(t,"position");Q(h(t,["left","top"]),(s,o)=>h(t,o,e[o]-i[o]+b(n==="absolute"&&s==="auto"?Hi(t)[o]:s)))}function Hi(t){let{top:e,left:i}=C(t);const{ownerDocument:{body:n,documentElement:s},offsetParent:o}=A(t);let r=o||s;for(;r&&(r===n||r===s)&&h(r,"position")==="static";)r=r.parentNode;if(Nt(r)){const a=C(r);e-=a.top+b(h(r,"borderTopWidth")),i-=a.left+b(h(r,"borderLeftWidth"))}return{top:e-b(h(t,"marginTop")),left:i-b(h(t,"marginLeft"))}}function ie(t){const e=[0,0];t=A(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,h(t,"position")==="fixed"){const i=xt(t);return e[0]+=i.pageYOffset,e[1]+=i.pageXOffset,e}while(t=t.offsetParent);return e}const M=Oi("height"),ne=Oi("width");function Oi(t){const e=fe(t);return(i,n)=>{if(q(n)){if(qt(i))return i["inner"+e];if(Vt(i)){const s=i.documentElement;return Math.max(s["offset"+e],s["scroll"+e])}return i=A(i),n=h(i,t),n=n==="auto"?i["offset"+e]:b(n)||0,n-se(i,t)}else return h(i,t,!n&&n!==0?"":+n+se(i,t)+"px")}}function se(t,e,i){return i===void 0&&(i="border-box"),h(t,"boxSizing")===i?dt[e].map(fe).reduce((n,s)=>n+b(h(t,"padding"+s))+b(h(t,"border"+s+"Width")),0):0}function si(t){for(const e in dt)for(const i in dt[e])if(dt[e][i]===t)return dt[e][1-i];return t}function pt(t,e,i,n){return e===void 0&&(e="width"),i===void 0&&(i=window),n===void 0&&(n=!1),T(t)?ts(t).reduce((s,o)=>{const r=is(o);return r&&(o=ns(r==="vh"?M(xt(i)):r==="vw"?ne(xt(i)):n?i["offset"+fe(e)]:nt(i)[e],o)),s+b(o)},0):b(t)}const Un=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,ts=Z(t=>t.toString().replace(/\s/g,"").match(Un)||[]),es=/(?:v[hw]|%)$/,is=Z(t=>(t.match(es)||[])[0]);function ns(t,e){return t*b(e)/100}function ss(t){if(document.readyState!=="loading"){t();return}B(document,"DOMContentLoaded",t)}function os(t){return oi(t,"")}function Ce(t,e){return q(e)?w(t).innerHTML:oi(t,e)}function oi(t,e){const i=P(e);return w(t).replaceChildren(...i),i}function rs(t,e){const i=P(e);return w(t).prepend(...i),i}function Tt(t,e){const i=P(e);return w(t).append(...i),i}function ri(t,e){const i=P(e);return w(t).before(...i),i}function Ee(t,e){const i=P(e);return w(t).after(...i),i}function Ct(t){y(t).forEach(e=>e.remove())}function Pe(t,e){for(e=A(ri(t,e));e.firstChild;)e=e.firstChild;return Tt(e,t),e}function Di(t,e){return y(y(t).map(i=>i.hasChildNodes?Pe(y(i.childNodes),e):Tt(i,e)))}function Ae(t){y(t).map(F).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>{ri(e,e.childNodes),Ct(e)})}const as=/^\s*<(\w+|!)[^>]*>/,ls=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function ai(t){const e=ls.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return as.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,i.childNodes.length>1?y(i.childNodes):i.firstChild}function gt(t,e){if(!!Nt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;gt(t,e),t=i}}function w(t,e){return zi(t)?A(ai(t)):Xe(t,e)}function P(t,e){return zi(t)?y(ai(t)):Ut(t,e)}function zi(t){return T(t)&&et(t.trim(),"<")}const R={reads:[],writes:[],read(t){return this.reads.push(t),ci(),t},write(t){return this.writes.push(t),ci(),t},clear(t){Li(this.reads,t),Li(this.writes,t)},flush:li};function li(t){Fi(R.reads),Fi(R.writes.splice(0)),R.scheduled=!1,(R.reads.length||R.writes.length)&&ci(t+1)}const cs=4;function ci(t){R.scheduled||(R.scheduled=!0,t&&t<cs?Promise.resolve().then(()=>li(t)):requestAnimationFrame(()=>li(1)))}function Fi(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Li(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function hi(){}hi.prototype={positions:[],init(){this.positions=[];let t;this.unbind=N(document,"mousemove",e=>t=ke(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:n,top:s,bottom:o}=e,[r]=this.positions,a=ge(this.positions),c=[r,a];return qe(a,e)?!1:[[{x:i,y:s},{x:n,y:o}],[{x:i,y:o},{x:n,y:s}]].some(d=>{const l=hs(c,d);return l&&qe(l,e)})}};function hs(t,e){let[{x:i,y:n},{x:s,y:o}]=t,[{x:r,y:a},{x:c,y:f}]=e;const d=(f-a)*(s-i)-(c-r)*(o-n);if(d===0)return!1;const l=((c-r)*(n-a)-(f-a)*(i-r))/d;return l<0?!1:{x:i+l*(s-i),y:n+l*(o-n)}}const j={};j.events=j.created=j.beforeConnect=j.connected=j.beforeDisconnect=j.disconnected=j.destroy=ui,j.args=function(t,e){return e!==!1&&ui(e||t)},j.update=function(t,e){return We(ui(t,at(e)?{read:e}:e),"order")},j.props=function(t,e){if(J(e)){const i={};for(const n of e)i[n]=String;e=i}return j.methods(t,e)},j.computed=j.methods=function(t,e){return e?t?O({},t,e):e:t},j.data=function(t,e,i){return i?Ri(t,e,i):e?t?function(n){return Ri(t,e,n)}:e:t};function Ri(t,e,i){return j.computed(at(t)?t.call(i,i):t,at(e)?e.call(i,i):e)}function ui(t,e){return t=t&&!J(t)?[t]:t,e?t?t.concat(e):J(e)?e:[e]:t}function us(t,e){return q(e)?t:e}function zt(t,e,i){const n={};if(at(e)&&(e=e.options),e.extends&&(t=zt(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=zt(t,o,i);for(const o in t)s(o);for(const o in e)vt(t,o)||s(o);function s(o){n[o]=(j[o]||us)(t[o],e[o],i)}return n}function Ii(t,e){e===void 0&&(e=[]);try{return t?et(t,"{")?JSON.parse(t):e.length&&!v(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[s,o]=n.split(/:(.*)/);return s&&!q(o)&&(i[s.trim()]=o.trim()),i},{}):{}}catch{return{}}}function ji(t){if(Ne(t)&&fi(t,{func:"playVideo",method:"play"}),_e(t))try{t.play().catch(ut)}catch{}}function Wi(t){Ne(t)&&fi(t,{func:"pauseVideo",method:"pause"}),_e(t)&&t.pause()}function qi(t){Ne(t)&&fi(t,{func:"mute",method:"setVolume",value:0}),_e(t)&&(t.muted=!0)}function Vi(t){return _e(t)||Ne(t)}function _e(t){return(t==null?void 0:t.tagName)==="VIDEO"}function Ne(t){return(t==null?void 0:t.tagName)==="IFRAME"&&(Yi(t)||Gi(t))}function Yi(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Gi(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function fi(t,e){await ds(t),Ki(t,e)}function Ki(t,e){try{t.contentWindow.postMessage(JSON.stringify(O({event:"command"},e)),"*")}catch{}}const di="_ukPlayer";let fs=0;function ds(t){if(t[di])return t[di];const e=Yi(t),i=Gi(t),n=++fs;let s;return t[di]=new Promise(o=>{e&&B(t,"load",()=>{const r=()=>Ki(t,{event:"listening",id:n});s=setInterval(r,100),r()}),B(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===n&&a.event==="onReady"||i&&Number(a.player_id)===n)}catch{}}),t.src=""+t.src+(v(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+n)}).then(()=>clearInterval(s))}function oe(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),_(t)?$i(...Ft(t).map(n=>{const{top:s,left:o,bottom:r,right:a}=C(ae(n));return{top:s-e,left:o-i,bottom:r+e,right:a+i}}).concat(C(t))):!1}function re(t,e){if(qt(t)||Vt(t)?t=Lt(t):t=A(t),q(e))return t.scrollTop;t.scrollTop=e}function pi(t,e){let{offset:i=0}=e===void 0?{}:e;const n=_(t)?Ft(t):[];return n.reduce((a,c,f)=>{const{scrollTop:d,scrollHeight:l,offsetHeight:u}=c,p=l-le(c),{height:x,top:g}=C(n[f-1]||t);let m=Math.ceil(g-C(ae(c)).top-i+d);return i>0&&u<x+i?m+=i:i=0,m>p?(i-=m-p,m=p):m<0&&(i-=m,m=0),()=>s(c,m-d).then(a)},()=>Promise.resolve())();function s(a,c){return new Promise(f=>{const d=a.scrollTop,l=o(Math.abs(c)),u=Date.now();(function p(){const x=r($t((Date.now()-u)/l));re(a,d+c*x),x===1?f():requestAnimationFrame(p)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function Xi(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!_(t))return 0;const[n]=Ft(t,/auto|scroll/,!0),{scrollHeight:s,scrollTop:o}=n,r=le(n),a=s-r,c=ie(t)[0]-ie(n)[0],f=Math.max(0,c-r+e),d=Math.min(a,c+t.offsetHeight-i);return $t((o-f)/(d-f))}function Ft(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const n=Lt(t);let s=Zt(t).reverse();s=s.slice(s.indexOf(n)+1);const o=de(s,r=>h(r,"position")==="fixed");return~o&&(s=s.slice(o)),[n].concat(s.filter(r=>e.test(h(r,"overflow"))&&(!i||r.scrollHeight>le(r)))).reverse()}function ae(t){return t===Lt(t)?window:t}function le(t){return(t===Lt(t)?document.documentElement:t).clientHeight}function Lt(t){const{document:e}=xt(t);return e.scrollingElement||e.documentElement}const ce={width:["x","left","right"],height:["y","top","bottom"]};function Ji(t,e,i,n,s,o,r,a){i=Qi(i),n=Qi(n);const c={element:i,target:n};if(!t||!e)return c;const f=C(t),d=C(e),l=d;if(Zi(l,i,f,-1),Zi(l,n,d,1),s=Ui(s,f.width,f.height),o=Ui(o,d.width,d.height),s.x+=o.x,s.y+=o.y,l.left+=s.x,l.top+=s.y,r){let u=Ft(t).map(ae);a&&!v(u,a)&&u.unshift(a),u=u.map(p=>C(p)),Q(ce,(p,x)=>{let[g,m,V]=p;!(r===!0||v(r,g))||u.some(H=>{const W=i[g]===m?-f[x]:i[g]===V?f[x]:0,Y=n[g]===m?d[x]:n[g]===V?-d[x]:0;if(l[m]<H[m]||l[m]+f[x]>H[V]){const rt=f[x]/2,Rt=n[g]==="center"?-d[x]/2:0;return i[g]==="center"&&(tt(rt,Rt)||tt(-rt,-Rt))||tt(W,Y)}function tt(rt,Rt){const It=b((l[m]+rt+Rt-s[g]*2).toFixed(4));if(It>=H[m]&&It+f[x]<=H[V]){l[m]=It;for(const ue of["element","target"])rt&&(c[ue][g]=c[ue][g]===ce[x][1]?ce[x][2]:ce[x][1]);return!0}}})})}return C(t,l),c}function Zi(t,e,i,n){Q(ce,(s,o)=>{let[r,a,c]=s;e[r]===c?t[a]+=i[o]*n:e[r]==="center"&&(t[a]+=i[o]*n/2)})}function Qi(t){const e=/left|center|right/,i=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function Ui(t,e,i){const[n,s]=(t||"").split(" ");return{x:n?b(n)*(bt(n,"%")?e/100:1):0,y:s?b(s)*(bt(s,"%")?i/100:1):0}}var ps=Object.freeze({__proto__:null,ajax:Yn,getImage:_i,transition:Mi,Transition:ft,animate:ni,Animation:it,attr:E,hasAttr:Gt,removeAttr:Ve,data:Kt,addClass:$,removeClass:I,removeClasses:Te,replaceClass:ei,hasClass:k,toggleClass:G,dimensions:nt,offset:C,position:Hi,offsetPosition:ie,height:M,width:ne,boxModelAdjust:se,flipPosition:si,toPx:pt,ready:ss,empty:os,html:Ce,replaceChildren:oi,prepend:rs,append:Tt,before:ri,after:Ee,remove:Ct,wrapAll:Pe,wrapInner:Di,unwrap:Ae,fragment:ai,apply:gt,$:w,$$:P,inBrowser:kt,isRtl:Xt,hasTouch:Bt,pointerDown:Ht,pointerMove:Hn,pointerUp:Ot,pointerEnter:we,pointerLeave:be,pointerCancel:ye,on:N,off:Pi,once:B,trigger:S,createEvent:Je,toEventTargets:Qe,isTouch:Dt,getEventPos:ke,fastdom:R,isVoidElement:Ye,isVisible:_,selInput:xe,isInput:Si,selFocusable:$e,isFocusable:Ge,parent:F,filter:Jt,matches:D,closest:U,within:L,parents:Zt,children:St,index:Ke,hasOwn:vt,hyphenate:wt,camelize:_t,ucfirst:fe,startsWith:et,endsWith:bt,includes:v,findIndex:de,isArray:J,toArray:Bn,assign:O,isFunction:at,isObject:ct,isPlainObject:ht,isWindow:qt,isDocument:Vt,isNode:ze,isElement:Nt,isBoolean:pe,isString:T,isNumber:Le,isNumeric:yt,isEmpty:yi,isUndefined:q,toBoolean:Re,toNumber:Yt,toFloat:b,toNode:A,toNodes:y,toWindow:xt,toMs:Ie,isEqual:xi,swap:je,last:ge,each:Q,sortBy:We,uniqueBy:Mn,clamp:$t,noop:ut,intersectRect:$i,pointInRect:qe,Dimensions:me,getIndex:ve,memoize:Z,Deferred:ki,MouseTracker:hi,mergeOptions:zt,parseOptions:Ii,play:ji,pause:Wi,mute:qi,isVideo:Vi,positionAt:Ji,query:lt,queryAll:Qt,find:Xe,findAll:Ut,escape:te,css:h,getCssVar:ti,propName:Se,isInView:oe,scrollTop:re,scrollIntoView:pi,scrolledOver:Xi,scrollParents:Ft,getViewport:ae,getViewportClientHeight:le,getScrollingElement:Lt});function gs(t){const e=t.data;t.use=function(s){if(!s.installed)return s.call(null,this),s.installed=!0,this},t.mixin=function(s,o){o=(T(o)?t.component(o):o)||this,o.options=zt(o.options,s)},t.extend=function(s){s=s||{};const o=this,r=function(c){this._init(c)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=zt(o.options,s),r.super=o,r.extend=o.extend,r},t.update=function(s,o){s=s?A(s):document.body;for(const r of Zt(s).reverse())n(r[e],o);gt(s,r=>n(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(s){i=w(s)}});function n(s,o){if(!!s)for(const r in s)s[r]._connected&&s[r]._callUpdate(o)}}function ms(t){t.prototype._callHook=function(n){var s;(s=this.$options[n])==null||s.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(n){n===void 0&&(n="update"),!!this._connected&&((n==="update"||n==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,R.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(n.type||n)))},t.prototype._callWatches=function(){if(this._watch)return;const n=!vt(this,"_watch");this._watch=R.read(()=>{this._connected&&i.call(this,n),this._watch=null})};function e(n){for(const{read:s,write:o,events:r}of this.$options.update){if(!n.has("update")&&(!r||!r.some(c=>n.has(c))))continue;let a;s&&(a=s.call(this,this._data,n),a&&ht(a)&&O(this._data,a)),o&&a!==!1&&R.write(()=>o.call(this,this._data,n))}}function i(n){const{$options:{computed:s}}=this,o=O({},this._computeds);this._computeds={};for(const r in s){const{watch:a,immediate:c}=s[r];a&&(n&&c||vt(o,r)&&!xi(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function vs(t){let e=0;t.prototype._init=function(l){l=l||{},l.data=c(l,this.constructor.options),this.$options=zt(this.constructor.options,l,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),l.el&&this.$mount(l.el)},t.prototype._initData=function(){const{data:l={}}=this.$options;for(const u in l)this.$props[u]=this[u]=l[u]},t.prototype._initMethods=function(){const{methods:l}=this.$options;if(l)for(const u in l)this[u]=l[u].bind(this)},t.prototype._initComputeds=function(){const{computed:l}=this.$options;if(this._computeds={},l)for(const u in l)n(this,u,l[u])},t.prototype._initProps=function(l){let u;l=l||i(this.$options,this.$name);for(u in l)q(l[u])||(this.$props[u]=l[u]);const p=[this.$options.computed,this.$options.methods];for(u in this.$props)u in l&&o(p,u)&&(this[u]=this.$props[u])},t.prototype._initEvents=function(){this._events=[];for(const l of this.$options.events||[])if(vt(l,"handler"))s(this,l);else for(const u in l)s(this,l[u],u)},t.prototype._unbindEvents=function(){this._events.forEach(l=>l()),delete this._events},t.prototype._initObservers=function(){this._observers=[f(this),d(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(l=>l==null?void 0:l.disconnect())};function i(l,u){const p={},{args:x=[],props:g={},el:m}=l;if(!g)return p;for(const H in g){const W=wt(H);let Y=Kt(m,W);q(Y)||(Y=g[H]===Boolean&&Y===""?!0:r(g[H],Y),!(W==="target"&&(!Y||et(Y,"_")))&&(p[H]=Y))}const V=Ii(Kt(m,u),x);for(const H in V){const W=_t(H);g[W]!==void 0&&(p[W]=r(g[W],V[H]))}return p}function n(l,u,p){Object.defineProperty(l,u,{enumerable:!0,get(){const{_computeds:x,$props:g,$el:m}=l;return vt(x,u)||(x[u]=(p.get||p).call(l,g,m)),x[u]},set(x){const{_computeds:g}=l;g[u]=p.set?p.set.call(l,x):x,q(g[u])&&delete g[u]}})}function s(l,u,p){ht(u)||(u={name:p,handler:u});let{name:x,el:g,handler:m,capture:V,passive:H,delegate:W,filter:Y,self:tt}=u;if(g=at(g)?g.call(l):g||l.$el,J(g)){g.forEach(rt=>s(l,O({},u,{el:rt}),p));return}!g||Y&&!Y.call(l)||l._events.push(N(g,x,W?T(W)?W:W.call(l):null,T(m)?l[m]:m.bind(l),{passive:H,capture:V,self:tt}))}function o(l,u){return l.every(p=>!p||!vt(p,u))}function r(l,u){return l===Boolean?Re(u):l===Number?Yt(u):l==="list"?a(u):l?l(u):u}function a(l){return J(l)?l:T(l)?l.split(/,(?![^(]*\))/).map(u=>yt(u)?Yt(u):Re(u.trim())):[l]}function c(l,u){let{data:p={}}=l,{args:x=[],props:g={}}=u;J(p)&&(p=p.slice(0,x.length).reduce((m,V,H)=>(ht(V)?O(m,V):m[x[H]]=V,m),{}));for(const m in p)q(p[m])?delete p[m]:g[m]&&(p[m]=r(g[m],p[m]));return p}function f(l){const{el:u}=l.$options,p=new MutationObserver(()=>l.$emit());return p.observe(u,{childList:!0,subtree:!0}),p}function d(l){const{$name:u,$options:p,$props:x}=l,{attrs:g,props:m,el:V}=p;if(!m||g===!1)return;const H=J(g)?g:Object.keys(m),W=H.map(tt=>wt(tt)).concat(u),Y=new MutationObserver(tt=>{const rt=i(p,u);tt.some(Rt=>{let{attributeName:It}=Rt;const ue=It.replace("data-","");return(ue===u?H:[_t(ue),_t(It)]).some(wi=>!q(rt[wi])&&rt[wi]!==x[wi])})&&l.$reset()});return Y.observe(V,{attributes:!0,attributeFilter:W.concat(W.map(tt=>"data-"+tt))}),Y}}function ws(t){const e=t.data;t.prototype.$create=function(n,s,o){return t[n](s,o)},t.prototype.$mount=function(n){const{name:s}=this.$options;n[e]||(n[e]={}),!n[e][s]&&(n[e][s]=this,this.$el=this.$options.el=this.$options.el||n,L(n,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(n){n===void 0&&(n=!1);const{el:s,name:o}=this.$options;s&&this._callDisconnected(),this._callHook("destroy"),!!(s!=null&&s[e])&&(delete s[e][o],yi(s[e])||delete s[e],n&&Ct(this.$el))},t.prototype.$emit=function(n){this._callUpdate(n)},t.prototype.$update=function(n,s){n===void 0&&(n=this.$el),t.update(n,s)},t.prototype.$getComponent=t.getComponent;const i=Z(n=>t.prefix+wt(n));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function bs(t){const e=t.data,i={};t.component=function(n,s){const o=wt(n);if(n=_t(o),!s)return ht(i[n])&&(i[n]=t.extend(i[n])),i[n];t[n]=function(a,c){const f=t.component(n);return f.options.functional?new f({data:ht(a)?a:[...arguments]}):a?P(a).map(d)[0]:d();function d(l){const u=t.getComponent(l,n);if(u)if(c)u.$destroy();else return u;return new f({el:l,data:c})}};const r=ht(s)?O({},s):s.options;return r.name=n,r.install==null||r.install(t,r,n),t._initialized&&!r.functional&&R.read(()=>t[n]("[uk-"+o+"],[data-uk-"+o+"]")),i[n]=ht(s)?r:s},t.getComponents=n=>(n==null?void 0:n[e])||{},t.getComponent=(n,s)=>t.getComponents(n)[s],t.connect=n=>{if(n[e])for(const s in n[e])n[e][s]._callConnected();for(const s of n.attributes){const o=tn(s.name);o&&o in i&&t[o](n)}},t.disconnect=n=>{for(const s in n[e])n[e][s]._callDisconnected()}}const tn=Z(t=>et(t,"uk-")||et(t,"data-uk-")?_t(t.replace("data-uk-","").replace("uk-","")):!1),K=function(t){this._init(t)};K.util=ps,K.data="__uikit__",K.prefix="uk-",K.options={},K.version="3.11.2-dev.44c622843",gs(K),ms(K),vs(K),bs(K),ws(K);function ys(t){if(!kt)return;let e;const i=()=>{e||(e=!0,R.read(()=>e=!1),t.update(null,"resize"))};N(window,"load resize",i),N(document,"loadedmetadata load",i,!0),"ResizeObserver"in window&&new ResizeObserver(i).observe(document.documentElement);let n;N(window,"scroll",o=>{n||(n=!0,R.read(()=>n=!1),t.update(null,o.type))},{passive:!0,capture:!0});let s=0;N(document,"animationstart",o=>{let{target:r}=o;(h(r,"animationName")||"").match(/^uk-.*(left|right)/)&&(s++,h(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--s||h(document.documentElement,"overflowX","")},Ie(h(r,"animationDuration"))+100))},!0),N(document,Ht,o=>{if(!Dt(o))return;const r=ke(o),a="tagName"in o.target?o.target:F(o.target);B(document,Ot+" "+ye+" scroll",c=>{const{x:f,y:d}=ke(c);(c.type!=="scroll"&&a&&f&&Math.abs(r.x-f)>100||d&&Math.abs(r.y-d)>100)&&setTimeout(()=>{S(a,"swipe"),S(a,"swipe"+xs(r.x,r.y,f,d))})})},{passive:!0})}function xs(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function $s(t){const{connect:e,disconnect:i}=t;if(!kt||!window.MutationObserver)return;R.read(function(){document.body&&gt(document.body,e),new MutationObserver(o=>o.forEach(n)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(s)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function n(o){let{addedNodes:r,removedNodes:a}=o;for(const c of r)gt(c,e);for(const c of a)gt(c,i)}function s(o){var r;let{target:a,attributeName:c}=o;const f=tn(c);if(!(!f||!(f in t))){if(Gt(a,c)){t[f](a);return}(r=t.getComponent(a,f))==null||r.$destroy()}}}var st={connected(){!k(this.$el,this.$name)&&$(this.$el,this.$name)}},Et={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(y(t).map(s=>{const o=pe(e)?e:!this.isToggled(s);if(!S(s,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(at(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?en(this):ks(this))(s,o),a=o?this.clsEnter:this.clsLeave;$(s,a),S(s,o?"show":"hide",[this]);const c=()=>{I(s,a),S(s,o?"shown":"hidden",[this]),this.$update(s)};return r?r.then(c,()=>(I(s,a),Promise.reject())):c()})).then(n,ut))},isToggled(t){return t===void 0&&(t=this.$el),[t]=y(t),k(t,this.clsEnter)?!0:k(t,this.clsLeave)?!1:this.cls?k(t,this.cls.split(" ")[0]):_(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=v(this.cls," ")||e!==k(t,this.cls),i&&G(t,this.cls,v(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),P("[autofocus]",t).some(n=>_(n)?n.focus()||!0:n.blur()),i&&(S(t,"toggled",[e,this]),this.$update(t))}}};function en(t){let{isToggled:e,duration:i,initProps:n,hideProps:s,transition:o,_toggle:r}=t;return(a,c)=>{const f=ft.inProgress(a),d=a.hasChildNodes?b(h(a.firstElementChild,"marginTop"))+b(h(a.lastElementChild,"marginBottom")):0,l=_(a)?M(a)+(f?0:d):0;ft.cancel(a),e(a)||r(a,!0),M(a,""),R.flush();const u=M(a)+(f?0:d);return M(a,l),(c?ft.start(a,O({},n,{overflow:"hidden",height:u}),Math.round(i*(1-l/u)),o):ft.start(a,s,Math.round(i*(l/u)),o).then(()=>r(a,!1))).then(()=>h(a,n))}}function ks(t){return(e,i)=>{it.cancel(e);const{animation:n,duration:s,_toggle:o}=t;return i?(o(e,!0),it.in(e,n[0],s,t.origin)):it.out(e,n[1]||n[0],s,t.origin).then(()=>o(e,!1))}}var nn={mixins:[st,Et],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return P(i,e)},watch(t,e){if(t.forEach(n=>Be(w(this.content,n),!k(n,this.clsOpen))),e||k(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},immediate:!0},toggles(t){let{toggle:e}=t;return this.items.map(i=>w(e,i))}},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(Ke(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[ve(t,this.items)]];const n=Jt(this.items,"."+this.clsOpen);if(!this.multiple&&!v(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&!Jt(i,":not(."+this.clsOpen+")").length))for(const s of i)this.toggleElement(s,!k(s,this.clsOpen),async(o,r)=>{G(o,this.clsOpen,r),E(w(this.$props.toggle,o),"aria-expanded",r);const a=w((o._wrapper?"> * ":"")+this.content,o);if(e===!1||!this.hasTransition){Be(a,!r);return}if(o._wrapper||(o._wrapper=Pe(a,"<div"+(r?" hidden":"")+">")),Be(a,!1),await en(this)(o._wrapper,r),Be(a,!r),delete o._wrapper,Ae(a),r){const c=w(this.$props.toggle,o);oe(c)||pi(c,{offset:this.offset})}})}}};function Be(t,e){t&&(t.hidden=e)}var Ss={mixins:[st,Et],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:O({opacity:0},Et.data.hideProps)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}}],methods:{async close(){await this.toggleElement(this.$el),this.$destroy(!0)}}},sn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView(t){let{autoplay:e}=t;return e==="inview"}},connected(){this.inView&&!Gt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&qi(this.$el)},update:{read(){return Vi(this.$el)?{visible:_(this.$el)&&h(this.$el,"visibility")!=="hidden",inView:this.inView&&oe(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Wi(this.$el):(this.autoplay===!0||this.inView&&i)&&ji(this.$el)},events:["resize","scroll"]}},Ts={mixins:[sn],props:{width:Number,height:Number},data:{automute:!0},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Cs(t)||F(t),n=me.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:i+(i%2?1:0),height:e+(e%2?1:0)});return!n.width||!n.height?!1:n},write(t){let{height:e,width:i}=t;h(this.$el,{height:e,width:i})},events:["resize"]}};function Cs(t){for(;t=F(t);)if(h(t,"position")!=="static")return t}var gi={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&w(e)}}},Es={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Xt?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos(t){let{pos:e}=t;return e.split("-").concat("center").slice(0,2)},dir(){return this.pos[0]},align(){return this.pos[1]}},methods:{positionAt(t,e,i){Te(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:n}=this;const s=this.getAxis();if(!yt(n)){const a=w(n);n=a?C(a)[s==="x"?"left":"top"]-C(e)[s==="x"?"right":"bottom"]:0}const{x:o,y:r}=Ji(t,e,s==="x"?si(this.dir)+" "+this.align:this.align+" "+si(this.dir),s==="x"?this.dir+" "+this.align:this.align+" "+this.dir,s==="x"?""+(this.dir==="left"?-n:n):" "+(this.dir==="top"?-n:n),null,this.flip,i).target;this.dir=s==="x"?o:r,this.align=s==="x"?r:o,G(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let z;var on={mixins:[gi,Es,Et],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?window:lt(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new hi},connected(){$(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",lt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,E(this.target,"aria-haspopup",!0))},disconnected(){this.isActive()&&(z=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!L(i,this.$el)&&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.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),D(this.$el,":focus,:hover")||this.hide()}},{name:we+" focusin",filter(){return v(this.mode,"hover")},handler(t){Dt(t)||this.clearTimers()}},{name:be+" focusout",filter(){return v(this.mode,"hover")},handler(t){!Dt(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(),B(this.$el,"hide",N(document,Ht,t=>{let{target:e}=t;return!L(e,this.$el)&&B(document,Ot+" "+ye+" scroll",i=>{let{defaultPrevented:n,type:s,target:o}=i;!n&&s===Ot&&e===o&&!(this.target&&L(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),B(this.$el,"hide",N(document,"keydown",t=>{t.keyCode===27&&this.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){z=z===null&&L(e,this.$el)&&this.isToggled()?this:z;return}z=this.isActive()?null:z,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!k(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(z){if(e&&z.isDelaying){this.showTimer=setTimeout(()=>D(t,":hover")&&this.show(),10);return}let i;for(;z&&i!==z&&!L(this.$el,z.$el);)i=z,z.hide(!1)}this.container&&F(this.$el)!==this.container&&Tt(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t){t===void 0&&(t=!0);const e=()=>this.toggleElement(this.$el,!1,!1);this.clearTimers(),this.isDelaying=Ps(this.$el).some(i=>this.tracker.movesTo(i)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(e,this.delayHide):e()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return z===this},position(){I(this.$el,this.clsDrop+"-stack"),G(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=C(this.boundary),e=this.boundaryAlign?t:C(this.target);if(this.align==="justify"){const i=this.getAxis()==="y"?"width":"height";h(this.$el,i,e[i])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&$(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Ps(t){const e=[];return gt(t,i=>h(i,"position")!=="static"&&e.push(i)),e}var As={mixins:[st],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return w(xe,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&F(this.input)===e&&this.input.nextElementSibling||lt(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const n=Si(t)?"value":"textContent",s=t[n],o=e.files&&e.files[0]?e.files[0].name:D(e,"select")&&(i=P("option",e).filter(r=>r.selected)[0])?i.textContent:e.value;s!==o&&(t[n]=o)},events:[{name:"change",handler(){this.$update()}},{name:"reset",el(){return U(this.$el,"form")},handler(){this.$update()}}]},_s={update:{read(t){const e=oe(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},rn={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=an(this.$el.children);return{rows:t,columns:Ns(t)}},write(t){let{columns:e,rows:i}=t;for(const n of i)for(const s of n)G(s,this.margin,i[0]!==n),G(s,this.firstColumn,!!~e[0].indexOf(s))},events:["resize"]}};function an(t){return ln(t,"top","bottom")}function Ns(t){const e=[];for(const i of t){const n=ln(i,"left","right");for(let s=0;s<n.length;s++)e[s]=e[s]?e[s].concat(n[s]):n[s]}return Xt?e.reverse():e}function ln(t,e,i){const n=[[]];for(const s of t){if(!_(s))continue;let o=Me(s);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(s);break}let c;if(a[0].offsetParent===s.offsetParent?c=Me(a[0]):(o=Me(s,!0),c=Me(a[0],!0)),o[e]>=c[i]-1&&o[e]!==c[e]){n.push([s]);break}if(o[i]-1>c[e]||o[e]===c[e]){a.push(s);break}if(r===0){n.unshift([s]);break}}}return n}function Me(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:n,offsetHeight:s,offsetWidth:o}=t;return e&&([i,n]=ie(t)),{top:i,left:n,bottom:i+s,right:n+o}}var Bs={extends:rn,mixins:[st],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&$(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;G(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||cn(this.$el))return t.translates=!1,!1;let n=!1;const s=St(this.$el),o=Os(e),r=Hs(s,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(f=>We(f,"offsetTop")),n=Ms(i,e));let c=Math.abs(this.parallax);return c&&(c=o.reduce((f,d,l)=>Math.max(f,d+r+(l%2?c:c/8)-a),0)),{padding:c,columns:e,translates:n,height:n?a:""}},write(t){let{height:e,padding:i}=t;h(this.$el,"paddingBottom",i||""),e!==!1&&h(this.$el,"height",e)},events:["resize"]},{read(){return cn(this.$el)?!1:{scrolled:this.parallax?Xi(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:n}=t;i===!1&&!n||e.forEach((s,o)=>s.forEach((r,a)=>h(r,"transform",!i&&!n?"":"translateY("+((n&&-n[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function cn(t){return St(t).some(e=>h(e,"position")==="absolute")}function Ms(t,e){const i=t.map(n=>Math.max(...n.map(s=>s.offsetHeight)));return e.map(n=>{let s=0;return n.map((o,r)=>s+=r?i[r-1]-n[r-1].offsetHeight:0)})}function Hs(t,e){const[i]=t.filter(n=>k(n,e));return b(i?h(i,"marginTop"):h(t[0],"paddingLeft"))}function Os(t){return t.map(e=>e.reduce((i,n)=>i+n.offsetHeight,0))}var Ds={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return P(i,e)}},update:{read(){return{rows:(this.row?an(this.elements):[this.elements]).map(zs)}},write(t){let{rows:e}=t;for(const{heights:i,elements:n}of e)n.forEach((s,o)=>h(s,"minHeight",i[o]))},events:["resize"]}};function zs(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(hn),i=Math.max(...e);const n=t.some(o=>o.style.minHeight),s=t.some((o,r)=>!o.style.minHeight&&e[r]<i);return n&&s&&(h(t,"minHeight",""),e=t.map(hn),i=Math.max(...e)),e=t.map((o,r)=>e[r]===i&&b(o.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function hn(t){let e=!1;_(t)||(e=t.style.display,h(t,"display","block","important"));const i=nt(t).height-se(t,"height","content-box");return e!==!1&&h(t,"display",e),i}var Fs={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read(t){let{minHeight:e}=t;if(!_(this.$el))return!1;let i="";const n=se(this.$el,"height","content-box");if(this.expand)i=M(window)-(nt(document.documentElement).height-nt(this.$el).height)-n||"";else{if(i="calc(100vh",this.offsetTop){const{top:s}=C(this.$el);i+=s>0&&s<M(window)/2?" - "+s+"px":""}this.offsetBottom===!0?i+=" - "+nt(this.$el.nextElementSibling).height+"px":yt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&bt(this.offsetBottom,"px")?i+=" - "+b(this.offsetBottom)+"px":T(this.offsetBottom)&&(i+=" - "+nt(lt(this.offsetBottom,this.$el)).height+"px"),i+=(n?" - "+n+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;h(this.$el,{minHeight:e}),e!==i&&S(this.$el,"resize"),this.minHeight&&b(h(this.$el,"minHeight"))<this.minHeight&&h(this.$el,"minHeight",this.minHeight)},events:["resize"]}},un={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&v(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=qs(t,this.$el);return this.svgEl&&e!==this.svgEl&&Ct(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},ut)},disconnected(){this.svg.then(t=>{this._connected||(Ye(this.$el)&&(this.$el.hidden=!1),Ct(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&_(this.svgEl))},write(){js(this.svgEl)},type:["resize"]},methods:{async getSvg(){return Rs(await Ls(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const o in this.$options.props)v(this.include,o)&&o in this&&E(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);E(t,r,a)}this.id||Ve(t,"id");const i=["width","height"];let n=i.map(o=>this[o]);n.some(o=>o)||(n=i.map(o=>E(e,o)));const s=E(e,"viewBox");s&&!n.some(o=>o)&&(n=s.split(" ").slice(2)),n.forEach((o,r)=>E(t,i[r],b(o)*this.ratio||null))}}};const Ls=Z(async t=>t?et(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Rs(t,e){var i;return e&&v(t,"<symbol")&&(t=Is(t,e)||t),t=w(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const fn=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,He={};function Is(t,e){if(!He[t]){He[t]={},fn.lastIndex=0;let i;for(;i=fn.exec(t);)He[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return He[t][e]}function js(t){const e=Ws(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function Ws(t){return Math.ceil(Math.max(0,...P("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function qs(t,e){if(Ye(e)||e.tagName==="CANVAS"){e.hidden=!0;const n=e.nextElementSibling;return dn(t,n)?n:Ee(e,t)}const i=e.lastElementChild;return dn(t,i)?i:Tt(e,t)}function dn(t,e){return pn(t)&&pn(e)&&gn(t)===gn(e)}function pn(t){return(t==null?void 0:t.tagName)==="svg"}function gn(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var Vs='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><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>',Ys='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><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>',Gs='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',Ks='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',Xs='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',Js='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Zs='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',Qs='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><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>',Us='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><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>',to='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><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>',eo='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',io='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',no='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',so='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',oo='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',ro='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const Oe={spinner:oo,totop:ro,marker:Gs,"close-icon":Vs,"close-large":Ys,"navbar-toggle-icon":Ks,"overlay-icon":Xs,"pagination-next":Js,"pagination-previous":Zs,"search-icon":Qs,"search-large":Us,"search-navbar":to,"slidenav-next":eo,"slidenav-next-large":io,"slidenav-previous":no,"slidenav-previous-large":so},mn={install:ho,extends:un,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){$(this.$el,"uk-icon")},methods:{getSvg(){const t=uo(this.icon);return t?Promise.resolve(t):Promise.reject("Icon not found.")}}},ot={args:!1,extends:mn,data:t=>({icon:wt(t.constructor.options.name)}),beforeConnect(){$(this.$el,this.$name)}},vn={extends:ot,beforeConnect(){$(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-slidenav-large")?i+"-large":i}}},ao={extends:ot,computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-search-icon")&&Zt(e,".uk-search-large").length?"search-large":Zt(e,".uk-search-navbar").length?"search-navbar":i}}},lo={extends:ot,computed:{icon(){return"close-"+(k(this.$el,"uk-close-large")?"large":"icon")}}},co={extends:ot,async connected(){const t=await this.svg;t&&this.ratio!==1&&h(w("circle",t),"strokeWidth",1/this.ratio)}},De={};function ho(t){t.icon.add=(e,i)=>{const n=T(e)?{[e]:i}:e;Q(n,(s,o)=>{Oe[o]=s,delete De[o]}),t._initialized&&gt(document.body,s=>Q(t.getComponents(s),o=>{o.$options.isIcon&&o.icon in n&&o.$reset()}))}}function uo(t){return Oe[t]?(De[t]||(De[t]=w((Oe[fo(t)]||Oe[t]).trim())),De[t].cloneNode(!0)):null}function fo(t){return Xt?je(je(t,"left","right"),"previous","next"):t}var po={args:"dataSrc",props:{dataSrc:String,dataSrcset:Boolean,sizes:String,width:Number,height:Number,offsetTop:String,offsetLeft:String,target:String},data:{dataSrc:"",dataSrcset:!1,sizes:!1,width:!1,height:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1},computed:{cacheKey(t){let{dataSrc:e}=t;return this.$name+"."+e},width(t){let{width:e,dataWidth:i}=t;return e||i},height(t){let{height:e,dataHeight:i}=t;return e||i},sizes(t){let{sizes:e,dataSizes:i}=t;return e||i},isImg(t,e){return yn(e)},target:{get(t){let{target:e}=t;return[this.$el,...Qt(e,this.$el)]},watch(){this.observe()}},offsetTop(t){let{offsetTop:e}=t;return pt(e,"height")},offsetLeft(t){let{offsetLeft:e}=t;return pt(e,"width")}},connected(){if(!window.IntersectionObserver){he(this.$el,this.dataSrc,this.dataSrcset,this.sizes);return}Pt[this.cacheKey]?he(this.$el,Pt[this.cacheKey],this.dataSrcset,this.sizes):this.isImg&&this.width&&this.height&&he(this.$el,go(this.width,this.height,this.sizes)),this.observer=new IntersectionObserver(this.load,{rootMargin:this.offsetTop+"px "+this.offsetLeft+"px"}),requestAnimationFrame(this.observe)},disconnected(){this.observer&&this.observer.disconnect()},update:{read(t){let{image:e}=t;if(!this.observer||(!e&&document.readyState==="complete"&&this.load(this.observer.takeRecords()),this.isImg))return!1;e&&e.then(i=>i&&i.currentSrc!==""&&he(this.$el,mi(i)))},write(t){if(this.dataSrcset&&window.devicePixelRatio!==1){const e=h(this.$el,"backgroundSize");(e.match(/^(auto\s?)+$/)||b(e)===t.bgSize)&&(t.bgSize=yo(this.dataSrcset,this.sizes),h(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(t){!t.some(e=>q(e.isIntersecting)||e.isIntersecting)||(this._data.image=_i(this.dataSrc,this.dataSrcset,this.sizes).then(e=>(he(this.$el,mi(e),e.srcset,e.sizes),Pt[this.cacheKey]=mi(e),e),e=>S(this.$el,new e.constructor(e.type,e))),this.observer.disconnect())},observe(){if(this._connected&&!this._data.image)for(const t of this.target)this.observer.observe(t)}}};function he(t,e,i,n){if(yn(t)){const s=(o,r)=>r&&r!==t[o]&&(t[o]=r);s("sizes",n),s("srcset",i),s("src",e)}else e&&!v(t.style.backgroundImage,e)&&(h(t,"backgroundImage","url("+te(e)+")"),S(t,Je("load",!1)))}function go(t,e,i){return i&&({width:t,height:e}=me.ratio({width:t,height:e},"width",pt(bn(i)))),'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="'+t+'" height="'+e+'"></svg>'}const wn=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function bn(t){let e;for(wn.lastIndex=0;e=wn.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=wo(e[2]);break}return e||"100vw"}const mo=/\d+(?:\w+|%)/g,vo=/[+-]?(\d+)/g;function wo(t){return et(t,"calc")?t.slice(5,-1).replace(mo,e=>pt(e)).replace(/ /g,"").match(vo).reduce((e,i)=>e+ +i,0):t}const bo=/\s+\d+w\s*(?:,|$)/g;function yo(t,e){const i=pt(bn(e)),n=(t.match(bo)||[]).map(b).sort((s,o)=>s-o);return n.filter(s=>s>=i)[0]||n.pop()||""}function yn(t){return t.tagName==="IMG"}function mi(t){return t.currentSrc||t.src}const xn="__test__";let Pt;try{Pt=window.sessionStorage||{},Pt[xn]=1,delete Pt[xn]}catch{Pt={}}var vi={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=xo(this.media);return!t||window.matchMedia(t).matches}}};function xo(t){if(T(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=b(ti(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var $o={mixins:[st,vi],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||ti("leader-fill-content")}},connected(){[this.wrapper]=Di(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Ae(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const n=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||n!==i,hide:!this.matchMedia}},write(t){G(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,E(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}};const X=[];var $n={mixins:[st,gi,Et],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel(t,e){let{selPanel:i}=t;return w(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){v(X,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===v(X,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(v(X,this))return!1;!this.stack&&X.length?(Promise.all(X.map(e=>e.hide())).then(this.show),t.preventDefault()):X.push(this)}},{name:"show",self:!0,handler(){const t=document.documentElement;ne(window)>t.clientWidth&&this.overlay&&h(document.body,"overflowY","scroll"),this.stack&&h(this.$el,"zIndex",b(h(this.$el,"zIndex"))+X.length),$(t,this.clsPage),this.bgClose&&B(this.$el,"hide",N(document,Ht,e=>{let{target:i}=e;ge(X)!==this||this.overlay&&!L(i,this.$el)||L(i,this.panel)||B(document,Ot+" "+ye+" scroll",n=>{let{defaultPrevented:s,type:o,target:r}=n;!s&&o===Ot&&i===r&&this.hide()},!0)}),{self:!0}),this.escClose&&B(this.$el,"hide",N(document,"keydown",e=>{e.keyCode===27&&ge(X)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Ge(this.$el)||E(this.$el,"tabindex","-1"),w(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){v(X,this)&&X.splice(X.indexOf(this),1),X.length||h(document.body,"overflowY",""),h(this.$el,"zIndex",""),X.some(t=>t.clsPage===this.clsPage)||I(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&F(this.$el)!==this.container?(Tt(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,kn(this))},hide(){return this.toggleElement(this.$el,!1,kn(this))}}};function kn(t){let{transitionElement:e,_toggle:i}=t;return(n,s)=>new Promise((o,r)=>B(n,"show hide",()=>{n._reject&&n._reject(),n._reject=r,i(n,s);const a=B(e,"transitionstart",()=>{B(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(c)},{self:!0}),c=setTimeout(()=>{a(),o()},Ie(h(e,"transitionDuration")))})).then(()=>delete n._reject)}var ko={install:So,mixins:[$n],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler(){k(this.panel,"uk-margin-auto-vertical")?$(this.$el,"uk-flex"):h(this.$el,"display","block"),M(this.$el)}},{name:"hidden",self:!0,handler(){h(this.$el,"display",""),I(this.$el,"uk-flex")}}]};function So(t){let{modal:e}=t;e.dialog=function(n,s){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+n+"</div> </div>",s);return o.show(),N(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(n,s){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(T(n)?n:Ce(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},s,o=>o.resolve())},e.confirm=function(n,s){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(T(n)?n:Ce(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},s,o=>o.reject())},e.prompt=function(n,s,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(T(n)?n:Ce(n))+'</label> <input class="uk-input" value="'+(s||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>w("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(n,s,o,r){s=O({bgClose:!1,escClose:!0,labels:e.labels},s);const a=e.dialog(n(s),s),c=new ki;let f=!1;return N(a.$el,"submit","form",d=>{d.preventDefault(),c.resolve(r==null?void 0:r(a)),f=!0,a.hide()}),N(a.$el,"hide",()=>!f&&o(c)),c.promise.dialog=a,c.promise}}var To={extends:nn,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Sn=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var Co={mixins:[st,gi],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:Sn,align:Xt?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:Sn,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:n}=t;return i===!0||n?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return lt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||lt(e,this.$el)||w("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=w("<div></div>"))):null},watch(t){$(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const n=P("."+i,e);if(this.dropContainer!==e)for(const o of P("."+i,this.dropContainer)){var s;const r=(s=this.getDropdown(o))==null?void 0:s.target;!v(n,o)&&r&&L(r,this.$el)&&n.push(o)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),O({},this.$props,{boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset}))},immediate:!0},toggles(t,e){let{dropdown:i}=t;return P(i,e)}},disconnected(){this.dropbar&&Ct(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&v(i.mode,"hover")&&i.target&&!L(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===At.DOWN&&Gt(e,"aria-expanded")&&(t.preventDefault(),!n||n.target!==e?(e.click(),B(this.dropContainer,"show",s=>{let{target:o}=s;return Cn(o)})):Cn(n.$el)),Tn(t,this.toggles,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!v(this.dropdowns,e))return;const n=this.getActive(),s=P($e,e),o=de(s,a=>D(a,":focus"));if(i===At.UP&&(t.preventDefault(),o>0&&s[o-1].focus()),i===At.DOWN&&(t.preventDefault(),o<s.length-1&&s[o+1].focus()),i===At.ESC){var r;n==null||(r=n.target)==null||r.focus()}Tn(t,this.toggles,n)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&v(t.mode,"hover")&&!this.dropdowns.some(e=>D(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){F(this.dropbar)||Ee(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:n}=e;!k(i,this.clsDrop)||(this.dropbarMode==="slide"&&$(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&$(i,this.clsDrop+"-dropbar"),n==="bottom"&&this.transitionTo(i.offsetHeight+b(h(i,"marginTop"))+b(h(i,"marginBottom")),i))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const n=this.getActive();D(this.dropbar,":hover")&&(n==null?void 0:n.$el)===i&&!this.toggles.some(s=>n.target!==s&&D(s,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!k(i,this.clsDrop))return;const n=this.getActive();(!n||(n==null?void 0:n.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return z&&L(z.target,this.$el)&&z},transitionTo(t,e){const{dropbar:i}=this,n=_(i)?M(i):0;return e=n<t&&e,h(e,"clip","rect(0,"+e.offsetWidth+"px,"+n+"px,0)"),M(i,n),ft.cancel([e,i]),Promise.all([ft.start(i,{height:t},this.duration),ft.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(ut).then(()=>{h(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Tn(t,e,i){const{current:n,keyCode:s}=t,o=(i==null?void 0:i.target)||n,r=e.indexOf(o);s===At.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),s===At.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),s===At.TAB&&(o.focus(),i==null||i.hide(!1))}function Cn(t){if(!w(":focus",t)){var e;(e=w($e,t))==null||e.focus()}}const At={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Eo={mixins:[$n],args:"mode",props:{mode:String,flip:Boolean,overlay: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},computed:{clsFlip(t){let{flip:e,clsFlip:i}=t;return e?i:""},clsOverlay(t){let{overlay:e,clsOverlay:i}=t;return e?i:""},clsMode(t){let{mode:e,clsMode:i}=t;return i+"-"+e},clsSidebarAnimation(t){let{mode:e,clsSidebarAnimation:i}=t;return e==="none"||e==="reveal"?"":i},clsContainerAnimation(t){let{mode:e,clsContainerAnimation:i}=t;return e!=="push"&&e!=="reveal"?"":i},transitionElement(t){let{mode:e}=t;return e==="reveal"?F(this.panel):this.panel}},update:{read(){this.isToggled()&&!_(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&w(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el(){return this.panel},handler(t){let{targetTouches:e}=t;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el(){return this.panel},handler(t){if(t.targetTouches.length!==1)return;const e=t.targetTouches[0].clientY-this.clientY,{scrollTop:i,scrollHeight:n,clientHeight:s}=this.panel;(s>=n||i===0&&e>0||n-i<=s&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!k(F(this.panel),this.clsMode)&&(Pe(this.panel,"<div>"),$(F(this.panel),this.clsMode)),h(document.documentElement,"overflowY",this.overlay?"hidden":""),$(document.body,this.clsContainer,this.clsFlip),h(document.body,"touch-action","pan-y pinch-zoom"),h(this.$el,"display","block"),$(this.$el,this.clsOverlay),$(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),M(document.body),$(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Po()}},{name:"hide",self:!0,handler(){I(document.body,this.clsContainerAnimation),h(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Ao(),this.mode==="reveal"&&Ae(this.panel),I(this.panel,this.clsSidebarAnimation,this.clsMode),I(this.$el,this.clsOverlay),h(this.$el,"display",""),I(document.body,this.clsContainer,this.clsFlip),h(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&bt(t.type,"Left")^this.flip&&this.hide()}}]};function Po(){En().content+=",user-scalable=0"}function Ao(){const t=En();t.content=t.content.replace(/,user-scalable=0$/,"")}function En(){return w('meta[name="viewport"]',document.head)||Tt(document.head,'<meta name="viewport">')}var _o={mixins:[st],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return U(e,i)},content(t,e){let{selContent:i}=t;return U(e,i)}},connected(){h(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!_(this.$el)?!1:{current:b(h(this.$el,"maxHeight")),max:Math.max(this.minHeight,M(this.container)-(nt(this.content).height-M(this.$el)))}},write(t){let{current:e,max:i}=t;h(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&S(this.$el,"resize")},events:["resize"]}},No={props:["width","height"],connected(){$(this.$el,"uk-responsive-width")},update:{read(){return _(this.$el)&&this.width&&this.height?{width:ne(F(this.$el)),height:this.height}:!1},write(t){M(this.$el,me.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Bo={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&w(t)||document.body,S(this.$el,"beforescroll",[this,t])&&(await pi(t,{offset:this.offset}),S(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+te(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const mt="_ukScrollspy";var Mo={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?P(i,e):[e]},watch(t){this.hidden&&h(Jt(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){for(const t of this.elements)I(t,this.inViewClass,t[mt]?t[mt].cls:""),delete t[mt]},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;for(const e of this.elements)e[mt]||(e[mt]={cls:Kt(e,"uk-scrollspy-class")||this.cls}),e[mt].show=oe(e,this.offsetTop,this.offsetLeft)},write(t){for(const e of this.elements){const i=e[mt];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)}},events:["scroll","resize"]}],methods:{toggle(t,e){const i=t[mt];i.off&&i.off(),h(t,"visibility",!e&&this.hidden?"hidden":""),G(t,this.inViewClass,e),G(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=B(t,"animationcancel animationend",()=>Te(t,"uk-animation-[\\w-]+"))),S(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},Ho={props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return P('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return P(this.links.map(t=>te(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return U(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!_(this.$el))return!1;const[e]=Ft(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:n}=e,s=n-le(e);let o=!1;return i===s?o=t-1:(this.targets.every((r,a)=>{if(C(r).top-C(ae(e)).top-this.offset<=0)return o=a,!0}),o===!1&&this.overflow&&(o=0)),{active:o}},write(t){let{active:e}=t;const i=e!==!1&&!k(this.elements[e],this.cls);this.links.forEach(n=>n.blur()),I(this.elements,this.cls),$(this.elements[e],this.cls),i&&S(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Oo={mixins:[st,vi],props:{position:String,top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{position(t,e){let{position:i}=t;return i==="auto"?(this.isFixed?this.placeholder:e).offsetHeight>M(window)?"bottom":"top":i},offset(t,e){let{offset:i}=t;return this.position==="bottom"&&(i+="+100vh-100%"),pt(i,"height",e)},selTarget(t,e){let{selTarget:i}=t;return i&&w(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return lt(i,e)||this.placeholder},isActive:{get(){return k(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(ei(this.selTarget,this.clsInactive,this.clsActive),S(this.$el,"active")):!t&&!k(this.selTarget,this.clsInactive)&&(ei(this.selTarget,this.clsActive,this.clsInactive),S(this.$el,"inactive"))}}},connected(){this.placeholder=w("+ .uk-sticky-placeholder",this.$el)||w('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected(){this.isFixed&&(this.hide(),I(this.selTarget,this.clsInactive)),Ct(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},handler(){if(!(this.targetOffset!==!1&&location.hash&&re(window)>0))return;const t=w(location.hash);t&&R.read(()=>{const{top:e}=C(t),i=C(this.$el).top,n=this.$el.offsetHeight;this.isFixed&&i+n>=e&&i<=e+t.offsetHeight&&re(window,e-n-(yt(this.targetOffset)?this.targetOffset:0)-this.offset)})}}],update:[{read(t,e){let{height:i,margin:n}=t;if(this.inactive=!this.matchMedia||!_(this.$el),this.inactive)return!1;const s=this.isActive&&e.has("resize");s&&this.hide(),this.isActive||(i=this.$el.offsetHeight,n=h(this.$el,"margin")),s&&this.show();const o=Math.max(0,i+this.offset-M(window)),r=this.isFixed?this.placeholder:this.$el,a=C(r).top,c=C(r.offsetParent).top,f=Pn(this.top,this.$el,a),d=Pn(this.bottom,this.$el,a+i,!0),l=Math.max(f,a)-this.offset,u=d?d-this.$el.offsetHeight+o-this.offset:Lt(this.$el).scrollHeight-M(window);return{start:l,end:u,overflow:o,topOffset:a,offsetParentTop:c,height:i,margin:n,width:nt(_(this.widthElement)?this.widthElement:this.$el).width,top:ie(this.placeholder)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:n}=this;h(n,{height:e,margin:i}),L(n,document)||(Ee(this.$el,n),n.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:n,overflowScroll:s=0,start:o,end:r}=t;const a=re(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:$t(s+$t(a,o,r)-$t(e,o,r),0,n)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:s,prevDir:o,scroll:r,prevScroll:a=0,top:c,start:f,topOffset:d,height:l}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const u=Date.now();if((u-n>300||s!==o)&&(t.initScroll=r,t.initTimestamp=u),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<f||this.showOnUp&&(r<=f||s==="down"&&i||s==="up"&&!this.isFixed&&r<=d+l)){if(!this.isFixed){it.inProgress(this.$el)&&c>r&&(it.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>d?(it.cancel(this.$el),it.out(this.$el,this.animation).then(()=>this.hide(),ut)):this.hide()}else this.isFixed?this.update():this.animation?(it.cancel(this.$el),this.show(),it.in(this.$el,this.animation).catch(ut)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,I(this.$el,this.clsFixed,this.clsBelow),h(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){const{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:s,end:o,topOffset:r,height:a,offsetParentTop:c}=this._data,f=s!==0||e>s;let d=this.offset,l="fixed";e>o&&(d=o+this.offset-c,l="absolute"),i&&(d-=n),h(this.$el,{position:l,top:d+"px",width:t}),this.isActive=f,G(this.$el,this.clsBelow,e>r+a),$(this.$el,this.clsFixed)}}};function Pn(t,e,i,n){if(!t)return 0;if(T(t)&&t.match(/^-?\d/))return i+pt(t);{const s=t===!0?F(e):lt(t,e);return C(s).bottom-(n&&s&&L(e,s)?b(h(s,"paddingBottom")):0)}}var An={mixins:[Et],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return Qt(i,e)},watch(t){this.swiping&&h(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>St(i).forEach((n,s)=>G(n,this.cls,s===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return P(i,e).filter(n=>!D(n,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return St(this.$el).filter(t=>this.toggles.some(e=>L(e,t)))}},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Qt(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(Kt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(bt(e,"Left")?"next":"previous")}}],methods:{index(){return de(this.children,t=>k(t,this.cls))},show(t){const e=this.index(),i=ve(this.children[ve(t,this.toggles,e)],St(this.$el));e!==i&&(this.children.forEach((n,s)=>{G(n,this.cls,i===s),E(this.toggles[s],"aria-expanded",i===s)}),this.connects.forEach(async n=>{let{children:s}=n;await this.toggleElement(y(s).filter(o=>k(o,this.cls)),!1,e>=0),await this.toggleElement(s[i],!0,e>=0)}))}}},Do={mixins:[st],extends:An,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=k(this.$el,"uk-tab-left")?"uk-tab-left":k(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const zo=32;var Fo={mixins:[vi,Et],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!v(this.mode,"media")&&!Ge(this.$el)&&E(this.$el,"tabindex","0")},computed:{target:{get(t,e){let{href:i,target:n}=t;return n=Qt(n||i,e),n.length&&n||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:Ht,filter(){return v(this.mode,"hover")},handler(t){!Dt(t)||this._showState||(S(this.$el,"focus"),B(document,Ht,()=>S(this.$el,"blur"),!0,e=>!L(e.target,this.$el)),v(this.mode,"click")&&(this._preventClick=!0))}},{name:we+" "+be+" focus blur",filter(){return v(this.mode,"hover")},handler(t){if(Dt(t))return;const e=v([we,"focus"],t.type),i=E(this.$el,"aria-expanded");if(!(!e&&(t.type===be&&D(this.$el,":focus")||t.type==="blur"&&D(this.$el,":hover")))){if(this._showState&&e===(i!==this._showState)){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return v(this.mode,"click")&&this.$el.tagName!=="INPUT"},handler(t){t.keyCode===zo&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return v(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(U(t.target,'a[href="#"], a[href=""]')||(e=U(t.target,"a[href]"))&&(E(this.$el,"aria-expanded")!=="true"||e.hash&&D(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read(){return v(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write(t){let{match:e}=t;const i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{async toggle(t){if(!S(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>k(n,this.clsLeave));if(e.length){for(const n of this.target){const s=v(e,n);this.toggleElement(n,s,s)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(n=>!v(i,n)),!0)},updateAria(t){v(this.mode,"media")||E(this.$el,"aria-expanded",pe(t)?t:this.isToggled(this.target))}}},Lo=Object.freeze({__proto__:null,Accordion:nn,Alert:Ss,Cover:Ts,Drop:on,Dropdown:on,FormCustom:As,Gif:_s,Grid:Bs,HeightMatch:Ds,HeightViewport:Fs,Icon:mn,Img:po,Leader:$o,Margin:rn,Modal:ko,Nav:To,Navbar:Co,Offcanvas:Eo,OverflowAuto:_o,Responsive:No,Scroll:Bo,Scrollspy:Mo,ScrollspyNav:Ho,Sticky:Oo,Svg:un,Switcher:An,Tab:Do,Toggle:Fo,Video:sn,Close:lo,Spinner:co,SlidenavNext:vn,SlidenavPrevious:vn,SearchIcon:ao,Marker:ot,NavbarToggleIcon:ot,OverlayIcon:ot,PaginationNext:ot,PaginationPrevious:ot,Totop:ot});return Q(Lo,(t,e)=>K.component(e,t)),K.use(ys),$s(K),K});
1
+ /*! UIkit 3.11.2-dev.45194f70c | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(Vt,Gt){typeof exports=="object"&&typeof module<"u"?module.exports=Gt():typeof define=="function"&&define.amd?define("uikit",Gt):(Vt=typeof globalThis<"u"?globalThis:Vt||self,Vt.UIkit=Gt())})(this,function(){"use strict";const{hasOwnProperty:Vt,toString:Gt}=Object.prototype;function kt(t,e){return Vt.call(t,e)}const Dn=/\B([A-Z])/g,St=tt(t=>t.replace(Dn,"-$1").toLowerCase()),Hn=/-(\w)/g,_t=tt(t=>t.replace(Hn,Pi)),pe=tt(t=>t.length?Pi(null,t.charAt(0))+t.slice(1):"");function Pi(t,e){return e?e.toUpperCase():""}function et(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function Tt(t,e){return t==null||t.endsWith==null?void 0:t.endsWith(e)}function m(t,e){return t==null||t.includes==null?void 0:t.includes(e)}function me(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:q,from:zn}=Array,{assign:Bt}=Object;function ht(t){return typeof t=="function"}function gt(t){return t!==null&&typeof t=="object"}function pt(t){return Gt.call(t)==="[object Object]"}function Xt(t){return gt(t)&&t===t.window}function Jt(t){return je(t)===9}function We(t){return je(t)>=1}function Nt(t){return je(t)===1}function je(t){return!Xt(t)&&gt(t)&&t.nodeType}function ve(t){return typeof t=="boolean"}function E(t){return typeof t=="string"}function qe(t){return typeof t=="number"}function Mt(t){return qe(t)||E(t)&&!isNaN(t-parseFloat(t))}function Ye(t){return!(q(t)?t.length:gt(t)?Object.keys(t).length:!1)}function X(t){return t===void 0}function Ve(t){return ve(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Kt(t){const e=Number(t);return isNaN(e)?!1:e}function v(t){return parseFloat(t)||0}function M(t){return w(t)[0]}function w(t){return t&&(We(t)?[t]:Array.from(t).filter(We))||[]}function Ct(t){var e;if(Xt(t))return t;t=M(t);const i=Jt(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function Ge(t){return t?Tt(t,"ms")?v(t):v(t)*1e3:0}function Ai(t,e){return t===e||gt(t)&&gt(e)&&Object.keys(t).length===Object.keys(e).length&&it(t,(i,n)=>i===e[n])}function Xe(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),n=>n===e?i:e)}function we(t){return t[t.length-1]}function it(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function Je(t,e){return t.slice().sort((i,n)=>{let{[e]:s=0}=i,{[e]:o=0}=n;return s>o?1:o>s?-1:0})}function Ln(t,e){const i=new Set;return t.filter(n=>{let{[e]:s}=n;return i.has(s)?!1:i.add(s)})}function Et(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Kt(t)||0,e),i)}function mt(){}function Ke(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(n=>{let[s,o]=n;return Math.min(...e.map(r=>{let{[s]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function Ze(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const Qe={ratio(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}},contain(t,e){return t={...t},it(t,(i,n)=>t=t[n]>e[n]?this.ratio(t,n,e[n]):t),t},cover(t,e){return t=this.contain(t,e),it(t,(i,n)=>t=t[n]<e[n]?this.ratio(t,n,e[n]):t),t}};function be(t,e,i,n){i===void 0&&(i=0),n===void 0&&(n=!1),e=w(e);const{length:s}=e;return s?(t=Mt(t)?Kt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(M(t)),n?Et(t,0,s-1):(t%=s,t<0?t+s:t)):-1}function tt(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class _i{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function S(t,e,i){if(gt(e)){for(const s in e)S(t,s,e[s]);return}if(X(i)){var n;return(n=M(t))==null?void 0:n.getAttribute(e)}else for(const s of w(t))ht(i)&&(i=i.call(s,S(s,e))),i===null?Zt(s,e):s.setAttribute(e,i)}function Ot(t,e){return w(t).some(i=>i.hasAttribute(e))}function Zt(t,e){const i=w(t);for(const n of e.split(" "))for(const s of i)s.removeAttribute(n)}function vt(t,e){for(const i of[e,"data-"+e])if(Ot(t,i))return S(t,i)}const Fn={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Ue(t){return w(t).some(e=>Fn[e.tagName.toLowerCase()])}function O(t){return w(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ye="input,select,textarea,button";function Bi(t){return w(t).some(e=>z(e,ye))}const $e=ye+",a[href],[tabindex]";function ti(t){return z(t,$e)}function H(t){return t=M(t),t&&Nt(t.parentNode)&&t.parentNode}function Qt(t,e){return w(t).filter(i=>z(i,e))}function z(t,e){return w(t).some(i=>i.matches(e))}function nt(t,e){return et(e,">")&&(e=e.slice(1)),Nt(t)?t.closest(e):w(t).map(i=>nt(i,e)).filter(Boolean)}function R(t,e){return E(e)?z(t,e)||!!nt(t,e):t===e||M(e).contains(M(t))}function Ut(t,e){const i=[];for(;t=H(t);)(!e||z(t,e))&&i.push(t);return i}function wt(t,e){t=M(t);const i=t?w(t.children):[];return e?Qt(i,e):i}function ei(t,e){return e?w(t).indexOf(M(e)):wt(H(t)).indexOf(t)}function ut(t,e){return ii(t,Mi(t,e))}function te(t,e){return ee(t,Mi(t,e))}function ii(t,e){return M(Oi(t,e,"querySelector"))}function ee(t,e){return w(Oi(t,e,"querySelectorAll"))}const Rn=/(^|[^\\],)\s*[!>+~-]/,Ni=tt(t=>t.match(Rn));function Mi(t,e){return e===void 0&&(e=document),E(t)&&Ni(t)||Jt(e)?e:e.ownerDocument}const In=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g;function Oi(t,e,i){if(e===void 0&&(e=document),!t||!E(t))return t;t=t.replace(In,"$1 *"),Ni(t)&&(t=jn(t).map(n=>{let s=e;if(n[0]==="!"){const o=n.substr(1).trim().split(" ");s=nt(H(e),o[0]),n=o.slice(1).join(" ").trim()}if(n[0]==="-"){const o=n.substr(1).trim().split(" "),r=(s||e).previousElementSibling;s=z(r,n.substr(1))?r:null,n=o.slice(1).join(" ")}return s?qn(s)+" "+n:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const Wn=/.*?[^\\](?:,|$)/g,jn=tt(t=>t.match(Wn).map(e=>e.replace(/,$/,"").trim()));function qn(t){const e=[];for(;t.parentNode;){const i=S(t,"id");if(i){e.unshift("#"+ie(i));break}else{let{tagName:n}=t;n!=="HTML"&&(n+=":nth-child("+(ei(t)+1)+")"),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function ie(t){return E(t)?CSS.escape(t):""}function L(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,o,r,a=!1]=si(e);r.length>1&&(r=Vn(r)),a!=null&&a.self&&(r=Gn(r)),o&&(r=Yn(o,r));for(const l of s)for(const f of n)f.addEventListener(l,r,a);return()=>Di(n,s,r,a)}function Di(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,,o,r=!1]=si(e);for(const a of s)for(const l of n)l.removeEventListener(a,o,r)}function A(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[n,s,o,r,a=!1,l]=si(e),f=L(n,s,o,d=>{const g=!l||l(d);g&&(f(),r(d,g))},a);return f}function T(t,e,i){return oi(t).every(n=>n.dispatchEvent(ni(e,!0,!0,i)))}function ni(t,e,i,n){return e===void 0&&(e=!0),i===void 0&&(i=!1),E(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function si(t){return t[0]=oi(t[0]),E(t[1])&&(t[1]=t[1].split(" ")),ht(t[2])&&t.splice(2,0,!1),t}function Yn(t,e){return i=>{const n=t[0]===">"?ee(t,i.currentTarget).reverse().filter(s=>R(i.target,s))[0]:nt(i.target,t);n&&(i.current=n,e.call(this,i))}}function Vn(t){return e=>q(e.detail)?t(e,...e.detail):t(e)}function Gn(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Hi(t){return t&&"addEventListener"in t}function Xn(t){return Hi(t)?t:M(t)}function oi(t){return q(t)?t.map(Xn).filter(Boolean):E(t)?ee(t):Hi(t)?[t]:w(t)}function Dt(t){return t.pointerType==="touch"||!!t.touches}function xe(t){var e,i;const{clientX:n,clientY:s}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:s}}function Jn(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:mt,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>Kn(t,i))}function Kn(t,e){return new Promise((i,n)=>{const{xhr:s}=e;for(const o in e)if(o in s)try{s[o]=e[o]}catch{}s.open(e.method.toUpperCase(),t);for(const o in e.headers)s.setRequestHeader(o,e.headers[o]);L(s,"load",()=>{s.status===0||s.status>=200&&s.status<300||s.status===304?i(s):n(Bt(Error(s.statusText),{xhr:s,status:s.status}))}),L(s,"error",()=>n(Bt(Error("Network Error"),{xhr:s}))),L(s,"timeout",()=>n(Bt(Error("Network Timeout"),{xhr:s}))),s.send(e.data)})}function Zn(t,e,i){return new Promise((n,s)=>{const o=new Image;o.onerror=r=>{s(r)},o.onload=()=>{n(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const Qn={"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 h(t,e,i,n){n===void 0&&(n="");const s=w(t);for(const o of s)if(E(e)){if(e=ke(e),X(i))return Un(o,e);!i&&!qe(i)?o.style.removeProperty(e):o.style.setProperty(e,Mt(i)&&!Qn[e]?i+"px":i,n)}else if(q(e)){const r=ri(o),a={};for(const l of e)a[l]=r[ke(l)];return a}else gt(e)&&(n=i,it(e,(r,a)=>h(o,a,r,n)));return s[0]}function ri(t,e){return Ct(t).getComputedStyle(t,e)}function Un(t,e,i){return ri(t,i)[e]}const ts=/^\s*(["'])?(.*?)\1\s*$/;function ai(t){return ri(document.documentElement).getPropertyValue("--uk-"+t).replace(ts,"$2")}const ke=tt(t=>es(t)),zi=["webkit","moz","ms"];function es(t){t=St(t);const{style:e}=document.documentElement;if(t in e)return t;let i=zi.length,n;for(;i--;)if(n="-"+zi[i]+"-"+t,n in e)return n}function x(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Li(t,i,"add")}function Y(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Li(t,i,"remove")}function Se(t,e){S(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function li(t){(arguments.length<=1?void 0:arguments[1])&&Y(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&x(t,arguments.length<=2?void 0:arguments[2])}function k(t,e){[e]=ci(e);for(const i of w(t))if(e&&i.classList.contains(e))return!0;return!1}function J(t,e,i){const n=ci(e);X(i)||(i=!!i);for(const s of w(t))for(const o of n)s.classList.toggle(o,i)}function Li(t,e,i){e=e.reduce((n,s)=>n.concat(ci(s)),[]);for(const n of w(t))n.classList[i](...e)}function ci(t){return String(t).split(/\s|,/).filter(Boolean)}function Fi(t,e,i,n){return i===void 0&&(i=400),n===void 0&&(n="linear"),Promise.all(w(t).map(s=>new Promise((o,r)=>{for(const l in e){const f=h(s,l);f===""&&h(s,l,f)}const a=setTimeout(()=>T(s,"transitionend"),i);A(s,"transitionend transitioncanceled",l=>{let{type:f}=l;clearTimeout(a),Y(s,"uk-transition"),h(s,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),f==="transitioncanceled"?r():o(s)},{self:!0}),x(s,"uk-transition"),h(s,{transitionProperty:Object.keys(e).map(ke).join(","),transitionDuration:i+"ms",transitionTimingFunction:n,...e})})))}const bt={start:Fi,stop(t){return T(t,"transitionend"),Promise.resolve()},cancel(t){T(t,"transitioncanceled")},inProgress(t){return k(t,"uk-transition")}},ne="uk-animation-";function hi(t,e,i,n,s){return i===void 0&&(i=200),Promise.all(w(t).map(o=>new Promise((r,a)=>{T(o,"animationcanceled");const l=setTimeout(()=>T(o,"animationend"),i);A(o,"animationend animationcanceled",f=>{let{type:d}=f;clearTimeout(l),d==="animationcanceled"?a():r(o),h(o,"animationDuration",""),Se(o,ne+"\\S*")},{self:!0}),h(o,"animationDuration",i+"ms"),x(o,e,ne+(s?"leave":"enter")),et(e,ne)&&(n&&x(o,"uk-transform-origin-"+n),s&&x(o,ne+"reverse"))})))}const is=new RegExp(ne+"(enter|leave)"),ot={in:hi,out(t,e,i,n){return hi(t,e,i,n,!0)},inProgress(t){return is.test(S(t,"class"))},cancel(t){T(t,"animationcanceled")}},yt={width:["left","right"],height:["top","bottom"]};function rt(t){const e=Nt(t)?M(t).getBoundingClientRect():{height:I(t),width:oe(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 C(t,e){const i=rt(t);if(t){const{scrollY:s,scrollX:o}=Ct(t),r={height:s,width:o};for(const a in yt)for(const l in yt[a])i[yt[a][l]]+=r[a]}if(!e)return i;const n=h(t,"position");it(h(t,["left","top"]),(s,o)=>h(t,o,e[o]-i[o]+v(n==="absolute"&&s==="auto"?Ri(t)[o]:s)))}function Ri(t){let{top:e,left:i}=C(t);const{ownerDocument:{body:n,documentElement:s},offsetParent:o}=M(t);let r=o||s;for(;r&&(r===n||r===s)&&h(r,"position")==="static";)r=r.parentNode;if(Nt(r)){const a=C(r);e-=a.top+v(h(r,"borderTopWidth")),i-=a.left+v(h(r,"borderLeftWidth"))}return{top:e-v(h(t,"marginTop")),left:i-v(h(t,"marginLeft"))}}function se(t){const e=[0,0];t=M(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,h(t,"position")==="fixed"){const i=Ct(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}while(t=t.offsetParent);return e}const I=Ii("height"),oe=Ii("width");function Ii(t){const e=pe(t);return(i,n)=>{if(X(n)){if(Xt(i))return i["inner"+e];if(Jt(i)){const s=i.documentElement;return Math.max(s["offset"+e],s["scroll"+e])}return i=M(i),n=h(i,t),n=n==="auto"?i["offset"+e]:v(n)||0,n-re(i,t)}else return h(i,t,!n&&n!==0?"":+n+re(i,t)+"px")}}function re(t,e,i){return i===void 0&&(i="border-box"),h(t,"boxSizing")===i?yt[e].map(pe).reduce((n,s)=>n+v(h(t,"padding"+s))+v(h(t,"border"+s+"Width")),0):0}function ui(t){for(const e in yt)for(const i in yt[e])if(yt[e][i]===t)return yt[e][1-i];return t}function ft(t,e,i,n){return e===void 0&&(e="width"),i===void 0&&(i=window),n===void 0&&(n=!1),E(t)?ss(t).reduce((s,o)=>{const r=rs(o);return r&&(o=as(r==="vh"?I(Ct(i)):r==="vw"?oe(Ct(i)):n?i["offset"+pe(e)]:rt(i)[e],o)),s+v(o)},0):v(t)}const ns=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,ss=tt(t=>t.toString().replace(/\s/g,"").match(ns)||[]),os=/(?:v[hw]|%)$/,rs=tt(t=>(t.match(os)||[])[0]);function as(t,e){return t*v(e)/100}function ls(t){if(document.readyState!=="loading"){t();return}A(document,"DOMContentLoaded",t)}function at(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function cs(t){return fi(t,"")}function Te(t,e){return X(e)?y(t).innerHTML:fi(t,e)}const fi=ae("replaceChildren"),hs=ae("prepend"),dt=ae("append"),Wi=ae("before"),Ce=ae("after");function ae(t){return function(e,i){const n=w(E(i)?zt(i):i);return n.length&&y(e)[t](...n),qi(n)}}function Ht(t){w(t).forEach(e=>e.remove())}function Ee(t,e){for(e=M(Wi(t,e));e.firstChild;)e=e.firstChild;return dt(e,t),e}function ji(t,e){return w(w(t).map(i=>i.hasChildNodes?Ee(w(i.childNodes),e):dt(i,e)))}function Pe(t){w(t).map(H).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const us=/^\s*<(\w+|!)[^>]*>/,fs=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function zt(t){const e=fs.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return us.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,qi(i.childNodes)}function qi(t){return t.length>1?t:t[0]}function $t(t,e){if(!!Nt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;$t(t,e),t=i}}function y(t,e){return Yi(t)?M(zt(t)):ii(t,e)}function V(t,e){return Yi(t)?w(zt(t)):ee(t,e)}function Yi(t){return E(t)&&et(t.trim(),"<")}const Lt=typeof window<"u",le=Lt&&S(document.documentElement,"dir")==="rtl",Ft=Lt&&"ontouchstart"in window,Rt=Lt&&window.PointerEvent,It=Rt?"pointerdown":Ft?"touchstart":"mousedown",ds=Rt?"pointermove":Ft?"touchmove":"mousemove",Wt=Rt?"pointerup":Ft?"touchend":"mouseup",Ae=Rt?"pointerenter":Ft?"":"mouseenter",_e=Rt?"pointerleave":Ft?"":"mouseleave",Be=Rt?"pointercancel":"touchcancel",W={reads:[],writes:[],read(t){return this.reads.push(t),gi(),t},write(t){return this.writes.push(t),gi(),t},clear(t){Gi(this.reads,t),Gi(this.writes,t)},flush:di};function di(t){Vi(W.reads),Vi(W.writes.splice(0)),W.scheduled=!1,(W.reads.length||W.writes.length)&&gi(t+1)}const gs=4;function gi(t){W.scheduled||(W.scheduled=!0,t&&t<gs?Promise.resolve().then(()=>di(t)):requestAnimationFrame(()=>di(1)))}function Vi(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Gi(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function pi(){}pi.prototype={positions:[],init(){this.positions=[];let t;this.unbind=L(document,"mousemove",e=>t=xe(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:n,top:s,bottom:o}=e,[r]=this.positions,a=we(this.positions),l=[r,a];return Ze(a,e)?!1:[[{x:i,y:s},{x:n,y:o}],[{x:i,y:o},{x:n,y:s}]].some(d=>{const g=ps(l,d);return g&&Ze(g,e)})}};function ps(t,e){let[{x:i,y:n},{x:s,y:o}]=t,[{x:r,y:a},{x:l,y:f}]=e;const d=(f-a)*(s-i)-(l-r)*(o-n);if(d===0)return!1;const g=((l-r)*(n-a)-(f-a)*(i-r))/d;return g<0?!1:{x:i+g*(s-i),y:n+g*(o-n)}}const mi=window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype;function Ne(t,e,i,n){if(n===void 0&&(n=!0),!mi)return;const s=new IntersectionObserver((o,r)=>{(!n||o.some(a=>a.isIntersecting))&&e(o,r)},i);for(const o of q(t)?t:[t])s.observe(o);return s}const ms=window.ResizeObserver;function vi(t,e,i){if(i===void 0&&(i={box:"border-box"}),!ms)return;const n=new ResizeObserver((s,o)=>{e(s,o)});for(const s of q(t)?t:[t])n.observe(s,i);return n}const G={};G.events=G.created=G.beforeConnect=G.connected=G.beforeDisconnect=G.disconnected=G.destroy=wi,G.args=function(t,e){return e!==!1&&wi(e||t)},G.update=function(t,e){return Je(wi(t,ht(e)?{read:e}:e),"order")},G.props=function(t,e){if(q(e)){const i={};for(const n of e)i[n]=String;e=i}return G.methods(t,e)},G.computed=G.methods=function(t,e){return e?t?{...t,...e}:e:t},G.data=function(t,e,i){return i?Xi(t,e,i):e?t?function(n){return Xi(t,e,n)}:e:t};function Xi(t,e,i){return G.computed(ht(t)?t.call(i,i):t,ht(e)?e.call(i,i):e)}function wi(t,e){return t=t&&!q(t)?[t]:t,e?t?t.concat(e):q(e)?e:[e]:t}function vs(t,e){return X(e)?t:e}function jt(t,e,i){const n={};if(ht(e)&&(e=e.options),e.extends&&(t=jt(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=jt(t,o,i);for(const o in t)s(o);for(const o in e)kt(t,o)||s(o);function s(o){n[o]=(G[o]||vs)(t[o],e[o],i)}return n}function bi(t,e){e===void 0&&(e=[]);try{return t?et(t,"{")?JSON.parse(t):e.length&&!m(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[s,o]=n.split(/:(.*)/);return s&&!X(o)&&(i[s.trim()]=o.trim()),i},{}):{}}catch{return{}}}function Ji(t){if(Oe(t)&&yi(t,{func:"playVideo",method:"play"}),Me(t))try{t.play().catch(mt)}catch{}}function Ki(t){Oe(t)&&yi(t,{func:"pauseVideo",method:"pause"}),Me(t)&&t.pause()}function Zi(t){Oe(t)&&yi(t,{func:"mute",method:"setVolume",value:0}),Me(t)&&(t.muted=!0)}function Qi(t){return Me(t)||Oe(t)}function Me(t){return at(t,"video")}function Oe(t){return at(t,"iframe")&&(Ui(t)||tn(t))}function Ui(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function tn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function yi(t,e){await bs(t),en(t,e)}function en(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const $i="_ukPlayer";let ws=0;function bs(t){if(t[$i])return t[$i];const e=Ui(t),i=tn(t),n=++ws;let s;return t[$i]=new Promise(o=>{e&&A(t,"load",()=>{const r=()=>en(t,{event:"listening",id:n});s=setInterval(r,100),r()}),A(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===n&&a.event==="onReady"||i&&Number(a.player_id)===n)}catch{}}),t.src=""+t.src+(m(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+n)}).then(()=>clearInterval(s))}function ce(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),O(t)?Ke(...qt(t).map(n=>{const{top:s,left:o,bottom:r,right:a}=C(ue(n));return{top:s-e,left:o-i,bottom:r+e,right:a+i}}).concat(C(t))):!1}function he(t,e){if(Xt(t)||Jt(t)?t=Yt(t):t=M(t),X(e))return t.scrollTop;t.scrollTop=e}function xi(t,e){let{offset:i=0}=e===void 0?{}:e;const n=O(t)?qt(t):[];return n.reduce((a,l,f)=>{const{scrollTop:d,scrollHeight:g,offsetHeight:$}=l,Q=g-fe(l),{height:_,top:c}=C(n[f-1]||t);let u=Math.ceil(c-C(ue(l)).top-i+d);return i>0&&$<_+i?u+=i:i=0,u>Q?(i-=u-Q,u=Q):u<0&&(i-=u,u=0),()=>s(l,u-d).then(a)},()=>Promise.resolve())();function s(a,l){return new Promise(f=>{const d=a.scrollTop,g=o(Math.abs(l)),$=Date.now();(function Q(){const _=r(Et((Date.now()-$)/g));he(a,d+l*_),_===1?f():requestAnimationFrame(Q)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function nn(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!O(t))return 0;const[n]=qt(t,/auto|scroll/,!0),{scrollHeight:s,scrollTop:o}=n,r=fe(n),a=s-r,l=se(t)[0]-se(n)[0],f=Math.max(0,l-r+e),d=Math.min(a,l+t.offsetHeight-i);return Et((o-f)/(d-f))}function qt(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const n=Yt(t);let s=Ut(t).reverse();s=s.slice(s.indexOf(n)+1);const o=me(s,r=>h(r,"position")==="fixed");return~o&&(s=s.slice(o)),[n].concat(s.filter(r=>e.test(h(r,"overflow"))&&(!i||r.scrollHeight>fe(r)))).reverse()}function ue(t){return t===Yt(t)?window:t}function fe(t){return(t===Yt(t)?document.documentElement:t).clientHeight}function Yt(t){const{document:e}=Ct(t);return e.scrollingElement||e.documentElement}const de={width:["x","left","right"],height:["y","top","bottom"]};function sn(t,e,i,n,s,o,r,a){i=rn(i),n=rn(n);const l={element:i,target:n};if(!t||!e)return l;const f=C(t),d=C(e),g=d;if(on(g,i,f,-1),on(g,n,d,1),s=an(s,f.width,f.height),o=an(o,d.width,d.height),s.x+=o.x,s.y+=o.y,g.left+=s.x,g.top+=s.y,r){let $=qt(t).map(ue);a&&!m($,a)&&$.unshift(a),$=$.map(Q=>C(Q)),it(de,(Q,_)=>{let[c,u,p]=Q;!(r===!0||m(r,c))||$.some(B=>{const b=i[c]===u?-f[_]:i[c]===p?f[_]:0,P=n[c]===u?d[_]:n[c]===p?-d[_]:0;if(g[u]<B[u]||g[u]+f[_]>B[p]){const N=f[_]/2,D=n[c]==="center"?-d[_]/2:0;return i[c]==="center"&&(U(N,D)||U(-N,-D))||U(b,P)}function U(N,D){const j=v((g[u]+N+D-s[c]*2).toFixed(4));if(j>=B[u]&&j+f[_]<=B[p]){g[u]=j;for(const ct of["element","target"])N&&(l[ct][c]=l[ct][c]===de[_][1]?de[_][2]:de[_][1]);return!0}}})})}return C(t,g),l}function on(t,e,i,n){it(de,(s,o)=>{let[r,a,l]=s;e[r]===l?t[a]+=i[o]*n:e[r]==="center"&&(t[a]+=i[o]*n/2)})}function rn(t){const e=/left|center|right/,i=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function an(t,e,i){const[n,s]=(t||"").split(" ");return{x:n?v(n)*(Tt(n,"%")?e/100:1):0,y:s?v(s)*(Tt(s,"%")?i/100:1):0}}var ys=Object.freeze({__proto__:null,ajax:Jn,getImage:Zn,transition:Fi,Transition:bt,animate:hi,Animation:ot,attr:S,hasAttr:Ot,removeAttr:Zt,data:vt,addClass:x,removeClass:Y,removeClasses:Se,replaceClass:li,hasClass:k,toggleClass:J,dimensions:rt,offset:C,position:Ri,offsetPosition:se,height:I,width:oe,boxModelAdjust:re,flipPosition:ui,toPx:ft,ready:ls,isTag:at,empty:cs,html:Te,replaceChildren:fi,prepend:hs,append:dt,before:Wi,after:Ce,remove:Ht,wrapAll:Ee,wrapInner:ji,unwrap:Pe,fragment:zt,apply:$t,$:y,$$:V,inBrowser:Lt,isRtl:le,hasTouch:Ft,pointerDown:It,pointerMove:ds,pointerUp:Wt,pointerEnter:Ae,pointerLeave:_e,pointerCancel:Be,on:L,off:Di,once:A,trigger:T,createEvent:ni,toEventTargets:oi,isTouch:Dt,getEventPos:xe,fastdom:W,isVoidElement:Ue,isVisible:O,selInput:ye,isInput:Bi,selFocusable:$e,isFocusable:ti,parent:H,filter:Qt,matches:z,closest:nt,within:R,parents:Ut,children:wt,index:ei,hasOwn:kt,hyphenate:St,camelize:_t,ucfirst:pe,startsWith:et,endsWith:Tt,includes:m,findIndex:me,isArray:q,toArray:zn,assign:Bt,isFunction:ht,isObject:gt,isPlainObject:pt,isWindow:Xt,isDocument:Jt,isNode:We,isElement:Nt,isBoolean:ve,isString:E,isNumber:qe,isNumeric:Mt,isEmpty:Ye,isUndefined:X,toBoolean:Ve,toNumber:Kt,toFloat:v,toNode:M,toNodes:w,toWindow:Ct,toMs:Ge,isEqual:Ai,swap:Xe,last:we,each:it,sortBy:Je,uniqueBy:Ln,clamp:Et,noop:mt,intersectRect:Ke,pointInRect:Ze,Dimensions:Qe,getIndex:be,memoize:tt,Deferred:_i,MouseTracker:pi,hasIntersectionObserver:mi,observeIntersection:Ne,observeResize:vi,mergeOptions:jt,parseOptions:bi,play:Ji,pause:Ki,mute:Zi,isVideo:Qi,positionAt:sn,query:ut,queryAll:te,find:ii,findAll:ee,escape:ie,css:h,getCssVar:ai,propName:ke,isInView:ce,scrollTop:he,scrollIntoView:xi,scrolledOver:nn,scrollParents:qt,getViewport:ue,getViewportClientHeight:fe,getScrollingElement:Yt});function $s(t){const e=t.data;t.use=function(s){if(!s.installed)return s.call(null,this),s.installed=!0,this},t.mixin=function(s,o){o=(E(o)?t.component(o):o)||this,o.options=jt(o.options,s)},t.extend=function(s){s=s||{};const o=this,r=function(l){this._init(l)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=jt(o.options,s),r.super=o,r.extend=o.extend,r},t.update=function(s,o){s=s?M(s):document.body;for(const r of Ut(s).reverse())n(r[e],o);$t(s,r=>n(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(s){i=y(s)}});function n(s,o){if(!!s)for(const r in s)s[r]._connected&&s[r]._callUpdate(o)}}function xs(t){t.prototype._callHook=function(n){var s;(s=this.$options[n])==null||s.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(n){n===void 0&&(n="update"),!!this._connected&&((n==="update"||n==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,W.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(n.type||n)))},t.prototype._callWatches=function(){if(this._watch)return;const n=!kt(this,"_watch");this._watch=W.read(()=>{this._connected&&i.call(this,n),this._watch=null})};function e(n){for(const{read:s,write:o,events:r=[]}of this.$options.update){if(!n.has("update")&&!r.some(l=>n.has(l)))continue;let a;s&&(a=s.call(this,this._data,n),a&&pt(a)&&Bt(this._data,a)),o&&a!==!1&&W.write(()=>o.call(this,this._data,n))}}function i(n){const{$options:{computed:s}}=this,o={...this._computeds};this._computeds={};for(const r in s){const{watch:a,immediate:l}=s[r];a&&(n&&l||kt(o,r)&&!Ai(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function ks(t){let e=0;t.prototype._init=function(c){c=c||{},c.data=l(c,this.constructor.options),this.$options=jt(this.constructor.options,c,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),c.el&&this.$mount(c.el)},t.prototype._initData=function(){const{data:c={}}=this.$options;for(const u in c)this.$props[u]=this[u]=c[u]},t.prototype._initMethods=function(){const{methods:c}=this.$options;if(c)for(const u in c)this[u]=c[u].bind(this)},t.prototype._initComputeds=function(){const{computed:c}=this.$options;if(this._computeds={},c)for(const u in c)n(this,u,c[u])},t.prototype._initProps=function(c){let u;c=c||i(this.$options,this.$name);for(u in c)X(c[u])||(this.$props[u]=c[u]);const p=[this.$options.computed,this.$options.methods];for(u in this.$props)u in c&&o(p,u)&&(this[u]=this.$props[u])},t.prototype._initEvents=function(){this._events=[];for(const c of this.$options.events||[])if(kt(c,"handler"))s(this,c);else for(const u in c)s(this,c[u],u);for(const{events:c=[]}of this.$options.update||[])if(m(c,"scroll")){Q(this._uid,()=>this.$emit("scroll"));break}},t.prototype._unbindEvents=function(){this._events.forEach(c=>c()),delete this._events,_(this._uid)},t.prototype._initObservers=function(){this._observers=[f(this),d(this)]},t.prototype.registerObserver=function(c){this._observers.push(c)},t.prototype._disconnectObservers=function(){this._observers.forEach(c=>c==null?void 0:c.disconnect())};function i(c,u){const p={},{args:B=[],props:b={},el:P}=c;if(!b)return p;for(const N in b){const D=St(N);let j=vt(P,D);X(j)||(j=b[N]===Boolean&&j===""?!0:r(b[N],j),!(D==="target"&&(!j||et(j,"_")))&&(p[N]=j))}const U=bi(vt(P,u),B);for(const N in U){const D=_t(N);b[D]!==void 0&&(p[D]=r(b[D],U[N]))}return p}function n(c,u,p){Object.defineProperty(c,u,{enumerable:!0,get(){const{_computeds:B,$props:b,$el:P}=c;return kt(B,u)||(B[u]=(p.get||p).call(c,b,P)),B[u]},set(B){const{_computeds:b}=c;b[u]=p.set?p.set.call(c,B):B,X(b[u])&&delete b[u]}})}function s(c,u,p){pt(u)||(u={name:p,handler:u});let{name:B,el:b,handler:P,capture:U,passive:N,delegate:D,filter:j,self:ct}=u;if(b=ht(b)?b.call(c):b||c.$el,q(b)){b.forEach(Ie=>s(c,{...u,el:Ie},p));return}!b||j&&!j.call(c)||c._events.push(L(b,B,D?E(D)?D:D.call(c):null,E(P)?c[P]:P.bind(c),{passive:N,capture:U,self:ct}))}function o(c,u){return c.every(p=>!p||!kt(p,u))}function r(c,u){return c===Boolean?Ve(u):c===Number?Kt(u):c==="list"?a(u):c?c(u):u}function a(c){return q(c)?c:E(c)?c.split(/,(?![^(]*\))/).map(u=>Mt(u)?Kt(u):Ve(u.trim())):[c]}function l(c,u){let{data:p={}}=c,{args:B=[],props:b={}}=u;q(p)&&(p=p.slice(0,B.length).reduce((P,U,N)=>(pt(U)?Bt(P,U):P[B[N]]=U,P),{}));for(const P in p)X(p[P])?delete p[P]:b[P]&&(p[P]=r(b[P],p[P]));return p}function f(c){const{el:u}=c.$options,p=new MutationObserver(()=>c.$emit());return p.observe(u,{childList:!0,subtree:!0}),p}function d(c){const{$name:u,$options:p,$props:B}=c,{attrs:b,props:P,el:U}=p;if(!P||b===!1)return;const N=q(b)?b:Object.keys(P),D=N.map(ct=>St(ct)).concat(u),j=new MutationObserver(ct=>{const Ie=i(p,u);ct.some(Uo=>{let{attributeName:Mn}=Uo;const On=Mn.replace("data-","");return(On===u?N:[_t(On),_t(Mn)]).some(Ei=>!X(Ie[Ei])&&Ie[Ei]!==B[Ei])})&&c.$reset()});return j.observe(U,{attributes:!0,attributeFilter:D.concat(D.map(ct=>"data-"+ct))}),j}const g=new Map;let $;function Q(c,u){$=$||L(window,"scroll",()=>g.forEach(p=>p()),{passive:!0,capture:!0}),g.set(c,u)}function _(c){g.delete(c),$&&!g.size&&($(),$=null)}}function Ss(t){const e=t.data;t.prototype.$create=function(n,s,o){return t[n](s,o)},t.prototype.$mount=function(n){const{name:s}=this.$options;n[e]||(n[e]={}),!n[e][s]&&(n[e][s]=this,this.$el=this.$options.el=this.$options.el||n,R(n,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(n){n===void 0&&(n=!1);const{el:s,name:o}=this.$options;s&&this._callDisconnected(),this._callHook("destroy"),!!(s!=null&&s[e])&&(delete s[e][o],Ye(s[e])||delete s[e],n&&Ht(this.$el))},t.prototype.$emit=function(n){this._callUpdate(n)},t.prototype.$update=function(n,s){n===void 0&&(n=this.$el),t.update(n,s)},t.prototype.$getComponent=t.getComponent;const i=tt(n=>t.prefix+St(n));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function Ts(t){const e=t.data,i={};t.component=function(n,s){const o=St(n);if(n=_t(o),!s)return pt(i[n])&&(i[n]=t.extend(i[n])),i[n];t[n]=function(a,l){const f=t.component(n);return f.options.functional?new f({data:pt(a)?a:[...arguments]}):a?V(a).map(d)[0]:d();function d(g){const $=t.getComponent(g,n);if($)if(l)$.$destroy();else return $;return new f({el:g,data:l})}};const r=pt(s)?{...s}:s.options;return r.name=n,r.install==null||r.install(t,r,n),t._initialized&&!r.functional&&W.read(()=>t[n]("[uk-"+o+"],[data-uk-"+o+"]")),i[n]=pt(s)?r:s},t.getComponents=n=>(n==null?void 0:n[e])||{},t.getComponent=(n,s)=>t.getComponents(n)[s],t.connect=n=>{if(n[e])for(const s in n[e])n[e][s]._callConnected();for(const s of n.attributes){const o=ln(s.name);o&&o in i&&t[o](n)}},t.disconnect=n=>{for(const s in n[e])n[e][s]._callDisconnected()}}const ln=tt(t=>et(t,"uk-")||et(t,"data-uk-")?_t(t.replace("data-uk-","").replace("uk-","")):!1),K=function(t){this._init(t)};K.util=ys,K.data="__uikit__",K.prefix="uk-",K.options={},K.version="3.11.2-dev.45194f70c",$s(K),xs(K),ks(K),Ts(K),Ss(K);function Cs(t){if(!Lt)return;let e;const i=()=>{e||(e=!0,W.read(()=>e=!1),t.update(null,"resize"))};L(window,"load resize",i),vi(document.documentElement,i);let n=0;L(document,"animationstart",s=>{let{target:o}=s;(h(o,"animationName")||"").match(/^uk-.*(left|right)/)&&(n++,h(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--n||h(document.documentElement,"overflowX","")},Ge(h(o,"animationDuration"))+100))},!0),L(document,It,s=>{if(!Dt(s))return;const o=xe(s),r="tagName"in s.target?s.target:H(s.target);A(document,Wt+" "+Be+" scroll",a=>{const{x:l,y:f}=xe(a);(a.type!=="scroll"&&r&&l&&Math.abs(o.x-l)>100||f&&Math.abs(o.y-f)>100)&&setTimeout(()=>{T(r,"swipe"),T(r,"swipe"+Es(o.x,o.y,l,f))})})},{passive:!0})}function Es(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function Ps(t){const{connect:e,disconnect:i}=t;if(!Lt||!window.MutationObserver)return;W.read(function(){document.body&&$t(document.body,e),new MutationObserver(o=>o.forEach(n)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(s)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function n(o){let{addedNodes:r,removedNodes:a}=o;for(const l of r)$t(l,e);for(const l of a)$t(l,i)}function s(o){var r;let{target:a,attributeName:l}=o;const f=ln(l);if(!(!f||!(f in t))){if(Ot(a,l)){t[f](a);return}(r=t.getComponent(a,f))==null||r.$destroy()}}}var st={connected(){!k(this.$el,this.$name)&&x(this.$el,this.$name)}},De={methods:{lazyload(t,e){t===void 0&&(t=this.$el),e===void 0&&(e=this.$el),this.registerObserver(Ne(t,(i,n)=>{for(const s of q(e)?e:[e])V('img[loading="lazy"]',s).forEach(o=>Zt(o,"loading"));n.disconnect()}))}}},Pt={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(w(t).map(s=>{const o=ve(e)?e:!this.isToggled(s);if(!T(s,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(ht(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?cn(this):As(this))(s,o),a=o?this.clsEnter:this.clsLeave;x(s,a),T(s,o?"show":"hide",[this]);const l=()=>{Y(s,a),T(s,o?"shown":"hidden",[this]),this.$update(s)};return r?r.then(l,()=>(Y(s,a),Promise.reject())):l()})).then(n,mt))},isToggled(t){return t===void 0&&(t=this.$el),[t]=w(t),k(t,this.clsEnter)?!0:k(t,this.clsLeave)?!1:this.cls?k(t,this.cls.split(" ")[0]):O(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=m(this.cls," ")||e!==k(t,this.cls),i&&J(t,this.cls,m(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),V("[autofocus]",t).some(n=>O(n)?n.focus()||!0:n.blur()),i&&(T(t,"toggled",[e,this]),this.$update(t))}}};function cn(t){let{isToggled:e,duration:i,initProps:n,hideProps:s,transition:o,_toggle:r}=t;return(a,l)=>{const f=bt.inProgress(a),d=a.hasChildNodes?v(h(a.firstElementChild,"marginTop"))+v(h(a.lastElementChild,"marginBottom")):0,g=O(a)?I(a)+(f?0:d):0;bt.cancel(a),e(a)||r(a,!0),I(a,""),W.flush();const $=I(a)+(f?0:d);return I(a,g),(l?bt.start(a,{...n,overflow:"hidden",height:$},Math.round(i*(1-g/$)),o):bt.start(a,s,Math.round(i*(g/$)),o).then(()=>r(a,!1))).then(()=>h(a,n))}}function As(t){return(e,i)=>{ot.cancel(e);const{animation:n,duration:s,_toggle:o}=t;return i?(o(e,!0),ot.in(e,n[0],s,t.origin)):ot.out(e,n[1]||n[0],s,t.origin).then(()=>o(e,!1))}}var hn={mixins:[st,De,Pt],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return V(i,e)},watch(t,e){if(t.forEach(n=>He(y(this.content,n),!k(n,this.clsOpen))),e||k(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},immediate:!0},toggles(t){let{toggle:e}=t;return this.items.map(i=>y(e,i))}},connected(){this.lazyload()},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(ei(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[be(t,this.items)]];const n=Qt(this.items,"."+this.clsOpen);if(!this.multiple&&!m(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&!Qt(i,":not(."+this.clsOpen+")").length))for(const s of i)this.toggleElement(s,!k(s,this.clsOpen),async(o,r)=>{J(o,this.clsOpen,r),S(y(this.$props.toggle,o),"aria-expanded",r);const a=y((o._wrapper?"> * ":"")+this.content,o);if(e===!1||!this.hasTransition){He(a,!r);return}if(o._wrapper||(o._wrapper=Ee(a,"<div"+(r?" hidden":"")+">")),He(a,!1),await cn(this)(o._wrapper,r),He(a,!r),delete o._wrapper,Pe(a),r){const l=y(this.$props.toggle,o);ce(l)||xi(l,{offset:this.offset})}})}}};function He(t,e){t&&(t.hidden=e)}var _s={mixins:[st,Pt],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:{opacity:0,...Pt.data.hideProps}},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}}],methods:{async close(){await this.toggleElement(this.$el),this.$destroy(!0)}}},un={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView(t){let{autoplay:e}=t;return e==="inview"}},connected(){this.inView&&!Ot(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&Zi(this.$el),this.registerObserver(Ne(this.$el,()=>this.$emit("resize")))},update:{read(){return Qi(this.$el)?{visible:O(this.$el)&&h(this.$el,"visibility")!=="hidden",inView:this.inView&&ce(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Ki(this.$el):(this.autoplay===!0||this.inView&&i)&&Ji(this.$el)},events:["resize","scroll"]}},Bs={mixins:[un],props:{width:Number,height:Number},data:{automute:!0},connected(){this.registerObserver(vi(this.$el,()=>this.$emit("resize")))},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Ns(t)||H(t),n=Qe.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:i+(i%2?1:0),height:e+(e%2?1:0)});return!n.width||!n.height?!1:n},write(t){let{height:e,width:i}=t;h(this.$el,{height:e,width:i})},events:["resize"]}};function Ns(t){for(;t=H(t);)if(h(t,"position")!=="static")return t}var ki={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&y(e)}}},Ms={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(le?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos(t){let{pos:e}=t;return e.split("-").concat("center").slice(0,2)},dir(){return this.pos[0]},align(){return this.pos[1]}},methods:{positionAt(t,e,i){Se(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:n}=this;const s=this.getAxis();if(!Mt(n)){const a=y(n);n=a?C(a)[s==="x"?"left":"top"]-C(e)[s==="x"?"right":"bottom"]:0}const{x:o,y:r}=sn(t,e,s==="x"?ui(this.dir)+" "+this.align:this.align+" "+ui(this.dir),s==="x"?this.dir+" "+this.align:this.align+" "+this.dir,s==="x"?""+(this.dir==="left"?-n:n):" "+(this.dir==="top"?-n:n),null,this.flip,i).target;this.dir=s==="x"?o:r,this.align=s==="x"?r:o,J(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let F;var fn={mixins:[ki,De,Ms,Pt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?window:ut(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new pi},connected(){x(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",ut(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,S(this.target,"aria-haspopup",!0),this.lazyload(this.target))},disconnected(){this.isActive()&&(F=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!R(i,this.$el)&&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.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),z(this.$el,":focus,:hover")||this.hide()}},{name:Ae+" focusin",filter(){return m(this.mode,"hover")},handler(t){Dt(t)||this.clearTimers()}},{name:_e+" focusout",filter(){return m(this.mode,"hover")},handler(t){!Dt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){F=this,this.tracker.init(),A(this.$el,"hide",L(document,It,t=>{let{target:e}=t;return!R(e,this.$el)&&A(document,Wt+" "+Be+" scroll",i=>{let{defaultPrevented:n,type:s,target:o}=i;!n&&s===Wt&&e===o&&!(this.target&&R(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),A(this.$el,"hide",L(document,"keydown",t=>{t.keyCode===27&&this.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){F=F===null&&R(e,this.$el)&&this.isToggled()?this:F;return}F=this.isActive()?null:F,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!k(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(F){if(e&&F.isDelaying){this.showTimer=setTimeout(()=>z(t,":hover")&&this.show(),10);return}let i;for(;F&&i!==F&&!R(this.$el,F.$el);)i=F,F.hide(!1)}this.container&&H(this.$el)!==this.container&&dt(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t){t===void 0&&(t=!0);const e=()=>this.toggleElement(this.$el,!1,!1);this.clearTimers(),this.isDelaying=Os(this.$el).some(i=>this.tracker.movesTo(i)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(e,this.delayHide):e()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return F===this},position(){Y(this.$el,this.clsDrop+"-stack"),J(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=C(this.boundary),e=this.boundaryAlign?t:C(this.target);if(this.align==="justify"){const i=this.getAxis()==="y"?"width":"height";h(this.$el,i,e[i])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&x(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Os(t){const e=[];return $t(t,i=>h(i,"position")!=="static"&&e.push(i)),e}var Ds={mixins:[st],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return y(ye,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&H(this.input)===e&&this.input.nextElementSibling||ut(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const n=Bi(t)?"value":"textContent",s=t[n],o=e.files&&e.files[0]?e.files[0].name:z(e,"select")&&(i=V("option",e).filter(r=>r.selected)[0])?i.textContent:e.value;s!==o&&(t[n]=o)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return nt(this.$el,"form")},handler(){this.$emit()}}]},Hs={update:{read(t){const e=ce(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},dn={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=gn(this.$el.children);return{rows:t,columns:zs(t)}},write(t){let{columns:e,rows:i}=t;for(const n of i)for(const s of n)J(s,this.margin,i[0]!==n),J(s,this.firstColumn,!!~e[0].indexOf(s))},events:["resize"]}};function gn(t){return pn(t,"top","bottom")}function zs(t){const e=[];for(const i of t){const n=pn(i,"left","right");for(let s=0;s<n.length;s++)e[s]=e[s]?e[s].concat(n[s]):n[s]}return le?e.reverse():e}function pn(t,e,i){const n=[[]];for(const s of t){if(!O(s))continue;let o=ze(s);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(s);break}let l;if(a[0].offsetParent===s.offsetParent?l=ze(a[0]):(o=ze(s,!0),l=ze(a[0],!0)),o[e]>=l[i]-1&&o[e]!==l[e]){n.push([s]);break}if(o[i]-1>l[e]||o[e]===l[e]){a.push(s);break}if(r===0){n.unshift([s]);break}}}return n}function ze(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:n,offsetHeight:s,offsetWidth:o}=t;return e&&([i,n]=se(t)),{top:i,left:n,bottom:i+s,right:n+o}}var Ls={extends:dn,mixins:[st],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&x(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;J(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||mn(this.$el))return t.translates=!1,!1;let n=!1;const s=wt(this.$el),o=Is(e),r=Rs(s,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(f=>Je(f,"offsetTop")),n=Fs(i,e));let l=Math.abs(this.parallax);return l&&(l=o.reduce((f,d,g)=>Math.max(f,d+r+(g%2?l:l/8)-a),0)),{padding:l,columns:e,translates:n,height:n?a:""}},write(t){let{height:e,padding:i}=t;h(this.$el,"paddingBottom",i||""),e!==!1&&h(this.$el,"height",e)},events:["resize"]},{read(){return mn(this.$el)?!1:{scrolled:this.parallax?nn(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:n}=t;i===!1&&!n||e.forEach((s,o)=>s.forEach((r,a)=>h(r,"transform",!i&&!n?"":"translateY("+((n&&-n[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function mn(t){return wt(t).some(e=>h(e,"position")==="absolute")}function Fs(t,e){const i=t.map(n=>Math.max(...n.map(s=>s.offsetHeight)));return e.map(n=>{let s=0;return n.map((o,r)=>s+=r?i[r-1]-n[r-1].offsetHeight:0)})}function Rs(t,e){const[i]=t.filter(n=>k(n,e));return v(i?h(i,"marginTop"):h(t[0],"paddingLeft"))}function Is(t){return t.map(e=>e.reduce((i,n)=>i+n.offsetHeight,0))}var Ws={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return V(i,e)}},update:{read(){return{rows:(this.row?gn(this.elements):[this.elements]).map(js)}},write(t){let{rows:e}=t;for(const{heights:i,elements:n}of e)n.forEach((s,o)=>h(s,"minHeight",i[o]))},events:["resize"]}};function js(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(vn),i=Math.max(...e);const n=t.some(o=>o.style.minHeight),s=t.some((o,r)=>!o.style.minHeight&&e[r]<i);return n&&s&&(h(t,"minHeight",""),e=t.map(vn),i=Math.max(...e)),e=t.map((o,r)=>e[r]===i&&v(o.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function vn(t){let e=!1;O(t)||(e=t.style.display,h(t,"display","block","important"));const i=rt(t).height-re(t,"height","content-box");return e!==!1&&h(t,"display",e),i}var qs={mixins:[st],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read(t){let{minHeight:e}=t;if(!O(this.$el))return!1;let i="";const n=re(this.$el,"height","content-box");if(this.expand)i=I(window)-(rt(document.documentElement).height-rt(this.$el).height)-n||"";else{if(i="calc(100vh",this.offsetTop){const{top:s}=C(this.$el);i+=s>0&&s<I(window)/2?" - "+s+"px":""}this.offsetBottom===!0?i+=" - "+rt(this.$el.nextElementSibling).height+"px":Mt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&Tt(this.offsetBottom,"px")?i+=" - "+v(this.offsetBottom)+"px":E(this.offsetBottom)&&(i+=" - "+rt(ut(this.offsetBottom,this.$el)).height+"px"),i+=(n?" - "+n+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;h(this.$el,{minHeight:e}),e!==i&&T(this.$el,"resize"),this.minHeight&&v(h(this.$el,"minHeight"))<this.minHeight&&h(this.$el,"minHeight",this.minHeight)},events:["resize"]}},wn={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&m(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=Ks(t,this.$el);return this.svgEl&&e!==this.svgEl&&Ht(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},mt)},disconnected(){this.svg.then(t=>{this._connected||(Ue(this.$el)&&(this.$el.hidden=!1),Ht(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&O(this.svgEl))},write(){Xs(this.svgEl)},type:["resize"]},methods:{async getSvg(){return at(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>A(this.$el,"load",()=>t(this.getSvg()))):Vs(await Ys(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const o in this.$options.props)m(this.include,o)&&o in this&&S(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);S(t,r,a)}this.id||Zt(t,"id");const i=["width","height"];let n=i.map(o=>this[o]);n.some(o=>o)||(n=i.map(o=>S(e,o)));const s=S(e,"viewBox");s&&!n.some(o=>o)&&(n=s.split(" ").slice(2)),n.forEach((o,r)=>S(t,i[r],v(o)*this.ratio||null))}}};const Ys=tt(async t=>t?et(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Vs(t,e){var i;return e&&m(t,"<symbol")&&(t=Gs(t,e)||t),t=y(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const bn=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,Le={};function Gs(t,e){if(!Le[t]){Le[t]={},bn.lastIndex=0;let i;for(;i=bn.exec(t);)Le[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return Le[t][e]}function Xs(t){const e=Js(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function Js(t){return Math.ceil(Math.max(0,...V("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function Ks(t,e){if(Ue(e)||at(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return yn(t,n)?n:Ce(e,t)}const i=e.lastElementChild;return yn(t,i)?i:dt(e,t)}function yn(t,e){return at(t,"svg")&&at(e,"svg")&&$n(t)===$n(e)}function $n(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var Zs='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><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>',Qs='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><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>',Us='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',to='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',eo='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',io='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',no='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',so='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><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>',oo='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><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>',ro='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><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>',ao='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',lo='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',co='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',ho='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',uo='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',fo='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const Fe={spinner:uo,totop:fo,marker:Us,"close-icon":Zs,"close-large":Qs,"navbar-toggle-icon":to,"overlay-icon":eo,"pagination-next":io,"pagination-previous":no,"search-icon":so,"search-large":oo,"search-navbar":ro,"slidenav-next":ao,"slidenav-next-large":lo,"slidenav-previous":co,"slidenav-previous-large":ho},Si={install:vo,extends:wn,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){x(this.$el,"uk-icon")},methods:{async getSvg(){const t=wo(this.icon);if(!t)throw"Icon not found.";return t}}},lt={args:!1,extends:Si,data:t=>({icon:St(t.constructor.options.name)}),beforeConnect(){x(this.$el,this.$name)}},xn={extends:lt,beforeConnect(){x(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-slidenav-large")?i+"-large":i}}},go={extends:lt,computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-search-icon")&&Ut(e,".uk-search-large").length?"search-large":Ut(e,".uk-search-navbar").length?"search-navbar":i}}},po={extends:lt,computed:{icon(){return"close-"+(k(this.$el,"uk-close-large")?"large":"icon")}}},mo={extends:lt,methods:{async getSvg(){const t=await Si.methods.getSvg.call(this);return this.ratio!==1&&h(y("circle",t),"strokeWidth",1/this.ratio),t}}},Re={};function vo(t){t.icon.add=(e,i)=>{const n=E(e)?{[e]:i}:e;it(n,(s,o)=>{Fe[o]=s,delete Re[o]}),t._initialized&&$t(document.body,s=>it(t.getComponents(s),o=>{o.$options.isIcon&&o.icon in n&&o.$reset()}))}}function wo(t){return Fe[t]?(Re[t]||(Re[t]=y((Fe[bo(t)]||Fe[t]).trim())),Re[t].cloneNode(!0)):null}function bo(t){return le?Xe(Xe(t,"left","right"),"previous","next"):t}const yo="loading"in HTMLImageElement.prototype;var $o={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},computed:{target:{get(t){let{target:e}=t;return[this.$el,...te(e,this.$el)]},watch(){this.$reset()}}},connected(){if(this.loading!=="lazy"||!mi){this.load();return}yo&&ge(this.$el)&&(this.$el.loading="lazy",Ti(this.$el),this.target.length===1)||(No(this.$el),this.registerObserver(Ne(this.target,(t,e)=>{this.load(),e.disconnect()},{rootMargin:ft(this.offsetTop,"height")+"px "+ft(this.offsetLeft,"width")+"px"})))},disconnected(){this._data.image&&(this._data.image.onload="")},update:{write(t){if(!this.observer||ge(this.$el))return!1;const e=vt(this.$el,"data-srcset");if(e&&window.devicePixelRatio!==1){const i=h(this.$el,"backgroundSize");(i.match(/^(auto\s?)+$/)||v(i)===t.bgSize)&&(t.bgSize=Bo(e,vt(this.$el,"sizes")),h(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(){if(this._data.image)return this._data.image;const t=ge(this.$el)?this.$el:ko(this.$el,this.dataSrc,this.sources);return Zt(t,"loading"),Ti(this.$el,t.currentSrc),this._data.image=t}}};function Ti(t,e){if(ge(t)){const i=H(t);(Mo(i)?wt(i):[t]).forEach(s=>kn(s,s))}else e&&!m(t.style.backgroundImage,e)&&(h(t,"backgroundImage","url("+ie(e)+")"),T(t,ni("load",!1)))}const xo=["data-src","data-srcset","sizes"];function kn(t,e){xo.forEach(i=>{const n=vt(t,i);n&&S(e,i.replace(/^(data-)+/,""),n)})}function ko(t,e,i){const n=new Image;return So(n,i),kn(t,n),n.onload=()=>{Ti(t,n.currentSrc)},S(n,"src",e),n}function So(t,e){if(e=To(e),e.length){const i=zt("<picture>");for(const n of e){const s=zt("<source>");S(s,n),dt(i,s)}dt(i,t)}}function To(t){if(!t)return[];if(et(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=bi(t);return q(t)||(t=[t]),t.filter(e=>!Ye(e))}const Sn=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function Co(t){let e;for(Sn.lastIndex=0;e=Sn.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=Ao(e[2]);break}return e||"100vw"}const Eo=/\d+(?:\w+|%)/g,Po=/[+-]?(\d+)/g;function Ao(t){return et(t,"calc")?t.slice(5,-1).replace(Eo,e=>ft(e)).replace(/ /g,"").match(Po).reduce((e,i)=>e+ +i,0):t}const _o=/\s+\d+w\s*(?:,|$)/g;function Bo(t,e){const i=ft(Co(e)),n=(t.match(_o)||[]).map(v).sort((s,o)=>s-o);return n.filter(s=>s>=i)[0]||n.pop()||""}function No(t){ge(t)&&!Ot(t,"src")&&S(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function Mo(t){return at(t,"picture")}function ge(t){return at(t,"img")}var Ci={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=Oo(this.media);return!t||window.matchMedia(t).matches}}};function Oo(t){if(E(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=v(ai(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var Do={mixins:[st,Ci],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||ai("leader-fill-content")}},connected(){[this.wrapper]=ji(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Pe(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const n=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||n!==i,hide:!this.matchMedia}},write(t){J(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,S(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}};const Z=[];var Tn={mixins:[st,ki,Pt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel(t,e){let{selPanel:i}=t;return y(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){m(Z,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===m(Z,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(m(Z,this))return!1;!this.stack&&Z.length?(Promise.all(Z.map(e=>e.hide())).then(this.show),t.preventDefault()):Z.push(this)}},{name:"show",self:!0,handler(){const t=document.documentElement;oe(window)>t.clientWidth&&this.overlay&&h(document.body,"overflowY","scroll"),this.stack&&h(this.$el,"zIndex",v(h(this.$el,"zIndex"))+Z.length),x(t,this.clsPage),this.bgClose&&A(this.$el,"hide",L(document,It,e=>{let{target:i}=e;we(Z)!==this||this.overlay&&!R(i,this.$el)||R(i,this.panel)||A(document,Wt+" "+Be+" scroll",n=>{let{defaultPrevented:s,type:o,target:r}=n;!s&&o===Wt&&i===r&&this.hide()},!0)}),{self:!0}),this.escClose&&A(this.$el,"hide",L(document,"keydown",e=>{e.keyCode===27&&we(Z)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){ti(this.$el)||S(this.$el,"tabindex","-1"),y(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){m(Z,this)&&Z.splice(Z.indexOf(this),1),Z.length||h(document.body,"overflowY",""),h(this.$el,"zIndex",""),Z.some(t=>t.clsPage===this.clsPage)||Y(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&H(this.$el)!==this.container?(dt(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Cn(this))},hide(){return this.toggleElement(this.$el,!1,Cn(this))}}};function Cn(t){let{transitionElement:e,_toggle:i}=t;return(n,s)=>new Promise((o,r)=>A(n,"show hide",()=>{n._reject&&n._reject(),n._reject=r,i(n,s);const a=A(e,"transitionstart",()=>{A(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},Ge(h(e,"transitionDuration")))})).then(()=>delete n._reject)}var Ho={install:zo,mixins:[Tn],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler(){k(this.panel,"uk-margin-auto-vertical")?x(this.$el,"uk-flex"):h(this.$el,"display","block"),I(this.$el)}},{name:"hidden",self:!0,handler(){h(this.$el,"display",""),Y(this.$el,"uk-flex")}}]};function zo(t){let{modal:e}=t;e.dialog=function(n,s){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+n+"</div> </div>",s);return o.show(),L(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(n,s){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(E(n)?n:Te(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},s,o=>o.resolve())},e.confirm=function(n,s){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(E(n)?n:Te(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},s,o=>o.reject())},e.prompt=function(n,s,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(E(n)?n:Te(n))+'</label> <input class="uk-input" value="'+(s||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>y("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(n,s,o,r){s={bgClose:!1,escClose:!0,labels:e.labels,...s};const a=e.dialog(n(s),s),l=new _i;let f=!1;return L(a.$el,"submit","form",d=>{d.preventDefault(),l.resolve(r==null?void 0:r(a)),f=!0,a.hide()}),L(a.$el,"hide",()=>!f&&o(l)),l.promise.dialog=a,l.promise}}var Lo={extends:hn,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const En=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var Fo={mixins:[st,ki],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:En,align:le?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:En,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:n}=t;return i===!0||n?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return ut(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||ut(e,this.$el)||y("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=y("<div></div>"))):null},watch(t){x(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const n=V("."+i,e);if(this.dropContainer!==e)for(const o of V("."+i,this.dropContainer)){var s;const r=(s=this.getDropdown(o))==null?void 0:s.target;!m(n,o)&&r&&R(r,this.$el)&&n.push(o)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset})},immediate:!0},toggles(t,e){let{dropdown:i}=t;return V(i,e)}},disconnected(){this.dropbar&&Ht(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&m(i.mode,"hover")&&i.target&&!R(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===At.DOWN&&Ot(e,"aria-expanded")&&(t.preventDefault(),!n||n.target!==e?(e.click(),A(this.dropContainer,"show",s=>{let{target:o}=s;return An(o)})):An(n.$el)),Pn(t,this.toggles,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!m(this.dropdowns,e))return;const n=this.getActive(),s=V($e,e),o=me(s,a=>z(a,":focus"));if(i===At.UP&&(t.preventDefault(),o>0&&s[o-1].focus()),i===At.DOWN&&(t.preventDefault(),o<s.length-1&&s[o+1].focus()),i===At.ESC){var r;n==null||(r=n.target)==null||r.focus()}Pn(t,this.toggles,n)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&m(t.mode,"hover")&&!this.dropdowns.some(e=>z(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){H(this.dropbar)||Ce(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:n}=e;!k(i,this.clsDrop)||(this.dropbarMode==="slide"&&x(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&x(i,this.clsDrop+"-dropbar"),n==="bottom"&&this.transitionTo(i.offsetHeight+v(h(i,"marginTop"))+v(h(i,"marginBottom")),i))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const n=this.getActive();z(this.dropbar,":hover")&&(n==null?void 0:n.$el)===i&&!this.toggles.some(s=>n.target!==s&&z(s,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!k(i,this.clsDrop))return;const n=this.getActive();(!n||(n==null?void 0:n.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return F&&R(F.target,this.$el)&&F},transitionTo(t,e){const{dropbar:i}=this,n=O(i)?I(i):0;return e=n<t&&e,h(e,"clip","rect(0,"+e.offsetWidth+"px,"+n+"px,0)"),I(i,n),bt.cancel([e,i]),Promise.all([bt.start(i,{height:t},this.duration),bt.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(mt).then(()=>{h(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Pn(t,e,i){const{current:n,keyCode:s}=t,o=(i==null?void 0:i.target)||n,r=e.indexOf(o);s===At.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),s===At.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),s===At.TAB&&(o.focus(),i==null||i.hide(!1))}function An(t){if(!y(":focus",t)){var e;(e=y($e,t))==null||e.focus()}}const At={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Ro={mixins:[Tn],args:"mode",props:{mode:String,flip:Boolean,overlay: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},computed:{clsFlip(t){let{flip:e,clsFlip:i}=t;return e?i:""},clsOverlay(t){let{overlay:e,clsOverlay:i}=t;return e?i:""},clsMode(t){let{mode:e,clsMode:i}=t;return i+"-"+e},clsSidebarAnimation(t){let{mode:e,clsSidebarAnimation:i}=t;return e==="none"||e==="reveal"?"":i},clsContainerAnimation(t){let{mode:e,clsContainerAnimation:i}=t;return e!=="push"&&e!=="reveal"?"":i},transitionElement(t){let{mode:e}=t;return e==="reveal"?H(this.panel):this.panel}},update:{read(){this.isToggled()&&!O(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&y(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el(){return this.panel},handler(t){let{targetTouches:e}=t;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el(){return this.panel},handler(t){if(t.targetTouches.length!==1)return;const e=t.targetTouches[0].clientY-this.clientY,{scrollTop:i,scrollHeight:n,clientHeight:s}=this.panel;(s>=n||i===0&&e>0||n-i<=s&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!k(H(this.panel),this.clsMode)&&(Ee(this.panel,"<div>"),x(H(this.panel),this.clsMode)),h(document.documentElement,"overflowY",this.overlay?"hidden":""),x(document.body,this.clsContainer,this.clsFlip),h(document.body,"touch-action","pan-y pinch-zoom"),h(this.$el,"display","block"),x(this.$el,this.clsOverlay),x(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),I(document.body),x(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Io()}},{name:"hide",self:!0,handler(){Y(document.body,this.clsContainerAnimation),h(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Wo(),this.mode==="reveal"&&Pe(this.panel),Y(this.panel,this.clsSidebarAnimation,this.clsMode),Y(this.$el,this.clsOverlay),h(this.$el,"display",""),Y(document.body,this.clsContainer,this.clsFlip),h(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Tt(t.type,"Left")^this.flip&&this.hide()}}]};function Io(){_n().content+=",user-scalable=0"}function Wo(){const t=_n();t.content=t.content.replace(/,user-scalable=0$/,"")}function _n(){return y('meta[name="viewport"]',document.head)||dt(document.head,'<meta name="viewport">')}var jo={mixins:[st],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return nt(e,i)},content(t,e){let{selContent:i}=t;return nt(e,i)}},connected(){h(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!O(this.$el)?!1:{current:v(h(this.$el,"maxHeight")),max:Math.max(this.minHeight,I(this.container)-(rt(this.content).height-I(this.$el)))}},write(t){let{current:e,max:i}=t;h(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&T(this.$el,"resize")},events:["resize"]}},qo={props:["width","height"],connected(){x(this.$el,"uk-responsive-width")},update:{read(){return O(this.$el)&&this.width&&this.height?{width:oe(H(this.$el)),height:this.height}:!1},write(t){I(this.$el,Qe.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Yo={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&y(t)||document.body,T(this.$el,"beforescroll",[this,t])&&(await xi(t,{offset:this.offset}),T(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+ie(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const xt="_ukScrollspy";var Vo={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?V(i,e):[e]},watch(t){this.hidden&&h(Qt(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){for(const t of this.elements)Y(t,this.inViewClass,t[xt]?t[xt].cls:""),delete t[xt]},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;for(const e of this.elements)e[xt]||(e[xt]={cls:vt(e,"uk-scrollspy-class")||this.cls}),e[xt].show=ce(e,this.offsetTop,this.offsetLeft)},write(t){for(const e of this.elements){const i=e[xt];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)}},events:["scroll","resize"]}],methods:{toggle(t,e){const i=t[xt];i.off&&i.off(),h(t,"visibility",!e&&this.hidden?"hidden":""),J(t,this.inViewClass,e),J(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=A(t,"animationcancel animationend",()=>Se(t,"uk-animation-[\\w-]+"))),T(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},Go={props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return V('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return V(this.links.map(t=>ie(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return nt(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!O(this.$el))return!1;const[e]=qt(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:n}=e,s=n-fe(e);let o=!1;return i===s?o=t-1:(this.targets.every((r,a)=>{if(C(r).top-C(ue(e)).top-this.offset<=0)return o=a,!0}),o===!1&&this.overflow&&(o=0)),{active:o}},write(t){let{active:e}=t;const i=e!==!1&&!k(this.elements[e],this.cls);this.links.forEach(n=>n.blur()),Y(this.elements,this.cls),x(this.elements[e],this.cls),i&&T(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Xo={mixins:[st,Ci],props:{position:String,top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{selTarget(t,e){let{selTarget:i}=t;return i&&y(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return ut(i,e)||this.placeholder},isActive:{get(){return k(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(li(this.selTarget,this.clsInactive,this.clsActive),T(this.$el,"active")):!t&&!k(this.selTarget,this.clsInactive)&&(li(this.selTarget,this.clsActive,this.clsInactive),T(this.$el,"inactive"))}}},connected(){this.placeholder=y("+ .uk-sticky-placeholder",this.$el)||y('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected(){this.isFixed&&(this.hide(),Y(this.selTarget,this.clsInactive)),Ht(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){!location.hash||he(window)===0||W.read(()=>{const t=C(y(location.hash)),e=C(this.$el);this.isFixed&&Ke(t,e)&&he(window,t.top-e.height-ft(this.targetOffset,"height")-ft(this.offset,"height"))})}}],update:[{read(t,e){let{height:i,margin:n}=t;if(this.inactive=!this.matchMedia||!O(this.$el),this.inactive)return!1;const s=this.isActive&&e.has("resize");s&&(h(this.selTarget,"transition","0s"),this.hide()),this.isActive||(i=C(this.$el).height,n=h(this.$el,"margin")),s&&(this.show(),W.write(()=>h(this.selTarget,"transition","")));const o=this.isFixed?this.placeholder:this.$el,r=I(window);let a=this.position;a==="auto"&&i>r&&(a="bottom");let l=ft(this.offset,"height",o);a==="bottom"&&(l+=r-i);const f=Math.max(0,i+l-r),d=C(o).top,g=C(o.offsetParent).top,$=Bn(this.top,this.$el,d),Q=Bn(this.bottom,this.$el,d+i,!0),_=Math.max($,d)-l,c=Q?Q-C(this.$el).height+f-l:Yt(this.$el).scrollHeight-r;return{start:_,end:c,offset:l,overflow:f,topOffset:d,offsetParentTop:g,height:i,margin:n,width:rt(O(this.widthElement)?this.widthElement:this.$el).width,top:se(o)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:n}=this;h(n,{height:e,margin:i}),R(n,document)||(Ce(this.$el,n),n.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:n,overflowScroll:s=0,start:o,end:r}=t;const a=he(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:Et(s+Et(a,o,r)-Et(e,o,r),0,n)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:s,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:f,topOffset:d,height:g}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const $=Date.now();if(($-n>300||s!==o)&&(t.initScroll=r,t.initTimestamp=$),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<f||this.showOnUp&&(r<=f||s==="down"&&i||s==="up"&&!this.isFixed&&r<=d+g)){if(!this.isFixed){ot.inProgress(this.$el)&&l>r&&(ot.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>d?(ot.cancel(this.$el),ot.out(this.$el,this.animation).then(()=>this.hide(),mt)):this.hide()}else this.isFixed?this.update():this.animation&&r>d?(ot.cancel(this.$el),this.show(),ot.in(this.$el,this.animation).catch(mt)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,Y(this.$el,this.clsFixed,this.clsBelow),h(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:s,end:o,offset:r,topOffset:a,height:l,offsetParentTop:f}=this._data;const d=s!==0||e>s;let g="fixed";e>o&&(r+=o-f,g="absolute"),i&&(r-=n),h(this.$el,{position:g,top:r+"px",width:t}),this.isActive=d,J(this.$el,this.clsBelow,e>a+l),x(this.$el,this.clsFixed)}}};function Bn(t,e,i,n){if(!t)return 0;if(E(t)&&t.match(/^-?\d/))return i+ft(t);{const s=t===!0?H(e):ut(t,e);return C(s).bottom-(n&&s&&R(e,s)?v(h(s,"paddingBottom")):0)}}var Nn={mixins:[De,Pt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return te(i,e)},watch(t){this.swiping&&h(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>wt(i).forEach((n,s)=>J(n,this.cls,s===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return V(i,e).filter(n=>!z(n,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return wt(this.$el).filter(t=>this.toggles.some(e=>R(e,t)))}},connected(){this.lazyload(this.$el,this.connects)},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?te(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(vt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(Tt(e,"Left")?"next":"previous")}}],methods:{index(){return me(this.children,t=>k(t,this.cls))},show(t){const e=this.index(),i=be(this.children[be(t,this.toggles,e)],wt(this.$el));e!==i&&(this.children.forEach((n,s)=>{J(n,this.cls,i===s),S(this.toggles[s],"aria-expanded",i===s)}),this.connects.forEach(async n=>{let{children:s}=n;await this.toggleElement(w(s).filter(o=>k(o,this.cls)),!1,e>=0),await this.toggleElement(s[i],!0,e>=0)}))}}},Jo={mixins:[st],extends:Nn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=k(this.$el,"uk-tab-left")?"uk-tab-left":k(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Ko=32;var Zo={mixins:[De,Ci,Pt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!m(this.mode,"media")&&!ti(this.$el)&&S(this.$el,"tabindex","0"),this.lazyload(this.$el,this.target)},computed:{target:{get(t,e){let{href:i,target:n}=t;return n=te(n||i,e),n.length&&n||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:It,filter(){return m(this.mode,"hover")},handler(t){!Dt(t)||this._showState||(T(this.$el,"focus"),A(document,It,()=>T(this.$el,"blur"),!0,e=>!R(e.target,this.$el)),m(this.mode,"click")&&(this._preventClick=!0))}},{name:Ae+" "+_e+" focus blur",filter(){return m(this.mode,"hover")},handler(t){if(Dt(t))return;const e=m([Ae,"focus"],t.type),i=S(this.$el,"aria-expanded");if(!(!e&&(t.type===_e&&z(this.$el,":focus")||t.type==="blur"&&z(this.$el,":hover")))){if(this._showState&&e===(i!==this._showState)){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return m(this.mode,"click")&&!at(this.$el,"input")},handler(t){t.keyCode===Ko&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return m(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(nt(t.target,'a[href="#"], a[href=""]')||(e=nt(t.target,"a[href]"))&&(S(this.$el,"aria-expanded")!=="true"||e.hash&&z(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read(){return m(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write(t){let{match:e}=t;const i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{async toggle(t){if(!T(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>k(n,this.clsLeave));if(e.length){for(const n of this.target){const s=m(e,n);this.toggleElement(n,s,s)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(n=>!m(i,n)),!0)},updateAria(t){m(this.mode,"media")||S(this.$el,"aria-expanded",ve(t)?t:this.isToggled(this.target))}}},Qo=Object.freeze({__proto__:null,Accordion:hn,Alert:_s,Cover:Bs,Drop:fn,Dropdown:fn,FormCustom:Ds,Gif:Hs,Grid:Ls,HeightMatch:Ws,HeightViewport:qs,Icon:Si,Img:$o,Leader:Do,Margin:dn,Modal:Ho,Nav:Lo,Navbar:Fo,Offcanvas:Ro,OverflowAuto:jo,Responsive:qo,Scroll:Yo,Scrollspy:Vo,ScrollspyNav:Go,Sticky:Xo,Svg:wn,Switcher:Nn,Tab:Jo,Toggle:Zo,Video:un,Close:po,Spinner:mo,SlidenavNext:xn,SlidenavPrevious:xn,SearchIcon:go,Marker:lt,NavbarToggleIcon:lt,OverlayIcon:lt,PaginationNext:lt,PaginationPrevious:lt,Totop:lt});return it(Qo,(t,e)=>K.component(e,t)),K.use(Cs),Ps(K),K});
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.11.2-dev.44c622843 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.11.2-dev.45194f70c | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :