uikit 3.16.4-dev.fd2458e3b → 3.16.5-dev.dda1f1b31

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 (120) hide show
  1. package/.eslintrc.json +1 -0
  2. package/CHANGELOG.md +9 -1
  3. package/build/build.js +5 -4
  4. package/build/icons.js +2 -1
  5. package/build/less.js +2 -11
  6. package/build/prefix.js +2 -1
  7. package/build/release.js +4 -3
  8. package/build/scope.js +2 -1
  9. package/build/scss.js +2 -1
  10. package/build/util.js +3 -3
  11. package/dist/css/uikit-core-rtl.css +1 -1
  12. package/dist/css/uikit-core-rtl.min.css +1 -1
  13. package/dist/css/uikit-core.css +1 -1
  14. package/dist/css/uikit-core.min.css +1 -1
  15. package/dist/css/uikit-rtl.css +1 -1
  16. package/dist/css/uikit-rtl.min.css +1 -1
  17. package/dist/css/uikit.css +1 -1
  18. package/dist/css/uikit.min.css +1 -1
  19. package/dist/js/components/countdown.js +12 -14
  20. package/dist/js/components/countdown.min.js +1 -1
  21. package/dist/js/components/filter.js +506 -22
  22. package/dist/js/components/filter.min.js +1 -1
  23. package/dist/js/components/lightbox-panel.js +2601 -310
  24. package/dist/js/components/lightbox-panel.min.js +1 -1
  25. package/dist/js/components/lightbox.js +2612 -323
  26. package/dist/js/components/lightbox.min.js +1 -1
  27. package/dist/js/components/notification.js +1 -1
  28. package/dist/js/components/notification.min.js +1 -1
  29. package/dist/js/components/parallax.js +466 -43
  30. package/dist/js/components/parallax.min.js +1 -1
  31. package/dist/js/components/slider-parallax.js +184 -2
  32. package/dist/js/components/slider-parallax.min.js +1 -1
  33. package/dist/js/components/slider.js +2345 -49
  34. package/dist/js/components/slider.min.js +1 -1
  35. package/dist/js/components/slideshow-parallax.js +184 -2
  36. package/dist/js/components/slideshow-parallax.min.js +1 -1
  37. package/dist/js/components/slideshow.js +2339 -49
  38. package/dist/js/components/slideshow.min.js +1 -1
  39. package/dist/js/components/sortable.js +472 -1
  40. package/dist/js/components/sortable.min.js +1 -1
  41. package/dist/js/components/tooltip.js +2298 -11
  42. package/dist/js/components/tooltip.min.js +1 -1
  43. package/dist/js/components/upload.js +1 -1
  44. package/dist/js/components/upload.min.js +1 -1
  45. package/dist/js/uikit-core.js +951 -931
  46. package/dist/js/uikit-core.min.js +1 -1
  47. package/dist/js/uikit-icons.js +153 -152
  48. package/dist/js/uikit-icons.min.js +1 -1
  49. package/dist/js/uikit.js +979 -954
  50. package/dist/js/uikit.min.js +1 -1
  51. package/package.json +2 -2
  52. package/src/images/icons/mastodon.svg +3 -0
  53. package/src/js/api/app.js +12 -0
  54. package/src/js/api/boot.js +64 -43
  55. package/src/js/api/component.js +60 -61
  56. package/src/js/api/computed.js +39 -0
  57. package/src/js/api/events.js +45 -0
  58. package/src/js/api/global.js +58 -56
  59. package/src/js/api/hooks.js +35 -114
  60. package/src/js/api/index.js +8 -24
  61. package/src/js/api/instance.js +55 -55
  62. package/src/js/api/log.js +10 -0
  63. package/src/js/api/observables.js +125 -0
  64. package/src/js/api/observer.js +76 -0
  65. package/src/js/{util → api}/options.js +38 -1
  66. package/src/js/api/props.js +102 -0
  67. package/src/js/api/state.js +26 -280
  68. package/src/js/api/update.js +77 -0
  69. package/src/js/api/watch.js +34 -0
  70. package/src/js/components/countdown.js +14 -16
  71. package/src/js/components/filter.js +18 -24
  72. package/src/js/components/internal/slider-preload.js +5 -6
  73. package/src/js/components/lightbox-panel.js +1 -1
  74. package/src/js/components/lightbox.js +11 -23
  75. package/src/js/components/parallax.js +8 -6
  76. package/src/js/components/slider.js +10 -0
  77. package/src/js/components/tooltip.js +2 -1
  78. package/src/js/core/accordion.js +5 -6
  79. package/src/js/core/cover.js +9 -9
  80. package/src/js/core/drop.js +13 -6
  81. package/src/js/core/dropnav.js +1 -1
  82. package/src/js/core/grid.js +2 -5
  83. package/src/js/core/height-match.js +9 -16
  84. package/src/js/core/height-viewport.js +5 -7
  85. package/src/js/core/img.js +12 -19
  86. package/src/js/core/leader.js +4 -2
  87. package/src/js/core/margin.js +11 -21
  88. package/src/js/core/modal.js +1 -1
  89. package/src/js/core/offcanvas.js +6 -2
  90. package/src/js/core/overflow-auto.js +5 -5
  91. package/src/js/core/responsive.js +5 -7
  92. package/src/js/core/scroll.js +19 -10
  93. package/src/js/core/scrollspy-nav.js +6 -5
  94. package/src/js/core/scrollspy.js +27 -36
  95. package/src/js/core/sticky.js +12 -10
  96. package/src/js/core/svg.js +4 -2
  97. package/src/js/core/switcher.js +11 -9
  98. package/src/js/core/toggle.js +4 -4
  99. package/src/js/core/video.js +6 -14
  100. package/src/js/mixin/modal.js +2 -1
  101. package/src/js/mixin/parallax.js +1 -1
  102. package/src/js/mixin/slider-nav.js +2 -1
  103. package/src/js/mixin/slider.js +9 -3
  104. package/src/js/util/filter.js +13 -0
  105. package/src/js/util/index.js +0 -1
  106. package/src/js/util/keys.js +11 -0
  107. package/src/js/util/lang.js +7 -7
  108. package/src/js/util/observer.js +4 -2
  109. package/src/js/util/scroll.js +42 -0
  110. package/src/js/util/svg.js +16 -0
  111. package/src/js/util/viewport.js +1 -1
  112. package/src/scss/mixins-theme.scss +1640 -1596
  113. package/src/scss/mixins.scss +1370 -1370
  114. package/src/scss/variables-theme.scss +1255 -1255
  115. package/src/scss/variables.scss +1113 -1113
  116. package/src/js/mixin/lazyload.js +0 -27
  117. package/src/js/mixin/resize.js +0 -11
  118. package/src/js/mixin/scroll.js +0 -32
  119. package/src/js/mixin/swipe.js +0 -72
  120. package/src/js/mixin/utils.js +0 -91
@@ -1 +1 @@
1
- /*! UIkit 3.16.4-dev.fd2458e3b | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */(function(Vt,Yt){typeof exports=="object"&&typeof module<"u"?module.exports=Yt():typeof define=="function"&&define.amd?define("uikit",Yt):(Vt=typeof globalThis<"u"?globalThis:Vt||self,Vt.UIkit=Yt())})(this,function(){"use strict";const{hasOwnProperty:Vt,toString:Yt}=Object.prototype;function vt(t,e){return Vt.call(t,e)}const ss=/\B([A-Z])/g,Ot=U(t=>t.replace(ss,"-$1").toLowerCase()),os=/-(\w)/g,Gt=U(t=>t.replace(os,Ni)),wt=U(t=>t.length?Ni(null,t.charAt(0))+t.slice(1):"");function Ni(t,e){return e?e.toUpperCase():""}function Z(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function Xt(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function d(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function ve(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:F,from:zi}=Array,{assign:Ve}=Object;function Q(t){return typeof t=="function"}function ft(t){return t!==null&&typeof t=="object"}function lt(t){return Yt.call(t)==="[object Object]"}function Pt(t){return ft(t)&&t===t.window}function we(t){return Ye(t)===9}function be(t){return Ye(t)>=1}function Jt(t){return Ye(t)===1}function Ye(t){return!Pt(t)&&ft(t)&&t.nodeType}function Ge(t){return typeof t=="boolean"}function y(t){return typeof t=="string"}function Xe(t){return typeof t=="number"}function bt(t){return Xe(t)||y(t)&&!isNaN(t-parseFloat(t))}function Je(t){return!(F(t)?t.length:ft(t)&&Object.keys(t).length)}function I(t){return t===void 0}function Ke(t){return Ge(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Kt(t){const e=Number(t);return isNaN(e)?!1:e}function v(t){return parseFloat(t)||0}function E(t){return g(t)[0]}function g(t){return be(t)?[t]:Array.from(t||[]).filter(be)}function Bt(t){if(Pt(t))return t;t=E(t);const e=we(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function Ze(t,e){return t===e||ft(t)&&ft(e)&&Object.keys(t).length===Object.keys(e).length&&$t(t,(i,n)=>i===e[n])}function Qe(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),n=>n===e?i:e)}function Zt(t){return t[t.length-1]}function $t(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function Ue(t,e){return t.slice().sort(({[e]:i=0},{[e]:n=0})=>i>n?1:n>i?-1:0)}function Qt(t,e){return t.reduce((i,n)=>i+v(Q(e)?e(n):n[e]),0)}function rs(t,e){const i=new Set;return t.filter(({[e]:n})=>i.has(n)?!1:i.add(n))}function ct(t,e=0,i=1){return Math.min(Math.max(Kt(t)||0,e),i)}function yt(){}function ti(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:n})=>n))-Math.max(...t.map(({[i]:n})=>n))>0)}function ei(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function ii(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function Hi(t,e){t={...t};for(const i in t)t=t[i]>e[i]?ii(t,i,e[i]):t;return t}function as(t,e){t=Hi(t,e);for(const i in t)t=t[i]<e[i]?ii(t,i,e[i]):t;return t}const ni={ratio:ii,contain:Hi,cover:as};function dt(t,e,i=0,n=!1){e=g(e);const{length:s}=e;return s?(t=bt(t)?Kt(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?s-1:e.indexOf(E(t)),n?ct(t,0,s-1):(t%=s,t<0?t+s:t)):-1}function U(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class Fi{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function f(t,e,i){var n;if(ft(e)){for(const s in e)f(t,s,e[s]);return}if(I(i))return(n=E(t))==null?void 0:n.getAttribute(e);for(const s of g(t))Q(i)&&(i=i.call(s,f(s,e))),i===null?Ut(s,e):s.setAttribute(e,i)}function ht(t,e){return g(t).some(i=>i.hasAttribute(e))}function Ut(t,e){g(t).forEach(i=>i.removeAttribute(e))}function At(t,e){for(const i of[e,`data-${e}`])if(ht(t,i))return f(t,i)}const ls={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function si(t){return g(t).some(e=>ls[e.tagName.toLowerCase()])}function L(t){return g(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const $e="input,select,textarea,button";function Li(t){return g(t).some(e=>_(e,$e))}const ye=`${$e},a[href],[tabindex]`;function oi(t){return _(t,ye)}function O(t){var e;return(e=E(t))==null?void 0:e.parentElement}function te(t,e){return g(t).filter(i=>_(i,e))}function _(t,e){return g(t).some(i=>i.matches(e))}function W(t,e){return Jt(t)?t.closest(Z(e,">")?e.slice(1):e):g(t).map(i=>W(i,e)).filter(Boolean)}function T(t,e){return y(e)?!!W(t,e):E(e).contains(E(t))}function Dt(t,e){const i=[];for(;t=O(t);)(!e||_(t,e))&&i.push(t);return i}function tt(t,e){t=E(t);const i=t?g(t.children):[];return e?te(i,e):i}function ri(t,e){return e?g(t).indexOf(E(e)):tt(O(t)).indexOf(t)}function st(t,e){return ai(t,Ii(t,e))}function ee(t,e){return ie(t,Ii(t,e))}function ai(t,e){return E(Wi(t,E(e),"querySelector"))}function ie(t,e){return g(Wi(t,E(e),"querySelectorAll"))}const cs=/(^|[^\\],)\s*[!>+~-]/,Ri=U(t=>t.match(cs));function Ii(t,e=document){return y(t)&&Ri(t)||we(e)?e:e.ownerDocument}const hs=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,us=U(t=>t.replace(hs,"$1 *"));function Wi(t,e=document,i){if(!t||!y(t))return t;if(t=us(t),Ri(t)){const n=ds(t);t="";for(let s of n){let o=e;if(s[0]==="!"){const r=s.substr(1).trim().split(" ");if(o=W(O(e),r[0]),s=r.slice(1).join(" ").trim(),!s.length&&n.length===1)return o}if(s[0]==="-"){const r=s.substr(1).trim().split(" "),a=(o||e).previousElementSibling;o=_(a,s.substr(1))?a:null,s=r.slice(1).join(" ")}o&&(t+=`${t?",":""}${ps(o)} ${s}`)}e=document}try{return e[i](t)}catch{return null}}const fs=/.*?[^\\](?:,|$)/g,ds=U(t=>t.match(fs).map(e=>e.replace(/,$/,"").trim()));function ps(t){const e=[];for(;t.parentNode;){const i=f(t,"id");if(i){e.unshift(`#${li(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${ri(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function li(t){return y(t)?CSS.escape(t):""}function C(...t){let[e,i,n,s,o=!1]=hi(t);s.length>1&&(s=ms(s)),o!=null&&o.self&&(s=vs(s)),n&&(s=gs(n,s));for(const r of i)for(const a of e)a.addEventListener(r,s,o);return()=>ci(e,i,s,o)}function ci(...t){let[e,i,,n,s=!1]=hi(t);for(const o of i)for(const r of e)r.removeEventListener(o,n,s)}function M(...t){const[e,i,n,s,o=!1,r]=hi(t),a=C(e,i,n,l=>{const h=!r||r(l);h&&(a(),s(l,h))},o);return a}function x(t,e,i){return ui(t).every(n=>n.dispatchEvent(xe(e,!0,!0,i)))}function xe(t,e=!0,i=!1,n){return y(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function hi(t){return t[0]=ui(t[0]),y(t[1])&&(t[1]=t[1].split(" ")),Q(t[2])&&t.splice(2,0,!1),t}function gs(t,e){return i=>{const n=t[0]===">"?ie(t,i.currentTarget).reverse().filter(s=>T(i.target,s))[0]:W(i.target,t);n&&(i.current=n,e.call(this,i),delete i.current)}}function ms(t){return e=>F(e.detail)?t(e,...e.detail):t(e)}function vs(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function ji(t){return t&&"addEventListener"in t}function ws(t){return ji(t)?t:E(t)}function ui(t){return F(t)?t.map(ws).filter(Boolean):y(t)?ie(t):ji(t)?[t]:g(t)}function Mt(t){return t.pointerType==="touch"||!!t.touches}function ke(t){var e,i;const{clientX:n,clientY:s}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:s}}const bs={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){const s=g(t);for(const o of s)if(y(e)){if(e=fi(e),I(i))return getComputedStyle(o).getPropertyValue(e);o.style.setProperty(e,bt(i)&&!bs[e]?`${i}px`:i||Xe(i)?i:"",n)}else if(F(e)){const r={};for(const a of e)r[a]=c(o,a);return r}else ft(e)&&(n=i,$t(e,(r,a)=>c(o,a,r,n)));return s[0]}const fi=U(t=>$s(t));function $s(t){if(Z(t,"--"))return t;t=Ot(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n=`-${i}-${t}`;if(n in e)return n}}function k(t,...e){qi(t,e,"add")}function R(t,...e){qi(t,e,"remove")}function di(t,e){f(t,"class",i=>(i||"").replace(new RegExp(`\\b${e}\\b\\s?`,"g"),""))}function pi(t,...e){e[0]&&R(t,e[0]),e[1]&&k(t,e[1])}function S(t,e){return[e]=gi(e),!!e&&g(t).some(i=>i.classList.contains(e))}function V(t,e,i){const n=gi(e);I(i)||(i=!!i);for(const s of g(t))for(const o of n)s.classList.toggle(o,i)}function qi(t,e,i){e=e.reduce((n,s)=>n.concat(gi(s)),[]);for(const n of g(t))n.classList[i](...e)}function gi(t){return String(t).split(/[ ,]/).filter(Boolean)}function ys(t,e,i=400,n="linear"){return i=Math.round(i),Promise.all(g(t).map(s=>new Promise((o,r)=>{for(const l in e){const h=c(s,l);h===""&&c(s,l,h)}const a=setTimeout(()=>x(s,"transitionend"),i);M(s,"transitionend transitioncanceled",({type:l})=>{clearTimeout(a),R(s,"uk-transition"),c(s,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),l==="transitioncanceled"?r():o(s)},{self:!0}),k(s,"uk-transition"),c(s,{transitionProperty:Object.keys(e).map(fi).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:n,...e})})))}const J={start:ys,async stop(t){x(t,"transitionend"),await Promise.resolve()},async cancel(t){x(t,"transitioncanceled"),await Promise.resolve()},inProgress(t){return S(t,"uk-transition")}},ne="uk-animation-";function Vi(t,e,i=200,n,s){return Promise.all(g(t).map(o=>new Promise((r,a)=>{x(o,"animationcanceled");const l=setTimeout(()=>x(o,"animationend"),i);M(o,"animationend animationcanceled",({type:h})=>{clearTimeout(l),h==="animationcanceled"?a():r(o),c(o,"animationDuration",""),di(o,`${ne}\\S*`)},{self:!0}),c(o,"animationDuration",`${i}ms`),k(o,e,ne+(s?"leave":"enter")),Z(e,ne)&&(n&&k(o,`uk-transform-origin-${n}`),s&&k(o,`${ne}reverse`))})))}const xs=new RegExp(`${ne}(enter|leave)`),et={in:Vi,out(t,e,i,n){return Vi(t,e,i,n,!0)},inProgress(t){return xs.test(f(t,"class"))},cancel(t){x(t,"animationcanceled")}};function ks(t){if(document.readyState!=="loading"){t();return}M(document,"DOMContentLoaded",t)}function j(t,...e){return e.some(i=>{var n;return((n=t==null?void 0:t.tagName)==null?void 0:n.toLowerCase())===i.toLowerCase()})}function Yi(t){return t=m(t),t.innerHTML="",t}function _e(t,e){return I(e)?m(t).innerHTML:it(Yi(t),e)}const _s=Te("prepend"),it=Te("append"),mi=Te("before"),Se=Te("after");function Te(t){return function(e,i){var n;const s=g(y(i)?Nt(i):i);return(n=m(e))==null||n[t](...s),Gi(s)}}function xt(t){g(t).forEach(e=>e.remove())}function Ce(t,e){for(e=E(mi(t,e));e.firstChild;)e=e.firstChild;return it(e,t),e}function vi(t,e){return g(g(t).map(i=>i.hasChildNodes()?Ce(g(i.childNodes),e):it(i,e)))}function se(t){g(t).map(O).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const Ss=/^\s*<(\w+|!)[^>]*>/,Ts=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Nt(t){const e=Ts.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,Gi(i.childNodes)}function Gi(t){return t.length>1?t:t[0]}function pt(t,e){if(Jt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;pt(t,e),t=i}}function m(t,e){return Xi(t)?E(Nt(t)):ai(t,e)}function P(t,e){return Xi(t)?g(Nt(t)):ie(t,e)}function Xi(t){return y(t)&&Z(t.trim(),"<")}const kt={width:["left","right"],height:["top","bottom"]};function Y(t){const e=Jt(t)?E(t).getBoundingClientRect():{height:ot(t),width:oe(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function $(t,e){const i=Y(t);if(t){const{scrollY:s,scrollX:o}=Bt(t),r={height:s,width:o};for(const a in kt)for(const l of kt[a])i[l]+=r[a]}if(!e)return i;const n=c(t,"position");$t(c(t,["left","top"]),(s,o)=>c(t,o,e[o]-i[o]+v(n==="absolute"&&s==="auto"?Ji(t)[o]:s)))}function Ji(t){let{top:e,left:i}=$(t);const{ownerDocument:{body:n,documentElement:s},offsetParent:o}=E(t);let r=o||s;for(;r&&(r===n||r===s)&&c(r,"position")==="static";)r=r.parentNode;if(Jt(r)){const a=$(r);e-=a.top+v(c(r,"borderTopWidth")),i-=a.left+v(c(r,"borderLeftWidth"))}return{top:e-v(c(t,"marginTop")),left:i-v(c(t,"marginLeft"))}}function _t(t){t=E(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+v(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+v(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=Bt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const ot=Ki("height"),oe=Ki("width");function Ki(t){const e=wt(t);return(i,n)=>{if(I(n)){if(Pt(i))return i[`inner${e}`];if(we(i)){const s=i.documentElement;return Math.max(s[`offset${e}`],s[`scroll${e}`])}return i=E(i),n=c(i,t),n=n==="auto"?i[`offset${e}`]:v(n)||0,n-re(i,t)}else return c(i,t,!n&&n!==0?"":+n+re(i,t)+"px")}}function re(t,e,i="border-box"){return c(t,"boxSizing")===i?Qt(kt[e].map(wt),n=>v(c(t,`padding${n}`))+v(c(t,`border${n}Width`))):0}function Zi(t){for(const e in kt)for(const i in kt[e])if(kt[e][i]===t)return kt[e][1-i];return t}function ut(t,e="width",i=window,n=!1){return y(t)?Qt(Es(t),s=>{const o=Ps(s);return o?Bs(o==="vh"?As():o==="vw"?oe(Bt(i)):n?i[`offset${wt(e)}`]:Y(i)[e],s):s}):v(t)}const Cs=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,Es=U(t=>t.toString().replace(/\s/g,"").match(Cs)||[]),Os=/(?:v[hw]|%)$/,Ps=U(t=>(t.match(Os)||[])[0]);function Bs(t,e){return t*v(e)/100}let ae,zt;function As(){return ae||(zt||(zt=m("<div>"),c(zt,{height:"100vh",position:"fixed"}),C(window,"resize",()=>ae=null)),it(document.body,zt),ae=zt.clientHeight,xt(zt),ae)}const St=typeof window<"u",le=St&&document.dir==="rtl",Ht=St&&"ontouchstart"in window,Ft=St&&window.PointerEvent,Lt=Ft?"pointerdown":Ht?"touchstart":"mousedown",Ds=Ft?"pointermove":Ht?"touchmove":"mousemove",Rt=Ft?"pointerup":Ht?"touchend":"mouseup",Ee=Ft?"pointerenter":Ht?"":"mouseenter",Oe=Ft?"pointerleave":Ht?"":"mouseleave",Pe=Ft?"pointercancel":"touchcancel",nt={reads:[],writes:[],read(t){return this.reads.push(t),bi(),t},write(t){return this.writes.push(t),bi(),t},clear(t){Ui(this.reads,t),Ui(this.writes,t)},flush:wi};function wi(t){Qi(nt.reads),Qi(nt.writes.splice(0)),nt.scheduled=!1,(nt.reads.length||nt.writes.length)&&bi(t+1)}const Ms=4;function bi(t){nt.scheduled||(nt.scheduled=!0,t&&t<Ms?Promise.resolve().then(()=>wi(t)):requestAnimationFrame(()=>wi(1)))}function Qi(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Ui(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function $i(){}$i.prototype={positions:[],init(){this.positions=[];let t;this.unbind=C(document,"mousemove",e=>t=ke(e)),this.interval=setInterval(()=>{t&&(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){var t;(t=this.unbind)==null||t.call(this),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=Zt(this.positions),l=[r,a];return ei(a,e)?!1:[[{x:i,y:s},{x:n,y:o}],[{x:i,y:o},{x:n,y:s}]].some(u=>{const p=Ns(l,u);return p&&ei(p,e)})}};function Ns([{x:t,y:e},{x:i,y:n}],[{x:s,y:o},{x:r,y:a}]){const l=(a-o)*(i-t)-(r-s)*(n-e);if(l===0)return!1;const h=((r-s)*(e-o)-(a-o)*(t-s))/l;return h<0?!1:{x:t+h*(i-t),y:e+h*(n-e)}}function It(t,e,i,n=!0){const s=new IntersectionObserver(n?(o,r)=>{o.some(a=>a.isIntersecting)&&e(o,r)}:e,i);for(const o of g(t))s.observe(o);return s}const zs=St&&window.ResizeObserver;function ce(t,e,i={box:"border-box"}){return zs?en(ResizeObserver,t,e,i):(Hs(),he.add(e),{disconnect(){he.delete(e)}})}let he;function Hs(){if(he)return;he=new Set;let t;const e=()=>{if(!t){t=!0,requestAnimationFrame(()=>t=!1);for(const i of he)i()}};C(window,"load resize",e),C(document,"loadedmetadata load",e,!0)}function tn(t,e,i){return en(MutationObserver,t,e,i)}function en(t,e,i,n){const s=new t(i);for(const o of g(e))s.observe(o,n);return s}const z={};z.events=z.created=z.beforeConnect=z.connected=z.beforeDisconnect=z.disconnected=z.destroy=yi,z.args=function(t,e){return e!==!1&&yi(e||t)},z.update=function(t,e){return Ue(yi(t,Q(e)?{read:e}:e),"order")},z.props=function(t,e){if(F(e)){const i={};for(const n of e)i[n]=String;e=i}return z.methods(t,e)},z.computed=z.methods=function(t,e){return e?t?{...t,...e}:e:t},z.i18n=z.data=function(t,e,i){return i?nn(t,e,i):e?t?function(n){return nn(t,e,n)}:e:t};function nn(t,e,i){return z.computed(Q(t)?t.call(i,i):t,Q(e)?e.call(i,i):e)}function yi(t,e){return t=t&&!F(t)?[t]:t,e?t?t.concat(e):F(e)?e:[e]:t}function Fs(t,e){return I(e)?t:e}function Wt(t,e,i){const n={};if(Q(e)&&(e=e.options),e.extends&&(t=Wt(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=Wt(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]=(z[o]||Fs)(t[o],e[o],i)}return n}function Be(t,e=[]){try{return t?Z(t,"{")?JSON.parse(t):e.length&&!d(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[s,o]=n.split(/:(.*)/);return s&&!I(o)&&(i[s.trim()]=o.trim()),i},{}):{}}catch{return{}}}function sn(t){if(De(t)&&xi(t,{func:"playVideo",method:"play"}),Ae(t))try{t.play().catch(yt)}catch{}}function on(t){De(t)&&xi(t,{func:"pauseVideo",method:"pause"}),Ae(t)&&t.pause()}function rn(t){De(t)&&xi(t,{func:"mute",method:"setVolume",value:0}),Ae(t)&&(t.muted=!0)}function an(t){return Ae(t)||De(t)}function Ae(t){return j(t,"video")}function De(t){return j(t,"iframe")&&(ln(t)||cn(t))}function ln(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function cn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function xi(t,e){await Rs(t),hn(t,e)}function hn(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const ki="_ukPlayer";let Ls=0;function Rs(t){if(t[ki])return t[ki];const e=ln(t),i=cn(t),n=++Ls;let s;return t[ki]=new Promise(o=>{e&&M(t,"load",()=>{const r=()=>hn(t,{event:"listening",id:n});s=setInterval(r,100),r()}),M(window,"message",o,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===n&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===n}catch{}}),t.src=`${t.src}${d(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${n}`}`}).then(()=>clearInterval(s))}function un(t,e=0,i=0){return L(t)?ti(...jt(t).map(n=>{const{top:s,left:o,bottom:r,right:a}=K(n);return{top:s-e,left:o-i,bottom:r+e,right:a+i}}).concat($(t))):!1}function fn(t,{offset:e=0}={}){const i=L(t)?rt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:h,scrollHeight:u,offsetHeight:p}=a,w=K(a),b=u-w.height,{height:A,top:N}=i[l-1]?K(i[l-1]):$(t);let D=Math.ceil(N-w.top-e+h);return e>0&&p<A+e?D+=e:e=0,D>b?(e-=D-b,D=b):D<0&&(e-=D,D=0),()=>n(a,D-h).then(r)},()=>Promise.resolve())();function n(r,a){return new Promise(l=>{const h=r.scrollTop,u=s(Math.abs(a)),p=Date.now();(function w(){const b=o(ct((Date.now()-p)/u));r.scrollTop=h+a*b,b===1?l():requestAnimationFrame(w)})()})}function s(r){return 40*Math.pow(r,.375)}function o(r){return .5*(1-Math.cos(Math.PI*r))}}function dn(t,e=0,i=0){if(!L(t))return 0;const[n]=rt(t,!0),{scrollHeight:s,scrollTop:o}=n,{height:r}=K(n),a=s-r,l=_t(t)[0]-_t(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return ct((o-h)/(u-h))}function rt(t,e=!1,i=[]){const n=pn(t);let s=Dt(t).reverse();s=s.slice(s.indexOf(n)+1);const o=ve(s,r=>c(r,"position")==="fixed");return~o&&(s=s.slice(o)),[n].concat(s.filter(r=>c(r,"overflow").split(" ").some(a=>d(["auto","scroll",...i],a))&&(!e||r.scrollHeight>K(r).height))).reverse()}function jt(t){return rt(t,!1,["hidden","clip"])}function K(t){const e=Bt(t),{document:{documentElement:i}}=e;let n=t===pn(t)?e:t;const{visualViewport:s}=e;if(Pt(n)&&s){let{height:r,width:a,scale:l,pageTop:h,pageLeft:u}=s;return r=Math.round(r*l),a=Math.round(a*l),{height:r,width:a,top:h,left:u,bottom:h+r,right:u+a}}let o=$(n);if(c(n,"display")==="inline")return o;for(let[r,a,l,h]of[["width","x","left","right"],["height","y","top","bottom"]])Pt(n)?n=i:o[l]+=v(c(n,`border-${l}-width`)),o[r]=o[a]=n[`client${wt(r)}`],o[h]=o[r]+o[l];return o}function pn(t){return Bt(t).document.scrollingElement}const G=[["width","x","left","right"],["height","y","top","bottom"]];function gn(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},F(e)||(e=[e,e]),$(t,mn(t,e,i))}function mn(t,e,i){const n=vn(t,e,i),{boundary:s,viewportOffset:o=0,placement:r}=i;let a=n;for(const[l,[h,,u,p]]of Object.entries(G)){const w=Is(t,e[l],o,s,l);if(Me(n,w,l))continue;let b=0;if(r[l]==="flip"){const A=i.attach.target[l];if(A===p&&n[p]<=w[p]||A===u&&n[u]>=w[u])continue;b=js(t,e,i,l)[u]-n[u];const N=Ws(t,e[l],o,l);if(!Me(_i(n,b,l),N,l)){if(Me(n,N,l))continue;if(i.recursion)return!1;const D=qs(t,e,i);if(D&&Me(D,N,1-l))return D;continue}}else if(r[l]==="shift"){const A=$(e[l]),{offset:N}=i;b=ct(ct(n[u],w[u],w[p]-n[h]),A[u]-n[h]+N[l],A[p]-N[l])-n[u]}a=_i(a,b,l)}return a}function vn(t,e,i){let{attach:n,offset:s}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},o=$(t);for(const[r,[a,,l,h]]of Object.entries(G)){const u=n.target[r]===n.element[r]?K(e[r]):$(e[r]);o=_i(o,u[l]-o[l]+wn(n.target[r],h,u[a])-wn(n.element[r],h,o[a])+ +s[r],r)}return o}function _i(t,e,i){const[,n,s,o]=G[i],r={...t};return r[s]=t[n]=t[s]+e,r[o]+=e,r}function wn(t,e,i){return t==="center"?i/2:t===e?i:0}function Is(t,e,i,n,s){let o=$n(...bn(t,e).map(K));return i&&(o[G[s][2]]+=i,o[G[s][3]]-=i),n&&(o=$n(o,$(F(n)?n[s]:n))),o}function Ws(t,e,i,n){const[s,o,r,a]=G[n],[l]=bn(t,e),h=K(l);return["auto","scroll"].includes(c(l,`overflow-${o}`))&&(h[r]-=l[`scroll${wt(r)}`],h[a]=h[r]+l[`scroll${wt(s)}`]),h[r]+=i,h[a]-=i,h}function bn(t,e){return jt(e).filter(i=>T(t,i))}function $n(...t){let e={};for(const i of t)for(const[,,n,s]of G)e[n]=Math.max(e[n]||0,i[n]),e[s]=Math.min(...[e[s],i[s]].filter(Boolean));return e}function Me(t,e,i){const[,,n,s]=G[i];return t[n]>=e[n]&&t[s]<=e[s]}function js(t,e,{offset:i,attach:n},s){return vn(t,e,{attach:{element:yn(n.element,s),target:yn(n.target,s)},offset:Vs(i,s)})}function qs(t,e,i){return mn(t,e,{...i,attach:{element:i.attach.element.map(xn).reverse(),target:i.attach.target.map(xn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function yn(t,e){const i=[...t],n=G[e].indexOf(t[e]);return~n&&(i[e]=G[e][1-n%2+2]),i}function xn(t){for(let e=0;e<G.length;e++){const i=G[e].indexOf(t);if(~i)return G[1-e][i%2+2]}}function Vs(t,e){return t=[...t],t[e]*=-1,t}var Ys=Object.freeze({__proto__:null,$:m,$$:P,Animation:et,Deferred:Fi,Dimensions:ni,MouseTracker:$i,Transition:J,addClass:k,after:Se,append:it,apply:pt,assign:Ve,attr:f,before:mi,boxModelAdjust:re,camelize:Gt,children:tt,clamp:ct,closest:W,createEvent:xe,css:c,data:At,dimensions:Y,each:$t,empty:Yi,endsWith:Xt,escape:li,fastdom:nt,filter:te,find:ai,findAll:ie,findIndex:ve,flipPosition:Zi,fragment:Nt,getEventPos:ke,getIndex:dt,hasAttr:ht,hasClass:S,hasOwn:vt,hasTouch:Ht,height:ot,html:_e,hyphenate:Ot,inBrowser:St,includes:d,index:ri,intersectRect:ti,isArray:F,isBoolean:Ge,isDocument:we,isElement:Jt,isEmpty:Je,isEqual:Ze,isFocusable:oi,isFunction:Q,isInView:un,isInput:Li,isNode:be,isNumber:Xe,isNumeric:bt,isObject:ft,isPlainObject:lt,isRtl:le,isString:y,isTag:j,isTouch:Mt,isUndefined:I,isVideo:an,isVisible:L,isVoidElement:si,isWindow:Pt,last:Zt,matches:_,memoize:U,mergeOptions:Wt,mute:rn,noop:yt,observeIntersection:It,observeMutation:tn,observeResize:ce,off:ci,offset:$,offsetPosition:_t,offsetViewport:K,on:C,once:M,overflowParents:jt,parent:O,parents:Dt,parseOptions:Be,pause:on,play:sn,pointInRect:ei,pointerCancel:Pe,pointerDown:Lt,pointerEnter:Ee,pointerLeave:Oe,pointerMove:Ds,pointerUp:Rt,position:Ji,positionAt:gn,prepend:_s,propName:fi,query:st,queryAll:ee,ready:ks,remove:xt,removeAttr:Ut,removeClass:R,removeClasses:di,replaceClass:pi,scrollIntoView:fn,scrollParents:rt,scrolledOver:dn,selFocusable:ye,selInput:$e,sortBy:Ue,startsWith:Z,sumBy:Qt,swap:Qe,toArray:zi,toBoolean:Ke,toEventTargets:ui,toFloat:v,toNode:E,toNodes:g,toNumber:Kt,toPx:ut,toWindow:Bt,toggleClass:V,trigger:x,ucfirst:wt,uniqueBy:rs,unwrap:se,width:oe,within:T,wrapAll:Ce,wrapInner:vi});function Gs(t){const e=t.data;t.use=function(s){if(!s.installed)return s.call(null,this),s.installed=!0,this},t.mixin=function(s,o){o=(y(o)?t.component(o):o)||this,o.options=Wt(o.options,s)},t.extend=function(s){s=s||{};const o=this,r=function(l){this._init(l)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=Wt(o.options,s),r.super=o,r.extend=o.extend,r},t.update=function(s,o){s=s?E(s):document.body;for(const r of Dt(s).reverse())n(r[e],o);pt(s,r=>n(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(s){i=m(s)}});function n(s,o){if(s)for(const r in s)s[r]._connected&&s[r]._callUpdate(o)}}function Xs(t){t.prototype._callHook=function(n){var s;(s=this.$options[n])==null||s.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computed={},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="update"){this._connected&&((n==="update"||n==="resize")&&this._callWatches(),this.$options.update&&(this._updates||(this._updates=new Set,nt.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=nt.read(()=>{this._connected&&i.call(this,n),this._watch=null})};function e(n){for(const{read:s,write:o,events:r=[]}of this.$options.update){if(!n.has("update")&&!r.some(l=>n.has(l)))continue;let a;s&&(a=s.call(this,this._data,n),a&&lt(a)&&Ve(this._data,a)),o&&a!==!1&&nt.write(()=>{this._connected&&o.call(this,this._data,n)})}}function i(n){const{$options:{computed:s}}=this,o={...this._computed};this._computed={};for(const r in s){const{watch:a,immediate:l}=s[r];a&&(n&&l||vt(o,r)&&!Ze(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function Js(t){let e=0;t.prototype._init=function(i){i=i||{},i.data=Us(i,this.constructor.options),this.$options=Wt(this.constructor.options,i,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),i.el&&this.$mount(i.el)},t.prototype._initData=function(){const{data:i={}}=this.$options;for(const n in i)this.$props[n]=this[n]=i[n]},t.prototype._initMethods=function(){const{methods:i}=this.$options;if(i)for(const n in i)this[n]=i[n].bind(this)},t.prototype._initComputeds=function(){const{computed:i}=this.$options;if(this._computed={},i)for(const n in i)Ks(this,n,i[n])},t.prototype._initProps=function(i){let n;i=i||kn(this.$options);for(n in i)I(i[n])||(this.$props[n]=i[n]);const s=[this.$options.computed,this.$options.methods];for(n in this.$props)n in i&&Zs(s,n)&&(this[n]=this.$props[n])},t.prototype._initEvents=function(){this._events=[];for(const i of this.$options.events||[])if(vt(i,"handler"))Ne(this,i);else for(const n in i)Ne(this,i[n],n)},t.prototype._unbindEvents=function(){this._events.forEach(i=>i()),delete this._events},t.prototype._initObservers=function(){this._observers=[eo(this),to(this)]},t.prototype.registerObserver=function(...i){this._observers.push(...i)},t.prototype._disconnectObservers=function(){this._observers.forEach(i=>i==null?void 0:i.disconnect())}}function kn(t){const e={},{args:i=[],props:n={},el:s,id:o}=t;if(!n)return e;for(const a in n){const l=Ot(a);let h=At(s,l);I(h)||(h=n[a]===Boolean&&h===""?!0:Si(n[a],h),!(l==="target"&&Z(h,"_"))&&(e[a]=h))}const r=Be(At(s,o),i);for(const a in r){const l=Gt(a);I(n[l])||(e[l]=Si(n[l],r[a]))}return e}function Ks(t,e,i){Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:s,$el:o}=t;return vt(n,e)||(n[e]=(i.get||i).call(t,s,o)),n[e]},set(n){const{_computed:s}=t;s[e]=i.set?i.set.call(t,n):n,I(s[e])&&delete s[e]}})}function Ne(t,e,i){lt(e)||(e={name:i,handler:e});let{name:n,el:s,handler:o,capture:r,passive:a,delegate:l,filter:h,self:u}=e;if(s=Q(s)?s.call(t):s||t.$el,F(s)){s.forEach(p=>Ne(t,{...e,el:p},i));return}!s||h&&!h.call(t)||t._events.push(C(s,n,l?y(l)?l:l.call(t):null,y(o)?t[o]:o.bind(t),{passive:a,capture:r,self:u}))}function Zs(t,e){return t.every(i=>!i||!vt(i,e))}function Si(t,e){return t===Boolean?Ke(e):t===Number?Kt(e):t==="list"?Qs(e):t===Object&&y(e)?Be(e):t?t(e):e}function Qs(t){return F(t)?t:y(t)?t.split(/,(?![^(]*\))/).map(e=>bt(e)?Kt(e):Ke(e.trim())):[t]}function Us({data:t={}},{args:e=[],props:i={}}){F(t)&&(t=t.slice(0,e.length).reduce((n,s,o)=>(lt(s)?Ve(n,s):n[e[o]]=s,n),{}));for(const n in t)I(t[n])?delete t[n]:i[n]&&(t[n]=Si(i[n],t[n]));return t}function to(t){let{el:e,computed:i}=t.$options;if(!i)return;for(const s in i)if(i[s].document){e=e.ownerDocument;break}const n=new MutationObserver(()=>t._callWatches());return n.observe(e,{childList:!0,subtree:!0}),n}function eo(t){const{$options:e,$props:i}=t,{id:n,attrs:s,props:o,el:r}=e;if(!o||s===!1)return;const a=F(s)?s:Object.keys(o),l=a.map(u=>Ot(u)).concat(n),h=new MutationObserver(u=>{const p=kn(e);u.some(({attributeName:w})=>{const b=w.replace("data-","");return(b===n?a:[Gt(b),Gt(w)]).some(A=>!I(p[A])&&p[A]!==i[A])})&&t.$reset()});return h.observe(r,{attributes:!0,attributeFilter:l.concat(l.map(u=>`data-${u}`))}),h}function io(t){const e=t.data;t.prototype.$create=function(i,n,s){return t[i](n,s)},t.prototype.$mount=function(i){const{name:n}=this.$options;i[e]||(i[e]={}),!i[e][n]&&(i[e][n]=this,this.$el=this.$options.el=this.$options.el||i,T(i,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(i=!1){const{el:n,name:s}=this.$options;n&&this._callDisconnected(),this._callHook("destroy"),n!=null&&n[e]&&(delete n[e][s],Je(n[e])||delete n[e],i&&xt(this.$el))},t.prototype.$emit=function(i){this._callUpdate(i)},t.prototype.$update=function(i=this.$el,n){t.update(i,n)},t.prototype.$getComponent=t.getComponent,Object.defineProperty(t.prototype,"$container",Object.getOwnPropertyDescriptor(t,"container"))}const gt={};function no(t){const{data:e,prefix:i}=t;t.component=function(n,s){var o;n=Ot(n);const r=i+n;if(!s)return lt(gt[r])&&(gt[r]=gt[`data-${r}`]=t.extend(gt[r])),gt[r];n=Gt(n),t[n]=function(l,h){const u=t.component(n);return u.options.functional?new u({data:lt(l)?l:[...arguments]}):l?P(l).map(p)[0]:p();function p(w){const b=t.getComponent(w,n);if(b)if(h)b.$destroy();else return b;return new u({el:w,data:h})}};const a=lt(s)?{...s}:s.options;return a.id=r,a.name=n,(o=a.install)==null||o.call(a,t,a,n),t._initialized&&!a.functional&&requestAnimationFrame(()=>t[n](`[${r}],[data-${r}]`)),gt[r]=gt[`data-${r}`]=lt(s)?a: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.getAttributeNames()){const o=_n(s);o&&t[o](n)}},t.disconnect=n=>{for(const s in n[e])n[e][s]._callDisconnected()}}function _n(t){const e=gt[t];return e&&(lt(e)?e:e.options).name}const X=function(t){this._init(t)};X.util=Ys,X.data="__uikit__",X.prefix="uk-",X.options={},X.version="3.16.4-dev.fd2458e3b",Gs(X),Xs(X),Js(X),no(X),io(X);function so(t){const{connect:e,disconnect:i}=t;if(!St||!window.MutationObserver)return;requestAnimationFrame(function(){x(document,"uikit:init",t),document.body&&pt(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({addedNodes:o,removedNodes:r}){for(const a of o)pt(a,e);for(const a of r)pt(a,i)}function s({target:o,attributeName:r}){var a;const l=_n(r);if(l){if(ht(o,r)){t[l](o);return}(a=t.getComponent(o,l))==null||a.$destroy()}}}var at={connected(){k(this.$el,this.$options.id)}},ze={data:{preload:5},methods:{lazyload(t=this.$el,e=this.$el){this.registerObserver(It(t,(i,n)=>{for(const s of g(Q(e)?e():e))P('[loading="lazy"]',s).slice(0,this.preload-1).forEach(o=>Ut(o,"loading"));for(const s of i.filter(({isIntersecting:o})=>o).map(({target:o})=>o))n.unobserve(s)}))}}},qt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave"},computed:{hasAnimation({animation:t}){return!!t[0]},hasTransition({animation:t}){return["slide","reveal"].some(e=>Z(t[0],e))}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(g(t).map(s=>{const o=Ge(e)?e:!this.isToggled(s);if(!x(s,`before${o?"show":"hide"}`,[this]))return Promise.reject();const r=(Q(i)?i:i===!1||!this.hasAnimation?oo:this.hasTransition?ro:ao)(s,o,this),a=o?this.clsEnter:this.clsLeave;k(s,a),x(s,o?"show":"hide",[this]);const l=()=>{R(s,a),x(s,o?"shown":"hidden",[this])};return r?r.then(l,()=>(R(s,a),Promise.reject())):l()})).then(n,yt))},isToggled(t=this.$el){return[t]=g(t),S(t,this.clsEnter)?!0:S(t,this.clsLeave)?!1:this.cls?S(t,this.cls.split(" ")[0]):L(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=d(this.cls," ")||e!==S(t,this.cls),i&&V(t,this.cls,d(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),P("[autofocus]",t).some(n=>L(n)?n.focus()||!0:n.blur()),i&&x(t,"toggled",[e,this])}}};function oo(t,e,{_toggle:i}){return et.cancel(t),J.cancel(t),i(t,e)}async function ro(t,e,{animation:i,duration:n,velocity:s,transition:o,_toggle:r}){var a;const[l="reveal",h="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],p=u[d(u[0],h)?0:1],w=p[1]===h,A=["width","height"][u.indexOf(p)],N=`margin-${p[0]}`,D=`margin-${h}`;let ge=Y(t)[A];const Jr=J.inProgress(t);await J.cancel(t),e&&r(t,!0);const Kr=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",N,D].map(ns=>[ns,t.style[ns]])),me=Y(t),Mi=v(c(t,N)),ts=v(c(t,D)),Et=me[A]+ts;!Jr&&!e&&(ge+=ts);const[qe]=vi(t,"<div>");c(qe,{boxSizing:"border-box",height:me.height,width:me.width,...c(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",D])}),c(t,{padding:0,border:0,minWidth:0,minHeight:0,[D]:0,width:me.width,height:me.height,overflow:"hidden",[A]:ge});const es=ge/Et;n=(s*Et+n)*(e?1-es:es);const is={[A]:e?Et:0};w&&(c(t,N,Et-ge+Mi),is[N]=e?Mi:Et+Mi),!w^l==="reveal"&&(c(qe,N,-Et+ge),J.start(qe,{[N]:e?0:-Et},n,o));try{await J.start(t,is,n,o)}finally{c(t,Kr),se(qe.firstChild),e||r(t,!1)}}function ao(t,e,i){et.cancel(t);const{animation:n,duration:s,_toggle:o}=i;return e?(o(t,!0),et.in(t,n[0],s,i.origin)):et.out(t,n[1]||n[0],s,i.origin).then(()=>o(t,!1))}function lo(t){return Math.ceil(Math.max(0,...P("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}let Ti;function Sn(t){const e=C(t,"touchmove",n=>{if(n.targetTouches.length!==1)return;let[{scrollHeight:s,clientHeight:o}]=rt(n.target);o>=s&&n.cancelable&&n.preventDefault()},{passive:!1});if(Ti)return e;Ti=!0;const{scrollingElement:i}=document;return c(i,{overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:oe(window)-i.clientWidth||""}),()=>{Ti=!1,e(),c(i,{overflowY:"",touchAction:"",paddingRight:""})}}function ue(t){return["origin","pathname","search"].every(e=>t[e]===location[e])}function Tn(t){if(ue(t)){const e=decodeURIComponent(t.hash).substring(1);return document.getElementById(e)||document.getElementsByName(e)[0]}}function fe(t,e=t.$el,i=""){if(e.id)return e.id;let n=`${t.$options.id}-${t._uid}${i}`;return m(`#${n}`)&&(n=fe(t,e,`${i}-2`)),n}const B={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Cn={mixins:[at,ze,qt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:{get({targets:t},e){return P(t,e)},watch(t,e){if(e||S(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:{get({toggle:t}){return this.items.map(e=>m(t,e))},watch(){this.$emit()},immediate:!0},contents:{get({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||m(t,e)})},watch(t){for(const e of t)He(e,!S(this.items.find(i=>T(e,i)),this.clsOpen));this.$emit()},immediate:!0}},connected(){this.lazyload()},events:[{name:"click keydown",delegate(){return`${this.targets} ${this.$props.toggle}`},async handler(t){var e;t.type==="keydown"&&t.keyCode!==B.SPACE||(t.preventDefault(),(e=this._off)==null||e.call(this),this._off=ho(t.target),await this.toggle(ri(this.toggles,t.current)),this._off())}},{name:"shown hidden",self:!0,delegate(){return this.targets},handler(){this.$emit()}}],update(){const t=te(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],n=this.contents[e];if(!i||!n)continue;i.id=fe(this,i,`-title-${e}`),n.id=fe(this,n,`-content-${e}`);const s=d(t,this.items[e]);f(i,{role:j(i,"a")?"button":null,"aria-controls":n.id,"aria-expanded":s,"aria-disabled":!this.collapsible&&t.length<2&&s}),f(n,{role:"region","aria-labelledby":i.id})}},methods:{async toggle(t,e){t=this.items[dt(t,this.items)];let i=[t];const n=te(this.items,`.${this.clsOpen}`);!this.multiple&&!d(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&d(n,t))&&await Promise.all(i.map(s=>this.toggleElement(s,!d(n,s),(o,r)=>{if(V(o,this.clsOpen,r),e===!1||!this.animation){He(m(this.content,o),!r);return}return co(o,r,this)})))}}};function He(t,e){t&&(t.hidden=e)}async function co(t,e,{content:i,duration:n,velocity:s,transition:o}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||m(i,t),t._wrapper||(t._wrapper=Ce(i,"<div>"));const a=t._wrapper;c(a,"overflow","hidden");const l=v(c(a,"height"));await J.cancel(a),He(i,!1);const h=Qt(["marginTop","marginBottom"],p=>c(i,p))+Y(i).height,u=l/h;n=(s*h+n)*(e?1-u:u),c(a,"height",l),await J.start(a,{height:e?h:0},n,o),se(i),delete t._wrapper,e||He(i,!0)}function ho(t){const[e]=rt(t,!0);let i;return function n(){i=requestAnimationFrame(()=>{const{top:s}=t.getBoundingClientRect();s<0&&(e.scrollTop+=s),n()})}(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var uo={mixins:[at,qt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,fo),this.$destroy(!0)}}};function fo(t,e,{duration:i,transition:n,velocity:s}){const o=v(c(t,"height"));return c(t,"height",o),J.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},s*o+i,n)}var En={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},connected(){this.inView=this.autoplay==="inview",this.inView&&!ht(this.$el,"preload")&&(this.$el.preload="none"),j(this.$el,"iframe")&&!ht(this.$el,"allow")&&(this.$el.allow="autoplay"),this.automute&&rn(this.$el),this.registerObserver(It(this.$el,()=>this.$emit(),{},!1))},update:{read({visible:t}){return an(this.$el)?{prev:t,visible:L(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&un(this.$el)}:!1},write({prev:t,visible:e,inView:i}){!e||this.inView&&!i?on(this.$el):(this.autoplay===!0&&!t||this.inView&&i)&&sn(this.$el)}}},mt={connected(){var t;this.registerObserver(ce(((t=this.$options.resizeTargets)==null?void 0:t.call(this))||this.$el,()=>this.$emit("resize")))}},po={mixins:[mt,En],props:{width:Number,height:Number},data:{automute:!0},events:{"load loadedmetadata"(){this.$emit("resize")}},resizeTargets(){return[this.$el,On(this.$el)||O(this.$el)]},update:{read(){const{ratio:t,cover:e}=ni,{$el:i,width:n,height:s}=this;let o={width:n,height:s};if(!o.width||!o.height){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};o.width?o=t(h,"width",o.width):s?o=t(h,"height",o.height):o=h}const{offsetHeight:r,offsetWidth:a}=On(i)||O(i),l=e(o,{width:a+(a%2?1:0),height:r+(r%2?1:0)});return!l.width||!l.height?!1:l},write({height:t,width:e}){c(this.$el,{height:t,width:e})},events:["resize"]}};function On(t){for(;t=O(t);)if(c(t,"position")!=="static")return t}var Ci={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&m(t)}}},go={props:{pos:String,offset:null,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${le?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=d(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const s=[this.flip&&"flip",this.shift&&"shift"],o={element:[this.inset?this.dir:Zi(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in o)o[l].reverse();n.reverse(),s.reverse()}const r=mo(t),a=Y(t);c(t,{top:-a.height,left:-a.width}),gn(t,e,{attach:o,offset:n,boundary:i,placement:s,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t){return ut(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(d(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t){return this.align==="center"?0:ut(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(d(["left","top"],this.align)?1:-1)},getViewportOffset(t){return ut(c(t,"--uk-position-viewport-offset"))}}};function mo(t){const[e]=rt(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}let H;var Pn={mixins:[Ci,ze,go,qt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},n){return[st(e||t,n)||window,st(i||t,n)||window]},target({target:t,targetX:e,targetY:i},n){return e=e||t||this.targetEl,i=i||t||this.targetEl,[e===!0?window:st(e,n),i===!0?window:st(i,n)]}},created(){this.tracker=new $i},beforeConnect(){this.clsDrop=this.$props.clsDrop||`uk-${this.$options.name}`},connected(){k(this.$el,"uk-drop",this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=bo(this)),this._style=(({width:t,height:e})=>({width:t,height:e}))(this.$el.style)},disconnected(){this.isActive()&&(this.hide(!1),H=null),c(this.$el,this._style)},events:[{name:"click",delegate(){return".uk-drop-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href*="#"]'},handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&ue(e)&&!T(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==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),_(this.$el,":focus,:hover")||this.hide()}},{name:`${Ee} focusin`,filter(){return d(this.mode,"hover")},handler(t){Mt(t)||this.clearTimers()}},{name:`${Oe} focusout`,filter(){return d(this.mode,"hover")},handler(t){!Mt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){f(this.targetEl,"aria-expanded",e?!0:null),e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){H=this,this.tracker.init();const t=[$o(this),xo(this),ko(this),this.autoUpdate&&yo(this),!this.bgScroll&&Sn(this.$el)];M(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){H=H===null&&T(t,this.$el)&&this.isToggled()?this:H;return}H=this.isActive()?null:H,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!S(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(H){if(e&&H.isDelaying){this.showTimer=setTimeout(()=>_(t,":hover")&&this.show(),10);return}let i;for(;H&&i!==H&&!T(this.$el,H.$el);)i=H,H.hide(!1,!1)}this.container&&O(this.$el)!==this.container&&it(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelaying=vo(this.$el).some(n=>this.tracker.movesTo(n)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return H===this},position(){R(this.$el,"uk-drop-stack"),c(this.$el,this._style),this.$el.hidden=!0;const t=this.target.map(s=>wo(this.$el,s)),e=this.getViewportOffset(this.$el),i=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[s,[o,r]]of i)this.axis!==o&&d([o,!0],this.stretch)&&c(this.$el,{[r]:Math.min($(this.boundary[s])[r],t[s][r]-2*e),[`overflow-${o}`]:"auto"});const n=t[0].width-2*e;this.$el.hidden=!1,c(this.$el,"maxWidth",""),this.$el.offsetWidth>n&&k(this.$el,"uk-drop-stack"),c(this.$el,"maxWidth",n),this.positionAt(this.$el,this.target,this.boundary);for(const[s,[o,r,a,l]]of i)if(this.axis===o&&d([o,!0],this.stretch)){const h=Math.abs(this.getPositionOffset(this.$el)),u=$(this.target[s]),p=$(this.$el);c(this.$el,{[r]:(u[a]>p[a]?u[a]-Math.max($(this.boundary[s])[a],t[s][a]+e):Math.min($(this.boundary[s])[l],t[s][l]-e)-u[l])-h,[`overflow-${o}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}}}};function vo(t){const e=[];return pt(t,i=>c(i,"position")!=="static"&&e.push(i)),e}function wo(t,e){return K(jt(e).find(i=>T(t,i)))}function bo(t){const{$el:e}=t.$create("toggle",st(t.toggle,t.$el),{target:t.$el,mode:t.mode});return f(e,"aria-haspopup",!0),t.lazyload(e),e}function $o(t){const e=()=>t.$emit(),i=C(window,"resize",e),n=ce(jt(t.$el).concat(t.target),e);return()=>{n.disconnect(),i()}}function yo(t){return C([document,...jt(t.$el)],"scroll",()=>t.$emit(),{passive:!0})}function xo(t){return C(document,"keydown",e=>{e.keyCode===B.ESC&&t.hide(!1)})}function ko(t){return C(document,Lt,({target:e})=>{T(e,t.$el)||M(document,`${Rt} ${Pe} scroll`,({defaultPrevented:i,type:n,target:s})=>{!i&&n===Rt&&e===s&&!(t.targetEl&&T(e,t.targetEl))&&t.hide(!1)},!0)})}var Bn={mixins:[at,Ci],props:{dropdown:String,align:String,clsDrop:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean},data:{dropdown:"> li > a, > ul > li > a",align:le?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1},computed:{dropbarAnchor({dropbarAnchor:t},e){return st(t,e)||e},dropbar:{get({dropbar:t}){return t?(t=this._dropbar||st(t,this.$el)||m(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=m("<div></div>"))):null},watch(t){k(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get({clsDrop:t},e){var i;const n=P(`.${t}`,e);if(this.dropContainer!==e)for(const s of P(`.${t}`,this.dropContainer)){const o=(i=this.getDropdown(s))==null?void 0:i.targetEl;!d(n,s)&&o&&T(o,this.$el)&&n.push(s)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,flip:!1,shift:!0,pos:`bottom-${this.align}`,boundary:this.boundary===!0?this.$el:this.boundary})},immediate:!0},items:{get({dropdown:t},e){return P(t,e)},watch(t){f(tt(this.$el),"role","presentation"),f(t,{tabindex:-1,role:"menuitem"}),f(t[0],"tabindex",0)},immediate:!0}},connected(){f(this.$el,"role","menubar")},disconnected(){xt(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler({current:t,type:e}){const i=this.getActive();if(i&&d(i.mode,"hover")&&i.targetEl&&!T(i.targetEl,t)&&!i.isDelaying&&i.hide(!1),e==="focusin")for(const n of this.items)f(n,"tabindex",t===n?0:-1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===B.DOWN&&ht(e,"aria-expanded")&&(t.preventDefault(),!n||n.targetEl!==e?(e.click(),M(this.dropContainer,"show",({target:s})=>Dn(s))):Dn(n.$el)),An(t,this.items,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return`.${this.clsDrop}`},handler(t){var e;const{current:i,keyCode:n}=t;if(!d(this.dropdowns,i))return;const s=this.getActive();let o=-1;if(n===B.HOME?o=0:n===B.END?o="last":n===B.UP?o="previous":n===B.DOWN?o="next":n===B.ESC&&((e=s.targetEl)==null||e.focus()),~o){t.preventDefault();const r=P(ye,i);r[dt(o,r,ve(r,a=>_(a,":focus")))].focus()}An(t,this.items,s)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&d(t.mode,"hover")&&!this.dropdowns.some(e=>_(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&Se(this.dropbarAnchor,this.dropbar),k(t,`${this.clsDrop}-dropbar`))}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const n=Dt(t,`.${this.clsDrop}`).concat(t).map(a=>$(a)),s=Math.min(...n.map(({top:a})=>a)),o=Math.max(...n.map(({bottom:a})=>a)),r=$(this.dropbar);c(this.dropbar,"top",this.dropbar.offsetTop-(r.top-s)),this.transitionTo(o-s+v(c(t,"marginBottom")),t)};this._observer=ce([e.$el,...e.target],i),i()}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){const e=this.getActive();_(this.dropbar,":hover")&&e.$el===t.target&&!this.items.some(i=>e.targetEl!==i&&_(i,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return d(this.dropdowns,(t=H)==null?void 0:t.$el)&&H},async transitionTo(t,e){const{dropbar:i}=this,n=ot(i);e=n<t&&e,await J.cancel([e,i]),c(e,"clipPath",`polygon(0 0,100% 0,100% ${n}px,0 ${n}px)`),ot(i,n),await Promise.all([J.start(i,{height:t},this.duration),J.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>c(e,{clipPath:""}))]).catch(yt)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return this.getDropdown(t)&&S(t,this.clsDrop)}}};function An(t,e,i){var n,s,o;const{current:r,keyCode:a}=t;let l=-1;a===B.HOME?l=0:a===B.END?l="last":a===B.LEFT?l="previous":a===B.RIGHT?l="next":a===B.TAB&&((n=i.targetEl)==null||n.focus(),(s=i.hide)==null||s.call(i,!1)),~l&&(t.preventDefault(),(o=i.hide)==null||o.call(i,!1),e[dt(l,e,e.indexOf(i.targetEl||r))].focus())}function Dn(t){var e;m(":focus",t)||(e=m(ye,t))==null||e.focus()}var _o={mixins:[at],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return m($e,e)},state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&O(this.input)===e&&this.input.nextElementSibling||m(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const s=Li(e)?"value":"textContent",o=e[s],r=(t=i.files)!=null&&t[0]?i.files[0].name:_(i,"select")&&(n=P("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;o!==r&&(e[s]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return W(this.$el,"form")},handler(){this.$emit()}}]},Mn={mixins:[mt],props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},resizeTargets(){return[this.$el,...zi(this.$el.children)]},connected(){this.registerObserver(tn(this.$el,()=>this.$reset(),{childList:!0,attributes:!0,attributeFilter:["style"]}))},update:{read(){const t=Nn(this.$el.children);return{rows:t,columns:So(t)}},write({columns:t,rows:e}){for(const i of e)for(const n of i)V(n,this.margin,e[0]!==i),V(n,this.firstColumn,t[0].includes(n))},events:["resize"]}};function Nn(t){return zn(t,"top","bottom")}function So(t){const e=[];for(const i of t){const n=zn(i,"left","right");for(let s=0;s<n.length;s++)e[s]=e[s]?e[s].concat(n[s]):n[s]}return le?e.reverse():e}function zn(t,e,i){const n=[[]];for(const s of t){if(!L(s))continue;let o=Fe(s);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(s);break}let l;if(a[0].offsetParent===s.offsetParent?l=Fe(a[0]):(o=Fe(s,!0),l=Fe(a[0],!0)),o[e]>=l[i]-1&&o[e]!==l[e]){n.push([s]);break}if(o[i]-1>l[e]||o[e]===l[e]){a.push(s);break}if(r===0){n.unshift([s]);break}}}return n}function Fe(t,e=!1){let{offsetTop:i,offsetLeft:n,offsetHeight:s,offsetWidth:o}=t;return e&&([i,n]=_t(t)),{top:i,left:n,bottom:i+s,right:n+o}}var Ei={connected(){Hn(this._uid,()=>this.$emit("scroll"))},disconnected(){Fn(this._uid)}};const Le=new Map;let de;function Hn(t,e){de=de||C(window,"scroll",()=>Le.forEach(i=>i()),{passive:!0,capture:!0}),Le.set(t,e)}function Fn(t){Le.delete(t),de&&!Le.size&&(de(),de=null)}var To={extends:Mn,mixins:[at],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&k(this.$el,"uk-flex-top uk-flex-wrap-top"),this.parallax&&Hn(this._uid,()=>this.$emit("scroll"))},disconnected(){Fn(this._uid)},update:[{write({columns:t}){V(this.$el,this.clsStack,t.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||Ln(this.$el))return t.translates=!1,!1;let n=!1;const s=tt(this.$el),o=e.map(h=>Qt(h,"offsetHeight")),r=Eo(s,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(h=>Ue(h,"offsetTop")),n=Co(i,e));let l=Math.abs(this.parallax);return l&&(l=o.reduce((h,u,p)=>Math.max(h,u+r+(p%2?l:l/8)-a),0)),{padding:l,columns:e,translates:n,height:n?a:""}},write({height:t,padding:e}){c(this.$el,"paddingBottom",e||""),t!==!1&&c(this.$el,"height",t)},events:["resize"]},{read(){return this.parallax&&Ln(this.$el)?!1:{scrolled:this.parallax?dn(this.$el)*Math.abs(this.parallax):!1}},write({columns:t,scrolled:e,translates:i}){e===!1&&!i||t.forEach((n,s)=>n.forEach((o,r)=>c(o,"transform",!e&&!i?"":`translateY(${(i&&-i[s][r])+(e?s%2?e:e/8:0)}px)`)))},events:["scroll","resize"]}]};function Ln(t){return tt(t).some(e=>c(e,"position")==="absolute")}function Co(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 Eo(t,e){const[i]=t.filter(n=>S(n,e));return v(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}var Oo={mixins:[mt],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:{get({target:t},e){return P(t,e)},watch(){this.$reset()}}},resizeTargets(){return[this.$el,...this.elements]},update:{read(){return{rows:(this.row?Nn(this.elements):[this.elements]).map(Po)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((n,s)=>c(n,"minHeight",e[s]))},events:["resize"]}};function Po(t){if(t.length<2)return{heights:[""],elements:t};c(t,"minHeight","");let e=t.map(Bo);const i=Math.max(...e);return{heights:t.map((n,s)=>e[s].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function Bo(t){let e=!1;L(t)||(e=t.style.display,c(t,"display","block","important"));const i=Y(t).height-re(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var Ao={mixins:[mt],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},resizeTargets(){return[this.$el,...rt(this.$el)]},update:{read({minHeight:t}){if(!L(this.$el))return!1;let e="";const i=re(this.$el,"height","content-box"),{body:n,scrollingElement:s}=document,[o]=rt(this.$el),{height:r}=K(o===n?s:o);if(this.expand)e=Math.max(r-(Y(o).height-Y(this.$el).height)-i,0);else{const a=s===o||n===o;if(e=`calc(${a?"100vh":`${r}px`}`,this.offsetTop)if(a){const l=_t(this.$el)[0]-_t(o)[0];e+=l>0&&l<r/2?` - ${l}px`:""}else e+=` - ${c(o,"paddingTop")}`;this.offsetBottom===!0?e+=` - ${Y(this.$el.nextElementSibling).height}px`:bt(this.offsetBottom)?e+=` - ${this.offsetBottom}vh`:this.offsetBottom&&Xt(this.offsetBottom,"px")?e+=` - ${v(this.offsetBottom)}px`:y(this.offsetBottom)&&(e+=` - ${Y(st(this.offsetBottom,this.$el)).height}px`),e+=`${i?` - ${i}px`:""})`}return{minHeight:e,prev:t}},write({minHeight:t}){c(this.$el,{minHeight:t}),this.minHeight&&v(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},Rn={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,attributes:"list"},data:{ratio:1,include:["style","class"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&d(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=zo(t,this.$el);return this.svgEl&&e!==this.svgEl&&xt(this.svgEl),this.applyAttributes(e,t),this.svgEl=e}},yt),this.strokeAnimation&&this.svg.then(t=>{this._connected&&t&&(Wn(t),this.registerObserver(It(t,(e,i)=>{Wn(t),i.disconnect()})))})},disconnected(){this.svg.then(t=>{this._connected||(si(this.$el)&&(this.$el.hidden=!1),xt(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){return j(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>M(this.$el,"load",()=>t(this.getSvg()))):Mo(await Do(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const o in this.$options.props)d(this.include,o)&&o in this&&f(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);f(t,r,a)}this.id||Ut(t,"id");const i=["width","height"];let n=i.map(o=>this[o]);n.some(o=>o)||(n=i.map(o=>f(e,o)));const s=f(e,"viewBox");s&&!n.some(o=>o)&&(n=s.split(" ").slice(2)),n.forEach((o,r)=>f(t,i[r],v(o)*this.ratio||null))}}};const Do=U(async t=>t?Z(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Mo(t,e){return e&&d(t,"<symbol")&&(t=No(t,e)||t),t=m(t.substr(t.indexOf("<svg"))),(t==null?void 0:t.hasChildNodes())&&t}const In=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,Re={};function No(t,e){if(!Re[t]){Re[t]={},In.lastIndex=0;let i;for(;i=In.exec(t);)Re[t][i[3]]=`<svg xmlns="http://www.w3.org/2000/svg"${i[1]}svg>`}return Re[t][e]}function Wn(t){const e=lo(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function zo(t,e){if(si(e)||j(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return jn(t,n)?n:Se(e,t)}const i=e.lastElementChild;return jn(t,i)?i:it(e,t)}function jn(t,e){return j(t,"svg")&&j(e,"svg")&&t.innerHTML===e.innerHTML}var Ho={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,s;let o=0;return((s=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:s.replace(/%s/g,()=>e[o++]||""))||""}}},Fo='<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>',Lo='<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>',Ro='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Io='<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>',Wo='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',jo='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',qo='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Vo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><style>.uk-navbar-toggle-animate svg>[class*=line-]{transition:.2s ease-in-out;transition-property:transform,opacity;transform-origin:center;opacity:1}.uk-navbar-toggle svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect class="line-1" y="3" width="20" height="2"/><rect class="line-2" y="9" width="20" height="2"/><rect class="line-3" y="9" width="20" height="2"/><rect class="line-4" y="15" width="20" height="2"/></svg>',Yo='<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>',Go='<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>',Xo='<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>',Jo='<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>',Ko='<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>',Zo='<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>',Qo='<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>',Uo='<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>',tr='<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>',er='<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>',ir='<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>',nr='<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 Ie={spinner:ir,totop:nr,marker:Io,"close-icon":Fo,"close-large":Lo,"drop-parent-icon":Ro,"nav-parent-icon":Wo,"nav-parent-icon-large":jo,"navbar-parent-icon":qo,"navbar-toggle-icon":Vo,"overlay-icon":Yo,"pagination-next":Go,"pagination-previous":Xo,"search-icon":Jo,"search-large":Ko,"search-navbar":Zo,"slidenav-next":Qo,"slidenav-next-large":Uo,"slidenav-previous":tr,"slidenav-previous-large":er},Oi={install:dr,extends:Rn,args:"icon",props:["icon"],data:{include:[]},isIcon:!0,beforeConnect(){k(this.$el,"uk-icon")},methods:{async getSvg(){const t=pr(this.icon);if(!t)throw"Icon not found.";return t}}},Tt={args:!1,extends:Oi,data:t=>({icon:Ot(t.constructor.options.name)}),beforeConnect(){k(this.$el,this.$options.id)}},sr={extends:Tt,beforeConnect(){const t=this.$props.icon;this.icon=W(this.$el,".uk-nav-primary")?`${t}-large`:t}},or={extends:Tt,beforeConnect(){this.icon=S(this.$el,"uk-search-icon")&&Dt(this.$el,".uk-search-large").length?"search-large":Dt(this.$el,".uk-search-navbar").length?"search-navbar":this.$props.icon}},rr={extends:Tt,beforeConnect(){f(this.$el,"role","status")},methods:{async getSvg(){const t=await Oi.methods.getSvg.call(this);return this.ratio!==1&&c(m("circle",t),"strokeWidth",1/this.ratio),t}}},Ct={extends:Tt,mixins:[Ho],beforeConnect(){const t=W(this.$el,"a,button");f(t,"role",this.role!==null&&j(t,"a")?"button":this.role);const e=this.t("label");e&&!ht(t,"aria-label")&&f(t,"aria-label",e)}},qn={extends:Ct,beforeConnect(){k(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=S(this.$el,"uk-slidenav-large")?`${t}-large`:t}},ar={extends:Ct,i18n:{label:"Open menu"}},lr={extends:Ct,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${S(this.$el,"uk-close-large")?"large":"icon"}`}},cr={extends:Ct,i18n:{label:"Open"}},hr={extends:Ct,i18n:{label:"Back to top"}},ur={extends:Ct,i18n:{label:"Next page"},data:{role:null}},fr={extends:Ct,i18n:{label:"Previous page"},data:{role:null}},We={};function dr(t){t.icon.add=(e,i)=>{const n=y(e)?{[e]:i}:e;$t(n,(s,o)=>{Ie[o]=s,delete We[o]}),t._initialized&&pt(document.body,s=>$t(t.getComponents(s),o=>{o.$options.isIcon&&o.icon in n&&o.$reset()}))}}function pr(t){return Ie[t]?(We[t]||(We[t]=m((Ie[gr(t)]||Ie[t]).trim())),We[t].cloneNode(!0)):null}function gr(t){return le?Qe(Qe(t,"left","right"),"previous","next"):t}const mr=St&&"loading"in HTMLImageElement.prototype;var vr={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){if(this.loading!=="lazy"){this.load();return}const t=[this.$el,...ee(this.$props.target,this.$el)];mr&&je(this.$el)&&(this.$el.loading="lazy",Pi(this.$el),t.length===1)||(xr(this.$el),this.registerObserver(It(t,(e,i)=>{this.load(),i.disconnect()},{rootMargin:this.margin})))},disconnected(){this._data.image&&(this._data.image.onload="")},methods:{load(){if(this._data.image)return this._data.image;const t=je(this.$el)?this.$el:br(this.$el,this.dataSrc,this.sources);return Ut(t,"loading"),Pi(this.$el,t.currentSrc),this._data.image=t}}};function Pi(t,e){if(je(t)){const i=O(t);(j(i,"picture")?tt(i):[t]).forEach(s=>Vn(s,s))}else e&&!d(t.style.backgroundImage,e)&&(c(t,"backgroundImage",`url(${li(e)})`),x(t,xe("load",!1)))}const wr=["data-src","data-srcset","sizes"];function Vn(t,e){wr.forEach(i=>{const n=At(t,i);n&&f(e,i.replace(/^(data-)+/,""),n)})}function br(t,e,i){const n=new Image;return $r(n,i),Vn(t,n),n.onload=()=>{Pi(t,n.currentSrc)},f(n,"src",e),n}function $r(t,e){if(e=yr(e),e.length){const i=Nt("<picture>");for(const n of e){const s=Nt("<source>");f(s,n),it(i,s)}it(i,t)}}function yr(t){if(!t)return[];if(Z(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Be(t);return F(t)||(t=[t]),t.filter(e=>!Je(e))}function xr(t){je(t)&&!ht(t,"src")&&f(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function je(t){return j(t,"img")}var Bi={props:{media:Boolean},data:{media:!1},connected(){const t=kr(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,x(this.$el,xe("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=C(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function kr(t,e){if(y(t)){if(Z(t,"@"))t=v(c(e,`--uk-breakpoint-${t.substr(1)}`));else if(isNaN(t))return t}return t&&bt(t)?`(min-width: ${t}px)`:""}var _r={mixins:[at,Bi,mt],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill({fill:t}){return t||c(this.$el,"--uk-leader-fill-content")}},connected(){[this.wrapper]=vi(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){se(this.wrapper.childNodes)},update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){V(this.wrapper,this.clsHide,i),f(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}};const q=[];var Yn={mixins:[at,Ci,qt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel({selPanel:t},e){return m(t,e)},transitionElement(){return this.panel},bgClose({bgClose:t}){return t&&this.panel}},connected(){f(this.panel||this.$el,"role",this.role),this.overlay&&f(this.panel||this.$el,"aria-modal",!0)},beforeDisconnect(){d(q,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return`${this.selClose},a[href*="#"]`},handler(t){const{current:e,defaultPrevented:i}=t,{hash:n}=e;!i&&n&&ue(e)&&!T(n,this.$el)&&m(n,document.body)?this.hide():_(e,this.selClose)&&(t.preventDefault(),this.hide())}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===d(q,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(d(q,this))return!1;!this.stack&&q.length?(Promise.all(q.map(e=>e.hide())).then(this.show),t.preventDefault()):q.push(this)}},{name:"show",self:!0,handler(){this.stack&&c(this.$el,"zIndex",v(c(this.$el,"zIndex"))+q.length);const t=[this.overlay&&Tr(this),this.overlay&&Sn(this.$el),this.bgClose&&Cr(this),this.escClose&&Er(this)];M(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),k(document.documentElement,this.clsPage)}},{name:"shown",self:!0,handler(){oi(this.$el)||f(this.$el,"tabindex","-1"),_(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){d(q,this)&&q.splice(q.indexOf(this),1),c(this.$el,"zIndex",""),q.some(t=>t.clsPage===this.clsPage)||R(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&O(this.$el)!==this.container?(it(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Gn)},hide(){return this.toggleElement(this.$el,!1,Gn)}}};function Gn(t,e,{transitionElement:i,_toggle:n}){return new Promise((s,o)=>M(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=o,n(t,e);const a=M(i,"transitionstart",()=>{M(i,"transitionend transitioncancel",s,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),s()},Sr(c(i,"transitionDuration")))})).then(()=>delete t._reject)}function Sr(t){return t?Xt(t,"ms")?v(t):v(t)*1e3:0}function Tr(t){return C(document,"focusin",e=>{Zt(q)===t&&!T(e.target,t.$el)&&t.$el.focus()})}function Cr(t){return C(document,Lt,({target:e})=>{Zt(q)!==t||t.overlay&&!T(e,t.$el)||T(e,t.panel)||M(document,`${Rt} ${Pe} scroll`,({defaultPrevented:i,type:n,target:s})=>{!i&&n===Rt&&e===s&&t.hide()},!0)})}function Er(t){return C(document,"keydown",e=>{e.keyCode===27&&Zt(q)===t&&t.hide()})}var Or={install:Pr,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(){S(this.panel,"uk-margin-auto-vertical")?k(this.$el,"uk-flex"):c(this.$el,"display","block"),ot(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),R(this.$el,"uk-flex")}}]};function Pr({modal:t}){t.dialog=function(i,n){const s=t(`<div class="uk-modal"> <div class="uk-modal-dialog">${i}</div> </div>`,n);return s.show(),C(s.$el,"hidden",async()=>{await Promise.resolve(),s.$destroy(!0)},{self:!0}),s},t.alert=function(i,n){return e(({i18n:s})=>`<div class="uk-modal-body">${y(i)?i:_e(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>${s.ok}</button> </div>`,n,s=>s.resolve())},t.confirm=function(i,n){return e(({i18n:s})=>`<form> <div class="uk-modal-body">${y(i)?i:_e(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${s.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${s.ok}</button> </div> </form>`,n,s=>s.reject())},t.prompt=function(i,n,s){return e(({i18n:o})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${y(i)?i:_e(i)}</label> <input class="uk-input" value="${n||""}" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${o.cancel}</button> <button class="uk-button uk-button-primary">${o.ok}</button> </div> </form>`,s,o=>o.resolve(null),o=>m("input",o.$el).value)},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,n,s,o){n={bgClose:!1,escClose:!0,role:"alertdialog",...n,i18n:{...t.i18n,...n.i18n}};const r=t.dialog(i(n),n),a=new Fi;let l=!1;return C(r.$el,"submit","form",h=>{h.preventDefault(),a.resolve(o==null?void 0:o(r)),l=!0,r.hide()}),C(r.$el,"hide",()=>!l&&s(a)),a.promise.dialog=r,a.promise}}var Br={extends:Cn,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},Ar={extends:Bn,data:{dropdown:".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",clsDrop:"uk-navbar-dropdown"},computed:{items:{get({dropdown:t},e){return P(t,e)},watch(t){const e=S(this.$el,"uk-navbar-justify");for(const i of P(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el))c(i,"flexGrow",e?P(this.dropdown,i).length:"");f(P(".uk-navbar-nav",this.$el),"role","group"),f(P(".uk-navbar-nav > *",this.$el),"role","presentation"),f(t,{tabindex:-1,role:"menuitem"}),f(t[0],"tabindex",0)},immediate:!0}}},Xn={props:{swiping:Boolean},data:{swiping:!0},computed:{swipeTarget(t,e){return e}},connected(){this.swiping&&Ne(this,{el:this.swipeTarget,name:Lt,passive:!0,handler(t){if(!Mt(t))return;const e=ke(t),i="tagName"in t.target?t.target:O(t.target);M(document,`${Rt} ${Pe} scroll`,n=>{const{x:s,y:o}=ke(n);(n.type!=="scroll"&&i&&s&&Math.abs(e.x-s)>100||o&&Math.abs(e.y-o)>100)&&setTimeout(()=>{x(i,"swipe"),x(i,`swipe${Dr(e.x,e.y,s,o)}`)})})}})}};function Dr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}var Mr={mixins:[Yn,Xn],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({flip:t,clsFlip:e}){return t?e:""},clsOverlay({overlay:t,clsOverlay:e}){return t?e:""},clsMode({mode:t,clsMode:e}){return`${e}-${t}`},clsSidebarAnimation({mode:t,clsSidebarAnimation:e}){return t==="none"||t==="reveal"?"":e},clsContainerAnimation({mode:t,clsContainerAnimation:e}){return t!=="push"&&t!=="reveal"?"":e},transitionElement({mode:t}){return t==="reveal"?O(this.panel):this.panel}},update:{read(){this.isToggled()&&!L(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!S(O(this.panel),this.clsMode)&&(Ce(this.panel,"<div>"),k(O(this.panel),this.clsMode));const{body:t,scrollingElement:e}=document;k(t,this.clsContainer,this.clsFlip),c(t,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),k(this.$el,this.clsOverlay),k(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),ot(t),k(t,this.clsContainerAnimation),this.clsContainerAnimation&&Nr()}},{name:"hide",self:!0,handler(){R(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&zr(),this.mode==="reveal"&&se(this.panel),R(this.panel,this.clsSidebarAnimation,this.clsMode),R(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),R(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Xt(t.type,"Left")^this.flip&&this.hide()}}]};function Nr(){Jn().content+=",user-scalable=0"}function zr(){const t=Jn();t.content=t.content.replace(/,user-scalable=0$/,"")}function Jn(){return m('meta[name="viewport"]',document.head)||it(document.head,'<meta name="viewport">')}var Hr={mixins:[at,mt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container({selContainer:t},e){return W(e,t)},content({selContent:t},e){return W(e,t)}},resizeTargets(){return[this.container,this.content]},update:{read(){return!this.content||!this.container||!L(this.$el)?!1:{max:Math.max(this.minHeight,ot(this.container)-(Y(this.content).height-ot(this.$el)))}},write({max:t}){c(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},Fr={mixins:[mt],props:["width","height"],resizeTargets(){return[this.$el,O(this.$el)]},connected(){k(this.$el,"uk-responsive-width")},update:{read(){return L(this.$el)&&this.width&&this.height?{width:oe(O(this.$el)),height:this.height}:!1},write(t){ot(this.$el,ni.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Lr={props:{offset:Number},data:{offset:0},connected(){Rr(this)},disconnected(){Ir(this)},methods:{async scrollTo(t){t=t&&m(t)||document.body,x(this.$el,"beforescroll",[this,t])&&(await fn(t,{offset:this.offset}),x(this.$el,"scrolled",[this,t]))}}};const pe=new Set;function Rr(t){pe.size||C(document,"click",Kn),pe.add(t)}function Ir(t){pe.delete(t),pe.size||ci(document,"click",Kn)}function Kn(t){if(!t.defaultPrevented)for(const e of pe)T(t.target,e.$el)&&ue(e.$el)&&(t.preventDefault(),e.scrollTo(Tn(e.$el)))}var Wr={mixins:[Ei],args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get({target:t},e){return t?P(t,e):[e]},watch(t,e){this.hidden&&c(te(t,`:not(.${this.inViewClass})`),"opacity",0),Ze(t,e)||this.$reset()},immediate:!0}},connected(){this._data.elements=new Map,this.registerObserver(It(this.elements,t=>{const e=this._data.elements;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:At(i,"uk-scrollspy-class")||this.cls});const s=e.get(i);!this.repeat&&s.show||(s.show=n)}this.$emit()},{rootMargin:this.margin},!1))},disconnected(){for(const[t,e]of this._data.elements.entries())R(t,this.inViewClass,(e==null?void 0:e.cls)||"")},update:[{write(t){for(const[e,i]of t.elements.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i;const n=this._data.elements.get(t);if(n){if((i=n.off)==null||i.call(n),c(t,"opacity",!e&&this.hidden?0:""),V(t,this.inViewClass,e),V(t,n.cls),/\buk-animation-/.test(n.cls)){const s=()=>di(t,"uk-animation-[\\w-]+");e?n.off=M(t,"animationcancel animationend",s):s()}x(t,e?"inview":"outview"),n.inview=e,this.$update(t)}}}},jr={mixins:[Ei],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&&ue(i))},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},elements({closest:t}){return W(this.links,t||"*")}},update:[{read(){const t=this.links.map(Tn).filter(Boolean),{length:e}=t;if(!e||!L(this.$el))return!1;const[i]=rt(t,!0),{scrollTop:n,scrollHeight:s}=i,o=K(i),r=s-o.height;let a=!1;if(n===r)a=e-1;else{for(let l=0;l<t.length&&!($(t[l]).top-o.top-this.offset>0);l++)a=+l;a===!1&&this.overflow&&(a=0)}return{active:a}},write({active:t}){const e=t!==!1&&!S(this.elements[t],this.cls);this.links.forEach(i=>i.blur());for(let i=0;i<this.elements.length;i++)V(this.elements[i],this.cls,+i===t);e&&x(this.$el,"active",[t,this.elements[t]])},events:["scroll","resize"]}]},qr={mixins:[at,Bi,mt,Ei],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{selTarget({selTarget:t},e){return t&&m(t,e)||e}},resizeTargets(){return document.documentElement},connected(){this.start=Zn(this.start||this.top),this.end=Zn(this.end||this.bottom),this.placeholder=m("+ .uk-sticky-placeholder",this.$el)||m('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1),this.registerObserver(ce(this.$el,()=>!this.isFixed&&this.$emit("resize")))},disconnected(){this.isFixed&&(this.hide(),R(this.selTarget,this.clsInactive)),Qn(this.$el),xt(this.placeholder),this.placeholder=null},events:[{name:"resize",el(){return[window,window.visualViewport]},handler(){this.$emit("resizeViewport")}},{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=$(m(location.hash)),i=$(this.$el);this.isFixed&&ti(e,i)&&(t.scrollTop=e.top-i.height-ut(this.targetOffset,"height",this.placeholder)-ut(this.offset,"height",this.placeholder))})}}],update:[{read({height:t,width:e,margin:i,sticky:n},s){if(this.inactive=!this.matchMedia||!L(this.$el),this.inactive)return;const o=this.isFixed&&s.has("resize")&&!n;o&&(c(this.selTarget,"transition","0s"),this.hide()),this.active||({height:t,width:e}=$(this.$el),i=c(this.$el,"margin")),o&&(this.show(),requestAnimationFrame(()=>c(this.selTarget,"transition","")));const r=ut("100vh","height"),a=ot(window),l=document.scrollingElement.scrollHeight-r;let h=this.position;this.overflowFlip&&t>r&&(h=h==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let p=ut(this.offset,"height",n?this.$el:u);h==="bottom"&&(t<a||this.overflowFlip)&&(p+=a-t);const w=this.overflowFlip?0:Math.max(0,t+p-r),b=$(u).top,A=$(this.$el).height,N=(this.start===!1?b:Ai(this.start,this.$el,b))-p,D=this.end===!1?l:Math.min(l,Ai(this.end,this.$el,b+t,!0)-A-p+w);return n=l&&!this.showOnUp&&N+p===b&&D===Math.min(l,Ai("!*",this.$el,0,!0)-A-p+w)&&c(O(this.$el),"overflowY")==="visible",{start:N,end:D,offset:p,overflow:w,topOffset:b,height:t,elHeight:A,width:e,margin:i,top:_t(u)[0],sticky:n}},write({height:t,width:e,margin:i,offset:n,sticky:s}){if((this.inactive||s||!this.isFixed)&&Qn(this.$el),this.inactive)return;s&&(t=e=i=0,c(this.$el,{position:"sticky",top:n}));const{placeholder:o}=this;c(o,{height:t,width:e,margin:i}),T(o,document)||(o.hidden=!0),(s?mi:Se)(this.$el,o)},events:["resize","resizeViewport"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:n=0,start:s,end:o}){const r=document.scrollingElement.scrollTop;return{dir:t<=r?"down":"up",prevDir:e,scroll:r,prevScroll:t,offsetParentTop:$((this.isFixed?this.placeholder:this.$el).offsetParent).top,overflowScroll:ct(n+ct(r,s,o)-ct(t,s,o),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:s,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:h,topOffset:u,height:p}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const w=Date.now();if((w-n>300||s!==o)&&(t.initScroll=r,t.initTimestamp=w),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||s==="down"&&i||s==="up"&&!this.isFixed&&r<=u+p)){if(!this.isFixed){et.inProgress(this.$el)&&l>r&&(et.cancel(this.$el),this.hide());return}this.animation&&r>u?(et.cancel(this.$el),et.out(this.$el,this.animation).then(()=>this.hide(),yt)):this.hide()}else this.isFixed?this.update():this.animation&&r>u?(et.cancel(this.$el),this.show(),et.in(this.$el,this.animation).catch(yt)):this.show()},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),R(this.$el,this.clsFixed,this.clsBelow),e?c(this.$el,"top",t):c(this.$el,{position:"",top:"",width:"",marginTop:""}),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:s,end:o,offset:r,topOffset:a,height:l,elHeight:h,offsetParentTop:u,sticky:p}=this._data;const w=s!==0||e>s;if(!p){let b="fixed";e>o&&(r+=o-u,b="absolute"),c(this.$el,{position:b,width:t}),c(this.$el,"marginTop",0,"important")}i&&(r-=n),c(this.$el,"top",r),this.setActive(w),V(this.$el,this.clsBelow,e>a+(p?Math.min(l,h):l)),k(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(pi(this.selTarget,this.clsInactive,this.clsActive),e!==t&&x(this.$el,"active")):(pi(this.selTarget,this.clsActive,this.clsInactive),e!==t&&x(this.$el,"inactive"))}}};function Ai(t,e,i,n){if(!t)return 0;if(bt(t)||y(t)&&t.match(/^-?\d/))return i+ut(t,"height",e,!0);{const s=t===!0?O(e):st(t,e);return $(s).bottom-(n&&s&&T(e,s)?v(c(s,"paddingBottom")):0)}}function Zn(t){return t==="true"?!0:t==="false"?!1:t}function Qn(t){c(t,{position:"",top:"",marginTop:"",width:""})}const Di=".uk-disabled *, .uk-disabled, [disabled]";var Un={mixins:[ze,Xn,qt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1},computed:{connects:{get({connect:t},e){return ee(t,e)},watch(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom"),this.$emit()},document:!0,immediate:!0},connectChildren:{get(){return this.connects.map(t=>tt(t)).flat()},watch(){const t=this.index();for(const e of this.connects)tt(e).forEach((i,n)=>V(i,this.cls,n===t)),this.lazyload(this.$el,tt(e));this.$emit()},immediate:!0},toggles:{get({toggle:t},e){return P(t,e)},watch(t){this.$emit();const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return tt(this.$el).filter(t=>this.toggles.some(e=>T(e,t)))},swipeTarget(){return this.connects}},connected(){f(this.$el,"role","tablist")},events:[{name:"click keydown",delegate(){return this.toggle},handler(t){!_(t.current,Di)&&(t.type==="click"||t.keyCode===B.SPACE)&&(t.preventDefault(),this.show(t.current))}},{name:"keydown",delegate(){return this.toggle},handler(t){const{current:e,keyCode:i}=t,n=_(this.$el,this.selVertical);let s=i===B.HOME?0:i===B.END?"last":i===B.LEFT&&!n||i===B.UP&&n?"previous":i===B.RIGHT&&!n||i===B.DOWN&&n?"next":-1;if(~s){t.preventDefault();const o=this.toggles.filter(a=>!_(a,Di)),r=o[dt(s,o,o.indexOf(e))];r.focus(),this.followFocus&&this.show(r)}}},{name:"click",el(){return this.connects.concat(this.itemNav?ee(this.itemNav,this.$el):[])},delegate(){return`[${this.attrItem}],[data-${this.attrItem}]`},handler(t){W(t.target,"a,button")&&(t.preventDefault(),this.show(At(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler({type:t}){this.show(Xt(t,"Left")?"next":"previous")}}],update(){var t;f(this.connects,"role","presentation"),f(tt(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],n=(t=this.connects[0])==null?void 0:t.children[e];f(i,"role","tab"),n&&(i.id=fe(this,i,`-tab-${e}`),n.id=fe(this,n,`-tabpanel-${e}`),f(i,"aria-controls",n.id),f(n,{role:"tabpanel","aria-labelledby":i.id}))}f(this.$el,"aria-orientation",_(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return ve(this.children,t=>S(t,this.cls))},show(t){const e=this.toggles.filter(r=>!_(r,Di)),i=this.index(),n=dt(!be(t)||d(e,t)?t:0,e,dt(this.toggles[i],e)),s=dt(e[n],this.toggles);this.children.forEach((r,a)=>{V(r,this.cls,s===a),f(this.toggles[a],{"aria-selected":s===a,tabindex:s===a?null:-1})});const o=i>=0&&i!==n;this.connects.forEach(async({children:r})=>{await this.toggleElement(g(r).filter(a=>S(a,this.cls)),!1,o),await this.toggleElement(r[s],!0,o)})}}},Vr={mixins:[at],extends:Un,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=S(this.$el,"uk-tab-left")?"uk-tab-left":S(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Yr=32;var Gr={mixins:[ze,Bi,qt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target({href:t,target:e},i){return e=ee(e||t,i),e.length&&e||[i]}},connected(){d(this.mode,"media")||(oi(this.$el)||f(this.$el,"tabindex","0"),!this.cls&&j(this.$el,"a")&&f(this.$el,"role","button")),this.lazyload(this.$el,()=>this.target)},events:[{name:Lt,filter(){return d(this.mode,"hover")},handler(t){this._preventClick=null,!(!Mt(t)||this._showState||this.$el.disabled)&&(x(this.$el,"focus"),M(document,Lt,()=>x(this.$el,"blur"),!0,e=>!T(e.target,this.$el)),d(this.mode,"click")&&(this._preventClick=!0))}},{name:`${Ee} ${Oe} focus blur`,filter(){return d(this.mode,"hover")},handler(t){if(Mt(t)||this.$el.disabled)return;const e=d([Ee,"focus"],t.type),i=this.isToggled(this.target);if(!(!e&&(t.type===Oe&&_(this.$el,":focus")||t.type==="blur"&&_(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 d(this.mode,"click")&&!j(this.$el,"input")},handler(t){t.keyCode===Yr&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return["click","hover"].some(t=>d(this.mode,t))},handler(t){let e;(this._preventClick||W(t.target,'a[href="#"], a[href=""]')||(e=W(t.target,"a[href]"))&&(!this.isToggled(this.target)||e.hash&&_(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&d(this.mode,"click")&&this.toggle()}},{name:"mediachange",filter(){return d(this.mode,"media")},el(){return this.target},handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!x(this.target,t||"toggle",[this]))return;if(ht(this.$el,"aria-expanded")&&f(this.$el,"aria-expanded",!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>S(n,this.clsLeave));if(e.length){for(const n of this.target){const s=d(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=>!d(i,n)),!0)}}},Xr=Object.freeze({__proto__:null,Accordion:Cn,Alert:uo,Close:lr,Cover:po,Drop:Pn,DropParentIcon:Tt,Dropdown:Pn,Dropnav:Bn,FormCustom:_o,Grid:To,HeightMatch:Oo,HeightViewport:Ao,Icon:Oi,Img:vr,Leader:_r,Margin:Mn,Marker:cr,Modal:Or,Nav:Br,NavParentIcon:sr,Navbar:Ar,NavbarParentIcon:Tt,NavbarToggleIcon:ar,Offcanvas:Mr,OverflowAuto:Hr,OverlayIcon:Tt,PaginationNext:ur,PaginationPrevious:fr,Responsive:Fr,Scroll:Lr,Scrollspy:Wr,ScrollspyNav:jr,SearchIcon:or,SlidenavNext:qn,SlidenavPrevious:qn,Spinner:rr,Sticky:qr,Svg:Rn,Switcher:Un,Tab:Vr,Toggle:Gr,Totop:hr,Video:En});return $t(Xr,(t,e)=>X.component(e,t)),so(X),X});
1
+ /*! UIkit 3.16.5-dev.dda1f1b31 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */(function(Yt,Gt){typeof exports=="object"&&typeof module<"u"?module.exports=Gt():typeof define=="function"&&define.amd?define("uikit",Gt):(Yt=typeof globalThis<"u"?globalThis:Yt||self,Yt.UIkit=Gt())})(this,function(){"use strict";const{hasOwnProperty:Yt,toString:Gt}=Object.prototype;function pt(t,e){return Yt.call(t,e)}const $o=/\B([A-Z])/g,Pt=tt(t=>t.replace($o,"-$1").toLowerCase()),yo=/-(\w)/g,Xt=tt(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(yo,(e,i)=>i.toUpperCase())),wt=tt(t=>t.charAt(0).toUpperCase()+t.slice(1));function J(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function Jt(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function d(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function we(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:z,from:Vi}=Array,{assign:Ge}=Object;function L(t){return typeof t=="function"}function gt(t){return t!==null&&typeof t=="object"}function ct(t){return Gt.call(t)==="[object Object]"}function Bt(t){return gt(t)&&t===t.window}function be(t){return Xe(t)===9}function $e(t){return Xe(t)>=1}function Kt(t){return Xe(t)===1}function Xe(t){return!Bt(t)&&gt(t)&&t.nodeType}function Je(t){return typeof t=="boolean"}function b(t){return typeof t=="string"}function Ke(t){return typeof t=="number"}function bt(t){return Ke(t)||b(t)&&!isNaN(t-parseFloat(t))}function Ze(t){return!(z(t)?t.length:gt(t)&&Object.keys(t).length)}function W(t){return t===void 0}function Qe(t){return Je(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Zt(t){const e=Number(t);return isNaN(e)?!1:e}function v(t){return parseFloat(t)||0}function T(t){return g(t)[0]}function g(t){return $e(t)?[t]:Array.from(t||[]).filter($e)}function At(t){if(Bt(t))return t;t=T(t);const e=be(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function ti(t,e){return t===e||gt(t)&&gt(e)&&Object.keys(t).length===Object.keys(e).length&&$t(t,(i,n)=>i===e[n])}function ei(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),n=>n===e?i:e)}function Qt(t){return t[t.length-1]}function $t(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function ii(t,e){return t.slice().sort(({[e]:i=0},{[e]:n=0})=>i>n?1:n>i?-1:0)}function te(t,e){return t.reduce((i,n)=>i+v(L(e)?e(n):n[e]),0)}function xo(t,e){const i=new Set;return t.filter(({[e]:n})=>i.has(n)?!1:i.add(n))}function ni(t,e){return e.reduce((i,n)=>({...i,[n]:t[n]}),{})}function ht(t,e=0,i=1){return Math.min(Math.max(Zt(t)||0,e),i)}function Q(){}function oi(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:n})=>n))-Math.max(...t.map(({[i]:n})=>n))>0)}function si(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function ri(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function Yi(t,e){t={...t};for(const i in t)t=t[i]>e[i]?ri(t,i,e[i]):t;return t}function ko(t,e){t=Yi(t,e);for(const i in t)t=t[i]<e[i]?ri(t,i,e[i]):t;return t}const ai={ratio:ri,contain:Yi,cover:ko};function mt(t,e,i=0,n=!1){e=g(e);const{length:o}=e;return o?(t=bt(t)?Zt(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?o-1:e.indexOf(T(t)),n?ht(t,0,o-1):(t%=o,t<0?t+o:t)):-1}function tt(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class Gi{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function f(t,e,i){var n;if(gt(e)){for(const o in e)f(t,o,e[o]);return}if(W(i))return(n=T(t))==null?void 0:n.getAttribute(e);for(const o of g(t))L(i)&&(i=i.call(o,f(o,e))),i===null?ee(o,e):o.setAttribute(e,i)}function ut(t,e){return g(t).some(i=>i.hasAttribute(e))}function ee(t,e){g(t).forEach(i=>i.removeAttribute(e))}function Mt(t,e){for(const i of[e,`data-${e}`])if(ut(t,i))return f(t,i)}const So={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function li(t){return g(t).some(e=>So[e.tagName.toLowerCase()])}function R(t){return g(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ye="input,select,textarea,button";function Xi(t){return g(t).some(e=>E(e,ye))}const xe=`${ye},a[href],[tabindex]`;function ci(t){return E(t,xe)}function P(t){var e;return(e=T(t))==null?void 0:e.parentElement}function ie(t,e){return g(t).filter(i=>E(i,e))}function E(t,e){return g(t).some(i=>i.matches(e))}function U(t,e){return Kt(t)?t.closest(J(e,">")?e.slice(1):e):g(t).map(i=>U(i,e)).filter(Boolean)}function _(t,e){return b(e)?!!U(t,e):T(e).contains(T(t))}function Dt(t,e){const i=[];for(;t=P(t);)(!e||E(t,e))&&i.push(t);return i}function st(t,e){t=T(t);const i=t?g(t.children):[];return e?ie(i,e):i}function hi(t,e){return e?g(t).indexOf(T(e)):st(P(t)).indexOf(t)}function Nt(t){return t=T(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function ui(t){if(Nt(t)){t=T(t);const e=decodeURIComponent(t.hash).substring(1);return document.getElementById(e)||document.getElementsByName(e)[0]}}function et(t,e){return fi(t,Ki(t,e))}function ne(t,e){return oe(t,Ki(t,e))}function fi(t,e){return T(Zi(t,T(e),"querySelector"))}function oe(t,e){return g(Zi(t,T(e),"querySelectorAll"))}const Eo=/(^|[^\\],)\s*[!>+~-]/,Ji=tt(t=>t.match(Eo));function Ki(t,e=document){return b(t)&&Ji(t)||be(e)?e:e.ownerDocument}const Co=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,To=tt(t=>t.replace(Co,"$1 *"));function Zi(t,e=document,i){if(!t||!b(t))return t;if(t=To(t),Ji(t)){const n=Oo(t);t="";for(let o of n){let s=e;if(o[0]==="!"){const r=o.substr(1).trim().split(" ");if(s=U(P(e),r[0]),o=r.slice(1).join(" ").trim(),!o.length&&n.length===1)return s}if(o[0]==="-"){const r=o.substr(1).trim().split(" "),a=(s||e).previousElementSibling;s=E(a,o.substr(1))?a:null,o=r.slice(1).join(" ")}s&&(t+=`${t?",":""}${Po(s)} ${o}`)}e=document}try{return e[i](t)}catch{return null}}const _o=/.*?[^\\](?:,|$)/g,Oo=tt(t=>t.match(_o).map(e=>e.replace(/,$/,"").trim()));function Po(t){const e=[];for(;t.parentNode;){const i=f(t,"id");if(i){e.unshift(`#${di(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${hi(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function di(t){return b(t)?CSS.escape(t):""}function O(...t){let[e,i,n,o,s=!1]=gi(t);o.length>1&&(o=Ao(o)),s!=null&&s.self&&(o=Mo(o)),n&&(o=Bo(n,o));for(const r of i)for(const a of e)a.addEventListener(r,o,s);return()=>pi(e,i,o,s)}function pi(...t){let[e,i,,n,o=!1]=gi(t);for(const s of i)for(const r of e)r.removeEventListener(s,n,o)}function N(...t){const[e,i,n,o,s=!1,r]=gi(t),a=O(e,i,n,l=>{const h=!r||r(l);h&&(a(),o(l,h))},s);return a}function y(t,e,i){return mi(t).every(n=>n.dispatchEvent(ke(e,!0,!0,i)))}function ke(t,e=!0,i=!1,n){return b(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function gi(t){return t[0]=mi(t[0]),b(t[1])&&(t[1]=t[1].split(" ")),L(t[2])&&t.splice(2,0,!1),t}function Bo(t,e){return i=>{const n=t[0]===">"?oe(t,i.currentTarget).reverse().filter(o=>_(i.target,o))[0]:U(i.target,t);n&&(i.current=n,e.call(this,i),delete i.current)}}function Ao(t){return e=>z(e.detail)?t(e,...e.detail):t(e)}function Mo(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Qi(t){return t&&"addEventListener"in t}function Do(t){return Qi(t)?t:T(t)}function mi(t){return z(t)?t.map(Do).filter(Boolean):b(t)?oe(t):Qi(t)?[t]:g(t)}function It(t){return t.pointerType==="touch"||!!t.touches}function Se(t){var e,i;const{clientX:n,clientY:o}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:o}}const No={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){const o=g(t);for(const s of o)if(b(e)){if(e=vi(e),W(i))return getComputedStyle(s).getPropertyValue(e);s.style.setProperty(e,bt(i)&&!No[e]?`${i}px`:i||Ke(i)?i:"",n)}else if(z(e)){const r={};for(const a of e)r[a]=c(s,a);return r}else gt(e)&&(n=i,$t(e,(r,a)=>c(s,a,r,n)));return o[0]}const vi=tt(t=>Io(t));function Io(t){if(J(t,"--"))return t;t=Pt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n=`-${i}-${t}`;if(n in e)return n}}function x(t,...e){tn(t,e,"add")}function j(t,...e){tn(t,e,"remove")}function wi(t,e){f(t,"class",i=>(i||"").replace(new RegExp(`\\b${e}\\b\\s?`,"g"),""))}function bi(t,...e){e[0]&&j(t,e[0]),e[1]&&x(t,e[1])}function C(t,e){return[e]=$i(e),!!e&&g(t).some(i=>i.classList.contains(e))}function Y(t,e,i){const n=$i(e);W(i)||(i=!!i);for(const o of g(t))for(const s of n)o.classList.toggle(s,i)}function tn(t,e,i){e=e.reduce((n,o)=>n.concat($i(o)),[]);for(const n of g(t))n.classList[i](...e)}function $i(t){return String(t).split(/[ ,]/).filter(Boolean)}function Fo(t,e,i=400,n="linear"){return i=Math.round(i),Promise.all(g(t).map(o=>new Promise((s,r)=>{for(const l in e){const h=c(o,l);h===""&&c(o,l,h)}const a=setTimeout(()=>y(o,"transitionend"),i);N(o,"transitionend transitioncanceled",({type:l})=>{clearTimeout(a),j(o,"uk-transition"),c(o,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),l==="transitioncanceled"?r():s(o)},{self:!0}),x(o,"uk-transition"),c(o,{transitionProperty:Object.keys(e).map(vi).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:n,...e})})))}const K={start:Fo,async stop(t){y(t,"transitionend"),await Promise.resolve()},async cancel(t){y(t,"transitioncanceled"),await Promise.resolve()},inProgress(t){return C(t,"uk-transition")}},se="uk-animation-";function en(t,e,i=200,n,o){return Promise.all(g(t).map(s=>new Promise((r,a)=>{y(s,"animationcanceled");const l=setTimeout(()=>y(s,"animationend"),i);N(s,"animationend animationcanceled",({type:h})=>{clearTimeout(l),h==="animationcanceled"?a():r(s),c(s,"animationDuration",""),wi(s,`${se}\\S*`)},{self:!0}),c(s,"animationDuration",`${i}ms`),x(s,e,se+(o?"leave":"enter")),J(e,se)&&(n&&x(s,`uk-transform-origin-${n}`),o&&x(s,`${se}reverse`))})))}const Ho=new RegExp(`${se}(enter|leave)`),it={in:en,out(t,e,i,n){return en(t,e,i,n,!0)},inProgress(t){return Ho.test(f(t,"class"))},cancel(t){y(t,"animationcanceled")}};function zo(t){if(document.readyState!=="loading"){t();return}N(document,"DOMContentLoaded",t)}function q(t,...e){return e.some(i=>{var n;return((n=t==null?void 0:t.tagName)==null?void 0:n.toLowerCase())===i.toLowerCase()})}function nn(t){return t=m(t),t.innerHTML="",t}function Ee(t,e){return W(e)?m(t).innerHTML:nt(nn(t),e)}const Lo=Te("prepend"),nt=Te("append"),yi=Te("before"),Ce=Te("after");function Te(t){return function(e,i){var n;const o=g(b(i)?Ft(i):i);return(n=m(e))==null||n[t](...o),on(o)}}function yt(t){g(t).forEach(e=>e.remove())}function _e(t,e){for(e=T(yi(t,e));e.firstChild;)e=e.firstChild;return nt(e,t),e}function xi(t,e){return g(g(t).map(i=>i.hasChildNodes()?_e(g(i.childNodes),e):nt(i,e)))}function re(t){g(t).map(P).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const Ro=/^\s*<(\w+|!)[^>]*>/,jo=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Ft(t){const e=jo.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return Ro.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,on(i.childNodes)}function on(t){return t.length>1?t:t[0]}function vt(t,e){if(Kt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;vt(t,e),t=i}}function m(t,e){return sn(t)?T(Ft(t)):fi(t,e)}function B(t,e){return sn(t)?g(Ft(t)):oe(t,e)}function sn(t){return b(t)&&J(t.trim(),"<")}const xt={width:["left","right"],height:["top","bottom"]};function G(t){const e=Kt(t)?T(t).getBoundingClientRect():{height:rt(t),width:ae(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 $(t,e){const i=G(t);if(t){const{scrollY:o,scrollX:s}=At(t),r={height:o,width:s};for(const a in xt)for(const l of xt[a])i[l]+=r[a]}if(!e)return i;const n=c(t,"position");$t(c(t,["left","top"]),(o,s)=>c(t,s,e[s]-i[s]+v(n==="absolute"&&o==="auto"?rn(t)[s]:o)))}function rn(t){let{top:e,left:i}=$(t);const{ownerDocument:{body:n,documentElement:o},offsetParent:s}=T(t);let r=s||o;for(;r&&(r===n||r===o)&&c(r,"position")==="static";)r=r.parentNode;if(Kt(r)){const a=$(r);e-=a.top+v(c(r,"borderTopWidth")),i-=a.left+v(c(r,"borderLeftWidth"))}return{top:e-v(c(t,"marginTop")),left:i-v(c(t,"marginLeft"))}}function kt(t){t=T(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+v(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+v(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=At(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const rt=an("height"),ae=an("width");function an(t){const e=wt(t);return(i,n)=>{if(W(n)){if(Bt(i))return i[`inner${e}`];if(be(i)){const o=i.documentElement;return Math.max(o[`offset${e}`],o[`scroll${e}`])}return i=T(i),n=c(i,t),n=n==="auto"?i[`offset${e}`]:v(n)||0,n-le(i,t)}else return c(i,t,!n&&n!==0?"":+n+le(i,t)+"px")}}function le(t,e,i="border-box"){return c(t,"boxSizing")===i?te(xt[e].map(wt),n=>v(c(t,`padding${n}`))+v(c(t,`border${n}Width`))):0}function ln(t){for(const e in xt)for(const i in xt[e])if(xt[e][i]===t)return xt[e][1-i];return t}function ft(t,e="width",i=window,n=!1){return b(t)?te(Uo(t),o=>{const s=Vo(o);return s?Yo(s==="vh"?Go():s==="vw"?ae(At(i)):n?i[`offset${wt(e)}`]:G(i)[e],o):o}):v(t)}const Wo=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,Uo=tt(t=>t.toString().replace(/\s/g,"").match(Wo)||[]),qo=/(?:v[hw]|%)$/,Vo=tt(t=>(t.match(qo)||[])[0]);function Yo(t,e){return t*v(e)/100}let ce,Ht;function Go(){return ce||(Ht||(Ht=m("<div>"),c(Ht,{height:"100vh",position:"fixed"}),O(window,"resize",()=>ce=null)),nt(document.body,Ht),ce=Ht.clientHeight,yt(Ht),ce)}const St=typeof window<"u",he=St&&document.dir==="rtl",zt=St&&"ontouchstart"in window,Lt=St&&window.PointerEvent,Rt=Lt?"pointerdown":zt?"touchstart":"mousedown",Xo=Lt?"pointermove":zt?"touchmove":"mousemove",jt=Lt?"pointerup":zt?"touchend":"mouseup",Oe=Lt?"pointerenter":zt?"":"mouseenter",Pe=Lt?"pointerleave":zt?"":"mouseleave",Be=Lt?"pointercancel":"touchcancel",ot={reads:[],writes:[],read(t){return this.reads.push(t),Si(),t},write(t){return this.writes.push(t),Si(),t},clear(t){hn(this.reads,t),hn(this.writes,t)},flush:ki};function ki(t){cn(ot.reads),cn(ot.writes.splice(0)),ot.scheduled=!1,(ot.reads.length||ot.writes.length)&&Si(t+1)}const Jo=4;function Si(t){ot.scheduled||(ot.scheduled=!0,t&&t<Jo?Promise.resolve().then(()=>ki(t)):requestAnimationFrame(()=>ki(1)))}function cn(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function hn(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function Ei(){}Ei.prototype={positions:[],init(){this.positions=[];let t;this.unbind=O(document,"mousemove",e=>t=Se(e)),this.interval=setInterval(()=>{t&&(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){var t;(t=this.unbind)==null||t.call(this),clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:n,top:o,bottom:s}=e,[r]=this.positions,a=Qt(this.positions),l=[r,a];return si(a,e)?!1:[[{x:i,y:o},{x:n,y:s}],[{x:i,y:s},{x:n,y:o}]].some(u=>{const p=Ko(l,u);return p&&si(p,e)})}};function Ko([{x:t,y:e},{x:i,y:n}],[{x:o,y:s},{x:r,y:a}]){const l=(a-s)*(i-t)-(r-o)*(n-e);if(l===0)return!1;const h=((r-o)*(e-s)-(a-s)*(t-o))/l;return h<0?!1:{x:t+h*(i-t),y:e+h*(n-e)}}function Ci(t,e,i={},n=!0){const o=new IntersectionObserver(n?(s,r)=>{s.some(a=>a.isIntersecting)&&e(s,r)}:e,i);for(const s of g(t))o.observe(s);return o}const Zo=St&&window.ResizeObserver;function Ae(t,e,i={box:"border-box"}){return Zo?fn(ResizeObserver,t,e,i):(Qo(),ue.add(e),{observe:Q,unobserve:Q,disconnect(){ue.delete(e)}})}let ue;function Qo(){if(ue)return;ue=new Set;let t;const e=()=>{if(!t){t=!0,requestAnimationFrame(()=>t=!1);for(const i of ue)i()}};O(window,"load resize",e),O(document,"loadedmetadata load",e,!0)}function un(t,e,i){return fn(MutationObserver,t,e,i)}function fn(t,e,i,n){const o=new t(i);for(const s of g(e))o.observe(s,n);return o}function dn(t){if(De(t)&&Ti(t,{func:"playVideo",method:"play"}),Me(t))try{t.play().catch(Q)}catch{}}function pn(t){De(t)&&Ti(t,{func:"pauseVideo",method:"pause"}),Me(t)&&t.pause()}function gn(t){De(t)&&Ti(t,{func:"mute",method:"setVolume",value:0}),Me(t)&&(t.muted=!0)}function mn(t){return Me(t)||De(t)}function Me(t){return q(t,"video")}function De(t){return q(t,"iframe")&&(vn(t)||wn(t))}function vn(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function wn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Ti(t,e){await es(t),bn(t,e)}function bn(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const _i="_ukPlayer";let ts=0;function es(t){if(t[_i])return t[_i];const e=vn(t),i=wn(t),n=++ts;let o;return t[_i]=new Promise(s=>{e&&N(t,"load",()=>{const r=()=>bn(t,{event:"listening",id:n});o=setInterval(r,100),r()}),N(window,"message",s,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===n&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===n}catch{}}),t.src=`${t.src}${d(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${n}`}`}).then(()=>clearInterval(o))}function $n(t,e=0,i=0){return R(t)?oi(...Wt(t).map(n=>{const{top:o,left:s,bottom:r,right:a}=Z(n);return{top:o-e,left:s-i,bottom:r+e,right:a+i}}).concat($(t))):!1}function yn(t,{offset:e=0}={}){const i=R(t)?at(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:h,scrollHeight:u,offsetHeight:p}=a,k=Z(a),S=u-k.height,{height:M,top:F}=i[l-1]?Z(i[l-1]):$(t);let D=Math.ceil(F-k.top-e+h);return e>0&&p<M+e?D+=e:e=0,D>S?(e-=D-S,D=S):D<0&&(e-=D,D=0),()=>n(a,D-h).then(r)},()=>Promise.resolve())();function n(r,a){return new Promise(l=>{const h=r.scrollTop,u=o(Math.abs(a)),p=Date.now();(function k(){const S=s(ht((Date.now()-p)/u));r.scrollTop=h+a*S,S===1?l():requestAnimationFrame(k)})()})}function o(r){return 40*Math.pow(r,.375)}function s(r){return .5*(1-Math.cos(Math.PI*r))}}function xn(t,e=0,i=0){if(!R(t))return 0;const[n]=at(t,!0),{scrollHeight:o,scrollTop:s}=n,{height:r}=Z(n),a=o-r,l=kt(t)[0]-kt(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return ht((s-h)/(u-h))}function at(t,e=!1,i=[]){const n=kn(t);let o=Dt(t).reverse();o=o.slice(o.indexOf(n)+1);const s=we(o,r=>c(r,"position")==="fixed");return~s&&(o=o.slice(s)),[n].concat(o.filter(r=>c(r,"overflow").split(" ").some(a=>d(["auto","scroll",...i],a))&&(!e||r.scrollHeight>Z(r).height))).reverse()}function Wt(t){return at(t,!1,["hidden","clip"])}function Z(t){const e=At(t),{visualViewport:i,document:{documentElement:n}}=e;let o=t===kn(t)?e:t;if(Bt(o)&&i){let{height:r,width:a,scale:l,pageTop:h,pageLeft:u}=i;return r=Math.round(r*l),a=Math.round(a*l),{height:r,width:a,top:h,left:u,bottom:h+r,right:u+a}}let s=$(o);if(c(o,"display")==="inline")return s;for(let[r,a,l,h]of[["width","x","left","right"],["height","y","top","bottom"]])Bt(o)?o=n:s[l]+=v(c(o,`border-${l}-width`)),s[r]=s[a]=o[`client${wt(r)}`],s[h]=s[r]+s[l];return s}function kn(t){return At(t).document.scrollingElement}const X=[["width","x","left","right"],["height","y","top","bottom"]];function Sn(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},z(e)||(e=[e,e]),$(t,En(t,e,i))}function En(t,e,i){const n=Cn(t,e,i),{boundary:o,viewportOffset:s=0,placement:r}=i;let a=n;for(const[l,[h,,u,p]]of Object.entries(X)){const k=is(t,e[l],s,o,l);if(Ne(n,k,l))continue;let S=0;if(r[l]==="flip"){const M=i.attach.target[l];if(M===p&&n[p]<=k[p]||M===u&&n[u]>=k[u])continue;S=os(t,e,i,l)[u]-n[u];const F=ns(t,e[l],s,l);if(!Ne(Oi(n,S,l),F,l)){if(Ne(n,F,l))continue;if(i.recursion)return!1;const D=ss(t,e,i);if(D&&Ne(D,F,1-l))return D;continue}}else if(r[l]==="shift"){const M=$(e[l]),{offset:F}=i;S=ht(ht(n[u],k[u],k[p]-n[h]),M[u]-n[h]+F[l],M[p]-F[l])-n[u]}a=Oi(a,S,l)}return a}function Cn(t,e,i){let{attach:n,offset:o}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},s=$(t);for(const[r,[a,,l,h]]of Object.entries(X)){const u=n.target[r]===n.element[r]?Z(e[r]):$(e[r]);s=Oi(s,u[l]-s[l]+Tn(n.target[r],h,u[a])-Tn(n.element[r],h,s[a])+ +o[r],r)}return s}function Oi(t,e,i){const[,n,o,s]=X[i],r={...t};return r[o]=t[n]=t[o]+e,r[s]+=e,r}function Tn(t,e,i){return t==="center"?i/2:t===e?i:0}function is(t,e,i,n,o){let s=On(..._n(t,e).map(Z));return i&&(s[X[o][2]]+=i,s[X[o][3]]-=i),n&&(s=On(s,$(z(n)?n[o]:n))),s}function ns(t,e,i,n){const[o,s,r,a]=X[n],[l]=_n(t,e),h=Z(l);return["auto","scroll"].includes(c(l,`overflow-${s}`))&&(h[r]-=l[`scroll${wt(r)}`],h[a]=h[r]+l[`scroll${wt(o)}`]),h[r]+=i,h[a]-=i,h}function _n(t,e){return Wt(e).filter(i=>_(t,i))}function On(...t){let e={};for(const i of t)for(const[,,n,o]of X)e[n]=Math.max(e[n]||0,i[n]),e[o]=Math.min(...[e[o],i[o]].filter(Boolean));return e}function Ne(t,e,i){const[,,n,o]=X[i];return t[n]>=e[n]&&t[o]<=e[o]}function os(t,e,{offset:i,attach:n},o){return Cn(t,e,{attach:{element:Pn(n.element,o),target:Pn(n.target,o)},offset:rs(i,o)})}function ss(t,e,i){return En(t,e,{...i,attach:{element:i.attach.element.map(Bn).reverse(),target:i.attach.target.map(Bn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function Pn(t,e){const i=[...t],n=X[e].indexOf(t[e]);return~n&&(i[e]=X[e][1-n%2+2]),i}function Bn(t){for(let e=0;e<X.length;e++){const i=X[e].indexOf(t);if(~i)return X[1-e][i%2+2]}}function rs(t,e){return t=[...t],t[e]*=-1,t}var as=Object.freeze({__proto__:null,$:m,$$:B,Animation:it,Deferred:Gi,Dimensions:ai,MouseTracker:Ei,Transition:K,addClass:x,after:Ce,append:nt,apply:vt,assign:Ge,attr:f,before:yi,boxModelAdjust:le,camelize:Xt,children:st,clamp:ht,closest:U,createEvent:ke,css:c,data:Mt,dimensions:G,each:$t,empty:nn,endsWith:Jt,escape:di,fastdom:ot,filter:ie,find:fi,findAll:oe,findIndex:we,flipPosition:ln,fragment:Ft,getEventPos:Se,getIndex:mt,getTargetedElement:ui,hasAttr:ut,hasClass:C,hasOwn:pt,hasTouch:zt,height:rt,html:Ee,hyphenate:Pt,inBrowser:St,includes:d,index:hi,intersectRect:oi,isArray:z,isBoolean:Je,isDocument:be,isElement:Kt,isEmpty:Ze,isEqual:ti,isFocusable:ci,isFunction:L,isInView:$n,isInput:Xi,isNode:$e,isNumber:Ke,isNumeric:bt,isObject:gt,isPlainObject:ct,isRtl:he,isSameSiteAnchor:Nt,isString:b,isTag:q,isTouch:It,isUndefined:W,isVideo:mn,isVisible:R,isVoidElement:li,isWindow:Bt,last:Qt,matches:E,memoize:tt,mute:gn,noop:Q,observeIntersection:Ci,observeMutation:un,observeResize:Ae,off:pi,offset:$,offsetPosition:kt,offsetViewport:Z,on:O,once:N,overflowParents:Wt,parent:P,parents:Dt,pause:pn,pick:ni,play:dn,pointInRect:si,pointerCancel:Be,pointerDown:Rt,pointerEnter:Oe,pointerLeave:Pe,pointerMove:Xo,pointerUp:jt,position:rn,positionAt:Sn,prepend:Lo,propName:vi,query:et,queryAll:ne,ready:zo,remove:yt,removeAttr:ee,removeClass:j,removeClasses:wi,replaceClass:bi,scrollIntoView:yn,scrollParents:at,scrolledOver:xn,selFocusable:xe,selInput:ye,sortBy:ii,startsWith:J,sumBy:te,swap:ei,toArray:Vi,toBoolean:Qe,toEventTargets:mi,toFloat:v,toNode:T,toNodes:g,toNumber:Zt,toPx:ft,toWindow:At,toggleClass:Y,trigger:y,ucfirst:wt,uniqueBy:xo,unwrap:re,width:ae,within:_,wrapAll:_e,wrapInner:xi});function ls(t){t._observers=[],t._observerUpdates=new Map;for(const e of t.$options.observe||[])if(pt(e,"handler"))An(t,e);else for(const i in e)An(t,e[i],i)}function Ie(t,...e){t._observers.push(...e)}function cs(t){for(const e of t._observers)e==null||e.disconnect(),t._observerUpdates.delete(e)}function hs(t){for(const[e,i]of t._observerUpdates)i(e)}function An(t,e,i){let{observe:n,target:o=t.$el,handler:s,options:r,filter:a,args:l}=ct(e)?e:{type:i,handler:e};if(a&&!a.call(t,t))return;const h=L(o)?o.call(t,t):o;s=b(s)?t[s]:s.bind(t),L(r)&&(r=r.call(t,t));const u=n(h,s,r,l);L(o)&&z(h)&&u.unobserve&&t._observerUpdates.set(u,us(t,o,h)),Ie(t,u)}function us(t,e,i){return n=>{const o=e.call(t,t);ti(i,o)||(i.forEach(s=>!d(o,s)&&n.unobserve(s)),o.forEach(s=>!d(i,s)&&n.observe(s)),i.splice(0,i.length,...o))}}function Mn(t){if(t._watch)return;const e=!pt(t,"_watch");t._watch=ot.read(()=>{t._connected&&fs(t,e),t._watch=null})}function fs(t,e){const i={...t._computed};t._computed={};for(const[n,{watch:o,immediate:s}]of Object.entries(t.$options.computed||{}))o&&(e&&s||pt(i,n)&&!ti(i[n],t[n]))&&o.call(t,t[n],e?void 0:i[n]);hs(t)}function Pi(t,e="update"){t._connected&&((e==="update"||e==="resize")&&Mn(t),t.$options.update&&(t._updates||(t._updates=new Set,ot.read(()=>{t._connected&&ds(t,t._updates),delete t._updates})),t._updates.add(e.type||e)))}function ds(t,e){for(const{read:i,write:n,events:o=[]}of t.$options.update){if(!e.has("update")&&!o.some(r=>e.has(r)))continue;let s;i&&(s=i.call(t,t._data,e),s&&ct(s)&&Ge(t._data,s)),n&&s!==!1&&ot.write(()=>{t._connected&&n.call(t,t._data,e)})}}function ps(t){let{el:e,computed:i,observe:n}=t.$options;if(!i&&!(n!=null&&n.some(s=>L(s.target))))return;for(const s in i||{})if(i[s].document){e=e.ownerDocument;break}const o=new MutationObserver(()=>Mn(t));o.observe(e,{childList:!0,subtree:!0}),Ie(t,o)}function gs(t){t._events=[];for(const e of t.$options.events||[])if(pt(e,"handler"))Bi(t,e);else for(const i in e)Bi(t,e[i],i)}function ms(t){t._events.forEach(e=>e()),delete t._events}function Bi(t,e,i){let{name:n,el:o,handler:s,capture:r,passive:a,delegate:l,filter:h,self:u}=ct(e)?e:{name:i,handler:e};if(o=L(o)?o.call(t,t):o||t.$el,z(o)){o.forEach(p=>Bi(t,{...e,el:p},i));return}!o||h&&!h.call(t)||t._events.push(O(o,n,l?b(l)?l:l.call(t,t):null,b(s)?t[s]:s.bind(t),{passive:a,capture:r,self:u}))}const I={};I.events=I.observe=I.created=I.beforeConnect=I.connected=I.beforeDisconnect=I.disconnected=I.destroy=Ai,I.args=function(t,e){return e!==!1&&Ai(e||t)},I.update=function(t,e){return ii(Ai(t,L(e)?{read:e}:e),"order")},I.props=function(t,e){if(z(e)){const i={};for(const n of e)i[n]=String;e=i}return I.methods(t,e)},I.computed=I.methods=function(t,e){return e?t?{...t,...e}:e:t},I.i18n=I.data=function(t,e,i){return i?Dn(t,e,i):e?t?function(n){return Dn(t,e,n)}:e:t};function Dn(t,e,i){return I.computed(L(t)?t.call(i,i):t,L(e)?e.call(i,i):e)}function Ai(t,e){return t=t&&!z(t)?[t]:t,e?t?t.concat(e):z(e)?e:[e]:t}function vs(t,e){return W(e)?t:e}function fe(t,e,i){const n={};if(L(e)&&(e=e.options),e.extends&&(t=fe(t,e.extends,i)),e.mixins)for(const s of e.mixins)t=fe(t,s,i);for(const s in t)o(s);for(const s in e)pt(t,s)||o(s);function o(s){n[s]=(I[s]||vs)(t[s],e[s],i)}return n}function Mi(t,e=[]){try{return t?J(t,"{")?JSON.parse(t):e.length&&!d(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[o,s]=n.split(/:(.*)/);return o&&!W(s)&&(i[o.trim()]=s.trim()),i},{}):{}}catch{return{}}}function Di(t,e){return t===Boolean?Qe(e):t===Number?Zt(e):t==="list"?ws(e):t===Object&&b(e)?Mi(e):t?t(e):e}function ws(t){return z(t)?t:b(t)?t.split(/,(?![^(]*\))/).map(e=>bt(e)?Zt(e):Qe(e.trim())):[t]}function bs(t){const e=Nn(t.$options);for(let n in e)W(e[n])||(t.$props[n]=e[n]);const i=[t.$options.computed,t.$options.methods];for(let n in t.$props)n in e&&$s(i,n)&&(t[n]=t.$props[n])}function Nn(t){const e={},{args:i=[],props:n={},el:o,id:s}=t;if(!n)return e;for(const a in n){const l=Pt(a);let h=Mt(o,l);W(h)||(h=n[a]===Boolean&&h===""?!0:Di(n[a],h),!(l==="target"&&J(h,"_"))&&(e[a]=h))}const r=Mi(Mt(o,s),i);for(const a in r){const l=Xt(a);W(n[l])||(e[l]=Di(n[l],r[a]))}return e}function $s(t,e){return t.every(i=>!i||!pt(i,e))}function ys(t){const{$options:e,$props:i}=t,{id:n,attrs:o,props:s,el:r}=e;if(!s||o===!1)return;const a=z(o)?o:Object.keys(s),l=a.map(u=>Pt(u)).concat(n),h=new MutationObserver(u=>{const p=Nn(e);u.some(({attributeName:k})=>{const S=k.replace("data-","");return(S===n?a:[Xt(S),Xt(k)]).some(M=>!W(p[M])&&p[M]!==i[M])})&&t.$reset()});h.observe(r,{attributes:!0,attributeFilter:l.concat(l.map(u=>`data-${u}`))}),Ie(t,h)}function Ut(t,e){var i;(i=t.$options[e])==null||i.forEach(n=>n.call(t))}function Ni(t){t._connected||(t._data={},t._computed={},bs(t),Ut(t,"beforeConnect"),t._connected=!0,gs(t),ls(t),ys(t),ps(t),Ut(t,"connected"),Pi(t))}function Ii(t){t._connected&&(Ut(t,"beforeDisconnect"),cs(t),ms(t),Ut(t,"disconnected"),t._connected=!1,delete t._watch)}function xs(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)ks(t,i,e[i])}function ks(t,e,i){Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:o,$el:s}=t;return pt(n,e)||(n[e]=(i.get||i).call(t,o,s)),n[e]},set(n){const{_computed:o}=t;o[e]=i.set?i.set.call(t,n):n,W(o[e])&&delete o[e]}})}let Ss=0;function In(t,e={}){e.data=Ts(e,t.constructor.options),t.$options=fe(t.constructor.options,e,t),t.$props={},t._uid=Ss++,Es(t),Cs(t),xs(t),Ut(t,"created"),e.el&&t.$mount(e.el)}function Es(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function Cs(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function Ts({data:t={}},{args:e=[],props:i={}}){z(t)&&(t=t.slice(0,e.length).reduce((n,o,s)=>(ct(o)?Ge(n,o):n[e[s]]=o,n),{}));for(const n in t)W(t[n])?delete t[n]:i[n]&&(t[n]=Di(i[n],t[n]));return t}const w=function(t){In(this,t)};w.util=as,w.options={},w.version="3.16.5-dev.dda1f1b31";const _s="uk-",Et="__uikit__",qt={};function Fn(t,e){var i;const n=_s+Pt(t);if(!e)return ct(qt[n])&&(qt[n]=w.extend(qt[n])),qt[n];t=Xt(t),w[t]=(s,r)=>de(t,s,r);const o=ct(e)?{...e}:e.options;return o.id=n,o.name=t,(i=o.install)==null||i.call(o,w,o,t),w._initialized&&!o.functional&&requestAnimationFrame(()=>de(t,`[${n}],[data-${n}]`)),qt[n]=o}function de(t,e,i){const n=Fn(t);return n.options.functional?new n({data:ct(e)?e:[...arguments]}):e?B(e).map(o)[0]:o();function o(s){const r=Fe(s,t);if(r)if(i)r.$destroy();else return r;return new n({el:s,data:i})}}function Ct(t){return t[Et]||{}}function Fe(t,e){return Ct(t)[e]}function Os(t,e){t[Et]||(t[Et]={}),t[Et][e.$options.name]=e}function Ps(t,e){var i;(i=t[Et])==null||delete i[e.$options.name],Ze(t[Et])||delete t[Et]}w.component=Fn,w.getComponents=Ct,w.getComponent=Fe,w.use=function(t){if(!t.installed)return t.call(null,this),t.installed=!0,this},w.mixin=function(t,e){e=(b(e)?this.component(e):e)||this,e.options=fe(e.options,t)},w.extend=function(t){t=t||{};const e=this,i=function(o){In(this,o)};return i.prototype=Object.create(e.prototype),i.prototype.constructor=i,i.options=fe(e.options,t),i.super=e,i.extend=e.extend,i};function Hn(t,e){t=t?T(t):document.body;for(const i of Dt(t).reverse())zn(i,e);vt(t,i=>zn(i,e))}w.update=Hn;function zn(t,e){const i=Ct(t);for(const n in i)Pi(i[n],e)}let Ln;Object.defineProperty(w,"container",{get(){return Ln||document.body},set(t){Ln=m(t)}}),w.prototype.$mount=function(t){const e=this;Os(t,e),e.$options.el=t,_(t,document)&&Ni(e)},w.prototype.$destroy=function(t=!1){const e=this,{el:i}=e.$options;i&&Ii(e),Ut(e,"destroy"),Ps(i,e),t&&yt(e.$el)},w.prototype.$create=de,w.prototype.$emit=function(t){Pi(this,t)},w.prototype.$update=function(t=this.$el,e){Hn(t,e)},w.prototype.$reset=function(){Ii(this),Ni(this)},w.prototype.$getComponent=Fe,Object.defineProperties(w.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(w,"container")});function pe(t,e=t.$el,i=""){if(e.id)return e.id;let n=`${t.$options.id}-${t._uid}${i}`;return m(`#${n}`)&&(n=pe(t,e,`${i}-2`)),n}function Bs(t){St&&window.MutationObserver&&requestAnimationFrame(()=>As(t))}function As(t){y(document,"uikit:init",t),document.body&&vt(document.body,Rn),new MutationObserver(e=>e.forEach(Ms)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(e=>e.forEach(Ds)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0}function Ms({addedNodes:t,removedNodes:e}){for(const i of t)vt(i,Rn);for(const i of e)vt(i,Ns)}function Ds({target:t,attributeName:e}){var i;const n=jn(e);if(n){if(ut(t,e)){de(n,t);return}(i=Fe(t,n))==null||i.$destroy()}}function Rn(t){const e=Ct(t);for(const i in Ct(t))Ni(e[i]);for(const i of t.getAttributeNames()){const n=jn(i);n&&de(n,t)}}function Ns(t){const e=Ct(t);for(const i in Ct(t))Ii(e[i])}function jn(t){J(t,"data-")&&(t=t.slice(5));const e=qt[t];return e&&(ct(e)?e:e.options).name}var lt={connected(){x(this.$el,this.$options.id)}},Vt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave"},computed:{hasAnimation({animation:t}){return!!t[0]},hasTransition({animation:t}){return["slide","reveal"].some(e=>J(t[0],e))}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(g(t).map(o=>{const s=Je(e)?e:!this.isToggled(o);if(!y(o,`before${s?"show":"hide"}`,[this]))return Promise.reject();const r=(L(i)?i:i===!1||!this.hasAnimation?Is:this.hasTransition?Fs:Hs)(o,s,this),a=s?this.clsEnter:this.clsLeave;x(o,a),y(o,s?"show":"hide",[this]);const l=()=>{j(o,a),y(o,s?"shown":"hidden",[this])};return r?r.then(l,()=>(j(o,a),Promise.reject())):l()})).then(n,Q))},isToggled(t=this.$el){return[t]=g(t),C(t,this.clsEnter)?!0:C(t,this.clsLeave)?!1:this.cls?C(t,this.cls.split(" ")[0]):R(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=d(this.cls," ")||e!==C(t,this.cls),i&&Y(t,this.cls,d(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),B("[autofocus]",t).some(n=>R(n)?n.focus()||!0:n.blur()),i&&y(t,"toggled",[e,this])}}};function Is(t,e,{_toggle:i}){return it.cancel(t),K.cancel(t),i(t,e)}async function Fs(t,e,{animation:i,duration:n,velocity:o,transition:s,_toggle:r}){var a;const[l="reveal",h="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],p=u[d(u[0],h)?0:1],k=p[1]===h,M=["width","height"][u.indexOf(p)],F=`margin-${p[0]}`,D=`margin-${h}`;let me=G(t)[M];const Ca=K.inProgress(t);await K.cancel(t),e&&r(t,!0);const Ta=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",F,D].map(bo=>[bo,t.style[bo]])),ve=G(t),qi=v(c(t,F)),mo=v(c(t,D)),Ot=ve[M]+mo;!Ca&&!e&&(me+=mo);const[Ye]=xi(t,"<div>");c(Ye,{boxSizing:"border-box",height:ve.height,width:ve.width,...c(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",D])}),c(t,{padding:0,border:0,minWidth:0,minHeight:0,[D]:0,width:ve.width,height:ve.height,overflow:"hidden",[M]:me});const vo=me/Ot;n=(o*Ot+n)*(e?1-vo:vo);const wo={[M]:e?Ot:0};k&&(c(t,F,Ot-me+qi),wo[F]=e?qi:Ot+qi),!k^l==="reveal"&&(c(Ye,F,-Ot+me),K.start(Ye,{[F]:e?0:-Ot},n,s));try{await K.start(t,wo,n,s)}finally{c(t,Ta),re(Ye.firstChild),e||r(t,!1)}}function Hs(t,e,i){it.cancel(t);const{animation:n,duration:o,_toggle:s}=i;return e?(s(t,!0),it.in(t,n[0],o,i.origin)):it.out(t,n[1]||n[0],o,i.origin).then(()=>s(t,!1))}const A={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};function dt(t){return Le(Ae,t,"resize")}function He(t){return Le(Ci,t)}function zs(t){return Le(un,t)}function ze(t={}){return He({handler:function(e,i){const{targets:n=this.$el,preload:o=5}=t;for(const s of g(L(n)?n(this):n))B('[loading="lazy"]',s).slice(0,o-1).forEach(r=>ee(r,"loading"));for(const s of e.filter(({isIntersecting:r})=>r).map(({target:r})=>r))i.unobserve(s)},...t})}function Fi(t){return Le(function(e,i){return{disconnect:O(e,"scroll",i,{passive:!0,capture:!0})}},{target:window,...t},"scroll")}function Wn(t){return{observe(e,i){return{observe:Q,unobserve:Q,disconnect:O(e,Rt,i,{passive:!0})}},handler(e){if(!It(e))return;const i=Se(e),n="tagName"in e.target?e.target:P(e.target);N(document,`${jt} ${Be} scroll`,o=>{const{x:s,y:r}=Se(o);(o.type!=="scroll"&&n&&s&&Math.abs(i.x-s)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{y(n,"swipe"),y(n,`swipe${Ls(i.x,i.y,s,r)}`)})})},...t}}function Le(t,e,i){return{observe:t,handler(){this.$emit(i)},...e}}function Ls(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}var Un={mixins:[lt,Vt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:{get({targets:t},e){return B(t,e)},watch(t,e){if(e||C(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:{get({toggle:t}){return this.items.map(e=>m(t,e))},watch(){this.$emit()},immediate:!0},contents:{get({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||m(t,e)})},watch(t){for(const e of t)Re(e,!C(this.items.find(i=>_(e,i)),this.clsOpen));this.$emit()},immediate:!0}},observe:ze(),events:[{name:"click keydown",delegate(){return`${this.targets} ${this.$props.toggle}`},async handler(t){var e;t.type==="keydown"&&t.keyCode!==A.SPACE||(t.preventDefault(),(e=this._off)==null||e.call(this),this._off=js(t.target),await this.toggle(hi(this.toggles,t.current)),this._off())}},{name:"shown hidden",self:!0,delegate(){return this.targets},handler(){this.$emit()}}],update(){const t=ie(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],n=this.contents[e];if(!i||!n)continue;i.id=pe(this,i,`-title-${e}`),n.id=pe(this,n,`-content-${e}`);const o=d(t,this.items[e]);f(i,{role:q(i,"a")?"button":null,"aria-controls":n.id,"aria-expanded":o,"aria-disabled":!this.collapsible&&t.length<2&&o}),f(n,{role:"region","aria-labelledby":i.id})}},methods:{async toggle(t,e){t=this.items[mt(t,this.items)];let i=[t];const n=ie(this.items,`.${this.clsOpen}`);!this.multiple&&!d(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&d(n,t))&&await Promise.all(i.map(o=>this.toggleElement(o,!d(n,o),(s,r)=>{if(Y(s,this.clsOpen,r),e===!1||!this.animation){Re(m(this.content,s),!r);return}return Rs(s,r,this)})))}}};function Re(t,e){t&&(t.hidden=e)}async function Rs(t,e,{content:i,duration:n,velocity:o,transition:s}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||m(i,t),t._wrapper||(t._wrapper=_e(i,"<div>"));const a=t._wrapper;c(a,"overflow","hidden");const l=v(c(a,"height"));await K.cancel(a),Re(i,!1);const h=te(["marginTop","marginBottom"],p=>c(i,p))+G(i).height,u=l/h;n=(o*h+n)*(e?1-u:u),c(a,"height",l),await K.start(a,{height:e?h:0},n,s),re(i),delete t._wrapper,e||Re(i,!0)}function js(t){const[e]=at(t,!0);let i;return function n(){i=requestAnimationFrame(()=>{const{top:o}=t.getBoundingClientRect();o<0&&(e.scrollTop+=o),n()})}(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var Ws={mixins:[lt,Vt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,Us),this.$destroy(!0)}}};function Us(t,e,{duration:i,transition:n,velocity:o}){const s=v(c(t,"height"));return c(t,"height",s),K.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},o*s+i,n)}var qn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},connected(){this.inView=this.autoplay==="inview",this.inView&&!ut(this.$el,"preload")&&(this.$el.preload="none"),q(this.$el,"iframe")&&!ut(this.$el,"allow")&&(this.$el.allow="autoplay"),this.automute&&gn(this.$el)},observe:He({args:{intersecting:!1}}),update:{read({visible:t}){return mn(this.$el)?{prev:t,visible:R(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&$n(this.$el)}:!1},write({prev:t,visible:e,inView:i}){!e||this.inView&&!i?pn(this.$el):(this.autoplay===!0&&!t||this.inView&&i)&&dn(this.$el)}}},qs={mixins:[qn],props:{width:Number,height:Number},data:{automute:!0},events:{"load loadedmetadata"(){this.$emit("resize")}},observe:dt({target:({$el:t})=>[t,Vn(t)||P(t)]}),update:{read(){const{ratio:t,cover:e}=ai,{$el:i,width:n,height:o}=this;let s={width:n,height:o};if(!n||!o){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};n?s=t(h,"width",n):o?s=t(h,"height",o):s=h}const{offsetHeight:r,offsetWidth:a}=Vn(i)||P(i),l=e(s,{width:a+(a%2?1:0),height:r+(r%2?1:0)});return!l.width||!l.height?!1:l},write({height:t,width:e}){c(this.$el,{height:t,width:e})},events:["resize"]}};function Vn(t){for(;t=P(t);)if(c(t,"position")!=="static")return t}var Vs={props:{pos:String,offset:null,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${he?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=d(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const o=[this.flip&&"flip",this.shift&&"shift"],s={element:[this.inset?this.dir:ln(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in s)s[l].reverse();n.reverse(),o.reverse()}const r=Ys(t),a=G(t);c(t,{top:-a.height,left:-a.width}),Sn(t,e,{attach:s,offset:n,boundary:i,placement:o,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t){return ft(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(d(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t){return this.align==="center"?0:ft(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(d(["left","top"],this.align)?1:-1)},getViewportOffset(t){return ft(c(t,"--uk-position-viewport-offset"))}}};function Ys(t){const[e]=at(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}var Hi={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&m(t)}}};let zi;function Yn(t){const e=O(t,"touchmove",n=>{if(n.targetTouches.length!==1)return;let[{scrollHeight:o,clientHeight:s}]=at(n.target);s>=o&&n.cancelable&&n.preventDefault()},{passive:!1});if(zi)return e;zi=!0;const{scrollingElement:i}=document;return c(i,{overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",paddingRight:ae(window)-i.clientWidth||""}),()=>{zi=!1,e(),c(i,{overflowY:"",touchAction:"",paddingRight:""})}}let H;var Gn={mixins:[Hi,Vs,Vt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},n){return[et(e||t,n)||window,et(i||t,n)||window]},target({target:t,targetX:e,targetY:i},n){return e=e||t||this.targetEl,i=i||t||this.targetEl,[e===!0?window:et(e,n),i===!0?window:et(i,n)]}},created(){this.tracker=new Ei},beforeConnect(){this.clsDrop=this.$props.clsDrop||`uk-${this.$options.name}`},connected(){x(this.$el,"uk-drop",this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=Js(this)),this._style=ni(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),H=null),c(this.$el,this._style)},observe:ze({target:({toggle:t,$el:e})=>et(t,e),targets:({$el:t})=>t}),events:[{name:"click",delegate(){return".uk-drop-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href*="#"]'},handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&Nt(e)&&!_(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==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),E(this.$el,":focus,:hover")||this.hide()}},{name:`${Oe} focusin`,filter(){return d(this.mode,"hover")},handler(t){It(t)||this.clearTimers()}},{name:`${Pe} focusout`,filter(){return d(this.mode,"hover")},handler(t){!It(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){f(this.targetEl,"aria-expanded",e?!0:null),e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){H=this,this.tracker.init();const t=[Ks(this),Qs(this),tr(this),this.autoUpdate&&Zs(this),!this.bgScroll&&Yn(this.$el)];N(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){H=H===null&&_(t,this.$el)&&this.isToggled()?this:H;return}H=this.isActive()?null:H,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!C(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(H){if(e&&H.isDelaying){this.showTimer=setTimeout(()=>E(t,":hover")&&this.show(),10);return}let i;for(;H&&i!==H&&!_(this.$el,H.$el);)i=H,H.hide(!1,!1)}this.container&&P(this.$el)!==this.container&&nt(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelaying=Gs(this.$el).some(n=>this.tracker.movesTo(n)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return H===this},position(){j(this.$el,"uk-drop-stack"),c(this.$el,this._style),this.$el.hidden=!0;const t=this.target.map(o=>Xs(this.$el,o)),e=this.getViewportOffset(this.$el),i=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[o,[s,r]]of i)this.axis!==s&&d([s,!0],this.stretch)&&c(this.$el,{[r]:Math.min($(this.boundary[o])[r],t[o][r]-2*e),[`overflow-${s}`]:"auto"});const n=t[0].width-2*e;this.$el.hidden=!1,c(this.$el,"maxWidth",""),this.$el.offsetWidth>n&&x(this.$el,"uk-drop-stack"),c(this.$el,"maxWidth",n),this.positionAt(this.$el,this.target,this.boundary);for(const[o,[s,r,a,l]]of i)if(this.axis===s&&d([s,!0],this.stretch)){const h=Math.abs(this.getPositionOffset(this.$el)),u=$(this.target[o]),p=$(this.$el);c(this.$el,{[r]:(u[a]>p[a]?u[a]-Math.max($(this.boundary[o])[a],t[o][a]+e):Math.min($(this.boundary[o])[l],t[o][l]-e)-u[l])-h,[`overflow-${s}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}}}};function Gs(t){const e=[];return vt(t,i=>c(i,"position")!=="static"&&e.push(i)),e}function Xs(t,e){return Z(Wt(e).find(i=>_(t,i)))}function Js(t){const{$el:e}=t.$create("toggle",et(t.toggle,t.$el),{target:t.$el,mode:t.mode});return f(e,"aria-haspopup",!0),e}function Ks(t){const e=()=>t.$emit(),i=O(window,"resize",e),n=Ae(Wt(t.$el).concat(t.target),e);return()=>{n.disconnect(),i()}}function Zs(t){return O([document,...Wt(t.$el)],"scroll",()=>t.$emit(),{passive:!0})}function Qs(t){return O(document,"keydown",e=>{e.keyCode===A.ESC&&t.hide(!1)})}function tr(t){return O(document,Rt,({target:e})=>{_(e,t.$el)||N(document,`${jt} ${Be} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===jt&&e===o&&!(t.targetEl&&_(e,t.targetEl))&&t.hide(!1)},!0)})}var Xn={mixins:[lt,Hi],props:{dropdown:String,align:String,clsDrop:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean},data:{dropdown:"> li > a, > ul > li > a",align:he?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1},computed:{dropbarAnchor({dropbarAnchor:t},e){return et(t,e)||e},dropbar:{get({dropbar:t}){return t?(t=this._dropbar||et(t,this.$el)||m(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=m("<div></div>"))):null},watch(t){x(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get({clsDrop:t},e){var i;const n=B(`.${t}`,e);if(this.dropContainer!==e)for(const o of B(`.${t}`,this.dropContainer)){const s=(i=this.getDropdown(o))==null?void 0:i.targetEl;!d(n,o)&&s&&_(s,this.$el)&&n.push(o)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,flip:!1,shift:!0,pos:`bottom-${this.align}`,boundary:this.boundary===!0?this.$el:this.boundary})},immediate:!0},items:{get({dropdown:t},e){return B(t,e)},watch(t){f(st(this.$el),"role","presentation"),f(t,{tabindex:-1,role:"menuitem"}),f(t[0],"tabindex",0)},immediate:!0}},connected(){f(this.$el,"role","menubar")},disconnected(){yt(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler({current:t,type:e}){const i=this.getActive();if(i&&d(i.mode,"hover")&&i.targetEl&&!_(i.targetEl,t)&&!i.isDelaying&&i.hide(!1),e==="focusin")for(const n of this.items)f(n,"tabindex",t===n?0:-1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===A.DOWN&&ut(e,"aria-expanded")&&(t.preventDefault(),!n||n.targetEl!==e?(e.click(),N(this.dropContainer,"show",({target:o})=>Kn(o))):Kn(n.$el)),Jn(t,this.items,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return`.${this.clsDrop}`},handler(t){var e;const{current:i,keyCode:n}=t;if(!d(this.dropdowns,i))return;const o=this.getActive();let s=-1;if(n===A.HOME?s=0:n===A.END?s="last":n===A.UP?s="previous":n===A.DOWN?s="next":n===A.ESC&&((e=o.targetEl)==null||e.focus()),~s){t.preventDefault();const r=B(xe,i);r[mt(s,r,we(r,a=>E(a,":focus")))].focus()}Jn(t,this.items,o)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&d(t.mode,"hover")&&!this.dropdowns.some(e=>E(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&Ce(this.dropbarAnchor,this.dropbar),x(t,`${this.clsDrop}-dropbar`))}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const n=Dt(t,`.${this.clsDrop}`).concat(t).map(a=>$(a)),o=Math.min(...n.map(({top:a})=>a)),s=Math.max(...n.map(({bottom:a})=>a)),r=$(this.dropbar);c(this.dropbar,"top",this.dropbar.offsetTop-(r.top-o)),this.transitionTo(s-o+v(c(t,"marginBottom")),t)};this._observer=Ae([e.$el,...e.target],i),i()}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){const e=this.getActive();E(this.dropbar,":hover")&&e.$el===t.target&&!this.items.some(i=>e.targetEl!==i&&E(i,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return d(this.dropdowns,(t=H)==null?void 0:t.$el)&&H},async transitionTo(t,e){const{dropbar:i}=this,n=rt(i);e=n<t&&e,await K.cancel([e,i]),c(e,"clipPath",`polygon(0 0,100% 0,100% ${n}px,0 ${n}px)`),rt(i,n),await Promise.all([K.start(i,{height:t},this.duration),K.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>c(e,{clipPath:""}))]).catch(Q)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return this.getDropdown(t)&&C(t,this.clsDrop)}}};function Jn(t,e,i){var n,o,s;const{current:r,keyCode:a}=t;let l=-1;a===A.HOME?l=0:a===A.END?l="last":a===A.LEFT?l="previous":a===A.RIGHT?l="next":a===A.TAB&&((n=i.targetEl)==null||n.focus(),(o=i.hide)==null||o.call(i,!1)),~l&&(t.preventDefault(),(s=i.hide)==null||s.call(i,!1),e[mt(l,e,e.indexOf(i.targetEl||r))].focus())}function Kn(t){var e;m(":focus",t)||(e=m(xe,t))==null||e.focus()}var er={mixins:[lt],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return m(ye,e)},state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&P(this.input)===e&&this.input.nextElementSibling||m(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const o=Xi(e)?"value":"textContent",s=e[o],r=(t=i.files)!=null&&t[0]?i.files[0].name:E(i,"select")&&(n=B("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;s!==r&&(e[o]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return U(this.$el,"form")},handler(){this.$emit()}}]},Zn={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},observe:[zs({options:{childList:!0,attributes:!0,attributeFilter:["style"]}}),dt({target:({$el:t})=>[t,...Vi(t.children)]})],update:{read(){const t=Qn(this.$el.children);return{rows:t,columns:ir(t)}},write({columns:t,rows:e}){for(const i of e)for(const n of i)Y(n,this.margin,e[0]!==i),Y(n,this.firstColumn,t[0].includes(n))},events:["resize"]}};function Qn(t){return to(t,"top","bottom")}function ir(t){const e=[];for(const i of t){const n=to(i,"left","right");for(let o=0;o<n.length;o++)e[o]=e[o]?e[o].concat(n[o]):n[o]}return he?e.reverse():e}function to(t,e,i){const n=[[]];for(const o of t){if(!R(o))continue;let s=je(o);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(o);break}let l;if(a[0].offsetParent===o.offsetParent?l=je(a[0]):(s=je(o,!0),l=je(a[0],!0)),s[e]>=l[i]-1&&s[e]!==l[e]){n.push([o]);break}if(s[i]-1>l[e]||s[e]===l[e]){a.push(o);break}if(r===0){n.unshift([o]);break}}}return n}function je(t,e=!1){let{offsetTop:i,offsetLeft:n,offsetHeight:o,offsetWidth:s}=t;return e&&([i,n]=kt(t)),{top:i,left:n,bottom:i+o,right:n+s}}var nr={extends:Zn,mixins:[lt],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&x(this.$el,"uk-flex-top uk-flex-wrap-top")},observe:Fi({filter:({parallax:t})=>t}),update:[{write({columns:t}){Y(this.$el,this.clsStack,t.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||eo(this.$el))return t.translates=!1,!1;let n=!1;const o=st(this.$el),s=e.map(h=>te(h,"offsetHeight")),r=sr(o,this.margin)*(i.length-1),a=Math.max(...s)+r;this.masonry&&(e=e.map(h=>ii(h,"offsetTop")),n=or(i,e));let l=Math.abs(this.parallax);return l&&(l=s.reduce((h,u,p)=>Math.max(h,u+r+(p%2?l:l/8)-a),0)),{padding:l,columns:e,translates:n,height:n?a:""}},write({height:t,padding:e}){c(this.$el,"paddingBottom",e||""),t!==!1&&c(this.$el,"height",t)},events:["resize"]},{read(){return this.parallax&&eo(this.$el)?!1:{scrolled:this.parallax?xn(this.$el)*Math.abs(this.parallax):!1}},write({columns:t,scrolled:e,translates:i}){e===!1&&!i||t.forEach((n,o)=>n.forEach((s,r)=>c(s,"transform",!e&&!i?"":`translateY(${(i&&-i[o][r])+(e?o%2?e:e/8:0)}px)`)))},events:["scroll","resize"]}]};function eo(t){return st(t).some(e=>c(e,"position")==="absolute")}function or(t,e){const i=t.map(n=>Math.max(...n.map(o=>o.offsetHeight)));return e.map(n=>{let o=0;return n.map((s,r)=>o+=r?i[r-1]-n[r-1].offsetHeight:0)})}function sr(t,e){const[i]=t.filter(n=>C(n,e));return v(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}var rr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:{get({target:t},e){return B(t,e)},watch(){this.$reset()}}},observe:dt({target:({$el:t,elements:e})=>[t,...e]}),update:{read(){return{rows:(this.row?Qn(this.elements):[this.elements]).map(ar)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((n,o)=>c(n,"minHeight",e[o]))},events:["resize"]}};function ar(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(lr);const i=Math.max(...e);return{heights:t.map((n,o)=>e[o].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function lr(t){const e=ni(t.style,["display","minHeight"]);R(t)||c(t,"display","block","important"),c(t,"minHeight","");const i=G(t).height-le(t,"height","content-box");return c(t,e),i}var cr={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},observe:dt({target:({$el:t})=>[t,...at(t)]}),update:{read({minHeight:t}){if(!R(this.$el))return!1;let e="";const i=le(this.$el,"height","content-box"),{body:n,scrollingElement:o}=document,[s]=at(this.$el),{height:r}=Z(s===n?o:s);if(this.expand)e=Math.max(r-(G(s).height-G(this.$el).height)-i,0);else{const a=o===s||n===s;if(e=`calc(${a?"100vh":`${r}px`}`,this.offsetTop)if(a){const l=kt(this.$el)[0]-kt(s)[0];e+=l>0&&l<r/2?` - ${l}px`:""}else e+=` - ${c(s,"paddingTop")}`;this.offsetBottom===!0?e+=` - ${G(this.$el.nextElementSibling).height}px`:bt(this.offsetBottom)?e+=` - ${this.offsetBottom}vh`:this.offsetBottom&&Jt(this.offsetBottom,"px")?e+=` - ${v(this.offsetBottom)}px`:b(this.offsetBottom)&&(e+=` - ${G(et(this.offsetBottom,this.$el)).height}px`),e+=`${i?` - ${i}px`:""})`}return{minHeight:e,prev:t}},write({minHeight:t}){c(this.$el,{minHeight:t}),this.minHeight&&v(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}};function hr(t){return Math.ceil(Math.max(0,...B("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}var io={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,attributes:"list"},data:{ratio:1,include:["style","class"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&d(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=pr(t,this.$el);return this.svgEl&&e!==this.svgEl&&yt(this.svgEl),this.applyAttributes(e,t),this.svgEl=e}},Q),this.strokeAnimation&&this.svg.then(t=>{this._connected&&t&&(oo(t),Ie(this,Ci(t,(e,i)=>{oo(t),i.disconnect()})))})},disconnected(){this.svg.then(t=>{this._connected||(li(this.$el)&&(this.$el.hidden=!1),yt(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){return q(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>N(this.$el,"load",()=>t(this.getSvg()))):fr(await ur(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const s in this.$options.props)d(this.include,s)&&s in this&&f(t,s,this[s]);for(const s in this.attributes){const[r,a]=this.attributes[s].split(":",2);f(t,r,a)}this.id||ee(t,"id");const i=["width","height"];let n=i.map(s=>this[s]);n.some(s=>s)||(n=i.map(s=>f(e,s)));const o=f(e,"viewBox");o&&!n.some(s=>s)&&(n=o.split(" ").slice(2)),n.forEach((s,r)=>f(t,i[r],v(s)*this.ratio||null))}}};const ur=tt(async t=>t?J(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function fr(t,e){return e&&d(t,"<symbol")&&(t=dr(t,e)||t),t=m(t.substr(t.indexOf("<svg"))),(t==null?void 0:t.hasChildNodes())&&t}const no=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,We={};function dr(t,e){if(!We[t]){We[t]={},no.lastIndex=0;let i;for(;i=no.exec(t);)We[t][i[3]]=`<svg xmlns="http://www.w3.org/2000/svg"${i[1]}svg>`}return We[t][e]}function oo(t){const e=hr(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function pr(t,e){if(li(e)||q(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return so(t,n)?n:Ce(e,t)}const i=e.lastElementChild;return so(t,i)?i:nt(e,t)}function so(t,e){return q(t,"svg")&&q(e,"svg")&&t.innerHTML===e.innerHTML}var gr={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,o;let s=0;return((o=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:o.replace(/%s/g,()=>e[s++]||""))||""}}},mr='<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>',vr='<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>',wr='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',br='<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>',$r='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',yr='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',xr='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',kr='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><style>.uk-navbar-toggle-animate svg>[class*=line-]{transition:.2s ease-in-out;transition-property:transform,opacity;transform-origin:center;opacity:1}.uk-navbar-toggle svg>.line-3{opacity:0}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-3{opacity:1}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-2{transform:rotate(45deg)}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-3{transform:rotate(-45deg)}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-1,.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-4{opacity:0}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-1{transform:translateY(6px) scaleX(0)}.uk-navbar-toggle-animate[aria-expanded=true] svg>.line-4{transform:translateY(-6px) scaleX(0)}</style><rect class="line-1" y="3" width="20" height="2"/><rect class="line-2" y="9" width="20" height="2"/><rect class="line-3" y="9" width="20" height="2"/><rect class="line-4" y="15" width="20" height="2"/></svg>',Sr='<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>',Er='<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>',Cr='<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>',Tr='<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>',_r='<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>',Or='<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>',Pr='<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>',Br='<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>',Ar='<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>',Mr='<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>',Dr='<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>',Nr='<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 Ue={spinner:Dr,totop:Nr,marker:br,"close-icon":mr,"close-large":vr,"drop-parent-icon":wr,"nav-parent-icon":$r,"nav-parent-icon-large":yr,"navbar-parent-icon":xr,"navbar-toggle-icon":kr,"overlay-icon":Sr,"pagination-next":Er,"pagination-previous":Cr,"search-icon":Tr,"search-large":_r,"search-navbar":Or,"slidenav-next":Pr,"slidenav-next-large":Br,"slidenav-previous":Ar,"slidenav-previous-large":Mr},Li={install:qr,extends:io,args:"icon",props:["icon"],data:{include:[]},isIcon:!0,beforeConnect(){x(this.$el,"uk-icon")},methods:{async getSvg(){const t=Vr(this.icon);if(!t)throw"Icon not found.";return t}}},Tt={args:!1,extends:Li,data:t=>({icon:Pt(t.constructor.options.name)}),beforeConnect(){x(this.$el,this.$options.id)}},Ir={extends:Tt,beforeConnect(){const t=this.$props.icon;this.icon=U(this.$el,".uk-nav-primary")?`${t}-large`:t}},Fr={extends:Tt,beforeConnect(){this.icon=C(this.$el,"uk-search-icon")&&Dt(this.$el,".uk-search-large").length?"search-large":Dt(this.$el,".uk-search-navbar").length?"search-navbar":this.$props.icon}},Hr={extends:Tt,beforeConnect(){f(this.$el,"role","status")},methods:{async getSvg(){const t=await Li.methods.getSvg.call(this);return this.ratio!==1&&c(m("circle",t),"strokeWidth",1/this.ratio),t}}},_t={extends:Tt,mixins:[gr],beforeConnect(){const t=U(this.$el,"a,button");f(t,"role",this.role!==null&&q(t,"a")?"button":this.role);const e=this.t("label");e&&!ut(t,"aria-label")&&f(t,"aria-label",e)}},ro={extends:_t,beforeConnect(){x(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=C(this.$el,"uk-slidenav-large")?`${t}-large`:t}},zr={extends:_t,i18n:{label:"Open menu"}},Lr={extends:_t,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${C(this.$el,"uk-close-large")?"large":"icon"}`}},Rr={extends:_t,i18n:{label:"Open"}},jr={extends:_t,i18n:{label:"Back to top"}},Wr={extends:_t,i18n:{label:"Next page"},data:{role:null}},Ur={extends:_t,i18n:{label:"Previous page"},data:{role:null}},qe={};function qr(t){t.icon.add=(e,i)=>{const n=b(e)?{[e]:i}:e;$t(n,(o,s)=>{Ue[s]=o,delete qe[s]}),t._initialized&&vt(document.body,o=>$t(t.getComponents(o),s=>{s.$options.isIcon&&s.icon in n&&s.$reset()}))}}function Vr(t){return Ue[t]?(qe[t]||(qe[t]=m((Ue[Yr(t)]||Ue[t]).trim())),qe[t].cloneNode(!0)):null}function Yr(t){return he?ei(ei(t,"left","right"),"previous","next"):t}const Gr=St&&"loading"in HTMLImageElement.prototype;var Xr={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){if(this.loading!=="lazy"){this.load();return}Gr&&Ve(this.$el)&&(this.$el.loading="lazy",Ri(this.$el)),ta(this.$el)},disconnected(){this._data.image&&(this._data.image.onload="")},observe:He({target:({$el:t,$props:e})=>[t,...ne(e.target,t)],handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy"}),methods:{load(){if(this._data.image)return this._data.image;const t=Ve(this.$el)?this.$el:Kr(this.$el,this.dataSrc,this.sources);return ee(t,"loading"),Ri(this.$el,t.currentSrc),this._data.image=t}}};function Ri(t,e){if(Ve(t)){const i=P(t);(q(i,"picture")?st(i):[t]).forEach(o=>ao(o,o))}else e&&!d(t.style.backgroundImage,e)&&(c(t,"backgroundImage",`url(${di(e)})`),y(t,ke("load",!1)))}const Jr=["data-src","data-srcset","sizes"];function ao(t,e){Jr.forEach(i=>{const n=Mt(t,i);n&&f(e,i.replace(/^(data-)+/,""),n)})}function Kr(t,e,i){const n=new Image;return Zr(n,i),ao(t,n),n.onload=()=>{Ri(t,n.currentSrc)},f(n,"src",e),n}function Zr(t,e){if(e=Qr(e),e.length){const i=Ft("<picture>");for(const n of e){const o=Ft("<source>");f(o,n),nt(i,o)}nt(i,t)}}function Qr(t){if(!t)return[];if(J(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Mi(t);return z(t)||(t=[t]),t.filter(e=>!Ze(e))}function ta(t){Ve(t)&&!ut(t,"src")&&f(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function Ve(t){return q(t,"img")}var ji={props:{media:Boolean},data:{media:!1},connected(){const t=ea(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,y(this.$el,ke("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=O(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function ea(t,e){if(b(t)){if(J(t,"@"))t=v(c(e,`--uk-breakpoint-${t.substr(1)}`));else if(isNaN(t))return t}return t&&bt(t)?`(min-width: ${t}px)`:""}var ia={mixins:[lt,ji],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill({fill:t}){return t||c(this.$el,"--uk-leader-fill-content")}},connected(){[this.wrapper]=xi(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){re(this.wrapper.childNodes)},observe:dt(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){Y(this.wrapper,this.clsHide,i),f(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}};const V=[];var lo={mixins:[lt,Hi,Vt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel({selPanel:t},e){return m(t,e)},transitionElement(){return this.panel},bgClose({bgClose:t}){return t&&this.panel}},connected(){f(this.panel||this.$el,"role",this.role),this.overlay&&f(this.panel||this.$el,"aria-modal",!0)},beforeDisconnect(){d(V,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return`${this.selClose},a[href*="#"]`},handler(t){const{current:e,defaultPrevented:i}=t,{hash:n}=e;!i&&n&&Nt(e)&&!_(n,this.$el)&&m(n,document.body)?this.hide():E(e,this.selClose)&&(t.preventDefault(),this.hide())}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===d(V,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(d(V,this))return!1;!this.stack&&V.length?(Promise.all(V.map(e=>e.hide())).then(this.show),t.preventDefault()):V.push(this)}},{name:"show",self:!0,handler(){this.stack&&c(this.$el,"zIndex",v(c(this.$el,"zIndex"))+V.length);const t=[this.overlay&&oa(this),this.overlay&&Yn(this.$el),this.bgClose&&sa(this),this.escClose&&ra(this)];N(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),x(document.documentElement,this.clsPage)}},{name:"shown",self:!0,handler(){ci(this.$el)||f(this.$el,"tabindex","-1"),E(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){d(V,this)&&V.splice(V.indexOf(this),1),c(this.$el,"zIndex",""),V.some(t=>t.clsPage===this.clsPage)||j(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&P(this.$el)!==this.container?(nt(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,co)},hide(){return this.toggleElement(this.$el,!1,co)}}};function co(t,e,{transitionElement:i,_toggle:n}){return new Promise((o,s)=>N(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=s,n(t,e);const a=N(i,"transitionstart",()=>{N(i,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},na(c(i,"transitionDuration")))})).then(()=>delete t._reject)}function na(t){return t?Jt(t,"ms")?v(t):v(t)*1e3:0}function oa(t){return O(document,"focusin",e=>{Qt(V)===t&&!_(e.target,t.$el)&&t.$el.focus()})}function sa(t){return O(document,Rt,({target:e})=>{Qt(V)!==t||t.overlay&&!_(e,t.$el)||_(e,t.panel)||N(document,`${jt} ${Be} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===jt&&e===o&&t.hide()},!0)})}function ra(t){return O(document,"keydown",e=>{e.keyCode===27&&Qt(V)===t&&t.hide()})}var aa={install:la,mixins:[lo],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(){C(this.panel,"uk-margin-auto-vertical")?x(this.$el,"uk-flex"):c(this.$el,"display","block"),rt(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),j(this.$el,"uk-flex")}}]};function la({modal:t}){t.dialog=function(i,n){const o=t(`<div class="uk-modal"> <div class="uk-modal-dialog">${i}</div> </div>`,n);return o.show(),O(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},t.alert=function(i,n){return e(({i18n:o})=>`<div class="uk-modal-body">${b(i)?i:Ee(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>${o.ok}</button> </div>`,n,o=>o.resolve())},t.confirm=function(i,n){return e(({i18n:o})=>`<form> <div class="uk-modal-body">${b(i)?i:Ee(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${o.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${o.ok}</button> </div> </form>`,n,o=>o.reject())},t.prompt=function(i,n,o){return e(({i18n:s})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${b(i)?i:Ee(i)}</label> <input class="uk-input" value="${n||""}" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${s.cancel}</button> <button class="uk-button uk-button-primary">${s.ok}</button> </div> </form>`,o,s=>s.resolve(null),s=>m("input",s.$el).value)},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,n,o,s){n={bgClose:!1,escClose:!0,role:"alertdialog",...n,i18n:{...t.i18n,...n==null?void 0:n.i18n}};const r=t.dialog(i(n),n),a=new Gi;let l=!1;return O(r.$el,"submit","form",h=>{h.preventDefault(),a.resolve(s==null?void 0:s(r)),l=!0,r.hide()}),O(r.$el,"hide",()=>!l&&o(a)),a.promise.dialog=r,a.promise}}var ca={extends:Un,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},ha={extends:Xn,data:{dropdown:".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",clsDrop:"uk-navbar-dropdown"},computed:{items:{get({dropdown:t},e){return B(t,e)},watch(t){const e=C(this.$el,"uk-navbar-justify");for(const i of B(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el))c(i,"flexGrow",e?B(this.dropdown,i).length:"");f(B(".uk-navbar-nav",this.$el),"role","group"),f(B(".uk-navbar-nav > *",this.$el),"role","presentation"),f(t,{tabindex:-1,role:"menuitem"}),f(t[0],"tabindex",0)},immediate:!0}}},ua={mixins:[lo],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip({flip:t,clsFlip:e}){return t?e:""},clsOverlay({overlay:t,clsOverlay:e}){return t?e:""},clsMode({mode:t,clsMode:e}){return`${e}-${t}`},clsSidebarAnimation({mode:t,clsSidebarAnimation:e}){return t==="none"||t==="reveal"?"":e},clsContainerAnimation({mode:t,clsContainerAnimation:e}){return t!=="push"&&t!=="reveal"?"":e},transitionElement({mode:t}){return t==="reveal"?P(this.panel):this.panel}},observe:Wn({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!R(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!C(P(this.panel),this.clsMode)&&(_e(this.panel,"<div>"),x(P(this.panel),this.clsMode));const{body:t,scrollingElement:e}=document;x(t,this.clsContainer,this.clsFlip),c(t,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),x(this.$el,this.clsOverlay),x(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),rt(t),x(t,this.clsContainerAnimation),this.clsContainerAnimation&&fa()}},{name:"hide",self:!0,handler(){j(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&da(),this.mode==="reveal"&&re(this.panel),j(this.panel,this.clsSidebarAnimation,this.clsMode),j(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),j(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Jt(t.type,"Left")^this.flip&&this.hide()}}]};function fa(){ho().content+=",user-scalable=0"}function da(){const t=ho();t.content=t.content.replace(/,user-scalable=0$/,"")}function ho(){return m('meta[name="viewport"]',document.head)||nt(document.head,'<meta name="viewport">')}var pa={mixins:[lt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container({selContainer:t},e){return U(e,t)},content({selContent:t},e){return U(e,t)}},observe:dt({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!R(this.$el)?!1:{max:Math.max(this.minHeight,rt(this.container)-(G(this.content).height-rt(this.$el)))}},write({max:t}){c(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},ga={props:["width","height"],connected(){x(this.$el,"uk-responsive-width")},observe:dt({target:({$el:t})=>[t,P(t)]}),update:{read(){return R(this.$el)&&this.width&&this.height?{width:ae(P(this.$el)),height:this.height}:!1},write(t){rt(this.$el,ai.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},ma={props:{offset:Number},data:{offset:0},connected(){va(this)},disconnected(){wa(this)},methods:{async scrollTo(t){t=t&&m(t)||document.body,y(this.$el,"beforescroll",[this,t])&&(await yn(t,{offset:this.offset}),y(this.$el,"scrolled",[this,t]))}}};const ge=new Set;function va(t){ge.size||O(document,"click",uo),ge.add(t)}function wa(t){ge.delete(t),ge.size||pi(document,"click",uo)}function uo(t){if(!t.defaultPrevented)for(const e of ge)_(t.target,e.$el)&&Nt(e.$el)&&(t.preventDefault(),window.history.pushState({},"",e.$el.href),e.scrollTo(ui(e.$el)))}var ba={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get({target:t},e){return t?B(t,e):[e]},watch(t){this.hidden&&c(ie(t,`:not(.${this.inViewClass})`),"opacity",0)},immediate:!0}},connected(){this._data.elements=new Map},disconnected(){for(const[t,e]of this._data.elements.entries())j(t,this.inViewClass,(e==null?void 0:e.cls)||"")},observe:He({target:({elements:t})=>t,handler(t){const e=this._data.elements;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Mt(i,"uk-scrollspy-class")||this.cls});const o=e.get(i);!this.repeat&&o.show||(o.show=n)}this.$emit()},options:t=>({rootMargin:t.margin}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of t.elements.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i;const n=this._data.elements.get(t);if(n){if((i=n.off)==null||i.call(n),c(t,"opacity",!e&&this.hidden?0:""),Y(t,this.inViewClass,e),Y(t,n.cls),/\buk-animation-/.test(n.cls)){const o=()=>wi(t,"uk-animation-[\\w-]+");e?n.off=N(t,"animationcancel animationend",o):o()}y(t,e?"inview":"outview"),n.inview=e,this.$update(t)}}}},$a={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 B('a[href*="#"]',e).filter(i=>i.hash&&Nt(i))},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},elements({closest:t}){return U(this.links,t||"*")}},observe:Fi(),update:[{read(){const t=this.links.map(ui).filter(Boolean),{length:e}=t;if(!e||!R(this.$el))return!1;const[i]=at(t,!0),{scrollTop:n,scrollHeight:o}=i,s=Z(i),r=o-s.height;let a=!1;if(n===r)a=e-1;else{for(let l=0;l<t.length&&!($(t[l]).top-s.top-this.offset>0);l++)a=+l;a===!1&&this.overflow&&(a=0)}return{active:a}},write({active:t}){const e=t!==!1&&!C(this.elements[t],this.cls);this.links.forEach(i=>i.blur());for(let i=0;i<this.elements.length;i++)Y(this.elements[i],this.cls,+i===t);e&&y(this.$el,"active",[t,this.elements[t]])},events:["scroll","resize"]}]},ya={mixins:[lt,ji],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{selTarget({selTarget:t},e){return t&&m(t,e)||e}},connected(){this.start=fo(this.start||this.top),this.end=fo(this.end||this.bottom),this.placeholder=m("+ .uk-sticky-placeholder",this.$el)||m('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},disconnected(){this.isFixed&&(this.hide(),j(this.selTarget,this.clsInactive)),po(this.$el),yt(this.placeholder),this.placeholder=null},observe:[dt({handler(){!this.isFixed&&this.$emit("resize")}}),dt({target:()=>[document.documentElement]}),Fi()],events:[{name:"resize",el(){return[window,window.visualViewport]},handler(){this.$emit("resizeViewport")}},{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=$(m(location.hash)),i=$(this.$el);this.isFixed&&oi(e,i)&&(t.scrollTop=e.top-i.height-ft(this.targetOffset,"height",this.placeholder)-ft(this.offset,"height",this.placeholder))})}}],update:[{read({height:t,width:e,margin:i,sticky:n},o){if(this.inactive=!this.matchMedia||!R(this.$el),this.inactive)return;const s=this.isFixed&&o.has("resize")&&!n;s&&(c(this.selTarget,"transition","0s"),this.hide()),this.active||({height:t,width:e}=$(this.$el),i=c(this.$el,"margin")),s&&(this.show(),requestAnimationFrame(()=>c(this.selTarget,"transition","")));const r=ft("100vh","height"),a=rt(window),l=document.scrollingElement.scrollHeight-r;let h=this.position;this.overflowFlip&&t>r&&(h=h==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let p=ft(this.offset,"height",n?this.$el:u);h==="bottom"&&(t<a||this.overflowFlip)&&(p+=a-t);const k=this.overflowFlip?0:Math.max(0,t+p-r),S=$(u).top,M=$(this.$el).height,F=(this.start===!1?S:Wi(this.start,this.$el,S))-p,D=this.end===!1?l:Math.min(l,Wi(this.end,this.$el,S+t,!0)-M-p+k);return n=l&&!this.showOnUp&&F+p===S&&D===Math.min(l,Wi("!*",this.$el,0,!0)-M-p+k)&&c(P(this.$el),"overflowY")==="visible",{start:F,end:D,offset:p,overflow:k,topOffset:S,height:t,elHeight:M,width:e,margin:i,top:kt(u)[0],sticky:n}},write({height:t,width:e,margin:i,offset:n,sticky:o}){if((this.inactive||o||!this.isFixed)&&po(this.$el),this.inactive)return;o&&(t=e=i=0,c(this.$el,{position:"sticky",top:n}));const{placeholder:s}=this;c(s,{height:t,width:e,margin:i}),_(s,document)||(s.hidden=!0),(o?yi:Ce)(this.$el,s)},events:["resize","resizeViewport"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:n=0,start:o,end:s}){const r=document.scrollingElement.scrollTop;return{dir:t<=r?"down":"up",prevDir:e,scroll:r,prevScroll:t,offsetParentTop:$((this.isFixed?this.placeholder:this.$el).offsetParent).top,overflowScroll:ht(n+ht(r,o,s)-ht(t,o,s),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:o,prevDir:s,scroll:r,prevScroll:a=0,top:l,start:h,topOffset:u,height:p}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const k=Date.now();if((k-n>300||o!==s)&&(t.initScroll=r,t.initTimestamp=k),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||o==="down"&&i||o==="up"&&!this.isFixed&&r<=u+p)){if(!this.isFixed){it.inProgress(this.$el)&&l>r&&(it.cancel(this.$el),this.hide());return}this.animation&&r>u?(it.cancel(this.$el),it.out(this.$el,this.animation).then(()=>this.hide(),Q)):this.hide()}else this.isFixed?this.update():this.animation&&r>u?(it.cancel(this.$el),this.show(),it.in(this.$el,this.animation).catch(Q)):this.show()},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),j(this.$el,this.clsFixed,this.clsBelow),e?c(this.$el,"top",t):c(this.$el,{position:"",top:"",width:"",marginTop:""}),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:o,end:s,offset:r,topOffset:a,height:l,elHeight:h,offsetParentTop:u,sticky:p}=this._data;const k=o!==0||e>o;if(!p){let S="fixed";e>s&&(r+=s-u,S="absolute"),c(this.$el,{position:S,width:t}),c(this.$el,"marginTop",0,"important")}i&&(r-=n),c(this.$el,"top",r),this.setActive(k),Y(this.$el,this.clsBelow,e>a+(p?Math.min(l,h):l)),x(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(bi(this.selTarget,this.clsInactive,this.clsActive),e!==t&&y(this.$el,"active")):(bi(this.selTarget,this.clsActive,this.clsInactive),e!==t&&y(this.$el,"inactive"))}}};function Wi(t,e,i,n){if(!t)return 0;if(bt(t)||b(t)&&t.match(/^-?\d/))return i+ft(t,"height",e,!0);{const o=t===!0?P(e):et(t,e);return $(o).bottom-(n&&o&&_(e,o)?v(c(o,"paddingBottom")):0)}}function fo(t){return t==="true"?!0:t==="false"?!1:t}function po(t){c(t,{position:"",top:"",marginTop:"",width:""})}const Ui=".uk-disabled *, .uk-disabled, [disabled]";var go={mixins:[Vt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{connects:{get({connect:t},e){return ne(t,e)},watch(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom"),this.$emit()},document:!0,immediate:!0},connectChildren:{get(){return this.connects.map(t=>st(t)).flat()},watch(){const t=this.index();for(const e of this.connects)st(e).forEach((i,n)=>Y(i,this.cls,n===t));this.$emit()},immediate:!0},toggles:{get({toggle:t},e){return B(t,e)},watch(t){this.$emit();const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return st(this.$el).filter(t=>this.toggles.some(e=>_(e,t)))}},connected(){f(this.$el,"role","tablist")},observe:[ze({targets:({connectChildren:t})=>t}),Wn({target:({connects:t})=>t,filter:({swiping:t})=>t})],events:[{name:"click keydown",delegate(){return this.toggle},handler(t){!E(t.current,Ui)&&(t.type==="click"||t.keyCode===A.SPACE)&&(t.preventDefault(),this.show(t.current))}},{name:"keydown",delegate(){return this.toggle},handler(t){const{current:e,keyCode:i}=t,n=E(this.$el,this.selVertical);let o=i===A.HOME?0:i===A.END?"last":i===A.LEFT&&!n||i===A.UP&&n?"previous":i===A.RIGHT&&!n||i===A.DOWN&&n?"next":-1;if(~o){t.preventDefault();const s=this.toggles.filter(a=>!E(a,Ui)),r=s[mt(o,s,s.indexOf(e))];r.focus(),this.followFocus&&this.show(r)}}},{name:"click",el(){return this.connects.concat(this.itemNav?ne(this.itemNav,this.$el):[])},delegate(){return`[${this.attrItem}],[data-${this.attrItem}]`},handler(t){U(t.target,"a,button")&&(t.preventDefault(),this.show(Mt(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler({type:t}){this.show(Jt(t,"Left")?"next":"previous")}}],update(){var t;f(this.connects,"role","presentation"),f(st(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],n=(t=this.connects[0])==null?void 0:t.children[e];f(i,"role","tab"),n&&(i.id=pe(this,i,`-tab-${e}`),n.id=pe(this,n,`-tabpanel-${e}`),f(i,"aria-controls",n.id),f(n,{role:"tabpanel","aria-labelledby":i.id}))}f(this.$el,"aria-orientation",E(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return we(this.children,t=>C(t,this.cls))},show(t){const e=this.toggles.filter(r=>!E(r,Ui)),i=this.index(),n=mt(!$e(t)||d(e,t)?t:0,e,mt(this.toggles[i],e)),o=mt(e[n],this.toggles);this.children.forEach((r,a)=>{Y(r,this.cls,o===a),f(this.toggles[a],{"aria-selected":o===a,tabindex:o===a?null:-1})});const s=i>=0&&i!==n;this.connects.forEach(async({children:r})=>{await this.toggleElement(g(r).filter(a=>C(a,this.cls)),!1,s),await this.toggleElement(r[o],!0,s)})}}},xa={mixins:[lt],extends:go,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=C(this.$el,"uk-tab-left")?"uk-tab-left":C(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const ka=32;var Sa={mixins:[ji,Vt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target({href:t,target:e},i){return e=ne(e||t,i),e.length&&e||[i]}},connected(){d(this.mode,"media")||(ci(this.$el)||f(this.$el,"tabindex","0"),!this.cls&&q(this.$el,"a")&&f(this.$el,"role","button"))},observe:ze({target:({target:t})=>t}),events:[{name:Rt,filter(){return d(this.mode,"hover")},handler(t){this._preventClick=null,!(!It(t)||this._showState||this.$el.disabled)&&(y(this.$el,"focus"),N(document,Rt,()=>y(this.$el,"blur"),!0,e=>!_(e.target,this.$el)),d(this.mode,"click")&&(this._preventClick=!0))}},{name:`${Oe} ${Pe} focus blur`,filter(){return d(this.mode,"hover")},handler(t){if(It(t)||this.$el.disabled)return;const e=d([Oe,"focus"],t.type),i=this.isToggled(this.target);if(!(!e&&(t.type===Pe&&E(this.$el,":focus")||t.type==="blur"&&E(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 d(this.mode,"click")&&!q(this.$el,"input")},handler(t){t.keyCode===ka&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return["click","hover"].some(t=>d(this.mode,t))},handler(t){let e;(this._preventClick||U(t.target,'a[href="#"], a[href=""]')||(e=U(t.target,"a[href]"))&&(!this.isToggled(this.target)||e.hash&&E(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&d(this.mode,"click")&&this.toggle()}},{name:"mediachange",filter(){return d(this.mode,"media")},el(){return this.target},handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!y(this.target,t||"toggle",[this]))return;if(ut(this.$el,"aria-expanded")&&f(this.$el,"aria-expanded",!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>C(n,this.clsLeave));if(e.length){for(const n of this.target){const o=d(e,n);this.toggleElement(n,o,o)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(n=>!d(i,n)),!0)}}},Ea=Object.freeze({__proto__:null,Accordion:Un,Alert:Ws,Close:Lr,Cover:qs,Drop:Gn,DropParentIcon:Tt,Dropdown:Gn,Dropnav:Xn,FormCustom:er,Grid:nr,HeightMatch:rr,HeightViewport:cr,Icon:Li,Img:Xr,Leader:ia,Margin:Zn,Marker:Rr,Modal:aa,Nav:ca,NavParentIcon:Ir,Navbar:ha,NavbarParentIcon:Tt,NavbarToggleIcon:zr,Offcanvas:ua,OverflowAuto:pa,OverlayIcon:Tt,PaginationNext:Wr,PaginationPrevious:Ur,Responsive:ga,Scroll:ma,Scrollspy:ba,ScrollspyNav:$a,SearchIcon:Fr,SlidenavNext:ro,SlidenavPrevious:ro,Spinner:Hr,Sticky:ya,Svg:io,Switcher:go,Tab:xa,Toggle:Sa,Totop:jr,Video:qn});return $t(Ea,(t,e)=>w.component(e,t)),Bs(w),w});