uikit 3.11.2-dev.c7ed3c19b → 3.11.2-dev.cfa6c7d5c

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