uikit 3.14.4-dev.cd89debeb → 3.14.4-dev.d2929b5b7

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