uikit 3.11.2-dev.7dd548556 → 3.11.2-dev.93483bd3e

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 (141) hide show
  1. package/CHANGELOG.md +32 -18
  2. package/dist/css/uikit-core-rtl.css +80 -186
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +80 -186
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +82 -192
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +82 -192
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +3 -3
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +6 -8
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +31 -60
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +34 -64
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +108 -72
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +108 -72
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +75 -28
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +108 -72
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +57 -21
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +12 -14
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +2 -2
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +4 -4
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +271 -287
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +507 -458
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/api/component.js +2 -11
  44. package/src/js/api/hooks.js +1 -1
  45. package/src/js/api/state.js +3 -3
  46. package/src/js/components/countdown.js +2 -2
  47. package/src/js/components/filter.js +2 -3
  48. package/src/js/components/internal/lightbox-animations.js +4 -3
  49. package/src/js/components/internal/slider-preload.js +37 -0
  50. package/src/js/components/internal/slider-transitioner.js +2 -2
  51. package/src/js/components/internal/slideshow-animations.js +4 -3
  52. package/src/js/components/lightbox-panel.js +34 -58
  53. package/src/js/components/lightbox.js +3 -4
  54. package/src/js/components/slider.js +30 -11
  55. package/src/js/components/slideshow.js +8 -1
  56. package/src/js/components/sortable.js +8 -8
  57. package/src/js/components/upload.js +3 -3
  58. package/src/js/core/accordion.js +3 -3
  59. package/src/js/core/alert.js +1 -2
  60. package/src/js/core/height-match.js +3 -3
  61. package/src/js/core/img.js +132 -115
  62. package/src/js/core/modal.js +1 -2
  63. package/src/js/core/navbar.js +5 -5
  64. package/src/js/core/scrollspy.js +6 -6
  65. package/src/js/core/sticky.js +1 -1
  66. package/src/js/core/svg.js +10 -6
  67. package/src/js/core/toggle.js +4 -3
  68. package/src/js/mixin/internal/animate-slide.js +9 -12
  69. package/src/js/mixin/parallax.js +108 -72
  70. package/src/js/mixin/slider-drag.js +3 -3
  71. package/src/js/mixin/slider-nav.js +2 -2
  72. package/src/js/mixin/slider.js +8 -16
  73. package/src/js/mixin/slideshow.js +2 -2
  74. package/src/js/mixin/togglable.js +1 -2
  75. package/src/js/util/ajax.js +9 -12
  76. package/src/js/util/animation.js +7 -12
  77. package/src/js/util/attr.js +11 -9
  78. package/src/js/util/dom.js +27 -45
  79. package/src/js/util/lang.js +7 -6
  80. package/src/js/util/options.js +2 -11
  81. package/src/js/util/player.js +5 -4
  82. package/src/js/util/position.js +2 -2
  83. package/src/js/util/selector.js +12 -18
  84. package/src/js/util/style.js +4 -4
  85. package/src/less/components/base.less +10 -33
  86. package/src/less/components/form-range.less +52 -97
  87. package/src/less/components/form.less +0 -1
  88. package/src/less/components/leader.less +0 -1
  89. package/src/less/components/lightbox.less +0 -1
  90. package/src/less/components/modal.less +3 -7
  91. package/src/less/components/progress.less +14 -36
  92. package/src/less/components/slider.less +0 -3
  93. package/src/less/components/slideshow.less +0 -3
  94. package/src/less/components/text.less +16 -32
  95. package/src/scss/components/base.scss +10 -33
  96. package/src/scss/components/form-range.scss +52 -97
  97. package/src/scss/components/form.scss +0 -1
  98. package/src/scss/components/leader.scss +0 -1
  99. package/src/scss/components/lightbox.scss +0 -1
  100. package/src/scss/components/modal.scss +3 -7
  101. package/src/scss/components/progress.scss +14 -36
  102. package/src/scss/components/slider.scss +0 -3
  103. package/src/scss/components/slideshow.scss +0 -3
  104. package/src/scss/components/text.scss +16 -32
  105. package/src/scss/mixins-theme.scss +1 -1
  106. package/src/scss/mixins.scss +1 -1
  107. package/src/scss/variables-theme.scss +3 -3
  108. package/src/scss/variables.scss +3 -3
  109. package/tests/align.html +10 -10
  110. package/tests/animation.html +2 -2
  111. package/tests/article.html +2 -2
  112. package/tests/base.html +3 -3
  113. package/tests/card.html +10 -10
  114. package/tests/column.html +3 -3
  115. package/tests/comment.html +9 -9
  116. package/tests/dotnav.html +3 -3
  117. package/tests/image.html +296 -64
  118. package/tests/images/image-type.avif +0 -0
  119. package/tests/images/image-type.jpeg +0 -0
  120. package/tests/images/image-type.webp +0 -0
  121. package/tests/index.html +8 -8
  122. package/tests/lightbox.html +10 -10
  123. package/tests/marker.html +2 -2
  124. package/tests/modal.html +8 -9
  125. package/tests/navbar.html +2 -2
  126. package/tests/overlay.html +7 -7
  127. package/tests/parallax.html +14 -5
  128. package/tests/position.html +12 -12
  129. package/tests/slidenav.html +12 -12
  130. package/tests/slider.html +20 -20
  131. package/tests/sortable.html +1 -1
  132. package/tests/sticky-parallax.html +47 -62
  133. package/tests/svg.html +6 -6
  134. package/tests/table.html +11 -11
  135. package/tests/thumbnav.html +12 -12
  136. package/tests/transition.html +30 -30
  137. package/tests/utility.html +33 -33
  138. package/tests/video.html +1 -1
  139. package/tests/width.html +1 -1
  140. package/src/js/util/promise.js +0 -0
  141. package/tests/images/animated.gif +0 -0
@@ -1 +1 @@
1
- /*! UIkit 3.11.2-dev.7dd548556 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(de,fe){typeof exports=="object"&&typeof module<"u"?module.exports=fe():typeof define=="function"&&define.amd?define("uikit",fe):(de=typeof globalThis<"u"?globalThis:de||self,de.UIkit=fe())})(this,function(){"use strict";const{hasOwnProperty:de,toString:fe}=Object.prototype;function Nt(t,e){return de.call(t,e)}const zn=/\B([A-Z])/g,Dt=ct(t=>t.replace(zn,"-$1").toLowerCase()),Hn=/-(\w)/g,Vt=ct(t=>t.replace(Hn,ts)),ge=ct(t=>t.length?ts(null,t.charAt(0))+t.slice(1):"");function ts(t,e){return e?e.toUpperCase():""}function ht(t,e){return t.startsWith(e)}function St(t,e){return t.endsWith(e)}function w(t,e){return t&&t.includes(e)}function Tt(t,e){return t.findIndex(e)}const{isArray:lt,from:On}=Array,{assign:k}=Object;function xt(t){return typeof t=="function"}function Ct(t){return t!==null&&typeof t=="object"}function It(t){return fe.call(t)==="[object Object]"}function pe(t){return Ct(t)&&t===t.window}function me(t){return bi(t)===9}function wi(t){return bi(t)>=1}function Mt(t){return bi(t)===1}function bi(t){return!pe(t)&&Ct(t)&&t.nodeType}function Le(t){return typeof t=="boolean"}function B(t){return typeof t=="string"}function Yt(t){return typeof t=="number"}function Bt(t){return Yt(t)||B(t)&&!isNaN(t-parseFloat(t))}function ve(t){return!(lt(t)?t.length:Ct(t)?Object.keys(t).length:!1)}function G(t){return t===void 0}function xi(t){return Le(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Et(t){const e=Number(t);return isNaN(e)?!1:e}function y(t){return parseFloat(t)||0}function K(t){return S(t)[0]}function S(t){return t&&(wi(t)?[t]:Array.from(t).filter(wi))||[]}function zt(t){return pe(t)?t:(t=K(t),t?(me(t)?t:t.ownerDocument).defaultView:window)}function yi(t){return t?St(t,"ms")?y(t):y(t)*1e3:0}function Re(t,e){return t===e||Ct(t)&&Ct(e)&&Object.keys(t).length===Object.keys(e).length&&it(t,(i,s)=>i===e[s])}function $i(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),s=>s===e?i:e)}function we(t){return t[t.length-1]}function it(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function be(t,e){return t.slice().sort((i,s)=>{let{[e]:n=0}=i,{[e]:r=0}=s;return n>r?1:r>n?-1:0})}function es(t,e){const i=new Set;return t.filter(s=>{let{[e]:n}=s;return i.has(n)?!1:i.add(n)})}function rt(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Et(t)||0,e),i)}function _(){}function is(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(s=>{let[n,r]=s;return Math.min(...e.map(o=>{let{[n]:a}=o;return a}))-Math.max(...e.map(o=>{let{[r]:a}=o;return a}))>0})}function We(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const Gt={ratio(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}},contain(t,e){return t=k({},t),it(t,(i,s)=>t=t[s]>e[s]?this.ratio(t,s,e[s]):t),t},cover(t,e){return t=this.contain(t,e),it(t,(i,s)=>t=t[s]<e[s]?this.ratio(t,s,e[s]):t),t}};function Kt(t,e,i,s){i===void 0&&(i=0),s===void 0&&(s=!1),e=S(e);const{length:n}=e;return n?(t=Bt(t)?Et(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(K(t)),s?rt(t,0,n-1):(t%=n,t<0?t+n:t)):-1}function ct(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class je{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function I(t,e,i){if(Ct(e)){for(const n in e)I(t,n,e[n]);return}if(G(i)){var s;return(s=K(t))==null?void 0:s.getAttribute(e)}else S(t).forEach(n=>{xt(i)&&(i=i.call(n,I(n,e))),i===null?ki(n,e):n.setAttribute(e,i)})}function Xt(t,e){return S(t).some(i=>i.hasAttribute(e))}function ki(t,e){t=S(t),e.split(" ").forEach(i=>t.forEach(s=>s.hasAttribute(i)&&s.removeAttribute(i)))}function ut(t,e){for(const i of[e,"data-"+e])if(Xt(t,i))return I(t,i)}const Ht=typeof window<"u",Z=Ht&&I(document.documentElement,"dir")==="rtl",Ot=Ht&&"ontouchstart"in window,Jt=Ht&&window.PointerEvent,dt=Jt?"pointerdown":Ot?"touchstart":"mousedown",Zt=Jt?"pointermove":Ot?"touchmove":"mousemove",mt=Jt?"pointerup":Ot?"touchend":"mouseup",Ft=Jt?"pointerenter":Ot?"":"mouseenter",Qt=Jt?"pointerleave":Ot?"":"mouseleave",Ut=Jt?"pointercancel":"touchcancel",Fn={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Si(t){return S(t).some(e=>Fn[e.tagName.toLowerCase()])}function F(t){return S(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const xe="input,select,textarea,button";function Ti(t){return S(t).some(e=>L(e,xe))}const qe=xe+",a[href],[tabindex]";function Ve(t){return L(t,qe)}function D(t){return t=K(t),t&&Mt(t.parentNode)&&t.parentNode}function ye(t,e){return S(t).filter(i=>L(i,e))}function L(t,e){return S(t).some(i=>i.matches(e))}function ot(t,e){return ht(e,">")&&(e=e.slice(1)),Mt(t)?t.closest(e):S(t).map(i=>ot(i,e)).filter(Boolean)}function R(t,e){return B(e)?L(t,e)||!!ot(t,e):t===e||K(e).contains(K(t))}function $e(t,e){const i=[];for(;t=D(t);)(!e||L(t,e))&&i.push(t);return i}function W(t,e){t=K(t);const i=t?S(t.children):[];return e?ye(i,e):i}function te(t,e){return e?S(t).indexOf(K(e)):W(D(t)).indexOf(t)}function gt(t,e){return Ci(t,ss(t,e))}function ke(t,e){return Se(t,ss(t,e))}function ss(t,e){return e===void 0&&(e=document),B(t)&&rs(t)||me(e)?e:e.ownerDocument}function Ci(t,e){return K(ns(t,e,"querySelector"))}function Se(t,e){return S(ns(t,e,"querySelectorAll"))}function ns(t,e,i){if(e===void 0&&(e=document),!t||!B(t))return t;t=t.replace(Rn,"$1 *"),rs(t)&&(t=jn(t).map(s=>{let n=e;if(s[0]==="!"){const r=s.substr(1).trim().split(" ");n=ot(D(e),r[0]),s=r.slice(1).join(" ").trim()}if(s[0]==="-"){const r=s.substr(1).trim().split(" "),o=(n||e).previousElementSibling;n=L(o,s.substr(1))?o:null,s=r.slice(1).join(" ")}return n?qn(n)+" "+s:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const Ln=/(^|[^\\],)\s*[!>+~-]/,Rn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,rs=ct(t=>t.match(Ln)),Wn=/.*?[^\\](?:,|$)/g,jn=ct(t=>t.match(Wn).map(e=>e.replace(/,$/,"").trim()));function qn(t){const e=[];for(;t.parentNode;){const i=I(t,"id");if(i){e.unshift("#"+Te(i));break}else{let{tagName:s}=t;s!=="HTML"&&(s+=":nth-child("+(te(t)+1)+")"),e.unshift(s),t=t.parentNode}}return e.join(" > ")}const Vn=Ht&&window.CSS&&CSS.escape||function(t){return t.replace(/([^\x7f-\uFFFF\w-])/g,e=>"\\"+e)};function Te(t){return B(t)?Vn.call(null,t):""}function E(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,r,o,a=!1]=Ii(e);o.length>1&&(o=Gn(o)),a!=null&&a.self&&(o=Kn(o)),r&&(o=Yn(r,o));for(const l of n)for(const u of s)u.addEventListener(l,o,a);return()=>ee(s,n,o,a)}function ee(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,,r,o=!1]=Ii(e);for(const a of n)for(const l of s)l.removeEventListener(a,r,o)}function Y(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[s,n,r,o,a=!1,l]=Ii(e),u=E(s,n,r,f=>{const h=!l||l(f);h&&(u(),o(f,h))},a);return u}function p(t,e,i){return Ei(t).every(s=>s.dispatchEvent(Ce(e,!0,!0,i)))}function Ce(t,e,i,s){return e===void 0&&(e=!0),i===void 0&&(i=!1),B(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function Ii(t){return t[0]=Ei(t[0]),B(t[1])&&(t[1]=t[1].split(" ")),xt(t[2])&&t.splice(2,0,!1),t}function Yn(t,e){return i=>{const s=t[0]===">"?Se(t,i.currentTarget).reverse().filter(n=>R(i.target,n))[0]:ot(i.target,t);s&&(i.current=s,e.call(this,i))}}function Gn(t){return e=>lt(e.detail)?t(e,...e.detail):t(e)}function Kn(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function os(t){return t&&"addEventListener"in t}function Xn(t){return os(t)?t:K(t)}function Ei(t){return lt(t)?t.map(Xn).filter(Boolean):B(t)?Se(t):os(t)?[t]:S(t)}function yt(t){return t.pointerType==="touch"||!!t.touches}function ie(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}function as(t,e){const i=k({data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:_,responseType:""},e);return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>Jn(t,i))}function Jn(t,e){return new Promise((i,s)=>{const{xhr:n}=e;for(const r in e)if(r in n)try{n[r]=e[r]}catch{}n.open(e.method.toUpperCase(),t);for(const r in e.headers)n.setRequestHeader(r,e.headers[r]);E(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s(k(Error(n.statusText),{xhr:n,status:n.status}))}),E(n,"error",()=>s(k(Error("Network Error"),{xhr:n}))),E(n,"timeout",()=>s(k(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}function Pi(t,e,i){return new Promise((s,n)=>{const r=new Image;r.onerror=o=>n(o),r.onload=()=>s(r),i&&(r.sizes=i),e&&(r.srcset=e),r.src=t})}const Zn={"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,s){return s===void 0&&(s=""),S(t).map(n=>{if(B(e)){if(e=Ye(e),G(i))return Qn(n,e);!i&&!Yt(i)?n.style.removeProperty(e):n.style.setProperty(e,Bt(i)&&!Zn[e]?i+"px":i,s)}else if(lt(e)){const r=Ai(n),o={};for(const a of e)o[a]=r[Ye(a)];return o}else Ct(e)&&(s=i,it(e,(r,o)=>c(n,o,r,s)));return n})[0]}function Ai(t,e){return zt(t).getComputedStyle(t,e)}function Qn(t,e,i){return Ai(t,i)[e]}const Un=/^\s*(["'])?(.*?)\1\s*$/;function _i(t){return Ai(document.documentElement).getPropertyValue("--uk-"+t).replace(Un,"$2")}const Ye=ct(t=>tr(t)),hs=["webkit","moz","ms"];function tr(t){t=Dt(t);const{style:e}=document.documentElement;if(t in e)return t;let i=hs.length,s;for(;i--;)if(s="-"+hs[i]+"-"+t,s in e)return s}function $(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ls(t,i,"add")}function N(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ls(t,i,"remove")}function Ge(t,e){I(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function Ni(t){(arguments.length<=1?void 0:arguments[1])&&N(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&$(t,arguments.length<=2?void 0:arguments[2])}function T(t,e){[e]=Di(e);for(const i of S(t))if(e&&i.classList.contains(e))return!0;return!1}function j(t,e,i){const s=Di(e);G(i)||(i=!!i);for(const n of S(t))for(const r of s)n.classList.toggle(r,i)}function ls(t,e,i){e=e.reduce((s,n)=>s.concat(Di(n)),[]);for(const s of S(t))s.classList[i](...e)}function Di(t){return String(t).split(/\s|,/).filter(Boolean)}function cs(t,e,i,s){return i===void 0&&(i=400),s===void 0&&(s="linear"),Promise.all(S(t).map(n=>new Promise((r,o)=>{for(const l in e){const u=c(n,l);u===""&&c(n,l,u)}const a=setTimeout(()=>p(n,"transitionend"),i);Y(n,"transitionend transitioncanceled",l=>{let{type:u}=l;clearTimeout(a),N(n,"uk-transition"),c(n,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),u==="transitioncanceled"?o():r(n)},{self:!0}),$(n,"uk-transition"),c(n,k({transitionProperty:Object.keys(e).map(Ye).join(","),transitionDuration:i+"ms",transitionTimingFunction:s},e))})))}const P={start:cs,stop(t){return p(t,"transitionend"),Promise.resolve()},cancel(t){p(t,"transitioncanceled")},inProgress(t){return T(t,"uk-transition")}},Ie="uk-animation-";function Mi(t,e,i,s,n){return i===void 0&&(i=200),Promise.all(S(t).map(r=>new Promise((o,a)=>{p(r,"animationcanceled");const l=setTimeout(()=>p(r,"animationend"),i);Y(r,"animationend animationcanceled",u=>{let{type:f}=u;clearTimeout(l),f==="animationcanceled"?a():o(r),c(r,"animationDuration",""),Ge(r,Ie+"\\S*")},{self:!0}),c(r,"animationDuration",i+"ms"),$(r,e,Ie+(n?"leave":"enter")),ht(e,Ie)&&(s&&$(r,"uk-transform-origin-"+s),n&&$(r,Ie+"reverse"))})))}const er=new RegExp(Ie+"(enter|leave)"),vt={in:Mi,out(t,e,i,s){return Mi(t,e,i,s,!0)},inProgress(t){return er.test(I(t,"class"))},cancel(t){p(t,"animationcanceled")}},Pt={width:["left","right"],height:["top","bottom"]};function C(t){const e=Mt(t)?K(t).getBoundingClientRect():{height:z(t),width:Pe(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 M(t,e){const i=C(t);if(t){const{pageYOffset:n,pageXOffset:r}=zt(t),o={height:n,width:r};for(const a in Pt)for(const l in Pt[a])i[Pt[a][l]]+=o[a]}if(!e)return i;const s=c(t,"position");it(c(t,["left","top"]),(n,r)=>c(t,r,e[r]-i[r]+y(s==="absolute"&&n==="auto"?Ke(t)[r]:n)))}function Ke(t){let{top:e,left:i}=M(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:r}=K(t);let o=r||n;for(;o&&(o===s||o===n)&&c(o,"position")==="static";)o=o.parentNode;if(Mt(o)){const a=M(o);e-=a.top+y(c(o,"borderTopWidth")),i-=a.left+y(c(o,"borderLeftWidth"))}return{top:e-y(c(t,"marginTop")),left:i-y(c(t,"marginLeft"))}}function Ee(t){const e=[0,0];t=K(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,c(t,"position")==="fixed"){const i=zt(t);return e[0]+=i.pageYOffset,e[1]+=i.pageXOffset,e}while(t=t.offsetParent);return e}const z=us("height"),Pe=us("width");function us(t){const e=ge(t);return(i,s)=>{if(G(s)){if(pe(i))return i["inner"+e];if(me(i)){const n=i.documentElement;return Math.max(n["offset"+e],n["scroll"+e])}return i=K(i),s=c(i,t),s=s==="auto"?i["offset"+e]:y(s)||0,s-se(i,t)}else return c(i,t,!s&&s!==0?"":+s+se(i,t)+"px")}}function se(t,e,i){return i===void 0&&(i="border-box"),c(t,"boxSizing")===i?Pt[e].map(ge).reduce((s,n)=>s+y(c(t,"padding"+n))+y(c(t,"border"+n+"Width")),0):0}function Ae(t){for(const e in Pt)for(const i in Pt[e])if(Pt[e][i]===t)return Pt[e][1-i];return t}function ft(t,e,i,s){return e===void 0&&(e="width"),i===void 0&&(i=window),s===void 0&&(s=!1),B(t)?sr(t).reduce((n,r)=>{const o=rr(r);return o&&(r=or(o==="vh"?z(zt(i)):o==="vw"?Pe(zt(i)):s?i["offset"+ge(e)]:C(i)[e],r)),n+y(r)},0):y(t)}const ir=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,sr=ct(t=>t.toString().replace(/\s/g,"").match(ir)||[]),nr=/(?:v[hw]|%)$/,rr=ct(t=>(t.match(nr)||[])[0]);function or(t,e){return t*y(e)/100}function ar(t){if(document.readyState!=="loading"){t();return}Y(document,"DOMContentLoaded",t)}function ds(t){return Bi(t,"")}function At(t,e){return G(e)?b(t).innerHTML:Bi(t,e)}function Bi(t,e){const i=A(e);return b(t).replaceChildren(...i),i}function hr(t,e){const i=A(e);return b(t).prepend(...i),i}function Q(t,e){const i=A(e);return b(t).append(...i),i}function Xe(t,e){const i=A(e);return b(t).before(...i),i}function Je(t,e){const i=A(e);return b(t).after(...i),i}function at(t){S(t).forEach(e=>e.remove())}function Ze(t,e){for(e=K(Xe(t,e));e.firstChild;)e=e.firstChild;return Q(e,t),e}function fs(t,e){return S(S(t).map(i=>i.hasChildNodes?Ze(S(i.childNodes),e):Q(i,e)))}function Qe(t){S(t).map(D).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>{Xe(e,e.childNodes),at(e)})}const lr=/^\s*<(\w+|!)[^>]*>/,cr=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Ue(t){const e=cr.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return lr.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,i.childNodes.length>1?S(i.childNodes):i.firstChild}function $t(t,e){if(!!Mt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;$t(t,e),t=i}}function b(t,e){return gs(t)?K(Ue(t)):Ci(t,e)}function A(t,e){return gs(t)?S(Ue(t)):Se(t,e)}function gs(t){return B(t)&&ht(t.trim(),"<")}const H={reads:[],writes:[],read(t){return this.reads.push(t),Hi(),t},write(t){return this.writes.push(t),Hi(),t},clear(t){ms(this.reads,t),ms(this.writes,t)},flush:zi};function zi(t){ps(H.reads),ps(H.writes.splice(0)),H.scheduled=!1,(H.reads.length||H.writes.length)&&Hi(t+1)}const ur=4;function Hi(t){H.scheduled||(H.scheduled=!0,t&&t<ur?Promise.resolve().then(()=>zi(t)):requestAnimationFrame(()=>zi(1)))}function ps(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function ms(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function Oi(){}Oi.prototype={positions:[],init(){this.positions=[];let t;this.unbind=E(document,"mousemove",e=>t=ie(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:s,top:n,bottom:r}=e,[o]=this.positions,a=we(this.positions),l=[o,a];return We(a,e)?!1:[[{x:i,y:n},{x:s,y:r}],[{x:i,y:r},{x:s,y:n}]].some(f=>{const h=dr(l,f);return h&&We(h,e)})}};function dr(t,e){let[{x:i,y:s},{x:n,y:r}]=t,[{x:o,y:a},{x:l,y:u}]=e;const f=(u-a)*(n-i)-(l-o)*(r-s);if(f===0)return!1;const h=((l-o)*(s-a)-(u-a)*(i-o))/f;return h<0?!1:{x:i+h*(n-i),y:s+h*(r-s)}}const U={};U.events=U.created=U.beforeConnect=U.connected=U.beforeDisconnect=U.disconnected=U.destroy=Fi,U.args=function(t,e){return e!==!1&&Fi(e||t)},U.update=function(t,e){return be(Fi(t,xt(e)?{read:e}:e),"order")},U.props=function(t,e){if(lt(e)){const i={};for(const s of e)i[s]=String;e=i}return U.methods(t,e)},U.computed=U.methods=function(t,e){return e?t?k({},t,e):e:t},U.data=function(t,e,i){return i?vs(t,e,i):e?t?function(s){return vs(t,e,s)}:e:t};function vs(t,e,i){return U.computed(xt(t)?t.call(i,i):t,xt(e)?e.call(i,i):e)}function Fi(t,e){return t=t&&!lt(t)?[t]:t,e?t?t.concat(e):lt(e)?e:[e]:t}function fr(t,e){return G(e)?t:e}function ne(t,e,i){const s={};if(xt(e)&&(e=e.options),e.extends&&(t=ne(t,e.extends,i)),e.mixins)for(const r of e.mixins)t=ne(t,r,i);for(const r in t)n(r);for(const r in e)Nt(t,r)||n(r);function n(r){s[r]=(U[r]||fr)(t[r],e[r],i)}return s}function ti(t,e){e===void 0&&(e=[]);try{return t?ht(t,"{")?JSON.parse(t):e.length&&!w(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,r]=s.split(/:(.*)/);return n&&!G(r)&&(i[n.trim()]=r.trim()),i},{}):{}}catch{return{}}}function ws(t){if(ii(t)&&Li(t,{func:"playVideo",method:"play"}),ei(t))try{t.play().catch(_)}catch{}}function bs(t){ii(t)&&Li(t,{func:"pauseVideo",method:"pause"}),ei(t)&&t.pause()}function xs(t){ii(t)&&Li(t,{func:"mute",method:"setVolume",value:0}),ei(t)&&(t.muted=!0)}function ys(t){return ei(t)||ii(t)}function ei(t){return(t==null?void 0:t.tagName)==="VIDEO"}function ii(t){return(t==null?void 0:t.tagName)==="IFRAME"&&($s(t)||ks(t))}function $s(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function ks(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Li(t,e){await pr(t),Ss(t,e)}function Ss(t,e){try{t.contentWindow.postMessage(JSON.stringify(k({event:"command"},e)),"*")}catch{}}const Ri="_ukPlayer";let gr=0;function pr(t){if(t[Ri])return t[Ri];const e=$s(t),i=ks(t),s=++gr;let n;return t[Ri]=new Promise(r=>{e&&Y(t,"load",()=>{const o=()=>Ss(t,{event:"listening",id:s});n=setInterval(o,100),o()}),Y(window,"message",r,!1,o=>{let{data:a}=o;try{return a=JSON.parse(a),a&&(e&&a.id===s&&a.event==="onReady"||i&&Number(a.player_id)===s)}catch{}}),t.src=""+t.src+(w(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+s)}).then(()=>clearInterval(n))}function re(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),F(t)?is(...Rt(t).map(s=>{const{top:n,left:r,bottom:o,right:a}=M(oe(s));return{top:n-e,left:r-i,bottom:o+e,right:a+i}}).concat(M(t))):!1}function Lt(t,e){if(pe(t)||me(t)?t=ae(t):t=K(t),G(e))return t.scrollTop;t.scrollTop=e}function Wi(t,e){let{offset:i=0}=e===void 0?{}:e;const s=F(t)?Rt(t):[];return s.reduce((a,l,u)=>{const{scrollTop:f,scrollHeight:h,offsetHeight:d}=l,g=h-_e(l),{height:x,top:m}=M(s[u-1]||t);let v=Math.ceil(m-M(oe(l)).top-i+f);return i>0&&d<x+i?v+=i:i=0,v>g?(i-=v-g,v=g):v<0&&(i-=v,v=0),()=>n(l,v-f).then(a)},()=>Promise.resolve())();function n(a,l){return new Promise(u=>{const f=a.scrollTop,h=r(Math.abs(l)),d=Date.now();(function g(){const x=o(rt((Date.now()-d)/h));Lt(a,f+l*x),x===1?u():requestAnimationFrame(g)})()})}function r(a){return 40*Math.pow(a,.375)}function o(a){return .5*(1-Math.cos(Math.PI*a))}}function ji(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!F(t))return 0;const[s]=Rt(t,/auto|scroll/,!0),{scrollHeight:n,scrollTop:r}=s,o=_e(s),a=n-o,l=Ee(t)[0]-Ee(s)[0],u=Math.max(0,l-o+e),f=Math.min(a,l+t.offsetHeight-i);return rt((r-u)/(f-u))}function Rt(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const s=ae(t);let n=$e(t).reverse();n=n.slice(n.indexOf(s)+1);const r=Tt(n,o=>c(o,"position")==="fixed");return~r&&(n=n.slice(r)),[s].concat(n.filter(o=>e.test(c(o,"overflow"))&&(!i||o.scrollHeight>_e(o)))).reverse()}function oe(t){return t===ae(t)?window:t}function _e(t){return(t===ae(t)?document.documentElement:t).clientHeight}function ae(t){const{document:e}=zt(t);return e.scrollingElement||e.documentElement}const Ne={width:["x","left","right"],height:["y","top","bottom"]};function Ts(t,e,i,s,n,r,o,a){i=Is(i),s=Is(s);const l={element:i,target:s};if(!t||!e)return l;const u=M(t),f=M(e),h=f;if(Cs(h,i,u,-1),Cs(h,s,f,1),n=Es(n,u.width,u.height),r=Es(r,f.width,f.height),n.x+=r.x,n.y+=r.y,h.left+=n.x,h.top+=n.y,o){let d=Rt(t).map(oe);a&&!w(d,a)&&d.unshift(a),d=d.map(g=>M(g)),it(Ne,(g,x)=>{let[m,v,V]=g;!(o===!0||w(o,m))||d.some(O=>{const J=i[m]===v?-u[x]:i[m]===V?u[x]:0,et=s[m]===v?f[x]:s[m]===V?-f[x]:0;if(h[v]<O[v]||h[v]+u[x]>O[V]){const bt=u[x]/2,ce=s[m]==="center"?-f[x]/2:0;return i[m]==="center"&&(pt(bt,ce)||pt(-bt,-ce))||pt(J,et)}function pt(bt,ce){const ue=y((h[v]+bt+ce-n[m]*2).toFixed(4));if(ue>=O[v]&&ue+u[x]<=O[V])return h[v]=ue,["element","target"].forEach(Fe=>{bt&&(l[Fe][m]=l[Fe][m]===Ne[x][1]?Ne[x][2]:Ne[x][1])}),!0}})})}return M(t,h),l}function Cs(t,e,i,s){it(Ne,(n,r)=>{let[o,a,l]=n;e[o]===l?t[a]+=i[r]*s:e[o]==="center"&&(t[a]+=i[r]*s/2)})}function Is(t){const e=/left|center|right/,i=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function Es(t,e,i){const[s,n]=(t||"").split(" ");return{x:s?y(s)*(St(s,"%")?e/100:1):0,y:n?y(n)*(St(n,"%")?i/100:1):0}}var mr=Object.freeze({__proto__:null,ajax:as,getImage:Pi,transition:cs,Transition:P,animate:Mi,Animation:vt,attr:I,hasAttr:Xt,removeAttr:ki,data:ut,addClass:$,removeClass:N,removeClasses:Ge,replaceClass:Ni,hasClass:T,toggleClass:j,dimensions:C,offset:M,position:Ke,offsetPosition:Ee,height:z,width:Pe,boxModelAdjust:se,flipPosition:Ae,toPx:ft,ready:ar,empty:ds,html:At,replaceChildren:Bi,prepend:hr,append:Q,before:Xe,after:Je,remove:at,wrapAll:Ze,wrapInner:fs,unwrap:Qe,fragment:Ue,apply:$t,$:b,$$:A,inBrowser:Ht,isRtl:Z,hasTouch:Ot,pointerDown:dt,pointerMove:Zt,pointerUp:mt,pointerEnter:Ft,pointerLeave:Qt,pointerCancel:Ut,on:E,off:ee,once:Y,trigger:p,createEvent:Ce,toEventTargets:Ei,isTouch:yt,getEventPos:ie,fastdom:H,isVoidElement:Si,isVisible:F,selInput:xe,isInput:Ti,selFocusable:qe,isFocusable:Ve,parent:D,filter:ye,matches:L,closest:ot,within:R,parents:$e,children:W,index:te,hasOwn:Nt,hyphenate:Dt,camelize:Vt,ucfirst:ge,startsWith:ht,endsWith:St,includes:w,findIndex:Tt,isArray:lt,toArray:On,assign:k,isFunction:xt,isObject:Ct,isPlainObject:It,isWindow:pe,isDocument:me,isNode:wi,isElement:Mt,isBoolean:Le,isString:B,isNumber:Yt,isNumeric:Bt,isEmpty:ve,isUndefined:G,toBoolean:xi,toNumber:Et,toFloat:y,toNode:K,toNodes:S,toWindow:zt,toMs:yi,isEqual:Re,swap:$i,last:we,each:it,sortBy:be,uniqueBy:es,clamp:rt,noop:_,intersectRect:is,pointInRect:We,Dimensions:Gt,getIndex:Kt,memoize:ct,Deferred:je,MouseTracker:Oi,mergeOptions:ne,parseOptions:ti,play:ws,pause:bs,mute:xs,isVideo:ys,positionAt:Ts,query:gt,queryAll:ke,find:Ci,findAll:Se,escape:Te,css:c,getCssVar:_i,propName:Ye,isInView:re,scrollTop:Lt,scrollIntoView:Wi,scrolledOver:ji,scrollParents:Rt,getViewport:oe,getViewportClientHeight:_e,getScrollingElement:ae});function vr(t){const e=t.data;t.use=function(n){if(!n.installed)return n.call(null,this),n.installed=!0,this},t.mixin=function(n,r){r=(B(r)?t.component(r):r)||this,r.options=ne(r.options,n)},t.extend=function(n){n=n||{};const r=this,o=function(l){this._init(l)};return o.prototype=Object.create(r.prototype),o.prototype.constructor=o,o.options=ne(r.options,n),o.super=r,o.extend=r.extend,o},t.update=function(n,r){n=n?K(n):document.body;for(const o of $e(n).reverse())s(o[e],r);$t(n,o=>s(o[e],r))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(n){i=b(n)}});function s(n,r){if(!!n)for(const o in n)n[o]._connected&&n[o]._callUpdate(r)}}function wr(t){t.prototype._callHook=function(s){var n;(n=this.$options[s])==null||n.forEach(r=>r.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(s){s===void 0&&(s="update"),!!this._connected&&((s==="update"||s==="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(s.type||s)))},t.prototype._callWatches=function(){if(this._watch)return;const s=!Nt(this,"_watch");this._watch=H.read(()=>{this._connected&&i.call(this,s),this._watch=null})};function e(s){for(const{read:n,write:r,events:o}of this.$options.update){if(!s.has("update")&&(!o||!o.some(l=>s.has(l))))continue;let a;n&&(a=n.call(this,this._data,s),a&&It(a)&&k(this._data,a)),r&&a!==!1&&H.write(()=>r.call(this,this._data,s))}}function i(s){const{$options:{computed:n}}=this,r=k({},this._computeds);this._computeds={};for(const o in n){const{watch:a,immediate:l}=n[o];a&&(s&&l||Nt(r,o)&&!Re(r[o],this[o]))&&a.call(this,this[o],r[o])}}}function br(t){let e=0;t.prototype._init=function(h){h=h||{},h.data=l(h,this.constructor.options),this.$options=ne(this.constructor.options,h,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),h.el&&this.$mount(h.el)},t.prototype._initData=function(){const{data:h={}}=this.$options;for(const d in h)this.$props[d]=this[d]=h[d]},t.prototype._initMethods=function(){const{methods:h}=this.$options;if(h)for(const d in h)this[d]=h[d].bind(this)},t.prototype._initComputeds=function(){const{computed:h}=this.$options;if(this._computeds={},h)for(const d in h)s(this,d,h[d])},t.prototype._initProps=function(h){let d;h=h||i(this.$options,this.$name);for(d in h)G(h[d])||(this.$props[d]=h[d]);const g=[this.$options.computed,this.$options.methods];for(d in this.$props)d in h&&r(g,d)&&(this[d]=this.$props[d])},t.prototype._initEvents=function(){var h;this._events=[],(h=this.$options.events)==null||h.forEach(d=>{if(Nt(d,"handler"))n(this,d);else for(const g in d)n(this,d[g],g)})},t.prototype._unbindEvents=function(){this._events.forEach(h=>h()),delete this._events},t.prototype._initObservers=function(){this._observers=[u(this),f(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(h=>h==null?void 0:h.disconnect())};function i(h,d){const g={},{args:x=[],props:m={},el:v}=h;if(!m)return g;for(const O in m){const J=Dt(O);let et=ut(v,J);G(et)||(et=m[O]===Boolean&&et===""?!0:o(m[O],et),!(J==="target"&&(!et||ht(et,"_")))&&(g[O]=et))}const V=ti(ut(v,d),x);for(const O in V){const J=Vt(O);m[J]!==void 0&&(g[J]=o(m[J],V[O]))}return g}function s(h,d,g){Object.defineProperty(h,d,{enumerable:!0,get(){const{_computeds:x,$props:m,$el:v}=h;return Nt(x,d)||(x[d]=(g.get||g).call(h,m,v)),x[d]},set(x){const{_computeds:m}=h;m[d]=g.set?g.set.call(h,x):x,G(m[d])&&delete m[d]}})}function n(h,d,g){It(d)||(d={name:g,handler:d});let{name:x,el:m,handler:v,capture:V,passive:O,delegate:J,filter:et,self:pt}=d;if(m=xt(m)?m.call(h):m||h.$el,lt(m)){m.forEach(bt=>n(h,k({},d,{el:bt}),g));return}!m||et&&!et.call(h)||h._events.push(E(m,x,J?B(J)?J:J.call(h):null,B(v)?h[v]:v.bind(h),{passive:O,capture:V,self:pt}))}function r(h,d){return h.every(g=>!g||!Nt(g,d))}function o(h,d){return h===Boolean?xi(d):h===Number?Et(d):h==="list"?a(d):h?h(d):d}function a(h){return lt(h)?h:B(h)?h.split(/,(?![^(]*\))/).map(d=>Bt(d)?Et(d):xi(d.trim())):[h]}function l(h,d){let{data:g={}}=h,{args:x=[],props:m={}}=d;lt(g)&&(g=g.slice(0,x.length).reduce((v,V,O)=>(It(V)?k(v,V):v[x[O]]=V,v),{}));for(const v in g)G(g[v])?delete g[v]:m[v]&&(g[v]=o(m[v],g[v]));return g}function u(h){const{el:d}=h.$options,g=new MutationObserver(()=>h.$emit());return g.observe(d,{childList:!0,subtree:!0}),g}function f(h){const{$name:d,$options:g,$props:x}=h,{attrs:m,props:v,el:V}=g;if(!v||m===!1)return;const O=lt(m)?m:Object.keys(v),J=O.map(pt=>Dt(pt)).concat(d),et=new MutationObserver(pt=>{const bt=i(g,d);pt.some(ce=>{let{attributeName:ue}=ce;const Fe=ue.replace("data-","");return(Fe===d?O:[Vt(Fe),Vt(ue)]).some(Ui=>!G(bt[Ui])&&bt[Ui]!==x[Ui])})&&h.$reset()});return et.observe(V,{attributes:!0,attributeFilter:J.concat(J.map(pt=>"data-"+pt))}),et}}function xr(t){const e=t.data;t.prototype.$create=function(s,n,r){return t[s](n,r)},t.prototype.$mount=function(s){const{name:n}=this.$options;s[e]||(s[e]={}),!s[e][n]&&(s[e][n]=this,this.$el=this.$options.el=this.$options.el||s,R(s,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(s){s===void 0&&(s=!1);const{el:n,name:r}=this.$options;n&&this._callDisconnected(),this._callHook("destroy"),!!(n!=null&&n[e])&&(delete n[e][r],ve(n[e])||delete n[e],s&&at(this.$el))},t.prototype.$emit=function(s){this._callUpdate(s)},t.prototype.$update=function(s,n){s===void 0&&(s=this.$el),t.update(s,n)},t.prototype.$getComponent=t.getComponent;const i=ct(s=>t.prefix+Dt(s));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function yr(t){const e=t.data,i={};t.component=function(s,n){const r=Dt(s);if(s=Vt(r),!n)return It(i[s])&&(i[s]=t.extend(i[s])),i[s];t[s]=function(a,l){const u=t.component(s);return u.options.functional?new u({data:It(a)?a:[...arguments]}):a?A(a).map(f)[0]:f();function f(h){const d=t.getComponent(h,s);if(d)if(l)d.$destroy();else return d;return new u({el:h,data:l})}};const o=It(n)?k({},n):n.options;return o.name=s,o.install==null||o.install(t,o,s),t._initialized&&!o.functional&&H.read(()=>t[s]("[uk-"+r+"],[data-uk-"+r+"]")),i[s]=It(n)?o:n},t.getComponents=s=>(s==null?void 0:s[e])||{},t.getComponent=(s,n)=>t.getComponents(s)[n],t.connect=s=>{if(s[e])for(const n in s[e])s[e][n]._callConnected();for(const n of s.attributes){const r=Ps(n.name);r&&r in i&&t[r](s)}},t.disconnect=s=>{for(const n in s[e])s[e][n]._callDisconnected()}}const Ps=ct(t=>ht(t,"uk-")||ht(t,"data-uk-")?Vt(t.replace("data-uk-","").replace("uk-","")):!1),tt=function(t){this._init(t)};tt.util=mr,tt.data="__uikit__",tt.prefix="uk-",tt.options={},tt.version="3.11.2-dev.7dd548556",vr(tt),wr(tt),br(tt),yr(tt),xr(tt);function $r(t){if(!Ht)return;let e;const i=()=>{e||(e=!0,H.read(()=>e=!1),t.update(null,"resize"))};E(window,"load resize",i),E(document,"loadedmetadata load",i,!0),"ResizeObserver"in window&&new ResizeObserver(i).observe(document.documentElement);let s;E(window,"scroll",r=>{s||(s=!0,H.read(()=>s=!1),t.update(null,r.type))},{passive:!0,capture:!0});let n=0;E(document,"animationstart",r=>{let{target:o}=r;(c(o,"animationName")||"").match(/^uk-.*(left|right)/)&&(n++,c(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--n||c(document.documentElement,"overflowX","")},yi(c(o,"animationDuration"))+100))},!0),E(document,dt,r=>{if(!yt(r))return;const o=ie(r),a="tagName"in r.target?r.target:D(r.target);Y(document,mt+" "+Ut+" scroll",l=>{const{x:u,y:f}=ie(l);(l.type!=="scroll"&&a&&u&&Math.abs(o.x-u)>100||f&&Math.abs(o.y-f)>100)&&setTimeout(()=>{p(a,"swipe"),p(a,"swipe"+kr(o.x,o.y,u,f))})})},{passive:!0})}function kr(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}function Sr(t){const{connect:e,disconnect:i}=t;if(!Ht||!window.MutationObserver)return;H.read(function(){document.body&&$t(document.body,e),new MutationObserver(r=>r.forEach(s)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(r=>r.forEach(n)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function s(r){let{addedNodes:o,removedNodes:a}=r;for(const l of o)$t(l,e);for(const l of a)$t(l,i)}function n(r){var o;let{target:a,attributeName:l}=r;const u=Ps(l);if(!(!u||!(u in t))){if(Xt(a,l)){t[u](a);return}(o=t.getComponent(a,u))==null||o.$destroy()}}}var st={connected(){!T(this.$el,this.$name)&&$(this.$el,this.$name)}},kt={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement(t,e,i){return new Promise(s=>Promise.all(S(t).map(n=>{const r=Le(e)?e:!this.isToggled(n);if(!p(n,"before"+(r?"show":"hide"),[this]))return Promise.reject();const o=(xt(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?As(this):Tr(this))(n,r),a=r?this.clsEnter:this.clsLeave;$(n,a),p(n,r?"show":"hide",[this]);const l=()=>{N(n,a),p(n,r?"shown":"hidden",[this]),this.$update(n)};return o?o.then(l,()=>(N(n,a),Promise.reject())):l()})).then(s,_))},isToggled(t){return t===void 0&&(t=this.$el),[t]=S(t),T(t,this.clsEnter)?!0:T(t,this.clsLeave)?!1:this.cls?T(t,this.cls.split(" ")[0]):F(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=w(this.cls," ")||e!==T(t,this.cls),i&&j(t,this.cls,w(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),A("[autofocus]",t).some(s=>F(s)?s.focus()||!0:s.blur()),i&&(p(t,"toggled",[e,this]),this.$update(t))}}};function As(t){let{isToggled:e,duration:i,initProps:s,hideProps:n,transition:r,_toggle:o}=t;return(a,l)=>{const u=P.inProgress(a),f=a.hasChildNodes?y(c(a.firstElementChild,"marginTop"))+y(c(a.lastElementChild,"marginBottom")):0,h=F(a)?z(a)+(u?0:f):0;P.cancel(a),e(a)||o(a,!0),z(a,""),H.flush();const d=z(a)+(u?0:f);return z(a,h),(l?P.start(a,k({},s,{overflow:"hidden",height:d}),Math.round(i*(1-h/d)),r):P.start(a,n,Math.round(i*(h/d)),r).then(()=>o(a,!1))).then(()=>c(a,s))}}function Tr(t){return(e,i)=>{vt.cancel(e);const{animation:s,duration:n,_toggle:r}=t;return i?(r(e,!0),vt.in(e,s[0],n,t.origin)):vt.out(e,s[1]||s[0],n,t.origin).then(()=>r(e,!1))}}var _s={mixins:[st,kt],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return A(i,e)},watch(t,e){if(t.forEach(s=>si(b(this.content,s),!T(s,this.clsOpen))),e||T(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=>b(e,i))}},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(te(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[Kt(t,this.items)]];const s=ye(this.items,"."+this.clsOpen);!this.multiple&&!w(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&!ye(i,":not(."+this.clsOpen+")").length)&&i.forEach(n=>this.toggleElement(n,!T(n,this.clsOpen),async(r,o)=>{j(r,this.clsOpen,o),I(b(this.$props.toggle,r),"aria-expanded",o);const a=b((r._wrapper?"> * ":"")+this.content,r);if(e===!1||!this.hasTransition){si(a,!o);return}if(r._wrapper||(r._wrapper=Ze(a,"<div"+(o?" hidden":"")+">")),si(a,!1),await As(this)(r._wrapper,o),si(a,!o),delete r._wrapper,Qe(a),o){const l=b(this.$props.toggle,r);re(l)||Wi(l,{offset:this.offset})}}))}}};function si(t,e){t&&(t.hidden=e)}var Cr={mixins:[st,kt],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:k({opacity:0},kt.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)}}},Ns={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView(t){let{autoplay:e}=t;return e==="inview"}},connected(){this.inView&&!Xt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&xs(this.$el)},update:{read(){return ys(this.$el)?{visible:F(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&re(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?bs(this.$el):(this.autoplay===!0||this.inView&&i)&&ws(this.$el)},events:["resize","scroll"]}},Ir={mixins:[Ns],props:{width:Number,height:Number},data:{automute:!0},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Er(t)||D(t),s=Gt.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:i+(i%2?1:0),height:e+(e%2?1:0)});return!s.width||!s.height?!1:s},write(t){let{height:e,width:i}=t;c(this.$el,{height:e,width:i})},events:["resize"]}};function Er(t){for(;t=D(t);)if(c(t,"position")!=="static")return t}var he={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&b(e)}}},Ds={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Z?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos(t){let{pos:e}=t;return e.split("-").concat("center").slice(0,2)},dir(){return this.pos[0]},align(){return this.pos[1]}},methods:{positionAt(t,e,i){Ge(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:s}=this;const n=this.getAxis();if(!Bt(s)){const a=b(s);s=a?M(a)[n==="x"?"left":"top"]-M(e)[n==="x"?"right":"bottom"]:0}const{x:r,y:o}=Ts(t,e,n==="x"?Ae(this.dir)+" "+this.align:this.align+" "+Ae(this.dir),n==="x"?this.dir+" "+this.align:this.align+" "+this.dir,n==="x"?""+(this.dir==="left"?-s:s):" "+(this.dir==="top"?-s:s),null,this.flip,i).target;this.dir=n==="x"?r:o,this.align=n==="x"?o:r,j(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let X;var Ms={mixins:[he,Ds,kt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?window:gt(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new Oi},connected(){$(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",gt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,I(this.target,"aria-haspopup",!0))},disconnected(){this.isActive()&&(X=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!R(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),L(this.$el,":focus,:hover")||this.hide()}},{name:Ft+" focusin",filter(){return w(this.mode,"hover")},handler(t){yt(t)||this.clearTimers()}},{name:Qt+" focusout",filter(){return w(this.mode,"hover")},handler(t){!yt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){X=this,this.tracker.init(),Y(this.$el,"hide",E(document,dt,t=>{let{target:e}=t;return!R(e,this.$el)&&Y(document,mt+" "+Ut+" scroll",i=>{let{defaultPrevented:s,type:n,target:r}=i;!s&&n===mt&&e===r&&!(this.target&&R(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),Y(this.$el,"hide",E(document,"keydown",t=>{t.keyCode===27&&this.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){X=X===null&&R(e,this.$el)&&this.isToggled()?this:X;return}X=this.isActive()?null:X,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!T(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(X){if(e&&X.isDelaying){this.showTimer=setTimeout(()=>L(t,":hover")&&this.show(),10);return}let i;for(;X&&i!==X&&!R(this.$el,X.$el);)i=X,X.hide(!1)}this.container&&D(this.$el)!==this.container&&Q(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t){t===void 0&&(t=!0);const e=()=>this.toggleElement(this.$el,!1,!1);this.clearTimers(),this.isDelaying=Pr(this.$el).some(i=>this.tracker.movesTo(i)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(e,this.delayHide):e()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return X===this},position(){N(this.$el,this.clsDrop+"-stack"),j(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=M(this.boundary),e=this.boundaryAlign?t:M(this.target);if(this.align==="justify"){const i=this.getAxis()==="y"?"width":"height";c(this.$el,i,e[i])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&$(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Pr(t){const e=[];return $t(t,i=>c(i,"position")!=="static"&&e.push(i)),e}var Ar={mixins:[st],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return b(xe,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&D(this.input)===e&&this.input.nextElementSibling||gt(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const s=Ti(t)?"value":"textContent",n=t[s],r=e.files&&e.files[0]?e.files[0].name:L(e,"select")&&(i=A("option",e).filter(o=>o.selected)[0])?i.textContent:e.value;n!==r&&(t[s]=r)},events:[{name:"change",handler(){this.$update()}},{name:"reset",el(){return ot(this.$el,"form")},handler(){this.$update()}}]},_r={update:{read(t){const e=re(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},Bs={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=qi(this.$el.children);return{rows:t,columns:Nr(t)}},write(t){let{columns:e,rows:i}=t;for(const s of i)for(const n of s)j(n,this.margin,i[0]!==s),j(n,this.firstColumn,!!~e[0].indexOf(n))},events:["resize"]}};function qi(t){return zs(t,"top","bottom")}function Nr(t){const e=[];for(const i of t){const s=zs(i,"left","right");for(let n=0;n<s.length;n++)e[n]=e[n]?e[n].concat(s[n]):s[n]}return Z?e.reverse():e}function zs(t,e,i){const s=[[]];for(const n of t){if(!F(n))continue;let r=ni(n);for(let o=s.length-1;o>=0;o--){const a=s[o];if(!a[0]){a.push(n);break}let l;if(a[0].offsetParent===n.offsetParent?l=ni(a[0]):(r=ni(n,!0),l=ni(a[0],!0)),r[e]>=l[i]-1&&r[e]!==l[e]){s.push([n]);break}if(r[i]-1>l[e]||r[e]===l[e]){a.push(n);break}if(o===0){s.unshift([n]);break}}}return s}function ni(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:r}=t;return e&&([i,s]=Ee(t)),{top:i,left:s,bottom:i+n,right:s+r}}var Dr={extends:Bs,mixins:[st],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&$(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;j(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||Hs(this.$el))return t.translates=!1,!1;let s=!1;const n=W(this.$el),r=zr(e),o=Br(n,this.margin)*(i.length-1),a=Math.max(...r)+o;this.masonry&&(e=e.map(u=>be(u,"offsetTop")),s=Mr(i,e));let l=Math.abs(this.parallax);return l&&(l=r.reduce((u,f,h)=>Math.max(u,f+o+(h%2?l:l/8)-a),0)),{padding:l,columns:e,translates:s,height:s?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 Hs(this.$el)?!1:{scrolled:this.parallax?ji(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:s}=t;i===!1&&!s||e.forEach((n,r)=>n.forEach((o,a)=>c(o,"transform",!i&&!s?"":"translateY("+((s&&-s[r][a])+(i?r%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function Hs(t){return W(t).some(e=>c(e,"position")==="absolute")}function Mr(t,e){const i=t.map(s=>Math.max(...s.map(n=>n.offsetHeight)));return e.map(s=>{let n=0;return s.map((r,o)=>n+=o?i[o-1]-s[o-1].offsetHeight:0)})}function Br(t,e){const[i]=t.filter(s=>T(s,e));return y(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}function zr(t){return t.map(e=>e.reduce((i,s)=>i+s.offsetHeight,0))}var Hr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return A(i,e)}},update:{read(){return{rows:(this.row?qi(this.elements):[this.elements]).map(Or)}},write(t){let{rows:e}=t;e.forEach(i=>{let{heights:s,elements:n}=i;return n.forEach((r,o)=>c(r,"minHeight",s[o]))})},events:["resize"]}};function Or(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Os),i=Math.max(...e);const s=t.some(r=>r.style.minHeight),n=t.some((r,o)=>!r.style.minHeight&&e[o]<i);return s&&n&&(c(t,"minHeight",""),e=t.map(Os),i=Math.max(...e)),e=t.map((r,o)=>e[o]===i&&y(r.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function Os(t){let e=!1;F(t)||(e=t.style.display,c(t,"display","block","important"));const i=C(t).height-se(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var Fr={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read(t){let{minHeight:e}=t;if(!F(this.$el))return!1;let i="";const s=se(this.$el,"height","content-box");if(this.expand)i=z(window)-(C(document.documentElement).height-C(this.$el).height)-s||"";else{if(i="calc(100vh",this.offsetTop){const{top:n}=M(this.$el);i+=n>0&&n<z(window)/2?" - "+n+"px":""}this.offsetBottom===!0?i+=" - "+C(this.$el.nextElementSibling).height+"px":Bt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&St(this.offsetBottom,"px")?i+=" - "+y(this.offsetBottom)+"px":B(this.offsetBottom)&&(i+=" - "+C(gt(this.offsetBottom,this.$el)).height+"px"),i+=(s?" - "+s+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;c(this.$el,{minHeight:e}),e!==i&&p(this.$el,"resize"),this.minHeight&&y(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},Fs={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&w(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=qr(t,this.$el);return this.svgEl&&e!==this.svgEl&&at(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},_)},disconnected(){this.svg.then(t=>{this._connected||(Si(this.$el)&&(this.$el.hidden=!1),at(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&F(this.svgEl))},write(){jr(this.svgEl)},type:["resize"]},methods:{async getSvg(){return Rr(await Lr(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const r in this.$options.props)w(this.include,r)&&r in this&&I(t,r,this[r]);for(const r in this.attributes){const[o,a]=this.attributes[r].split(":",2);I(t,o,a)}this.id||ki(t,"id");const i=["width","height"];let s=i.map(r=>this[r]);s.some(r=>r)||(s=i.map(r=>I(e,r)));const n=I(e,"viewBox");n&&!s.some(r=>r)&&(s=n.split(" ").slice(2)),s.forEach((r,o)=>I(t,i[o],y(r)*this.ratio||null))}}};const Lr=ct(async t=>t?ht(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Rr(t,e){var i;return e&&w(t,"<symbol")&&(t=Wr(t,e)||t),t=b(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const Ls=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,ri={};function Wr(t,e){if(!ri[t]){ri[t]={},Ls.lastIndex=0;let i;for(;i=Ls.exec(t);)ri[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return ri[t][e]}function jr(t){const e=Rs(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function Rs(t){return Math.ceil(Math.max(0,...A("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function qr(t,e){if(Si(e)||e.tagName==="CANVAS"){e.hidden=!0;const s=e.nextElementSibling;return Ws(t,s)?s:Je(e,t)}const i=e.lastElementChild;return Ws(t,i)?i:Q(e,t)}function Ws(t,e){return js(t)&&js(e)&&qs(t)===qs(e)}function js(t){return(t==null?void 0:t.tagName)==="svg"}function qs(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var Vr='<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>',Yr='<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>',Gr='<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>',Kr='<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>',Xr='<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>',Jr='<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>',Zr='<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>',Qr='<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>',Ur='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',to='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',eo='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',io='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',so='<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>',no='<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>',ro='<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>',oo='<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 oi={spinner:ro,totop:oo,marker:Gr,"close-icon":Vr,"close-large":Yr,"navbar-toggle-icon":Kr,"overlay-icon":Xr,"pagination-next":Jr,"pagination-previous":Zr,"search-icon":Qr,"search-large":Ur,"search-navbar":to,"slidenav-next":eo,"slidenav-next-large":io,"slidenav-previous":so,"slidenav-previous-large":no},Vs={install:co,extends:Fs,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){$(this.$el,"uk-icon")},methods:{getSvg(){const t=uo(this.icon);return t?Promise.resolve(t):Promise.reject("Icon not found.")}}},wt={args:!1,extends:Vs,data:t=>({icon:Dt(t.constructor.options.name)}),beforeConnect(){$(this.$el,this.$name)}},Ys={extends:wt,beforeConnect(){$(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return T(e,"uk-slidenav-large")?i+"-large":i}}},ao={extends:wt,computed:{icon(t,e){let{icon:i}=t;return T(e,"uk-search-icon")&&$e(e,".uk-search-large").length?"search-large":$e(e,".uk-search-navbar").length?"search-navbar":i}}},ho={extends:wt,computed:{icon(){return"close-"+(T(this.$el,"uk-close-large")?"large":"icon")}}},lo={extends:wt,async connected(){const t=await this.svg;t&&this.ratio!==1&&c(b("circle",t),"strokeWidth",1/this.ratio)}},ai={};function co(t){t.icon.add=(e,i)=>{const s=B(e)?{[e]:i}:e;it(s,(n,r)=>{oi[r]=n,delete ai[r]}),t._initialized&&$t(document.body,n=>it(t.getComponents(n),r=>{r.$options.isIcon&&r.icon in s&&r.$reset()}))}}function uo(t){return oi[t]?(ai[t]||(ai[t]=b((oi[fo(t)]||oi[t]).trim())),ai[t].cloneNode(!0)):null}function fo(t){return Z?$i($i(t,"left","right"),"previous","next"):t}var go={args:"dataSrc",props:{dataSrc:String,dataSrcset:Boolean,sizes:String,width:Number,height:Number,offsetTop:String,offsetLeft:String,target:String},data:{dataSrc:"",dataSrcset:!1,sizes:!1,width:!1,height:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1},computed:{cacheKey(t){let{dataSrc:e}=t;return this.$name+"."+e},width(t){let{width:e,dataWidth:i}=t;return e||i},height(t){let{height:e,dataHeight:i}=t;return e||i},sizes(t){let{sizes:e,dataSizes:i}=t;return e||i},isImg(t,e){return Xs(e)},target:{get(t){let{target:e}=t;return[this.$el,...ke(e,this.$el)]},watch(){this.observe()}},offsetTop(t){let{offsetTop:e}=t;return ft(e,"height")},offsetLeft(t){let{offsetLeft:e}=t;return ft(e,"width")}},connected(){if(!window.IntersectionObserver){De(this.$el,this.dataSrc,this.dataSrcset,this.sizes);return}Wt[this.cacheKey]?De(this.$el,Wt[this.cacheKey],this.dataSrcset,this.sizes):this.isImg&&this.width&&this.height&&De(this.$el,po(this.width,this.height,this.sizes)),this.observer=new IntersectionObserver(this.load,{rootMargin:this.offsetTop+"px "+this.offsetLeft+"px"}),requestAnimationFrame(this.observe)},disconnected(){this.observer&&this.observer.disconnect()},update:{read(t){let{image:e}=t;if(!this.observer||(!e&&document.readyState==="complete"&&this.load(this.observer.takeRecords()),this.isImg))return!1;e&&e.then(i=>i&&i.currentSrc!==""&&De(this.$el,Vi(i)))},write(t){if(this.dataSrcset&&window.devicePixelRatio!==1){const e=c(this.$el,"backgroundSize");(e.match(/^(auto\s?)+$/)||y(e)===t.bgSize)&&(t.bgSize=xo(this.dataSrcset,this.sizes),c(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(t){!t.some(e=>G(e.isIntersecting)||e.isIntersecting)||(this._data.image=Pi(this.dataSrc,this.dataSrcset,this.sizes).then(e=>(De(this.$el,Vi(e),e.srcset,e.sizes),Wt[this.cacheKey]=Vi(e),e),e=>p(this.$el,new e.constructor(e.type,e))),this.observer.disconnect())},observe(){this._connected&&!this._data.image&&this.target.forEach(t=>this.observer.observe(t))}}};function De(t,e,i,s){if(Xs(t)){const n=(r,o)=>o&&o!==t[r]&&(t[r]=o);n("sizes",s),n("srcset",i),n("src",e)}else e&&!w(t.style.backgroundImage,e)&&(c(t,"backgroundImage","url("+Te(e)+")"),p(t,Ce("load",!1)))}function po(t,e,i){return i&&({width:t,height:e}=Gt.ratio({width:t,height:e},"width",ft(Ks(i)))),'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="'+t+'" height="'+e+'"></svg>'}const Gs=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function Ks(t){let e;for(Gs.lastIndex=0;e=Gs.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=wo(e[2]);break}return e||"100vw"}const mo=/\d+(?:\w+|%)/g,vo=/[+-]?(\d+)/g;function wo(t){return ht(t,"calc")?t.slice(5,-1).replace(mo,e=>ft(e)).replace(/ /g,"").match(vo).reduce((e,i)=>e+ +i,0):t}const bo=/\s+\d+w\s*(?:,|$)/g;function xo(t,e){const i=ft(Ks(e)),s=(t.match(bo)||[]).map(y).sort((n,r)=>n-r);return s.filter(n=>n>=i)[0]||s.pop()||""}function Xs(t){return t.tagName==="IMG"}function Vi(t){return t.currentSrc||t.src}const Js="__test__";let Wt;try{Wt=window.sessionStorage||{},Wt[Js]=1,delete Wt[Js]}catch{Wt={}}var hi={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=yo(this.media);return!t||window.matchMedia(t).matches}}};function yo(t){if(B(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=y(_i(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var $o={mixins:[st,hi],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||_i("leader-fill-content")}},connected(){[this.wrapper]=fs(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Qe(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const s=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||s!==i,hide:!this.matchMedia}},write(t){j(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,I(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}};const nt=[];var Yi={mixins:[st,he,kt],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 b(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){w(nt,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===w(nt,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(w(nt,this))return!1;!this.stack&&nt.length?(Promise.all(nt.map(e=>e.hide())).then(this.show),t.preventDefault()):nt.push(this)}},{name:"show",self:!0,handler(){const t=document.documentElement;Pe(window)>t.clientWidth&&this.overlay&&c(document.body,"overflowY","scroll"),this.stack&&c(this.$el,"zIndex",y(c(this.$el,"zIndex"))+nt.length),$(t,this.clsPage),this.bgClose&&Y(this.$el,"hide",E(document,dt,e=>{let{target:i}=e;we(nt)!==this||this.overlay&&!R(i,this.$el)||R(i,this.panel)||Y(document,mt+" "+Ut+" scroll",s=>{let{defaultPrevented:n,type:r,target:o}=s;!n&&r===mt&&i===o&&this.hide()},!0)}),{self:!0}),this.escClose&&Y(this.$el,"hide",E(document,"keydown",e=>{e.keyCode===27&&we(nt)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Ve(this.$el)||I(this.$el,"tabindex","-1"),b(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){w(nt,this)&&nt.splice(nt.indexOf(this),1),nt.length||c(document.body,"overflowY",""),c(this.$el,"zIndex",""),nt.some(t=>t.clsPage===this.clsPage)||N(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&D(this.$el)!==this.container?(Q(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Zs(this))},hide(){return this.toggleElement(this.$el,!1,Zs(this))}}};function Zs(t){let{transitionElement:e,_toggle:i}=t;return(s,n)=>new Promise((r,o)=>Y(s,"show hide",()=>{s._reject&&s._reject(),s._reject=o,i(s,n);const a=Y(e,"transitionstart",()=>{Y(e,"transitionend transitioncancel",r,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),r()},yi(c(e,"transitionDuration")))})).then(()=>delete s._reject)}var ko={install:So,mixins:[Yi],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(){T(this.panel,"uk-margin-auto-vertical")?$(this.$el,"uk-flex"):c(this.$el,"display","block"),z(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),N(this.$el,"uk-flex")}}]};function So(t){let{modal:e}=t;e.dialog=function(s,n){const r=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+s+"</div> </div>",n);return r.show(),E(r.$el,"hidden",async()=>{await Promise.resolve(),r.$destroy(!0)},{self:!0}),r},e.alert=function(s,n){return i(r=>{let{labels:o}=r;return'<div class="uk-modal-body">'+(B(s)?s:At(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+o.ok+"</button> </div>"},n,r=>r.resolve())},e.confirm=function(s,n){return i(r=>{let{labels:o}=r;return'<form> <div class="uk-modal-body">'+(B(s)?s:At(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+o.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+o.ok+"</button> </div> </form>"},n,r=>r.reject())},e.prompt=function(s,n,r){return i(o=>{let{labels:a}=o;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(B(s)?s:At(s))+'</label> <input class="uk-input" value="'+(n||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},r,o=>o.resolve(null),o=>b("input",o.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(s,n,r,o){n=k({bgClose:!1,escClose:!0,labels:e.labels},n);const a=e.dialog(s(n),n),l=new je;let u=!1;return E(a.$el,"submit","form",f=>{f.preventDefault(),l.resolve(o==null?void 0:o(a)),u=!0,a.hide()}),E(a.$el,"hide",()=>!u&&r(l)),l.promise.dialog=a,l.promise}}var To={extends:_s,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Qs=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var Co={mixins:[st,he],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:Qs,align:Z?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:Qs,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:s}=t;return i===!0||s?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return gt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||gt(e,this.$el)||b("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=b("<div></div>"))):null},watch(t){$(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const s=A("."+i,e);return this.dropContainer!==e&&A("."+i,this.dropContainer).forEach(n=>{var r;const o=(r=this.getDropdown(n))==null?void 0:r.target;!w(s,n)&&o&&R(o,this.$el)&&s.push(n)}),s},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),k({},this.$props,{boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset}))},immediate:!0},toggles(t,e){let{dropdown:i}=t;return A(i,e)}},disconnected(){this.dropbar&&at(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&w(i.mode,"hover")&&i.target&&!R(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,s=this.getActive();i===jt.DOWN&&Xt(e,"aria-expanded")&&(t.preventDefault(),!s||s.target!==e?(e.click(),Y(this.dropContainer,"show",n=>{let{target:r}=n;return tn(r)})):tn(s.$el)),Us(t,this.toggles,s)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!w(this.dropdowns,e))return;const s=this.getActive(),n=A(qe,e),r=Tt(n,a=>L(a,":focus"));if(i===jt.UP&&(t.preventDefault(),r>0&&n[r-1].focus()),i===jt.DOWN&&(t.preventDefault(),r<n.length-1&&n[r+1].focus()),i===jt.ESC){var o;s==null||(o=s.target)==null||o.focus()}Us(t,this.toggles,s)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&w(t.mode,"hover")&&!this.dropdowns.some(e=>L(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){D(this.dropbar)||Je(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:s}=e;!T(i,this.clsDrop)||(this.dropbarMode==="slide"&&$(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&$(i,this.clsDrop+"-dropbar"),s==="bottom"&&this.transitionTo(i.offsetHeight+y(c(i,"marginTop"))+y(c(i,"marginBottom")),i))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const s=this.getActive();L(this.dropbar,":hover")&&(s==null?void 0:s.$el)===i&&!this.toggles.some(n=>s.target!==n&&L(n,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!T(i,this.clsDrop))return;const s=this.getActive();(!s||(s==null?void 0:s.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return X&&R(X.target,this.$el)&&X},transitionTo(t,e){const{dropbar:i}=this,s=F(i)?z(i):0;return e=s<t&&e,c(e,"clip","rect(0,"+e.offsetWidth+"px,"+s+"px,0)"),z(i,s),P.cancel([e,i]),Promise.all([P.start(i,{height:t},this.duration),P.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(_).then(()=>{c(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Us(t,e,i){const{current:s,keyCode:n}=t,r=(i==null?void 0:i.target)||s,o=e.indexOf(r);n===jt.LEFT&&o>0&&(i==null||i.hide(!1),e[o-1].focus()),n===jt.RIGHT&&o<e.length-1&&(i==null||i.hide(!1),e[o+1].focus()),n===jt.TAB&&(r.focus(),i==null||i.hide(!1))}function tn(t){if(!b(":focus",t)){var e;(e=b(qe,t))==null||e.focus()}}const jt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Io={mixins:[Yi],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"?D(this.panel):this.panel}},update:{read(){this.isToggled()&&!F(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&b(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el(){return this.panel},handler(t){let{targetTouches:e}=t;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el(){return this.panel},handler(t){if(t.targetTouches.length!==1)return;const e=t.targetTouches[0].clientY-this.clientY,{scrollTop:i,scrollHeight:s,clientHeight:n}=this.panel;(n>=s||i===0&&e>0||s-i<=n&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!T(D(this.panel),this.clsMode)&&(Ze(this.panel,"<div>"),$(D(this.panel),this.clsMode)),c(document.documentElement,"overflowY",this.overlay?"hidden":""),$(document.body,this.clsContainer,this.clsFlip),c(document.body,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),$(this.$el,this.clsOverlay),$(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),z(document.body),$(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Eo()}},{name:"hide",self:!0,handler(){N(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Po(),this.mode==="reveal"&&Qe(this.panel),N(this.panel,this.clsSidebarAnimation,this.clsMode),N(this.$el,this.clsOverlay),c(this.$el,"display",""),N(document.body,this.clsContainer,this.clsFlip),c(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&St(t.type,"Left")^this.flip&&this.hide()}}]};function Eo(){en().content+=",user-scalable=0"}function Po(){const t=en();t.content=t.content.replace(/,user-scalable=0$/,"")}function en(){return b('meta[name="viewport"]',document.head)||Q(document.head,'<meta name="viewport">')}var Ao={mixins:[st],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return ot(e,i)},content(t,e){let{selContent:i}=t;return ot(e,i)}},connected(){c(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!F(this.$el)?!1:{current:y(c(this.$el,"maxHeight")),max:Math.max(this.minHeight,z(this.container)-(C(this.content).height-z(this.$el)))}},write(t){let{current:e,max:i}=t;c(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&p(this.$el,"resize")},events:["resize"]}},_o={props:["width","height"],connected(){$(this.$el,"uk-responsive-width")},update:{read(){return F(this.$el)&&this.width&&this.height?{width:Pe(D(this.$el)),height:this.height}:!1},write(t){z(this.$el,Gt.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},No={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&b(t)||document.body,p(this.$el,"beforescroll",[this,t])&&(await Wi(t,{offset:this.offset}),p(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+Te(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const _t="_ukScrollspy";var Do={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?A(i,e):[e]},watch(t){this.hidden&&c(ye(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){this.elements.forEach(t=>{N(t,this.inViewClass,t[_t]?t[_t].cls:""),delete t[_t]})},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;this.elements.forEach(e=>{e[_t]||(e[_t]={cls:ut(e,"uk-scrollspy-class")||this.cls}),e[_t].show=re(e,this.offsetTop,this.offsetLeft)})},write(t){this.elements.forEach(e=>{const i=e[_t];i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)})},events:["scroll","resize"]}],methods:{toggle(t,e){const i=t[_t];i.off&&i.off(),c(t,"visibility",!e&&this.hidden?"hidden":""),j(t,this.inViewClass,e),j(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=Y(t,"animationcancel animationend",()=>Ge(t,"uk-animation-[\\w-]+"))),p(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},Mo={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 A('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return A(this.links.map(t=>Te(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return ot(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!F(this.$el))return!1;const[e]=Rt(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:s}=e,n=s-_e(e);let r=!1;return i===n?r=t-1:(this.targets.every((o,a)=>{if(M(o).top-M(oe(e)).top-this.offset<=0)return r=a,!0}),r===!1&&this.overflow&&(r=0)),{active:r}},write(t){let{active:e}=t;const i=e!==!1&&!T(this.elements[e],this.cls);this.links.forEach(s=>s.blur()),N(this.elements,this.cls),$(this.elements[e],this.cls),i&&p(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Bo={mixins:[st,hi],props:{position:String,top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{position(t,e){let{position:i}=t;return i==="auto"?(this.isFixed?this.placeholder:e).offsetHeight>z(window)?"bottom":"top":i},offset(t,e){let{offset:i}=t;return this.position==="bottom"&&(i+="+100vh-100%"),ft(i,"height",e)},selTarget(t,e){let{selTarget:i}=t;return i&&b(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return gt(i,e)||this.placeholder},isActive:{get(){return T(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(Ni(this.selTarget,this.clsInactive,this.clsActive),p(this.$el,"active")):!t&&!T(this.selTarget,this.clsInactive)&&(Ni(this.selTarget,this.clsActive,this.clsInactive),p(this.$el,"inactive"))}}},connected(){this.placeholder=b("+ .uk-sticky-placeholder",this.$el)||b('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected(){this.isFixed&&(this.hide(),N(this.selTarget,this.clsInactive)),at(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},handler(){if(!(this.targetOffset!==!1&&location.hash&&Lt(window)>0))return;const t=b(location.hash);t&&H.read(()=>{const{top:e}=M(t),i=M(this.$el).top,s=this.$el.offsetHeight;this.isFixed&&i+s>=e&&i<=e+t.offsetHeight&&Lt(window,e-s-(Bt(this.targetOffset)?this.targetOffset:0)-this.offset)})}}],update:[{read(t,e){let{height:i,margin:s}=t;if(this.inactive=!this.matchMedia||!F(this.$el),this.inactive)return!1;const n=this.isActive&&e.has("resize");n&&this.hide(),this.isActive||(i=this.$el.offsetHeight,s=c(this.$el,"margin")),n&&this.show();const r=Math.max(0,i+this.offset-z(window)),o=this.isFixed?this.placeholder:this.$el,a=M(o).top,l=M(o.offsetParent).top,u=sn(this.top,this.$el,a),f=sn(this.bottom,this.$el,a+i,!0),h=Math.max(u,a)-this.offset,d=f?f-this.$el.offsetHeight+r-this.offset:ae(this.$el).scrollHeight-z(window);return{start:h,end:d,overflow:r,topOffset:a,offsetParentTop:l,height:i,margin:s,width:C(F(this.widthElement)?this.widthElement:this.$el).width,top:Ee(this.placeholder)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:s}=this;c(s,{height:e,margin:i}),R(s,document)||(Je(this.$el,s),s.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:s,overflowScroll:n=0,start:r,end:o}=t;const a=Lt(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:rt(n+rt(a,r,o)-rt(e,r,o),0,s)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:r,scroll:o,prevScroll:a=0,top:l,start:u,topOffset:f,height:h}=t;if(o<0||o===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const d=Date.now();if((d-s>300||n!==r)&&(t.initScroll=o,t.initTimestamp=d),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-o)<=30&&Math.abs(a-o)<=10))if(this.inactive||o<u||this.showOnUp&&(o<=u||n==="down"&&i||n==="up"&&!this.isFixed&&o<=f+h)){if(!this.isFixed){vt.inProgress(this.$el)&&l>o&&(vt.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&o>f?(vt.cancel(this.$el),vt.out(this.$el,this.animation).then(()=>this.hide(),_)):this.hide()}else this.isFixed?this.update():this.animation?(vt.cancel(this.$el),this.show(),vt.in(this.$el,this.animation).catch(_)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,N(this.$el,this.clsFixed,this.clsBelow),c(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){const{width:t,scroll:e=0,overflow:i,overflowScroll:s=0,start:n,end:r,topOffset:o,height:a,offsetParentTop:l}=this._data,u=n!==0||e>n;let f=this.offset,h="fixed";e>r&&(f=r+this.offset-l,h="absolute"),i&&(f-=s),c(this.$el,{position:h,top:f+"px",width:t}),this.isActive=u,j(this.$el,this.clsBelow,e>o+a),$(this.$el,this.clsFixed)}}};function sn(t,e,i,s){if(!t)return 0;if(B(t)&&t.match(/^-?\d/))return i+ft(t);{const n=t===!0?D(e):gt(t,e);return M(n).bottom-(s&&n&&R(e,n)?y(c(n,"paddingBottom")):0)}}var nn={mixins:[kt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return ke(i,e)},watch(t){this.swiping&&c(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>W(i).forEach((s,n)=>j(s,this.cls,n===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return A(i,e).filter(s=>!L(s,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return W(this.$el).filter(t=>this.toggles.some(e=>R(e,t)))}},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?ke(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(ut(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(St(e,"Left")?"next":"previous")}}],methods:{index(){return Tt(this.children,t=>T(t,this.cls))},show(t){const e=this.index(),i=Kt(this.children[Kt(t,this.toggles,e)],W(this.$el));e!==i&&(this.children.forEach((s,n)=>{j(s,this.cls,i===n),I(this.toggles[n],"aria-expanded",i===n)}),this.connects.forEach(async s=>{let{children:n}=s;await this.toggleElement(S(n).filter(r=>T(r,this.cls)),!1,e>=0),await this.toggleElement(n[i],!0,e>=0)}))}}},zo={mixins:[st],extends:nn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=T(this.$el,"uk-tab-left")?"uk-tab-left":T(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Ho=32;var Oo={mixins:[hi,kt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!w(this.mode,"media")&&!Ve(this.$el)&&I(this.$el,"tabindex","0")},computed:{target:{get(t,e){let{href:i,target:s}=t;return s=ke(s||i,e),s.length&&s||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:dt,filter(){return w(this.mode,"hover")},handler(t){!yt(t)||this._showState||(p(this.$el,"focus"),Y(document,dt,()=>p(this.$el,"blur"),!0,e=>!R(e.target,this.$el)),w(this.mode,"click")&&(this._preventClick=!0))}},{name:Ft+" "+Qt+" focus blur",filter(){return w(this.mode,"hover")},handler(t){if(yt(t))return;const e=w([Ft,"focus"],t.type),i=I(this.$el,"aria-expanded");if(!(!e&&(t.type===Qt&&L(this.$el,":focus")||t.type==="blur"&&L(this.$el,":hover")))){if(this._showState&&e===(i!==this._showState)){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return w(this.mode,"click")&&this.$el.tagName!=="INPUT"},handler(t){t.keyCode===Ho&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return w(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(ot(t.target,'a[href="#"], a[href=""]')||(e=ot(t.target,"a[href]"))&&(I(this.$el,"aria-expanded")!=="true"||e.hash&&L(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read(){return w(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write(t){let{match:e}=t;const i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{async toggle(t){if(!p(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>T(s,this.clsLeave));if(e.length){this.target.forEach(s=>{const n=w(e,s);this.toggleElement(s,n,n)});return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(s=>!w(i,s)),!0)},updateAria(t){w(this.mode,"media")||I(this.$el,"aria-expanded",Le(t)?t:this.isToggled(this.target))}}},Fo=Object.freeze({__proto__:null,Accordion:_s,Alert:Cr,Cover:Ir,Drop:Ms,Dropdown:Ms,FormCustom:Ar,Gif:_r,Grid:Dr,HeightMatch:Hr,HeightViewport:Fr,Icon:Vs,Img:go,Leader:$o,Margin:Bs,Modal:ko,Nav:To,Navbar:Co,Offcanvas:Io,OverflowAuto:Ao,Responsive:_o,Scroll:No,Scrollspy:Do,ScrollspyNav:Mo,Sticky:Bo,Svg:Fs,Switcher:nn,Tab:zo,Toggle:Oo,Video:Ns,Close:ho,Spinner:lo,SlidenavNext:Ys,SlidenavPrevious:Ys,SearchIcon:ao,Marker:wt,NavbarToggleIcon:wt,OverlayIcon:wt,PaginationNext:wt,PaginationPrevious:wt,Totop:wt});it(Fo,(t,e)=>tt.component(e,t)),tt.use($r),Sr(tt);var Lo={mixins:[st],props:{date:String,clsWrapper:String},data:{date:"",clsWrapper:".uk-countdown-%unit%"},computed:{date(t){let{date:e}=t;return Date.parse(e)},days(t,e){let{clsWrapper:i}=t;return b(i.replace("%unit%","days"),e)},hours(t,e){let{clsWrapper:i}=t;return b(i.replace("%unit%","hours"),e)},minutes(t,e){let{clsWrapper:i}=t;return b(i.replace("%unit%","minutes"),e)},seconds(t,e){let{clsWrapper:i}=t;return b(i.replace("%unit%","seconds"),e)},units(){return["days","hours","minutes","seconds"].filter(t=>this[t])}},connected(){this.start()},disconnected(){this.stop(),this.units.forEach(t=>ds(this[t]))},events:[{name:"visibilitychange",el(){return document},handler(){document.hidden?this.stop():this.start()}}],update:{write(){const t=Ro(this.date);t.total<=0&&(this.stop(),t.days=t.hours=t.minutes=t.seconds=0),this.units.forEach(e=>{let i=String(Math.floor(t[e]));i=i.length<2?"0"+i:i;const s=this[e];s.textContent!==i&&(i=i.split(""),i.length!==s.children.length&&At(s,i.map(()=>"<span></span>").join("")),i.forEach((n,r)=>s.children[r].textContent=n))})}},methods:{start(){this.stop(),this.date&&this.units.length&&(this.$update(),this.timer=setInterval(this.$update,1e3))},stop(){this.timer&&(clearInterval(this.timer),this.timer=null)}}};function Ro(t){const e=t-Date.now();return{total:e,seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24}}const Gi="uk-transition-leave",Ki="uk-transition-enter";function rn(t,e,i,s){s===void 0&&(s=0);const n=li(e,!0),r={opacity:1},o={opacity:0},a=f=>()=>n===li(e)?f():Promise.reject(),l=a(()=>($(e,Gi),Promise.all(an(e).map((f,h)=>new Promise(d=>setTimeout(()=>P.start(f,o,i/2,"ease").then(d),h*s)))).then(()=>N(e,Gi)))),u=a(()=>{const f=z(e);return $(e,Ki),t(),c(W(e),{opacity:0}),new Promise(h=>requestAnimationFrame(()=>{const d=W(e),g=z(e);c(e,"alignContent","flex-start"),z(e,f);const x=an(e);c(d,o);const m=x.map((v,V)=>new Promise(O=>setTimeout(()=>P.start(v,r,i/2,"ease").then(O),V*s)));f!==g&&m.push(P.start(e,{height:g},i/2+x.length*s,"ease")),Promise.all(m).then(()=>{N(e,Ki),n===li(e)&&(c(e,{height:"",alignContent:""}),c(d,{opacity:""}),delete e.dataset.transition),h()})}))});return T(e,Gi)?on(e).then(u):T(e,Ki)?on(e).then(l).then(u):l().then(u)}function li(t,e){return e&&(t.dataset.transition=1+li(t)),Et(t.dataset.transition)||0}function on(t){return Promise.all(W(t).filter(P.inProgress).map(e=>new Promise(i=>Y(e,"transitionend transitioncanceled",i))))}function an(t){return qi(W(t)).reduce((e,i)=>e.concat(be(i.filter(s=>re(s)),"offsetLeft")),[])}function Wo(t,e,i){return new Promise(s=>requestAnimationFrame(()=>{let n=W(e);const r=n.map(a=>hn(a,!0)),o=c(e,["height","padding"]);P.cancel(e),n.forEach(P.cancel),ln(e),t(),n=n.concat(W(e).filter(a=>!w(n,a))),Promise.resolve().then(()=>{H.flush();const a=c(e,["height","padding"]),[l,u]=jo(e,n,r);n.forEach((f,h)=>u[h]&&c(f,u[h])),c(e,k({display:"block"},o)),requestAnimationFrame(()=>{const f=n.map((h,d)=>D(h)===e&&P.start(h,l[d],i,"ease")).concat(P.start(e,a,i,"ease"));Promise.all(f).then(()=>{n.forEach((h,d)=>D(h)===e&&c(h,"display",l[d].opacity===0?"none":"")),ln(e)},_).then(s)})})}))}function hn(t,e){const i=c(t,"zIndex");return F(t)?k({display:"",opacity:e?c(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?te(t):i},cn(t)):!1}function jo(t,e,i){const s=e.map((r,o)=>D(r)&&o in i?i[o]?F(r)?cn(r):{opacity:0}:{opacity:F(r)?1:0}:!1),n=s.map((r,o)=>{const a=D(e[o])===t&&(i[o]||hn(e[o]));if(!a)return!1;if(!r)delete a.opacity;else if(!("opacity"in r)){const{opacity:l}=a;l%1?r.opacity=1:delete a.opacity}return a});return[s,n]}function ln(t){c(t.children,{height:"",left:"",opacity:"",pointerEvents:"",position:"",top:"",marginTop:"",marginLeft:"",transform:"",width:"",zIndex:""}),c(t,{height:"",display:"",padding:""})}function cn(t){const{height:e,width:i}=M(t),{top:s,left:n}=Ke(t),{marginLeft:r,marginTop:o}=c(t,["marginTop","marginLeft"]);return{top:s,left:n,height:e,width:i,marginLeft:r,marginTop:o,transform:""}}var un={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e){e===void 0&&(e=this.$el);const i=this.animation;return(i==="fade"?rn:i==="delayed-fade"?function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return rn(...r,40)}:i?Wo:()=>(t(),Promise.resolve()))(t,e,this.duration).then(()=>this.$update(e,"resize"),_)}}},qo={mixins:[un],args:"target",props:{target:Boolean,selActive:Boolean},data:{target:null,selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{toggles:{get(t,e){let{attrItem:i}=t;return A("["+i+"],[data-"+i+"]",e)},watch(){if(this.updateState(),this.selActive!==!1){const t=A(this.selActive,this.$el);this.toggles.forEach(e=>j(e,this.cls,w(t,e)))}},immediate:!0},children:{get(t,e){let{target:i}=t;return A(i+" > *",e)},watch(t,e){e&&!Ko(t,e)&&this.updateState()},immediate:!0}},events:[{name:"click",delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.apply(t.current)}}],methods:{apply(t){const e=this.getState(),i=fn(t,this.attrItem,this.getState());Vo(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>T(t,this.cls)).reduce((t,e)=>fn(e,this.attrItem,t),{filter:{"":""},sort:[]})},setState(t,e){e===void 0&&(e=!0),t=k({filter:{"":""},sort:[]},t),p(this.$el,"beforeFilter",[this,t]),this.toggles.forEach(i=>j(i,this.cls,!!Go(i,this.attrItem,t))),Promise.all(A(this.target,this.$el).map(i=>{const s=()=>{Yo(t,i,W(i)),this.$update(this.$el)};return e?this.animate(s,i):s()})).then(()=>p(this.$el,"afterFilter",[this]))},updateState(){H.write(()=>this.setState(this.getState(),!1))}}};function dn(t,e){return ti(ut(t,e),["filter"])}function Vo(t,e){return["filter","sort"].every(i=>Re(t[i],e[i]))}function Yo(t,e,i){const s=Xo(t);i.forEach(o=>c(o,"display",s&&!L(o,s)?"none":""));const[n,r]=t.sort;if(n){const o=Jo(i,n,r);Re(o,i)||Q(e,o)}}function fn(t,e,i){const s=dn(t,e),{filter:n,group:r,sort:o,order:a="asc"}=s;return(n||G(o))&&(r?n?(delete i.filter[""],i.filter[r]=n):(delete i.filter[r],(ve(i.filter)||""in i.filter)&&(i.filter={"":n||""})):i.filter={"":n||""}),G(o)||(i.sort=[o,a]),i}function Go(t,e,i){let{filter:s={"":""},sort:[n,r]}=i;const{filter:o="",group:a="",sort:l,order:u="asc"}=dn(t,e);return G(l)?a in s&&o===s[a]||!o&&a&&!(a in s)&&!s[""]:n===l&&r===u}function Ko(t,e){return t.length===e.length&&t.every(i=>~e.indexOf(i))}function Xo(t){let{filter:e}=t,i="";return it(e,s=>i+=s||""),i}function Jo(t,e,i){return k([],t).sort((s,n)=>ut(s,e).localeCompare(ut(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}var Xi={slide:{show(t){return[{transform:q(t*-100)},{transform:q()}]},percent(t){return Me(t)},translate(t,e){return[{transform:q(e*-100*t)},{transform:q(e*100*(1-t))}]}}};function Me(t){return Math.abs(c(t,"transform").split(",")[4]/t.offsetWidth)||0}function q(t,e){return t===void 0&&(t=0),e===void 0&&(e="%"),t+=t?e:"","translate3d("+t+", 0, 0)"}function le(t){return"scale3d("+t+", "+t+", 1)"}var gn=k({},Xi,{fade:{show(){return[{opacity:0},{opacity:1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t},{opacity:t}]}},scale:{show(){return[{opacity:0,transform:le(1-.2)},{opacity:1,transform:le(1)}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:le(1-.2*t)},{opacity:t,transform:le(1-.2+.2*t)}]}}});function Zo(t,e,i,s){let{animation:n,easing:r}=s;const{percent:o,translate:a,show:l=_}=n,u=l(i),f=new je;return{dir:i,show(h,d,g){d===void 0&&(d=0);const x=g?"linear":r;return h-=Math.round(h*rt(d,-1,1)),this.translate(d),ci(e,"itemin",{percent:d,duration:h,timing:x,dir:i}),ci(t,"itemout",{percent:1-d,duration:h,timing:x,dir:i}),Promise.all([P.start(e,u[1],h,x),P.start(t,u[0],h,x)]).then(()=>{this.reset(),f.resolve()},_),f.promise},cancel(){P.cancel([e,t])},reset(){for(const h in u[0])c([e,t],h,"")},forward(h,d){return d===void 0&&(d=this.percent()),P.cancel([e,t]),this.show(h,d,!0)},translate(h){this.reset();const d=a(h,i);c(e,d[1]),c(t,d[0]),ci(e,"itemtranslatein",{percent:h,dir:i}),ci(t,"itemtranslateout",{percent:1-h,dir:i})},percent(){return o(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function ci(t,e,i){p(t,Ce(e,!1,!1,i))}var Qo={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){I(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>(!this.draggable||!b(":focus",this.$el))&&(!this.pauseOnHover||!L(this.$el,":hover"))&&!this.stack.length&&this.show("next"),this.autoplayInterval)},stopAutoplay(){this.interval&&clearInterval(this.interval)}}},Uo={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){["start","move","end"].forEach(t=>{const e=this[t];this[t]=i=>{const s=ie(i).x*(Z?-1:1);this.prevPos=s!==this.pos?this.pos:this.prevPos,this.pos=s,e(i)}})},events:[{name:dt,delegate(){return this.selSlides},handler(t){!this.draggable||!yt(t)&&ta(t.target)||ot(t.target,xe)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,E(document,Zt,this.move,{passive:!1}),E(document,mt+" "+Ut+" input",this.end,!0),c(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;c(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;const{slides:i}=this;let{prevIndex:s}=this,n=Math.abs(e),r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;for(;r!==s&&n>o;)this.drag-=o*this.dir,s=r,n-=o,r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;this.percent=n/o;const a=i[s],l=i[r],u=this.index!==r,f=s===r;let h;[this.index,this.prevIndex].filter(d=>!w([r,s],d)).forEach(d=>{p(i[d],"itemhidden",[this]),f&&(h=!0,this.prevIndex=s)}),(this.index===s&&this.prevIndex!==s||h)&&p(i[this.index],"itemshown",[this]),u&&(this.prevIndex=s,this.index=r,!f&&p(a,"beforeitemhide",[this]),p(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!f&&l),u&&(!f&&p(a,"itemhide",[this]),p(l,"itemshow",[this]))},end(){if(ee(document,Zt,this.move,{passive:!1}),ee(document,mt+" "+Ut+" input",this.end,!0),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(Z?this.dir*(Z?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}c(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null}}};function ta(t){return!t.children.length&&t.childNodes.length}var ea={data:{selNav:!1},computed:{nav(t,e){let{selNav:i}=t;return b(i,e)},selNavItem(t){let{attrItem:e}=t;return"["+e+"],[data-"+e+"]"},navItems(t,e){return A(this.selNavItem,e)}},update:{write(){this.nav&&this.length!==this.nav.children.length&&At(this.nav,this.slides.map((t,e)=>"<li "+this.attrItem+'="'+e+'"><a href></a></li>').join("")),this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]},events:[{name:"click",delegate(){return this.selNavItem},handler(t){t.preventDefault(),this.show(ut(t.current,this.attrItem))}},{name:"itemshow",handler:"updateNav"}],methods:{updateNav(){const t=this.getValidIndex();this.navItems.forEach(e=>{const i=ut(e,this.attrItem);j(e,this.clsActive,Et(i)===t),j(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))})}}},pn={mixins:[Qo,Uo,ea],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number,selSlides:String},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){N(this.slides,this.clsActive)},computed:{duration(t,e){let{velocity:i}=t;return mn(e.offsetWidth/i)},list(t,e){let{selList:i}=t;return b(i,e)},maxIndex(){return this.length-1},selSlides(t){let{selList:e,selSlides:i}=t;return e+" "+(i||"> *")},slides:{get(){return A(this.selSlides,this.$el)},watch(){this.$reset()}},length(){return this.slides.length}},events:{itemshown(){this.$update(this.list)}},methods:{show(t,e){if(e===void 0&&(e=!1),this.dragging||!this.length)return;const{stack:i}=this,s=e?0:i.length,n=()=>{i.splice(s,1),i.length&&this.show(i.shift(),!0)};if(i[e?"unshift":"push"](t),!e&&i.length>1){i.length===2&&this._transitioner.forward(Math.min(this.duration,200));return}const r=this.getIndex(this.index),o=T(this.slides,this.clsActive)&&this.slides[r],a=this.getIndex(t,this.index),l=this.slides[a];if(o===l){n();return}if(this.dir=ia(t,r),this.prevIndex=r,this.index=a,o&&!p(o,"beforeitemhide",[this])||!p(l,"beforeitemshow",[this,o])){this.index=this.prevIndex,n();return}const u=this._show(o,l,e).then(()=>(o&&p(o,"itemhidden",[this]),p(l,"itemshown",[this]),new Promise(f=>{H.write(()=>{i.shift(),i.length?this.show(i.shift(),!0):this._transitioner=null,f()})})));return o&&p(o,"itemhide",[this]),p(l,"itemshow",[this]),u},getIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.index),rt(Kt(t,this.slides,e,this.finite),0,this.maxIndex)},getValidIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),this.getIndex(t,e)},_show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,k({easing:i?e.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing},this.transitionOptions)),!i&&!t)return this._translate(1),Promise.resolve();const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_getDistance(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()},_translate(t,e,i){e===void 0&&(e=this.prevIndex),i===void 0&&(i=this.index);const s=this._getTransitioner(e!==i?e:!1,i);return s.translate(t),s},_getTransitioner(t,e,i,s){return t===void 0&&(t=this.prevIndex),e===void 0&&(e=this.index),i===void 0&&(i=this.dir||1),s===void 0&&(s=this.transitionOptions),new this.Transitioner(Yt(t)?this.slides[t]:t,Yt(e)?this.slides[e]:e,i*(Z?-1:1),s)}}};function ia(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function mn(t){return .5*t+300}var vn={mixins:[pn],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:Xi,Transitioner:Zo},computed:{animation(t){let{animation:e,Animations:i}=t;return k(i[e]||i.slide,{name:e})},transitionOptions(){return{animation:this.animation}}},events:{"itemshow itemhide itemshown itemhidden"(t){let{target:e}=t;this.$update(e)},beforeitemshow(t){let{target:e}=t;$(e,this.clsActive)},itemshown(t){let{target:e}=t;$(e,this.clsActivated)},itemhidden(t){let{target:e}=t;N(e,this.clsActive,this.clsActivated)}}},wn={mixins:[he,Yi,kt,vn],functional:!0,props:{delayControls:Number,preload:Number,videoAutoplay:Boolean,template:String},data:()=>({preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"uk-lightbox-item",selClose:".uk-close-large",selCaption:".uk-lightbox-caption",pauseOnHover:!1,velocity:2,Animations:gn,template:'<div class="uk-lightbox uk-overflow-hidden"> <ul class="uk-lightbox-items"></ul> <div class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href uk-slidenav-next uk-lightbox-item="next"></a> <div class="uk-lightbox-toolbar uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){const t=b(this.template),e=b(this.selList,t);this.items.forEach(()=>Q(e,"<li>")),this.$mount(Q(this.container,t))},computed:{caption(t,e){let{selCaption:i}=t;return b(i,e)}},events:[{name:Zt+" "+dt+" keydown",handler:"showControls"},{name:"click",self:!0,delegate(){return this.selSlides},handler(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),N(this.slides,this.clsActive),P.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el(){return document},handler(t){if(!(!this.isToggled(this.$el)||!this.draggable))switch(t.keyCode){case 37:this.show("previous");break;case 39:this.show("next");break}}},{name:"beforeitemshow",handler(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=gn.scale,N(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler(){At(this.caption,this.getItem().caption||"");for(let t=-this.preload;t<=this.preload;t++)this.loadItem(this.index+t)}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,alt:n="",poster:r,attrs:o={}}=e;if(this.setItem(e,"<span uk-spinner></span>"),!i)return;let a;const l={frameborder:"0",allow:"autoplay",allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":""+this.videoAutoplay};if(s==="image"||i.match(/\.(avif|jpe?g|a?png|gif|svg|webp)($|\?)/i))try{const{width:u,height:f}=await Pi(i,o.srcset,o.size);this.setItem(e,Be("img",k({src:i,width:u,height:f,alt:n},o)))}catch{this.setError(e)}else if(s==="video"||i.match(/\.(mp4|webm|ogv)($|\?)/i)){const u=Be("video",k({src:i,poster:r,controls:"",playsinline:"","uk-video":""+this.videoAutoplay},o));E(u,"loadedmetadata",()=>{I(u,{width:u.videoWidth,height:u.videoHeight}),this.setItem(e,u)}),E(u,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,Be("iframe",k({src:i,frameborder:"0",allowfullscreen:"",class:"uk-lightbox-iframe"},o)));else if(a=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?[?&]v=|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,Be("iframe",k({src:"https://www.youtube"+(a[1]||"")+".com/embed/"+a[2]+(a[3]?"?"+a[3]:""),width:1920,height:1080},l,o)));else if(a=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:u,width:f}=await(await fetch("https://vimeo.com/api/oembed.json?maxwidth=1920&url="+encodeURI(i),{credentials:"omit"})).json();this.setItem(e,Be("iframe",k({src:"https://player.vimeo.com/video/"+a[1]+(a[2]?"?"+a[2]:""),width:f,height:u},l,o)))}catch{this.setError(e)}}}],methods:{loadItem(t){t===void 0&&(t=this.index);const e=this.getItem(t);this.getSlide(e).childElementCount||p(this.$el,"itemload",[e])},getItem(t){return t===void 0&&(t=this.index),this.items[Kt(t,this.slides)]},setItem(t,e){p(this.$el,"itemloaded",[this,At(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2"></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),$(this.$el,"uk-active","uk-transition-active")},hideControls(){N(this.$el,"uk-active","uk-transition-active")}}};function Be(t,e){const i=Ue("<"+t+">");return I(i,e),i}var sa={install:na,props:{toggle:String},data:{toggle:"a"},computed:{toggles:{get(t,e){let{toggle:i}=t;return A(i,e)},watch(){this.hide()}}},disconnected(){this.hide()},events:[{name:"click",delegate(){return this.toggle+":not(.uk-disabled)"},handler(t){t.preventDefault(),this.show(t.current)}}],methods:{show(t){const e=es(this.toggles.map(bn),"source");if(Mt(t)){const{source:i}=bn(t);t=Tt(e,s=>{let{source:n}=s;return i===n})}return this.panel=this.panel||this.$create("lightboxPanel",k({},this.$props,{items:e})),E(this.panel.$el,"hidden",()=>this.panel=!1),this.panel.show(t)},hide(){return this.panel&&this.panel.hide()}}};function na(t,e){t.lightboxPanel||t.component("lightboxPanel",wn),k(e.props,t.component("lightboxPanel").options.props)}function bn(t){const e={};return["href","caption","type","poster","alt","attrs"].forEach(i=>{e[i==="href"?"source":i]=ut(t,i)}),e.attrs=ti(e.attrs),e}var ra={mixins:[he],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:null,pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:oa,computed:{marginProp(t){let{pos:e}=t;return"margin"+(ht(e,"top")?"Top":"Bottom")},startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=b("."+this.clsContainer+"-"+this.pos,this.container)||Q(this.container,'<div class="'+this.clsContainer+" "+this.clsContainer+"-"+this.pos+'" style="display: block"></div>');this.$mount(Q(t,'<div class="'+this.clsMsg+(this.status?" "+this.clsMsg+"-"+this.status:"")+'"> <a href class="'+this.clsClose+'" data-uk-close></a> <div>'+this.message+"</div> </div>"))},async connected(){const t=y(c(this.$el,this.marginProp));await P.start(c(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){ot(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()},[Ft](){this.timer&&clearTimeout(this.timer)},[Qt](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=D(i);p(i,"close",[this]),at(i),s!=null&&s.hasChildNodes()||at(s)};this.timer&&clearTimeout(this.timer),t||await P.start(this.$el,this.startProps),e(this.$el)}}};function oa(t){t.notification.closeAll=function(e,i){$t(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}const ui={x:fi,y:fi,rotate:fi,scale:fi,color:Ji,backgroundColor:Ji,borderColor:Ji,blur:qt,hue:qt,fopacity:qt,grayscale:qt,invert:qt,saturate:qt,sepia:qt,opacity:ha,stroke:la,bgx:yn,bgy:yn},{keys:di}=Object;var xn={mixins:[hi],props:Tn(di(ui),"list"),data:Tn(di(ui),void 0),computed:{props(t,e){return di(ui).reduce((i,s)=>(G(t[s])||(i[s]=ui[s](s,e,t[s].slice())),i),{})}},events:{bgimageload(){this.$emit()}},methods:{reset(){it(this.getCss(0),(t,e)=>c(this.$el,e,""))},getCss(t){return di(this.props).reduce((e,i)=>(this.props[i](e,t),e),{transform:"",filter:""})}}};function fi(t,e,i){const s=Zi(i)||{x:"px",y:"px",rotate:"deg"}[t]||"";return(t==="x"||t==="y")&&(t="translate"+ge(t)),i=i.map(y),i.length===1&&i.unshift(t==="scale"?1:0),(n,r)=>{let o=ze(i,r);ht(t,"translate")&&(o=y(o).toFixed(s==="px"?0:6)),n.transform+=" "+t+"("+o+s+")"}}function Ji(t,e,i){return i.length===1&&i.unshift(He(e,t,"")),i=i.map(s=>aa(e,s)),(s,n)=>{const[r,o,a]=Sn(i,n),l=r.map((u,f)=>(u+=a*(o[f]-u),f===3?y(u):parseInt(u,10))).join(",");s[t]="rgba("+l+")"}}function aa(t,e){return He(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(y)}function qt(t,e,i){i.length===1&&i.unshift(0);const s=Zi(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=i.map(y),(n,r)=>{const o=ze(i,r);n.filter+=" "+t+"("+(o+s)+")"}}function ha(t,e,i){return i.length===1&&i.unshift(He(e,t,"")),i=i.map(y),(s,n)=>{s[t]=ze(i,n)}}function la(t,e,i){i.length===1&&i.unshift(0);const s=Zi(i);if(i=i.map(y),!i.some(r=>r))return _;const n=Rs(e);return c(e,"strokeDasharray",n),s==="%"&&(i=i.map(r=>r*n/100)),i=i.reverse(),(r,o)=>{r.strokeDashoffset=ze(i,o)}}function yn(t,e,i){i.length===1&&i.unshift(0),t=t.substr(-1);const s=t==="y"?"height":"width";i=i.map(r=>ft(r,s,e));const n=He(e,"background-position-"+t,"");return He(e,"backgroundSize","")==="cover"?ca(t,e,i,n,s):$n(t,i,n)}function ca(t,e,i,s,n){const r=ua(e);if(!r.width)return _;const o=Math.min(...i),a=Math.max(...i),l=i.indexOf(o)<i.indexOf(a),u=a-o;let f=(l?-u:0)-(l?o:a);const h={width:e.offsetWidth,height:e.offsetHeight},d=Gt.cover(r,h),g=d[n]-h[n];if(g<u)h[n]=d[n]+u-g;else if(g>u){const v=h[n]/ft(s,n,e,!0);v&&(f-=(g-u)/v)}const x=Gt.cover(r,h),m=$n(t,i,f+"px");return(v,V)=>{m(v,V),v.backgroundSize=x.width+"px "+x.height+"px",v.backgroundRepeat="no-repeat"}}function $n(t,e,i){return function(s,n){s["background-position-"+t]="calc("+i+" + "+ze(e,n)+"px)"}}const gi={};function ua(t){const e=c(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(gi[e])return gi[e];const i=new Image;return e&&(i.src=e,i.naturalWidth||(i.onload=()=>{gi[e]=kn(i),p(t,"bgimageload")})),gi[e]=kn(i)}function kn(t){return{width:t.naturalWidth,height:t.naturalHeight}}function Sn(t,e){const i=t.length-1,s=Math.min(Math.floor(i*e),i-1);return t.slice(s,s+2).concat(e===1?1:e%(1/i)*i)}function ze(t,e){const[i,s,n]=Sn(t,e);return Yt(i)?i+Math.abs(i-s)*n*(i<s?1:-1):+s}function Zi(t,e){return t.reduce((i,s)=>i||B(s)&&s.replace(/[\d-]/g,"").trim(),"")||e}function He(t,e,i){const s=t.style[e],n=c(c(t,e,i),e);return t.style[e]=s,n}function Tn(t,e){return t.reduce((i,s)=>(i[s]=e,i),{})}var da={mixins:[xn],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target(t,e){let{target:i}=t;return Cn(i&&gt(i,e)||e)},start(t){let{start:e}=t;return ft(e,"height",this.target,!0)},end(t){let{end:e,viewport:i}=t;return ft(e||(i=(1-i)*100)&&i+"vh+"+i+"%","height",this.target,!0)}},update:{read(t,e){let{percent:i}=t;if(e.has("scroll")||(i=!1),!this.matchMedia)return;const s=i;return i=fa(ji(this.target,this.start,this.end),this.easing),{percent:i,style:s===i?!1:this.getCss(i)}},write(t){let{style:e}=t;if(!this.matchMedia){this.reset();return}e&&c(this.$el,e)},events:["scroll","resize"]}};function fa(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,-e+1)}function Cn(t){return t?"offsetTop"in t?t:Cn(D(t)):document.documentElement}var In={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);(!~this.prevIndex||this.index!==t)&&this.show(t)},events:["resize"]}};function ga(t,e,i,s){let{center:n,easing:r,list:o}=s;const a=new je,l=t?Oe(t,o,n):Oe(e,o,n)+C(e).width*i,u=e?Oe(e,o,n):l+C(t).width*i*(Z?-1:1);return{dir:i,show(f,h,d){h===void 0&&(h=0);const g=d?"linear":r;return f-=Math.round(f*rt(h,-1,1)),this.translate(h),h=t?h:rt(h,0,1),Qi(this.getItemIn(),"itemin",{percent:h,duration:f,timing:g,dir:i}),t&&Qi(this.getItemIn(!0),"itemout",{percent:1-h,duration:f,timing:g,dir:i}),P.start(o,{transform:q(-u*(Z?-1:1),"px")},f,g).then(a.resolve,_),a.promise},cancel(){P.cancel(o)},reset(){c(o,"transform","")},forward(f,h){return h===void 0&&(h=this.percent()),P.cancel(o),this.show(f,h,!0)},translate(f){const h=this.getDistance()*i*(Z?-1:1);c(o,"transform",q(rt(-u+(h-h*f),-pi(o),C(o).width)*(Z?-1:1),"px"));const d=this.getActives(),g=this.getItemIn(),x=this.getItemIn(!0);f=t?rt(f,-1,1):0,W(o).forEach(m=>{const v=w(d,m),V=m===g,O=m===x,J=V||!O&&(v||i*(Z?-1:1)===-1^mi(m,o)>mi(t||e));Qi(m,"itemtranslate"+(J?"in":"out"),{dir:i,percent:O?1-f:V?f:v?1:0})})},percent(){return Math.abs((c(o,"transform").split(",")[4]*(Z?-1:1)+l)/(u-l))},getDistance(){return Math.abs(u-l)},getItemIn(f){f===void 0&&(f=!1);let h=this.getActives(),d=Pn(o,Oe(e||t,o,n));if(f){const g=h;h=d,d=g}return d[Tt(d,g=>!w(h,g))]},getActives(){return Pn(o,Oe(t||e,o,n))}}}function Oe(t,e,i){const s=mi(t,e);return i?s-pa(t,e):Math.min(s,En(e))}function En(t){return Math.max(0,pi(t)-C(t).width)}function pi(t){return W(t).reduce((e,i)=>C(i).width+e,0)}function pa(t,e){return C(e).width/2-C(t).width/2}function mi(t,e){return t&&(Ke(t).left+(Z?C(t).width-C(e).width:0))*(Z?-1:1)||0}function Pn(t,e){e-=1;const i=C(t).width,s=e+i+2;return W(t).filter(n=>{const r=mi(n,t),o=r+Math.min(C(n).width,i);return r>=e&&o<=s})}function Qi(t,e,i){p(t,Ce(e,!1,!1,i))}var ma={mixins:[st,pn,In],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:ga},computed:{avgWidth(){return pi(this.list)/this.length},finite(t){let{finite:e}=t;return e||Math.ceil(pi(this.list))<Math.floor(C(this.list).width+va(this.list)+this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return we(this.sets);let t=0;const e=En(this.list),i=Tt(this.slides,s=>{if(t>=e)return!0;t+=C(s).width});return~i?i:this.length-1},sets(t){let{sets:e}=t;if(!e)return;const i=C(this.list).width/(this.center?2:1);let s=0,n=i,r=0;return e=be(this.slides,"offsetLeft").reduce((o,a,l)=>{const u=C(a).width;if(r+u>s&&(!this.center&&l>this.maxIndex&&(l=this.maxIndex),!w(o,l))){const h=this.slides[l+1];this.center&&h&&u<n-C(h).width/2?n-=u:(n=i,o.push(l),s=r+i+(this.center?u/2:0))}return r+=u,o},[]),!ve(e)&&e},transitionOptions(){return{center:this.center,list:this.list}}},connected(){j(this.$el,this.clsContainer,!b("."+this.clsContainer,this.$el))},update:{write(){this.navItems.forEach(e=>{const i=Et(ut(e,this.attrItem));i!==!1&&(e.hidden=!this.maxIndex||i>this.maxIndex||this.sets&&!w(this.sets,i))}),this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1));const t=this._getTransitioner(this.index).getActives();this.slides.forEach(e=>j(e,this.clsActive,w(t,e))),this.clsActivated&&(!this.sets||w(this.sets,y(this.index)))&&this.slides.forEach(e=>j(e,this.clsActivated||"",w(t,e)))},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!w(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let s=0;s<e;s++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=mn(this.avgWidth/this.velocity)*(C(this.slides[i]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&$(this._getTransitioner().getItemIn(),this.clsActive)}},methods:{reorder(){if(this.finite){c(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,r)=>c(n,"order",this.dir>0&&r<t?1:this.dir<0&&r>=this.index?-1:"")),!this.center)return;const e=this.slides[t];let i=C(this.list).width/2-C(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),r=this.slides[n];c(r,"order",n>t?-2:-1),i-=C(r).width}},getValidIndex(t,e){if(t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),t=this.getIndex(t,e),!this.sets)return t;let i;do{if(w(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t}}};function va(t){return Math.max(0,...W(t).map(e=>C(e).width))}var An={mixins:[xn],data:{selItem:"!li"},computed:{item(t,e){let{selItem:i}=t;return gt(i,e)}},events:[{name:"itemin itemout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,duration:s,timing:n,dir:r}}=t;H.read(()=>{const o=this.getCss(Nn(e,r,i)),a=this.getCss(_n(e)?.5:r>0?1:0);H.write(()=>{c(this.$el,o),P.start(this.$el,a,s,n).catch(_)})})}},{name:"transitioncanceled transitionend",self:!0,el(){return this.item},handler(){P.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,dir:s}}=t;H.read(()=>{const n=this.getCss(Nn(e,s,i));H.write(()=>c(this.$el,n))})}}]};function _n(t){return St(t,"in")}function Nn(t,e,i){return i/=2,_n(t)^e<0?i:1-i}var wa=k({},Xi,{fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:le(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:le(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:q(30),zIndex:-1},{transform:q(),zIndex:0}]:[{transform:q(-100),zIndex:0},{transform:q(),zIndex:-1}]},percent(t,e,i){return i<0?1-Me(e):Me(t)},translate(t,e){return e<0?[{transform:q(30*t),zIndex:-1},{transform:q(-100*(1-t)),zIndex:0}]:[{transform:q(-t*100),zIndex:0},{transform:q(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:q(100),zIndex:0},{transform:q(),zIndex:-1}]:[{transform:q(-30),zIndex:-1},{transform:q(),zIndex:0}]},percent(t,e,i){return i>0?1-Me(e):Me(t)},translate(t,e){return e<0?[{transform:q(t*100),zIndex:0},{transform:q(-30*(1-t)),zIndex:-1}]:[{transform:q(-30*t),zIndex:-1},{transform:q(100*(1-t)),zIndex:0}]}}}),ba={mixins:[st,vn,In],props:{ratio:String,minHeight:Number,maxHeight:Number},data:{ratio:"16:9",minHeight:!1,maxHeight:!1,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:wa},update:{read(){if(!this.list)return!1;let[t,e]=this.ratio.split(":").map(Number);return e=e*this.list.offsetWidth/t||0,this.minHeight&&(e=Math.max(this.minHeight,e)),this.maxHeight&&(e=Math.min(this.maxHeight,e)),{height:e-se(this.list,"height","content-box")}},write(t){let{height:e}=t;e>0&&c(this.list,"minHeight",e)},events:["resize"]}},xa={mixins:[st,un],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},created(){["init","start","move","end"].forEach(t=>{const e=this[t];this[t]=i=>{k(this.pos,ie(i)),e(i)}})},events:{name:dt,passive:!1,handler:"init"},computed:{target(){return(this.$el.tBodies||[this.$el])[0]},items(){return W(this.target)},isEmpty:{get(){return ve(this.items)},watch(t){j(this.target,this.clsEmpty,t)},immediate:!0},handles:{get(t,e){let{handle:i}=t;return i?A(i,e):this.items},watch(t,e){c(e,{touchAction:"",userSelect:""}),c(t,{touchAction:Ot?"none":"",userSelect:"none"})},immediate:!0}},update:{write(t){if(!this.drag||!D(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:r}=this;c(this.drag,{top:i-s,left:e-n});const o=this.getSortable(document.elementFromPoint(e,i));if(!o)return;const{items:a}=o;if(a.some(P.inProgress))return;const l=Sa(a,{x:e,y:i});if(a.length&&(!l||l===r))return;const u=this.getSortable(r),f=Ta(o.target,l,r,e,i,o===u&&t.moved!==l);f!==!1&&(f&&r===f||(o!==u?(u.remove(r),t.moved=l):delete t.moved,o.insert(r,f),this.touched.add(o)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(r=>R(e,r));!n||s||i>0||Ti(e)||R(e,"."+this.clsNoDrag)||this.handle&&!R(e,this.handle)||(t.preventDefault(),this.touched=new Set([this]),this.placeholder=n,this.origin=k({target:e,index:te(n)},this.pos),E(document,Zt,this.move),E(document,mt,this.end),this.threshold||this.start(t))},start(t){this.drag=ka(this.$container,this.placeholder);const{left:e,top:i}=this.placeholder.getBoundingClientRect();k(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),$(this.drag,this.clsDrag,this.clsCustom),$(this.placeholder,this.clsPlaceholder),$(this.items,this.clsItem),$(document.documentElement,this.clsDragState),p(this.$el,"start",[this,this.placeholder]),ya(this.pos),this.move(t)},move(t){this.drag?this.$emit("move"):(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t)},end(){if(ee(document,Zt,this.move),ee(document,mt,this.end),!this.drag)return;$a();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==te(this.placeholder)&&p(this.$el,"moved",[this,this.placeholder]):(p(t.$el,"added",[t,this.placeholder]),p(this.$el,"removed",[this,this.placeholder])),p(this.$el,"stop",[this,this.placeholder]),at(this.drag),this.drag=null,this.touched.forEach(e=>{let{clsPlaceholder:i,clsItem:s}=e;return this.touched.forEach(n=>N(n.items,i,s))}),this.touched=null,N(document.documentElement,this.clsDragState)},insert(t,e){$(this.items,this.clsItem);const i=()=>e?Xe(e,t):Q(this.target,t);this.animate(i)},remove(t){!R(t,this.target)||this.animate(()=>at(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=D(t))}}};let Dn;function ya(t){let e=Date.now();Dn=setInterval(()=>{let{x:i,y:s}=t;s+=Lt(window);const n=(Date.now()-e)*.3;e=Date.now(),Rt(document.elementFromPoint(i,t.y),/auto|scroll/).reverse().some(r=>{let{scrollTop:o,scrollHeight:a}=r;const{top:l,bottom:u,height:f}=M(oe(r));if(l<s&&l+35>s)o-=n;else if(u>s&&u-35<s)o+=n;else return;if(o>0&&o<a-f)return Lt(r,o),!0})},15)}function $a(){clearInterval(Dn)}function ka(t,e){const i=Q(t,e.outerHTML.replace(/(^<)(?:li|tr)|(?:li|tr)(\/>$)/g,"$1div$2"));return c(i,"margin","0","important"),c(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:c(e,"padding")}),z(i.firstElementChild,z(e.firstElementChild)),i}function Sa(t,e){return t[Tt(t,i=>We(e,i.getBoundingClientRect()))]}function Ta(t,e,i,s,n,r){if(!W(t).length)return;const o=e.getBoundingClientRect();if(!r)return Ca(t,i)||n<o.top+o.height/2?e:e.nextElementSibling;const a=i.getBoundingClientRect(),l=Mn([o.top,o.bottom],[a.top,a.bottom]),u=l?s:n,f=l?"width":"height",h=l?"left":"top",d=l?"right":"bottom",g=a[f]<o[f]?o[f]-a[f]:0;return a[h]<o[h]?g&&u<o[h]+g?!1:e.nextElementSibling:g&&u>o[d]-g?!1:e}function Ca(t,e){const i=W(t).length===1;i&&Q(t,e);const s=W(t),n=s.some((r,o)=>{const a=r.getBoundingClientRect();return s.slice(o+1).some(l=>{const u=l.getBoundingClientRect();return!Mn([a.left,a.right],[u.left,u.right])})});return i&&at(e),n}function Mn(t,e){return t[1]>e[0]&&e[1]>t[0]}var Ia={mixins:[he,kt,Ds],args:"title",props:{delay:Number,title:String},data:{pos:"top",title:"",delay:0,animation:["uk-animation-scale-up"],duration:100,cls:"uk-active",clsPos:"uk-tooltip"},beforeConnect(){this._hasTitle=Xt(this.$el,"title"),I(this.$el,"title",""),this.updateAria(!1),Ea(this.$el)},disconnected(){this.hide(),I(this.$el,"title",this._hasTitle?this.title:null)},methods:{show(){this.isToggled(this.tooltip||null)||!this.title||(this._unbind=Y(document,"show keydown "+dt,this.hide,!1,t=>t.type===dt&&!R(t.target,this.$el)||t.type==="keydown"&&t.keyCode===27||t.type==="show"&&t.detail[0]!==this&&t.detail[0].$name===this.$name),clearTimeout(this.showTimer),this.showTimer=setTimeout(this._show,this.delay))},async hide(){L(this.$el,"input:focus")||(clearTimeout(this.showTimer),!!this.isToggled(this.tooltip||null)&&(await this.toggleElement(this.tooltip,!1,!1),at(this.tooltip),this.tooltip=null,this._unbind()))},_show(){this.tooltip=Q(this.container,'<div class="'+this.clsPos+'"> <div class="'+this.clsPos+'-inner">'+this.title+"</div> </div>"),E(this.tooltip,"toggled",(t,e)=>{this.updateAria(e),!!e&&(this.positionAt(this.tooltip,this.$el),this.origin=this.getAxis()==="y"?Ae(this.dir)+"-"+this.align:this.align+"-"+Ae(this.dir))}),this.toggleElement(this.tooltip,!0)},updateAria(t){I(this.$el,"aria-expanded",t)}},events:{focus:"show",blur:"hide",[Ft+" "+Qt](t){yt(t)||this[t.type===Ft?"show":"hide"]()},[dt](t){yt(t)&&this.show()}}};function Ea(t){Ve(t)||I(t,"tabindex","0")}var Pa={props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,msgInvalidMime:String,msgInvalidName:String,msgInvalidSize:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,msgInvalidMime:"Invalid File Type: %s",msgInvalidName:"Invalid File Name: %s",msgInvalidSize:"Invalid File Size: %s Kilobytes Max",multiple:!1,name:"files[]",params:{},type:"",url:"",abort:_,beforeAll:_,beforeSend:_,complete:_,completeAll:_,error:_,fail:_,load:_,loadEnd:_,loadStart:_,progress:_},events:{change(t){!L(t.target,'input[type="file"]')||(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){vi(t);const e=t.dataTransfer;!(e!=null&&e.files)||(N(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){vi(t)},dragover(t){vi(t),$(this.$el,this.clsDragover)},dragleave(t){vi(t),N(this.$el,this.clsDragover)}},methods:{async upload(t){if(!t.length)return;p(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3<s.size){this.fail(this.msgInvalidSize.replace("%s",this.maxSize));return}if(this.allow&&!Bn(this.allow,s.name)){this.fail(this.msgInvalidName.replace("%s",this.allow));return}if(this.mime&&!Bn(this.mime,s.type)){this.fail(this.msgInvalidMime.replace("%s",this.mime));return}}this.multiple||(t=t.slice(0,1)),this.beforeAll(this,t);const e=Aa(t,this.concurrent),i=async s=>{const n=new FormData;s.forEach(r=>n.append(this.name,r));for(const r in this.params)n.append(r,this.params[r]);try{const r=await as(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:o=>{const{xhr:a}=o;return a.upload&&E(a.upload,"progress",this.progress),["loadStart","load","loadEnd","abort"].forEach(l=>E(a,l.toLowerCase(),this[l])),this.beforeSend(o)}});this.complete(r),e.length?await i(e.shift()):this.completeAll(r)}catch(r){this.error(r)}};await i(e.shift())}}};function Bn(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function Aa(t,e){const i=[];for(let s=0;s<t.length;s+=e)i.push(t.slice(s,s+e));return i}function vi(t){t.preventDefault(),t.stopPropagation()}var _a=Object.freeze({__proto__:null,Countdown:Lo,Filter:qo,Lightbox:sa,LightboxPanel:wn,Notification:ra,Parallax:da,Slider:ma,SliderParallax:An,Slideshow:ba,SlideshowParallax:An,Sortable:xa,Tooltip:Ia,Upload:Pa});return it(_a,(t,e)=>tt.component(e,t)),tt});
1
+ /*! UIkit 3.11.2-dev.93483bd3e | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(ge,pe){typeof exports=="object"&&typeof module<"u"?module.exports=pe():typeof define=="function"&&define.amd?define("uikit",pe):(ge=typeof globalThis<"u"?globalThis:ge||self,ge.UIkit=pe())})(this,function(){"use strict";const{hasOwnProperty:ge,toString:pe}=Object.prototype;function Mt(t,e){return ge.call(t,e)}const Hn=/\B([A-Z])/g,Dt=ht(t=>t.replace(Hn,"-$1").toLowerCase()),Fn=/-(\w)/g,Yt=ht(t=>t.replace(Fn,es)),me=ht(t=>t.length?es(null,t.charAt(0))+t.slice(1):"");function es(t,e){return e?e.toUpperCase():""}function lt(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function Ct(t,e){return t==null||t.endsWith==null?void 0:t.endsWith(e)}function b(t,e){return t==null||t.includes==null?void 0:t.includes(e)}function pt(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:rt,from:Ln}=Array,{assign:yt}=Object;function $t(t){return typeof t=="function"}function It(t){return t!==null&&typeof t=="object"}function Pt(t){return pe.call(t)==="[object Object]"}function ve(t){return It(t)&&t===t.window}function we(t){return yi(t)===9}function xi(t){return yi(t)>=1}function Bt(t){return yi(t)===1}function yi(t){return!ve(t)&&It(t)&&t.nodeType}function Ve(t){return typeof t=="boolean"}function D(t){return typeof t=="string"}function Gt(t){return typeof t=="number"}function zt(t){return Gt(t)||D(t)&&!isNaN(t-parseFloat(t))}function Xt(t){return!(rt(t)?t.length:It(t)?Object.keys(t).length:!1)}function G(t){return t===void 0}function $i(t){return Ve(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function At(t){const e=Number(t);return isNaN(e)?!1:e}function x(t){return parseFloat(t)||0}function Y(t){return S(t)[0]}function S(t){return t&&(xi(t)?[t]:Array.from(t).filter(xi))||[]}function Ot(t){var e;if(ve(t))return t;t=Y(t);const i=we(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function ki(t){return t?Ct(t,"ms")?x(t):x(t)*1e3:0}function Ye(t,e){return t===e||It(t)&&It(e)&&Object.keys(t).length===Object.keys(e).length&&it(t,(i,s)=>i===e[s])}function Si(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),s=>s===e?i:e)}function be(t){return t[t.length-1]}function it(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function xe(t,e){return t.slice().sort((i,s)=>{let{[e]:n=0}=i,{[e]:r=0}=s;return n>r?1:r>n?-1:0})}function is(t,e){const i=new Set;return t.filter(s=>{let{[e]:n}=s;return i.has(n)?!1:i.add(n)})}function ot(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(At(t)||0,e),i)}function _(){}function ss(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(s=>{let[n,r]=s;return Math.min(...e.map(o=>{let{[n]:a}=o;return a}))-Math.max(...e.map(o=>{let{[r]:a}=o;return a}))>0})}function Ge(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const ye={ratio(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}},contain(t,e){return t={...t},it(t,(i,s)=>t=t[s]>e[s]?this.ratio(t,s,e[s]):t),t},cover(t,e){return t=this.contain(t,e),it(t,(i,s)=>t=t[s]<e[s]?this.ratio(t,s,e[s]):t),t}};function Kt(t,e,i,s){i===void 0&&(i=0),s===void 0&&(s=!1),e=S(e);const{length:n}=e;return n?(t=zt(t)?At(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(Y(t)),s?ot(t,0,n-1):(t%=n,t<0?t+n:t)):-1}function ht(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class Xe{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function T(t,e,i){if(It(e)){for(const n in e)T(t,n,e[n]);return}if(G(i)){var s;return(s=Y(t))==null?void 0:s.getAttribute(e)}else for(const n of S(t))$t(i)&&(i=i.call(n,T(n,e))),i===null?$e(n,e):n.setAttribute(e,i)}function Ht(t,e){return S(t).some(i=>i.hasAttribute(e))}function $e(t,e){const i=S(t);for(const s of e.split(" "))for(const n of i)n.removeAttribute(s)}function U(t,e){for(const i of[e,"data-"+e])if(Ht(t,i))return T(t,i)}const Wn={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 Ti(t){return S(t).some(e=>Wn[e.tagName.toLowerCase()])}function F(t){return S(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ke="input,select,textarea,button";function Ci(t){return S(t).some(e=>W(e,ke))}const Ke=ke+",a[href],[tabindex]";function Je(t){return W(t,Ke)}function M(t){return t=Y(t),t&&Bt(t.parentNode)&&t.parentNode}function Se(t,e){return S(t).filter(i=>W(i,e))}function W(t,e){return S(t).some(i=>i.matches(e))}function at(t,e){return lt(e,">")&&(e=e.slice(1)),Bt(t)?t.closest(e):S(t).map(i=>at(i,e)).filter(Boolean)}function R(t,e){return D(e)?W(t,e)||!!at(t,e):t===e||Y(e).contains(Y(t))}function Te(t,e){const i=[];for(;t=M(t);)(!e||W(t,e))&&i.push(t);return i}function L(t,e){t=Y(t);const i=t?S(t.children):[];return e?Se(i,e):i}function Jt(t,e){return e?S(t).indexOf(Y(e)):L(M(t)).indexOf(t)}function dt(t,e){return Ii(t,rs(t,e))}function Ce(t,e){return Ie(t,rs(t,e))}function Ii(t,e){return Y(os(t,e,"querySelector"))}function Ie(t,e){return S(os(t,e,"querySelectorAll"))}const Rn=/(^|[^\\],)\s*[!>+~-]/,ns=ht(t=>t.match(Rn));function rs(t,e){return e===void 0&&(e=document),D(t)&&ns(t)||we(e)?e:e.ownerDocument}const jn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g;function os(t,e,i){if(e===void 0&&(e=document),!t||!D(t))return t;t=t.replace(jn,"$1 *"),ns(t)&&(t=Vn(t).map(s=>{let n=e;if(s[0]==="!"){const r=s.substr(1).trim().split(" ");n=at(M(e),r[0]),s=r.slice(1).join(" ").trim()}if(s[0]==="-"){const r=s.substr(1).trim().split(" "),o=(n||e).previousElementSibling;n=W(o,s.substr(1))?o:null,s=r.slice(1).join(" ")}return n?Yn(n)+" "+s:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const qn=/.*?[^\\](?:,|$)/g,Vn=ht(t=>t.match(qn).map(e=>e.replace(/,$/,"").trim()));function Yn(t){const e=[];for(;t.parentNode;){const i=T(t,"id");if(i){e.unshift("#"+Pe(i));break}else{let{tagName:s}=t;s!=="HTML"&&(s+=":nth-child("+(Jt(t)+1)+")"),e.unshift(s),t=t.parentNode}}return e.join(" > ")}function Pe(t){return D(t)?CSS.escape(t):""}function I(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,r,o,a=!1]=Pi(e);o.length>1&&(o=Xn(o)),a!=null&&a.self&&(o=Kn(o)),r&&(o=Gn(r,o));for(const h of n)for(const u of s)u.addEventListener(h,o,a);return()=>Zt(s,n,o,a)}function Zt(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,,r,o=!1]=Pi(e);for(const a of n)for(const h of s)h.removeEventListener(a,r,o)}function j(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[s,n,r,o,a=!1,h]=Pi(e),u=I(s,n,r,f=>{const l=!h||h(f);l&&(u(),o(f,l))},a);return u}function m(t,e,i){return Ai(t).every(s=>s.dispatchEvent(Ae(e,!0,!0,i)))}function Ae(t,e,i,s){return e===void 0&&(e=!0),i===void 0&&(i=!1),D(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function Pi(t){return t[0]=Ai(t[0]),D(t[1])&&(t[1]=t[1].split(" ")),$t(t[2])&&t.splice(2,0,!1),t}function Gn(t,e){return i=>{const s=t[0]===">"?Ie(t,i.currentTarget).reverse().filter(n=>R(i.target,n))[0]:at(i.target,t);s&&(i.current=s,e.call(this,i))}}function Xn(t){return e=>rt(e.detail)?t(e,...e.detail):t(e)}function Kn(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function as(t){return t&&"addEventListener"in t}function Jn(t){return as(t)?t:Y(t)}function Ai(t){return rt(t)?t.map(Jn).filter(Boolean):D(t)?Ie(t):as(t)?[t]:S(t)}function kt(t){return t.pointerType==="touch"||!!t.touches}function Qt(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}function ls(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:_,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>Zn(t,i))}function Zn(t,e){return new Promise((i,s)=>{const{xhr:n}=e;for(const r in e)if(r in n)try{n[r]=e[r]}catch{}n.open(e.method.toUpperCase(),t);for(const r in e.headers)n.setRequestHeader(r,e.headers[r]);I(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s(yt(Error(n.statusText),{xhr:n,status:n.status}))}),I(n,"error",()=>s(yt(Error("Network Error"),{xhr:n}))),I(n,"timeout",()=>s(yt(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}function hs(t,e,i){return new Promise((s,n)=>{const r=new Image;r.onerror=o=>n(o),r.onload=()=>s(r),i&&(r.sizes=i),e&&(r.srcset=e),r.src=t})}const Qn={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,s){s===void 0&&(s="");const n=S(t);for(const r of n)if(D(e)){if(e=Ze(e),G(i))return Un(r,e);!i&&!Gt(i)?r.style.removeProperty(e):r.style.setProperty(e,zt(i)&&!Qn[e]?i+"px":i,s)}else if(rt(e)){const o=Ei(r),a={};for(const h of e)a[h]=o[Ze(h)];return a}else It(e)&&(s=i,it(e,(o,a)=>c(r,a,o,s)));return n[0]}function Ei(t,e){return Ot(t).getComputedStyle(t,e)}function Un(t,e,i){return Ei(t,i)[e]}const tr=/^\s*(["'])?(.*?)\1\s*$/;function _i(t){return Ei(document.documentElement).getPropertyValue("--uk-"+t).replace(tr,"$2")}const Ze=ht(t=>er(t)),cs=["webkit","moz","ms"];function er(t){t=Dt(t);const{style:e}=document.documentElement;if(t in e)return t;let i=cs.length,s;for(;i--;)if(s="-"+cs[i]+"-"+t,s in e)return s}function $(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];us(t,i,"add")}function N(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];us(t,i,"remove")}function Qe(t,e){T(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function Ni(t){(arguments.length<=1?void 0:arguments[1])&&N(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&$(t,arguments.length<=2?void 0:arguments[2])}function C(t,e){[e]=Mi(e);for(const i of S(t))if(e&&i.classList.contains(e))return!0;return!1}function V(t,e,i){const s=Mi(e);G(i)||(i=!!i);for(const n of S(t))for(const r of s)n.classList.toggle(r,i)}function us(t,e,i){e=e.reduce((s,n)=>s.concat(Mi(n)),[]);for(const s of S(t))s.classList[i](...e)}function Mi(t){return String(t).split(/\s|,/).filter(Boolean)}function ds(t,e,i,s){return i===void 0&&(i=400),s===void 0&&(s="linear"),Promise.all(S(t).map(n=>new Promise((r,o)=>{for(const h in e){const u=c(n,h);u===""&&c(n,h,u)}const a=setTimeout(()=>m(n,"transitionend"),i);j(n,"transitionend transitioncanceled",h=>{let{type:u}=h;clearTimeout(a),N(n,"uk-transition"),c(n,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),u==="transitioncanceled"?o():r(n)},{self:!0}),$(n,"uk-transition"),c(n,{transitionProperty:Object.keys(e).map(Ze).join(","),transitionDuration:i+"ms",transitionTimingFunction:s,...e})})))}const P={start:ds,stop(t){return m(t,"transitionend"),Promise.resolve()},cancel(t){m(t,"transitioncanceled")},inProgress(t){return C(t,"uk-transition")}},Ee="uk-animation-";function Di(t,e,i,s,n){return i===void 0&&(i=200),Promise.all(S(t).map(r=>new Promise((o,a)=>{m(r,"animationcanceled");const h=setTimeout(()=>m(r,"animationend"),i);j(r,"animationend animationcanceled",u=>{let{type:f}=u;clearTimeout(h),f==="animationcanceled"?a():o(r),c(r,"animationDuration",""),Qe(r,Ee+"\\S*")},{self:!0}),c(r,"animationDuration",i+"ms"),$(r,e,Ee+(n?"leave":"enter")),lt(e,Ee)&&(s&&$(r,"uk-transform-origin-"+s),n&&$(r,Ee+"reverse"))})))}const ir=new RegExp(Ee+"(enter|leave)"),mt={in:Di,out(t,e,i,s){return Di(t,e,i,s,!0)},inProgress(t){return ir.test(T(t,"class"))},cancel(t){m(t,"animationcanceled")}},Et={width:["left","right"],height:["top","bottom"]};function k(t){const e=Bt(t)?Y(t).getBoundingClientRect():{height:z(t),width:Ne(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function B(t,e){const i=k(t);if(t){const{pageYOffset:n,pageXOffset:r}=Ot(t),o={height:n,width:r};for(const a in Et)for(const h in Et[a])i[Et[a][h]]+=o[a]}if(!e)return i;const s=c(t,"position");it(c(t,["left","top"]),(n,r)=>c(t,r,e[r]-i[r]+x(s==="absolute"&&n==="auto"?Ue(t)[r]:n)))}function Ue(t){let{top:e,left:i}=B(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:r}=Y(t);let o=r||n;for(;o&&(o===s||o===n)&&c(o,"position")==="static";)o=o.parentNode;if(Bt(o)){const a=B(o);e-=a.top+x(c(o,"borderTopWidth")),i-=a.left+x(c(o,"borderLeftWidth"))}return{top:e-x(c(t,"marginTop")),left:i-x(c(t,"marginLeft"))}}function _e(t){const e=[0,0];t=Y(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,c(t,"position")==="fixed"){const i=Ot(t);return e[0]+=i.pageYOffset,e[1]+=i.pageXOffset,e}while(t=t.offsetParent);return e}const z=fs("height"),Ne=fs("width");function fs(t){const e=me(t);return(i,s)=>{if(G(s)){if(ve(i))return i["inner"+e];if(we(i)){const n=i.documentElement;return Math.max(n["offset"+e],n["scroll"+e])}return i=Y(i),s=c(i,t),s=s==="auto"?i["offset"+e]:x(s)||0,s-Ut(i,t)}else return c(i,t,!s&&s!==0?"":+s+Ut(i,t)+"px")}}function Ut(t,e,i){return i===void 0&&(i="border-box"),c(t,"boxSizing")===i?Et[e].map(me).reduce((s,n)=>s+x(c(t,"padding"+n))+x(c(t,"border"+n+"Width")),0):0}function Me(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 ft(t,e,i,s){return e===void 0&&(e="width"),i===void 0&&(i=window),s===void 0&&(s=!1),D(t)?nr(t).reduce((n,r)=>{const o=or(r);return o&&(r=ar(o==="vh"?z(Ot(i)):o==="vw"?Ne(Ot(i)):s?i["offset"+me(e)]:k(i)[e],r)),n+x(r)},0):x(t)}const sr=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,nr=ht(t=>t.toString().replace(/\s/g,"").match(sr)||[]),rr=/(?:v[hw]|%)$/,or=ht(t=>(t.match(rr)||[])[0]);function ar(t,e){return t*x(e)/100}function lr(t){if(document.readyState!=="loading"){t();return}j(document,"DOMContentLoaded",t)}function vt(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function gs(t){return Bi(t,"")}function _t(t,e){return G(e)?y(t).innerHTML:Bi(t,e)}const Bi=De("replaceChildren"),hr=De("prepend"),X=De("append"),zi=De("before"),ti=De("after");function De(t){return function(e,i){const s=S(D(i)?Ft(i):i);return s.length&&y(e)[t](...s),ms(s)}}function ct(t){S(t).forEach(e=>e.remove())}function ei(t,e){for(e=Y(zi(t,e));e.firstChild;)e=e.firstChild;return X(e,t),e}function ps(t,e){return S(S(t).map(i=>i.hasChildNodes?ei(S(i.childNodes),e):X(i,e)))}function ii(t){S(t).map(M).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}function Ft(t){const e=document.createElement("template");e.innerHTML=t.trim();const i=S(e.content.childNodes);for(const s of i)document.adoptNode(s);return ms(i)}function ms(t){return t.length>1?t:t[0]}function St(t,e){if(!!Bt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;St(t,e),t=i}}function y(t,e){return vs(t)?Y(Ft(t)):Ii(t,e)}function O(t,e){return vs(t)?S(Ft(t)):Ie(t,e)}function vs(t){return D(t)&&lt(t.trim(),"<")}const te=typeof window<"u",Z=te&&T(document.documentElement,"dir")==="rtl",Lt=te&&"ontouchstart"in window,ee=te&&window.PointerEvent,ut=ee?"pointerdown":Lt?"touchstart":"mousedown",ie=ee?"pointermove":Lt?"touchmove":"mousemove",wt=ee?"pointerup":Lt?"touchend":"mouseup",Wt=ee?"pointerenter":Lt?"":"mouseenter",se=ee?"pointerleave":Lt?"":"mouseleave",ne=ee?"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){bs(this.reads,t),bs(this.writes,t)},flush:Oi};function Oi(t){ws(H.reads),ws(H.writes.splice(0)),H.scheduled=!1,(H.reads.length||H.writes.length)&&Hi(t+1)}const cr=4;function Hi(t){H.scheduled||(H.scheduled=!0,t&&t<cr?Promise.resolve().then(()=>Oi(t)):requestAnimationFrame(()=>Oi(1)))}function ws(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function bs(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function Fi(){}Fi.prototype={positions:[],init(){this.positions=[];let t;this.unbind=I(document,"mousemove",e=>t=Qt(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:s,top:n,bottom:r}=e,[o]=this.positions,a=be(this.positions),h=[o,a];return Ge(a,e)?!1:[[{x:i,y:n},{x:s,y:r}],[{x:i,y:r},{x:s,y:n}]].some(f=>{const l=ur(h,f);return l&&Ge(l,e)})}};function ur(t,e){let[{x:i,y:s},{x:n,y:r}]=t,[{x:o,y:a},{x:h,y:u}]=e;const f=(u-a)*(n-i)-(h-o)*(r-s);if(f===0)return!1;const l=((h-o)*(s-a)-(u-a)*(i-o))/f;return l<0?!1:{x:i+l*(n-i),y:s+l*(r-s)}}const Q={};Q.events=Q.created=Q.beforeConnect=Q.connected=Q.beforeDisconnect=Q.disconnected=Q.destroy=Li,Q.args=function(t,e){return e!==!1&&Li(e||t)},Q.update=function(t,e){return xe(Li(t,$t(e)?{read:e}:e),"order")},Q.props=function(t,e){if(rt(e)){const i={};for(const s of e)i[s]=String;e=i}return Q.methods(t,e)},Q.computed=Q.methods=function(t,e){return e?t?{...t,...e}:e:t},Q.data=function(t,e,i){return i?xs(t,e,i):e?t?function(s){return xs(t,e,s)}:e:t};function xs(t,e,i){return Q.computed($t(t)?t.call(i,i):t,$t(e)?e.call(i,i):e)}function Li(t,e){return t=t&&!rt(t)?[t]:t,e?t?t.concat(e):rt(e)?e:[e]:t}function dr(t,e){return G(e)?t:e}function re(t,e,i){const s={};if($t(e)&&(e=e.options),e.extends&&(t=re(t,e.extends,i)),e.mixins)for(const r of e.mixins)t=re(t,r,i);for(const r in t)n(r);for(const r in e)Mt(t,r)||n(r);function n(r){s[r]=(Q[r]||dr)(t[r],e[r],i)}return s}function Be(t,e){e===void 0&&(e=[]);try{return t?lt(t,"{")?JSON.parse(t):e.length&&!b(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,r]=s.split(/:(.*)/);return n&&!G(r)&&(i[n.trim()]=r.trim()),i},{}):{}}catch{return{}}}function ys(t){if(ni(t)&&Wi(t,{func:"playVideo",method:"play"}),si(t))try{t.play().catch(_)}catch{}}function $s(t){ni(t)&&Wi(t,{func:"pauseVideo",method:"pause"}),si(t)&&t.pause()}function ks(t){ni(t)&&Wi(t,{func:"mute",method:"setVolume",value:0}),si(t)&&(t.muted=!0)}function Ss(t){return si(t)||ni(t)}function si(t){return vt(t,"video")}function ni(t){return vt(t,"iframe")&&(Ts(t)||Cs(t))}function Ts(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Cs(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Wi(t,e){await gr(t),Is(t,e)}function Is(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const Ri="_ukPlayer";let fr=0;function gr(t){if(t[Ri])return t[Ri];const e=Ts(t),i=Cs(t),s=++fr;let n;return t[Ri]=new Promise(r=>{e&&j(t,"load",()=>{const o=()=>Is(t,{event:"listening",id:s});n=setInterval(o,100),o()}),j(window,"message",r,!1,o=>{let{data:a}=o;try{return a=JSON.parse(a),a&&(e&&a.id===s&&a.event==="onReady"||i&&Number(a.player_id)===s)}catch{}}),t.src=""+t.src+(b(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+s)}).then(()=>clearInterval(n))}function oe(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),F(t)?ss(...jt(t).map(s=>{const{top:n,left:r,bottom:o,right:a}=B(ae(s));return{top:n-e,left:r-i,bottom:o+e,right:a+i}}).concat(B(t))):!1}function Rt(t,e){if(ve(t)||we(t)?t=le(t):t=Y(t),G(e))return t.scrollTop;t.scrollTop=e}function ji(t,e){let{offset:i=0}=e===void 0?{}:e;const s=F(t)?jt(t):[];return s.reduce((a,h,u)=>{const{scrollTop:f,scrollHeight:l,offsetHeight:d}=h,g=l-ze(h),{height:v,top:p}=B(s[u-1]||t);let w=Math.ceil(p-B(ae(h)).top-i+f);return i>0&&d<v+i?w+=i:i=0,w>g?(i-=w-g,w=g):w<0&&(i-=w,w=0),()=>n(h,w-f).then(a)},()=>Promise.resolve())();function n(a,h){return new Promise(u=>{const f=a.scrollTop,l=r(Math.abs(h)),d=Date.now();(function g(){const v=o(ot((Date.now()-d)/l));Rt(a,f+h*v),v===1?u():requestAnimationFrame(g)})()})}function r(a){return 40*Math.pow(a,.375)}function o(a){return .5*(1-Math.cos(Math.PI*a))}}function qi(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!F(t))return 0;const[s]=jt(t,/auto|scroll/,!0),{scrollHeight:n,scrollTop:r}=s,o=ze(s),a=n-o,h=_e(t)[0]-_e(s)[0],u=Math.max(0,h-o+e),f=Math.min(a,h+t.offsetHeight-i);return ot((r-u)/(f-u))}function jt(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const s=le(t);let n=Te(t).reverse();n=n.slice(n.indexOf(s)+1);const r=pt(n,o=>c(o,"position")==="fixed");return~r&&(n=n.slice(r)),[s].concat(n.filter(o=>e.test(c(o,"overflow"))&&(!i||o.scrollHeight>ze(o)))).reverse()}function ae(t){return t===le(t)?window:t}function ze(t){return(t===le(t)?document.documentElement:t).clientHeight}function le(t){const{document:e}=Ot(t);return e.scrollingElement||e.documentElement}const Oe={width:["x","left","right"],height:["y","top","bottom"]};function Ps(t,e,i,s,n,r,o,a){i=Es(i),s=Es(s);const h={element:i,target:s};if(!t||!e)return h;const u=B(t),f=B(e),l=f;if(As(l,i,u,-1),As(l,s,f,1),n=_s(n,u.width,u.height),r=_s(r,f.width,f.height),n.x+=r.x,n.y+=r.y,l.left+=n.x,l.top+=n.y,o){let d=jt(t).map(ae);a&&!b(d,a)&&d.unshift(a),d=d.map(g=>B(g)),it(Oe,(g,v)=>{let[p,w,A]=g;!(o===!0||b(o,p))||d.some(E=>{const J=i[p]===w?-u[v]:i[p]===A?u[v]:0,et=s[p]===w?f[v]:s[p]===A?-f[v]:0;if(l[w]<E[w]||l[w]+u[v]>E[A]){const xt=u[v]/2,de=s[p]==="center"?-f[v]/2:0;return i[p]==="center"&&(gt(xt,de)||gt(-xt,-de))||gt(J,et)}function gt(xt,de){const fe=x((l[w]+xt+de-n[p]*2).toFixed(4));if(fe>=E[w]&&fe+u[v]<=E[A]){l[w]=fe;for(const qe of["element","target"])xt&&(h[qe][p]=h[qe][p]===Oe[v][1]?Oe[v][2]:Oe[v][1]);return!0}}})})}return B(t,l),h}function As(t,e,i,s){it(Oe,(n,r)=>{let[o,a,h]=n;e[o]===h?t[a]+=i[r]*s:e[o]==="center"&&(t[a]+=i[r]*s/2)})}function Es(t){const e=/left|center|right/,i=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function _s(t,e,i){const[s,n]=(t||"").split(" ");return{x:s?x(s)*(Ct(s,"%")?e/100:1):0,y:n?x(n)*(Ct(n,"%")?i/100:1):0}}var pr=Object.freeze({__proto__:null,ajax:ls,getImage:hs,transition:ds,Transition:P,animate:Di,Animation:mt,attr:T,hasAttr:Ht,removeAttr:$e,data:U,addClass:$,removeClass:N,removeClasses:Qe,replaceClass:Ni,hasClass:C,toggleClass:V,dimensions:k,offset:B,position:Ue,offsetPosition:_e,height:z,width:Ne,boxModelAdjust:Ut,flipPosition:Me,toPx:ft,ready:lr,isTag:vt,empty:gs,html:_t,replaceChildren:Bi,prepend:hr,append:X,before:zi,after:ti,remove:ct,wrapAll:ei,wrapInner:ps,unwrap:ii,fragment:Ft,apply:St,$:y,$$:O,inBrowser:te,isRtl:Z,hasTouch:Lt,pointerDown:ut,pointerMove:ie,pointerUp:wt,pointerEnter:Wt,pointerLeave:se,pointerCancel:ne,on:I,off:Zt,once:j,trigger:m,createEvent:Ae,toEventTargets:Ai,isTouch:kt,getEventPos:Qt,fastdom:H,isVoidElement:Ti,isVisible:F,selInput:ke,isInput:Ci,selFocusable:Ke,isFocusable:Je,parent:M,filter:Se,matches:W,closest:at,within:R,parents:Te,children:L,index:Jt,hasOwn:Mt,hyphenate:Dt,camelize:Yt,ucfirst:me,startsWith:lt,endsWith:Ct,includes:b,findIndex:pt,isArray:rt,toArray:Ln,assign:yt,isFunction:$t,isObject:It,isPlainObject:Pt,isWindow:ve,isDocument:we,isNode:xi,isElement:Bt,isBoolean:Ve,isString:D,isNumber:Gt,isNumeric:zt,isEmpty:Xt,isUndefined:G,toBoolean:$i,toNumber:At,toFloat:x,toNode:Y,toNodes:S,toWindow:Ot,toMs:ki,isEqual:Ye,swap:Si,last:be,each:it,sortBy:xe,uniqueBy:is,clamp:ot,noop:_,intersectRect:ss,pointInRect:Ge,Dimensions:ye,getIndex:Kt,memoize:ht,Deferred:Xe,MouseTracker:Fi,mergeOptions:re,parseOptions:Be,play:ys,pause:$s,mute:ks,isVideo:Ss,positionAt:Ps,query:dt,queryAll:Ce,find:Ii,findAll:Ie,escape:Pe,css:c,getCssVar:_i,propName:Ze,isInView:oe,scrollTop:Rt,scrollIntoView:ji,scrolledOver:qi,scrollParents:jt,getViewport:ae,getViewportClientHeight:ze,getScrollingElement:le});function mr(t){const e=t.data;t.use=function(n){if(!n.installed)return n.call(null,this),n.installed=!0,this},t.mixin=function(n,r){r=(D(r)?t.component(r):r)||this,r.options=re(r.options,n)},t.extend=function(n){n=n||{};const r=this,o=function(h){this._init(h)};return o.prototype=Object.create(r.prototype),o.prototype.constructor=o,o.options=re(r.options,n),o.super=r,o.extend=r.extend,o},t.update=function(n,r){n=n?Y(n):document.body;for(const o of Te(n).reverse())s(o[e],r);St(n,o=>s(o[e],r))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(n){i=y(n)}});function s(n,r){if(!!n)for(const o in n)n[o]._connected&&n[o]._callUpdate(r)}}function vr(t){t.prototype._callHook=function(s){var n;(n=this.$options[s])==null||n.forEach(r=>r.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(s){s===void 0&&(s="update"),!!this._connected&&((s==="update"||s==="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(s.type||s)))},t.prototype._callWatches=function(){if(this._watch)return;const s=!Mt(this,"_watch");this._watch=H.read(()=>{this._connected&&i.call(this,s),this._watch=null})};function e(s){for(const{read:n,write:r,events:o}of this.$options.update){if(!s.has("update")&&(!o||!o.some(h=>s.has(h))))continue;let a;n&&(a=n.call(this,this._data,s),a&&Pt(a)&&yt(this._data,a)),r&&a!==!1&&H.write(()=>r.call(this,this._data,s))}}function i(s){const{$options:{computed:n}}=this,r={...this._computeds};this._computeds={};for(const o in n){const{watch:a,immediate:h}=n[o];a&&(s&&h||Mt(r,o)&&!Ye(r[o],this[o]))&&a.call(this,this[o],r[o])}}}function wr(t){let e=0;t.prototype._init=function(l){l=l||{},l.data=h(l,this.constructor.options),this.$options=re(this.constructor.options,l,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),l.el&&this.$mount(l.el)},t.prototype._initData=function(){const{data:l={}}=this.$options;for(const d in l)this.$props[d]=this[d]=l[d]},t.prototype._initMethods=function(){const{methods:l}=this.$options;if(l)for(const d in l)this[d]=l[d].bind(this)},t.prototype._initComputeds=function(){const{computed:l}=this.$options;if(this._computeds={},l)for(const d in l)s(this,d,l[d])},t.prototype._initProps=function(l){let d;l=l||i(this.$options,this.$name);for(d in l)G(l[d])||(this.$props[d]=l[d]);const g=[this.$options.computed,this.$options.methods];for(d in this.$props)d in l&&r(g,d)&&(this[d]=this.$props[d])},t.prototype._initEvents=function(){this._events=[];for(const l of this.$options.events||[])if(Mt(l,"handler"))n(this,l);else for(const d in l)n(this,l[d],d)},t.prototype._unbindEvents=function(){this._events.forEach(l=>l()),delete this._events},t.prototype._initObservers=function(){this._observers=[u(this),f(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(l=>l==null?void 0:l.disconnect())};function i(l,d){const g={},{args:v=[],props:p={},el:w}=l;if(!p)return g;for(const E in p){const J=Dt(E);let et=U(w,J);G(et)||(et=p[E]===Boolean&&et===""?!0:o(p[E],et),!(J==="target"&&(!et||lt(et,"_")))&&(g[E]=et))}const A=Be(U(w,d),v);for(const E in A){const J=Yt(E);p[J]!==void 0&&(g[J]=o(p[J],A[E]))}return g}function s(l,d,g){Object.defineProperty(l,d,{enumerable:!0,get(){const{_computeds:v,$props:p,$el:w}=l;return Mt(v,d)||(v[d]=(g.get||g).call(l,p,w)),v[d]},set(v){const{_computeds:p}=l;p[d]=g.set?g.set.call(l,v):v,G(p[d])&&delete p[d]}})}function n(l,d,g){Pt(d)||(d={name:g,handler:d});let{name:v,el:p,handler:w,capture:A,passive:E,delegate:J,filter:et,self:gt}=d;if(p=$t(p)?p.call(l):p||l.$el,rt(p)){p.forEach(xt=>n(l,{...d,el:xt},g));return}!p||et&&!et.call(l)||l._events.push(I(p,v,J?D(J)?J:J.call(l):null,D(w)?l[w]:w.bind(l),{passive:E,capture:A,self:gt}))}function r(l,d){return l.every(g=>!g||!Mt(g,d))}function o(l,d){return l===Boolean?$i(d):l===Number?At(d):l==="list"?a(d):l?l(d):d}function a(l){return rt(l)?l:D(l)?l.split(/,(?![^(]*\))/).map(d=>zt(d)?At(d):$i(d.trim())):[l]}function h(l,d){let{data:g={}}=l,{args:v=[],props:p={}}=d;rt(g)&&(g=g.slice(0,v.length).reduce((w,A,E)=>(Pt(A)?yt(w,A):w[v[E]]=A,w),{}));for(const w in g)G(g[w])?delete g[w]:p[w]&&(g[w]=o(p[w],g[w]));return g}function u(l){const{el:d}=l.$options,g=new MutationObserver(()=>l.$emit());return g.observe(d,{childList:!0,subtree:!0}),g}function f(l){const{$name:d,$options:g,$props:v}=l,{attrs:p,props:w,el:A}=g;if(!w||p===!1)return;const E=rt(p)?p:Object.keys(w),J=E.map(gt=>Dt(gt)).concat(d),et=new MutationObserver(gt=>{const xt=i(g,d);gt.some(de=>{let{attributeName:fe}=de;const qe=fe.replace("data-","");return(qe===d?E:[Yt(qe),Yt(fe)]).some(ts=>!G(xt[ts])&&xt[ts]!==v[ts])})&&l.$reset()});return et.observe(A,{attributes:!0,attributeFilter:J.concat(J.map(gt=>"data-"+gt))}),et}}function br(t){const e=t.data;t.prototype.$create=function(s,n,r){return t[s](n,r)},t.prototype.$mount=function(s){const{name:n}=this.$options;s[e]||(s[e]={}),!s[e][n]&&(s[e][n]=this,this.$el=this.$options.el=this.$options.el||s,R(s,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(s){s===void 0&&(s=!1);const{el:n,name:r}=this.$options;n&&this._callDisconnected(),this._callHook("destroy"),!!(n!=null&&n[e])&&(delete n[e][r],Xt(n[e])||delete n[e],s&&ct(this.$el))},t.prototype.$emit=function(s){this._callUpdate(s)},t.prototype.$update=function(s,n){s===void 0&&(s=this.$el),t.update(s,n)},t.prototype.$getComponent=t.getComponent;const i=ht(s=>t.prefix+Dt(s));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function xr(t){const e=t.data,i={};t.component=function(s,n){const r=Dt(s);if(s=Yt(r),!n)return Pt(i[s])&&(i[s]=t.extend(i[s])),i[s];t[s]=function(a,h){const u=t.component(s);return u.options.functional?new u({data:Pt(a)?a:[...arguments]}):a?O(a).map(f)[0]:f();function f(l){const d=t.getComponent(l,s);if(d)if(h)d.$destroy();else return d;return new u({el:l,data:h})}};const o=Pt(n)?{...n}:n.options;return o.name=s,o.install==null||o.install(t,o,s),t._initialized&&!o.functional&&H.read(()=>t[s]("[uk-"+r+"],[data-uk-"+r+"]")),i[s]=Pt(n)?o:n},t.getComponents=s=>(s==null?void 0:s[e])||{},t.getComponent=(s,n)=>t.getComponents(s)[n],t.connect=s=>{if(s[e])for(const n in s[e])s[e][n]._callConnected();for(const n of s.attributes){const r=Ns(n.name);r&&r in i&&t[r](s)}},t.disconnect=s=>{for(const n in s[e])s[e][n]._callDisconnected()}}const Ns=ht(t=>lt(t,"uk-")||lt(t,"data-uk-")?Yt(t.replace("data-uk-","").replace("uk-","")):!1),tt=function(t){this._init(t)};tt.util=pr,tt.data="__uikit__",tt.prefix="uk-",tt.options={},tt.version="3.11.2-dev.93483bd3e",mr(tt),vr(tt),wr(tt),xr(tt),br(tt);function yr(t){if(!te)return;let e;const i=()=>{e||(e=!0,H.read(()=>e=!1),t.update(null,"resize"))};I(window,"load resize",i),I(document,"loadedmetadata load",i,!0),"ResizeObserver"in window&&new ResizeObserver(i).observe(document.documentElement);let s;I(window,"scroll",r=>{s||(s=!0,H.read(()=>s=!1),t.update(null,r.type))},{passive:!0,capture:!0});let n=0;I(document,"animationstart",r=>{let{target:o}=r;(c(o,"animationName")||"").match(/^uk-.*(left|right)/)&&(n++,c(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--n||c(document.documentElement,"overflowX","")},ki(c(o,"animationDuration"))+100))},!0),I(document,ut,r=>{if(!kt(r))return;const o=Qt(r),a="tagName"in r.target?r.target:M(r.target);j(document,wt+" "+ne+" scroll",h=>{const{x:u,y:f}=Qt(h);(h.type!=="scroll"&&a&&u&&Math.abs(o.x-u)>100||f&&Math.abs(o.y-f)>100)&&setTimeout(()=>{m(a,"swipe"),m(a,"swipe"+$r(o.x,o.y,u,f))})})},{passive:!0})}function $r(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}function kr(t){const{connect:e,disconnect:i}=t;if(!te||!window.MutationObserver)return;H.read(function(){document.body&&St(document.body,e),new MutationObserver(r=>r.forEach(s)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(r=>r.forEach(n)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function s(r){let{addedNodes:o,removedNodes:a}=r;for(const h of o)St(h,e);for(const h of a)St(h,i)}function n(r){var o;let{target:a,attributeName:h}=r;const u=Ns(h);if(!(!u||!(u in t))){if(Ht(a,h)){t[u](a);return}(o=t.getComponent(a,u))==null||o.$destroy()}}}var st={connected(){!C(this.$el,this.$name)&&$(this.$el,this.$name)}},Tt={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement(t,e,i){return new Promise(s=>Promise.all(S(t).map(n=>{const r=Ve(e)?e:!this.isToggled(n);if(!m(n,"before"+(r?"show":"hide"),[this]))return Promise.reject();const o=($t(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?Ms(this):Sr(this))(n,r),a=r?this.clsEnter:this.clsLeave;$(n,a),m(n,r?"show":"hide",[this]);const h=()=>{N(n,a),m(n,r?"shown":"hidden",[this]),this.$update(n)};return o?o.then(h,()=>(N(n,a),Promise.reject())):h()})).then(s,_))},isToggled(t){return t===void 0&&(t=this.$el),[t]=S(t),C(t,this.clsEnter)?!0:C(t,this.clsLeave)?!1:this.cls?C(t,this.cls.split(" ")[0]):F(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=b(this.cls," ")||e!==C(t,this.cls),i&&V(t,this.cls,b(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),O("[autofocus]",t).some(s=>F(s)?s.focus()||!0:s.blur()),i&&(m(t,"toggled",[e,this]),this.$update(t))}}};function Ms(t){let{isToggled:e,duration:i,initProps:s,hideProps:n,transition:r,_toggle:o}=t;return(a,h)=>{const u=P.inProgress(a),f=a.hasChildNodes?x(c(a.firstElementChild,"marginTop"))+x(c(a.lastElementChild,"marginBottom")):0,l=F(a)?z(a)+(u?0:f):0;P.cancel(a),e(a)||o(a,!0),z(a,""),H.flush();const d=z(a)+(u?0:f);return z(a,l),(h?P.start(a,{...s,overflow:"hidden",height:d},Math.round(i*(1-l/d)),r):P.start(a,n,Math.round(i*(l/d)),r).then(()=>o(a,!1))).then(()=>c(a,s))}}function Sr(t){return(e,i)=>{mt.cancel(e);const{animation:s,duration:n,_toggle:r}=t;return i?(r(e,!0),mt.in(e,s[0],n,t.origin)):mt.out(e,s[1]||s[0],n,t.origin).then(()=>r(e,!1))}}var Ds={mixins:[st,Tt],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return O(i,e)},watch(t,e){if(t.forEach(s=>ri(y(this.content,s),!C(s,this.clsOpen))),e||C(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},immediate:!0},toggles(t){let{toggle:e}=t;return this.items.map(i=>y(e,i))}},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(Jt(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[Kt(t,this.items)]];const s=Se(this.items,"."+this.clsOpen);if(!this.multiple&&!b(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&!Se(i,":not(."+this.clsOpen+")").length))for(const n of i)this.toggleElement(n,!C(n,this.clsOpen),async(r,o)=>{V(r,this.clsOpen,o),T(y(this.$props.toggle,r),"aria-expanded",o);const a=y((r._wrapper?"> * ":"")+this.content,r);if(e===!1||!this.hasTransition){ri(a,!o);return}if(r._wrapper||(r._wrapper=ei(a,"<div"+(o?" hidden":"")+">")),ri(a,!1),await Ms(this)(r._wrapper,o),ri(a,!o),delete r._wrapper,ii(a),o){const h=y(this.$props.toggle,r);oe(h)||ji(h,{offset:this.offset})}})}}};function ri(t,e){t&&(t.hidden=e)}var Tr={mixins:[st,Tt],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:{opacity:0,...Tt.data.hideProps}},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}}],methods:{async close(){await this.toggleElement(this.$el),this.$destroy(!0)}}},Bs={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView(t){let{autoplay:e}=t;return e==="inview"}},connected(){this.inView&&!Ht(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&ks(this.$el)},update:{read(){return Ss(this.$el)?{visible:F(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&oe(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?$s(this.$el):(this.autoplay===!0||this.inView&&i)&&ys(this.$el)},events:["resize","scroll"]}},Cr={mixins:[Bs],props:{width:Number,height:Number},data:{automute:!0},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Ir(t)||M(t),s=ye.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:i+(i%2?1:0),height:e+(e%2?1:0)});return!s.width||!s.height?!1:s},write(t){let{height:e,width:i}=t;c(this.$el,{height:e,width:i})},events:["resize"]}};function Ir(t){for(;t=M(t);)if(c(t,"position")!=="static")return t}var he={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&y(e)}}},zs={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Z?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos(t){let{pos:e}=t;return e.split("-").concat("center").slice(0,2)},dir(){return this.pos[0]},align(){return this.pos[1]}},methods:{positionAt(t,e,i){Qe(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:s}=this;const n=this.getAxis();if(!zt(s)){const a=y(s);s=a?B(a)[n==="x"?"left":"top"]-B(e)[n==="x"?"right":"bottom"]:0}const{x:r,y:o}=Ps(t,e,n==="x"?Me(this.dir)+" "+this.align:this.align+" "+Me(this.dir),n==="x"?this.dir+" "+this.align:this.align+" "+this.dir,n==="x"?""+(this.dir==="left"?-s:s):" "+(this.dir==="top"?-s:s),null,this.flip,i).target;this.dir=n==="x"?r:o,this.align=n==="x"?o:r,V(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let K;var Os={mixins:[he,zs,Tt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?window:dt(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new Fi},connected(){$(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",dt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,T(this.target,"aria-haspopup",!0))},disconnected(){this.isActive()&&(K=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!R(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),W(this.$el,":focus,:hover")||this.hide()}},{name:Wt+" focusin",filter(){return b(this.mode,"hover")},handler(t){kt(t)||this.clearTimers()}},{name:se+" focusout",filter(){return b(this.mode,"hover")},handler(t){!kt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){K=this,this.tracker.init(),j(this.$el,"hide",I(document,ut,t=>{let{target:e}=t;return!R(e,this.$el)&&j(document,wt+" "+ne+" scroll",i=>{let{defaultPrevented:s,type:n,target:r}=i;!s&&n===wt&&e===r&&!(this.target&&R(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),j(this.$el,"hide",I(document,"keydown",t=>{t.keyCode===27&&this.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){K=K===null&&R(e,this.$el)&&this.isToggled()?this:K;return}K=this.isActive()?null:K,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!C(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(K){if(e&&K.isDelaying){this.showTimer=setTimeout(()=>W(t,":hover")&&this.show(),10);return}let i;for(;K&&i!==K&&!R(this.$el,K.$el);)i=K,K.hide(!1)}this.container&&M(this.$el)!==this.container&&X(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t){t===void 0&&(t=!0);const e=()=>this.toggleElement(this.$el,!1,!1);this.clearTimers(),this.isDelaying=Pr(this.$el).some(i=>this.tracker.movesTo(i)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(e,this.delayHide):e()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return K===this},position(){N(this.$el,this.clsDrop+"-stack"),V(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=B(this.boundary),e=this.boundaryAlign?t:B(this.target);if(this.align==="justify"){const i=this.getAxis()==="y"?"width":"height";c(this.$el,i,e[i])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&$(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Pr(t){const e=[];return St(t,i=>c(i,"position")!=="static"&&e.push(i)),e}var Ar={mixins:[st],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return y(ke,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&M(this.input)===e&&this.input.nextElementSibling||dt(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const s=Ci(t)?"value":"textContent",n=t[s],r=e.files&&e.files[0]?e.files[0].name:W(e,"select")&&(i=O("option",e).filter(o=>o.selected)[0])?i.textContent:e.value;n!==r&&(t[s]=r)},events:[{name:"change",handler(){this.$update()}},{name:"reset",el(){return at(this.$el,"form")},handler(){this.$update()}}]},Er={update:{read(t){const e=oe(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},Hs={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=Vi(this.$el.children);return{rows:t,columns:_r(t)}},write(t){let{columns:e,rows:i}=t;for(const s of i)for(const n of s)V(n,this.margin,i[0]!==s),V(n,this.firstColumn,!!~e[0].indexOf(n))},events:["resize"]}};function Vi(t){return Fs(t,"top","bottom")}function _r(t){const e=[];for(const i of t){const s=Fs(i,"left","right");for(let n=0;n<s.length;n++)e[n]=e[n]?e[n].concat(s[n]):s[n]}return Z?e.reverse():e}function Fs(t,e,i){const s=[[]];for(const n of t){if(!F(n))continue;let r=oi(n);for(let o=s.length-1;o>=0;o--){const a=s[o];if(!a[0]){a.push(n);break}let h;if(a[0].offsetParent===n.offsetParent?h=oi(a[0]):(r=oi(n,!0),h=oi(a[0],!0)),r[e]>=h[i]-1&&r[e]!==h[e]){s.push([n]);break}if(r[i]-1>h[e]||r[e]===h[e]){a.push(n);break}if(o===0){s.unshift([n]);break}}}return s}function oi(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:r}=t;return e&&([i,s]=_e(t)),{top:i,left:s,bottom:i+n,right:s+r}}var Nr={extends:Hs,mixins:[st],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&$(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;V(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||Ls(this.$el))return t.translates=!1,!1;let s=!1;const n=L(this.$el),r=Br(e),o=Dr(n,this.margin)*(i.length-1),a=Math.max(...r)+o;this.masonry&&(e=e.map(u=>xe(u,"offsetTop")),s=Mr(i,e));let h=Math.abs(this.parallax);return h&&(h=r.reduce((u,f,l)=>Math.max(u,f+o+(l%2?h:h/8)-a),0)),{padding:h,columns:e,translates:s,height:s?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 Ls(this.$el)?!1:{scrolled:this.parallax?qi(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:s}=t;i===!1&&!s||e.forEach((n,r)=>n.forEach((o,a)=>c(o,"transform",!i&&!s?"":"translateY("+((s&&-s[r][a])+(i?r%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function Ls(t){return L(t).some(e=>c(e,"position")==="absolute")}function Mr(t,e){const i=t.map(s=>Math.max(...s.map(n=>n.offsetHeight)));return e.map(s=>{let n=0;return s.map((r,o)=>n+=o?i[o-1]-s[o-1].offsetHeight:0)})}function Dr(t,e){const[i]=t.filter(s=>C(s,e));return x(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}function Br(t){return t.map(e=>e.reduce((i,s)=>i+s.offsetHeight,0))}var zr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return O(i,e)}},update:{read(){return{rows:(this.row?Vi(this.elements):[this.elements]).map(Or)}},write(t){let{rows:e}=t;for(const{heights:i,elements:s}of e)s.forEach((n,r)=>c(n,"minHeight",i[r]))},events:["resize"]}};function Or(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Ws),i=Math.max(...e);const s=t.some(r=>r.style.minHeight),n=t.some((r,o)=>!r.style.minHeight&&e[o]<i);return s&&n&&(c(t,"minHeight",""),e=t.map(Ws),i=Math.max(...e)),e=t.map((r,o)=>e[o]===i&&x(r.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function Ws(t){let e=!1;F(t)||(e=t.style.display,c(t,"display","block","important"));const i=k(t).height-Ut(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var Hr={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read(t){let{minHeight:e}=t;if(!F(this.$el))return!1;let i="";const s=Ut(this.$el,"height","content-box");if(this.expand)i=z(window)-(k(document.documentElement).height-k(this.$el).height)-s||"";else{if(i="calc(100vh",this.offsetTop){const{top:n}=B(this.$el);i+=n>0&&n<z(window)/2?" - "+n+"px":""}this.offsetBottom===!0?i+=" - "+k(this.$el.nextElementSibling).height+"px":zt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&Ct(this.offsetBottom,"px")?i+=" - "+x(this.offsetBottom)+"px":D(this.offsetBottom)&&(i+=" - "+k(dt(this.offsetBottom,this.$el)).height+"px"),i+=(s?" - "+s+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;c(this.$el,{minHeight:e}),e!==i&&m(this.$el,"resize"),this.minHeight&&x(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},Rs={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&&b(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=jr(t,this.$el);return this.svgEl&&e!==this.svgEl&&ct(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},_)},disconnected(){this.svg.then(t=>{this._connected||(Ti(this.$el)&&(this.$el.hidden=!1),ct(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&F(this.svgEl))},write(){Rr(this.svgEl)},type:["resize"]},methods:{async getSvg(){return vt(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>j(this.$el,"load",()=>t(this.getSvg()))):Lr(await Fr(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const r in this.$options.props)b(this.include,r)&&r in this&&T(t,r,this[r]);for(const r in this.attributes){const[o,a]=this.attributes[r].split(":",2);T(t,o,a)}this.id||$e(t,"id");const i=["width","height"];let s=i.map(r=>this[r]);s.some(r=>r)||(s=i.map(r=>T(e,r)));const n=T(e,"viewBox");n&&!s.some(r=>r)&&(s=n.split(" ").slice(2)),s.forEach((r,o)=>T(t,i[o],x(r)*this.ratio||null))}}};const Fr=ht(async t=>t?lt(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Lr(t,e){var i;return e&&b(t,"<symbol")&&(t=Wr(t,e)||t),t=y(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const js=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,ai={};function Wr(t,e){if(!ai[t]){ai[t]={},js.lastIndex=0;let i;for(;i=js.exec(t);)ai[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return ai[t][e]}function Rr(t){const e=qs(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function qs(t){return Math.ceil(Math.max(0,...O("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function jr(t,e){if(Ti(e)||vt(e,"canvas")){e.hidden=!0;const s=e.nextElementSibling;return Vs(t,s)?s:ti(e,t)}const i=e.lastElementChild;return Vs(t,i)?i:X(e,t)}function Vs(t,e){return vt(t,"svg")&&vt(e,"svg")&&Ys(t)===Ys(e)}function Ys(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var qr='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',Vr='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Yr='<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>',Gr='<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>',Xr='<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>',Kr='<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>',Jr='<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>',Zr='<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>',Qr='<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>',Ur='<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>',to='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',eo='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',io='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',so='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',no='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',ro='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const li={spinner:no,totop:ro,marker:Yr,"close-icon":qr,"close-large":Vr,"navbar-toggle-icon":Gr,"overlay-icon":Xr,"pagination-next":Kr,"pagination-previous":Jr,"search-icon":Zr,"search-large":Qr,"search-navbar":Ur,"slidenav-next":to,"slidenav-next-large":eo,"slidenav-previous":io,"slidenav-previous-large":so},Gs={install:ho,extends:Rs,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){$(this.$el,"uk-icon")},methods:{getSvg(){const t=co(this.icon);return t?Promise.resolve(t):Promise.reject("Icon not found.")}}},bt={args:!1,extends:Gs,data:t=>({icon:Dt(t.constructor.options.name)}),beforeConnect(){$(this.$el,this.$name)}},Xs={extends:bt,beforeConnect(){$(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return C(e,"uk-slidenav-large")?i+"-large":i}}},oo={extends:bt,computed:{icon(t,e){let{icon:i}=t;return C(e,"uk-search-icon")&&Te(e,".uk-search-large").length?"search-large":Te(e,".uk-search-navbar").length?"search-navbar":i}}},ao={extends:bt,computed:{icon(){return"close-"+(C(this.$el,"uk-close-large")?"large":"icon")}}},lo={extends:bt,async connected(){const t=await this.svg;t&&this.ratio!==1&&c(y("circle",t),"strokeWidth",1/this.ratio)}},hi={};function ho(t){t.icon.add=(e,i)=>{const s=D(e)?{[e]:i}:e;it(s,(n,r)=>{li[r]=n,delete hi[r]}),t._initialized&&St(document.body,n=>it(t.getComponents(n),r=>{r.$options.isIcon&&r.icon in s&&r.$reset()}))}}function co(t){return li[t]?(hi[t]||(hi[t]=y((li[uo(t)]||li[t]).trim())),hi[t].cloneNode(!0)):null}function uo(t){return Z?Si(Si(t,"left","right"),"previous","next"):t}const fo="loading"in HTMLImageElement.prototype,go="isIntersecting"in IntersectionObserverEntry.prototype;var po={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},computed:{target:{get(t){let{target:e}=t;return[this.$el,...Ce(e,this.$el)]},watch(){this.observe()}}},connected(){if(this.loading!=="lazy"||!window.IntersectionObserver||!go){this.load();return}if(fo&&He(this.$el)&&(this.$el.loading="lazy",Yi(this.$el),this.target.length===1))return;Co(this.$el);const t=ft(this.offsetTop,"height")+"px "+ft(this.offsetLeft,"width")+"px";this.observer=new IntersectionObserver(e=>{e.some(i=>i.isIntersecting)&&(this.load(),this.observer.disconnect())},{rootMargin:t}),this.observe()},disconnected(){var t;this._data.image&&(this._data.image.onload=""),(t=this.observer)==null||t.disconnect()},update:{write(t){if(!this.observer||He(this.$el))return!1;const e=U(this.$el,"data-srcset");if(e&&window.devicePixelRatio!==1){const i=c(this.$el,"backgroundSize");(i.match(/^(auto\s?)+$/)||x(i)===t.bgSize)&&(t.bgSize=To(e,U(this.$el,"sizes")),c(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(){if(this._data.image)return this._data.image;const t=He(this.$el)?this.$el:vo(this.$el,this.dataSrc,this.sources);return $e(t,"loading"),Yi(this.$el,t.currentSrc),this._data.image=t},observe(){if(this._connected&&!this._data.image)for(const t of this.target)this.observer.observe(t)}}};function Yi(t,e){if(He(t)){const i=M(t);(Io(i)?L(i):[t]).forEach(n=>Ks(n,n))}else e&&!b(t.style.backgroundImage,e)&&(c(t,"backgroundImage","url("+Pe(e)+")"),m(t,Ae("load",!1)))}const mo=["data-src","data-srcset","sizes"];function Ks(t,e){mo.forEach(i=>{const s=U(t,i);s&&T(e,i.replace(/^(data-)+/,""),s)})}function vo(t,e,i){const s=new Image;return wo(s,i),Ks(t,s),s.onload=()=>Yi(t,s.currentSrc),T(s,"src",e),s}function wo(t,e){if(e=bo(e),e.length){const i=Ft("<picture>");for(const s of e){const n=Ft("<source>");T(n,s),X(i,n)}X(i,t)}}function bo(t){if(!t)return[];if(lt(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Be(t);return rt(t)||(t=[t]),t.filter(e=>!Xt(e))}const Js=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function xo(t){let e;for(Js.lastIndex=0;e=Js.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=ko(e[2]);break}return e||"100vw"}const yo=/\d+(?:\w+|%)/g,$o=/[+-]?(\d+)/g;function ko(t){return lt(t,"calc")?t.slice(5,-1).replace(yo,e=>ft(e)).replace(/ /g,"").match($o).reduce((e,i)=>e+ +i,0):t}const So=/\s+\d+w\s*(?:,|$)/g;function To(t,e){const i=ft(xo(e)),s=(t.match(So)||[]).map(x).sort((n,r)=>n-r);return s.filter(n=>n>=i)[0]||s.pop()||""}function Co(t){He(t)&&!Ht(t,"src")&&T(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function Io(t){return vt(t,"picture")}function He(t){return vt(t,"img")}var ci={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=Po(this.media);return!t||window.matchMedia(t).matches}}};function Po(t){if(D(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=x(_i(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var Ao={mixins:[st,ci],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||_i("leader-fill-content")}},connected(){[this.wrapper]=ps(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){ii(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const s=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||s!==i,hide:!this.matchMedia}},write(t){V(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,T(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}};const nt=[];var Gi={mixins:[st,he,Tt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel(t,e){let{selPanel:i}=t;return y(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){b(nt,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()===b(nt,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(b(nt,this))return!1;!this.stack&&nt.length?(Promise.all(nt.map(e=>e.hide())).then(this.show),t.preventDefault()):nt.push(this)}},{name:"show",self:!0,handler(){const t=document.documentElement;Ne(window)>t.clientWidth&&this.overlay&&c(document.body,"overflowY","scroll"),this.stack&&c(this.$el,"zIndex",x(c(this.$el,"zIndex"))+nt.length),$(t,this.clsPage),this.bgClose&&j(this.$el,"hide",I(document,ut,e=>{let{target:i}=e;be(nt)!==this||this.overlay&&!R(i,this.$el)||R(i,this.panel)||j(document,wt+" "+ne+" scroll",s=>{let{defaultPrevented:n,type:r,target:o}=s;!n&&r===wt&&i===o&&this.hide()},!0)}),{self:!0}),this.escClose&&j(this.$el,"hide",I(document,"keydown",e=>{e.keyCode===27&&be(nt)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Je(this.$el)||T(this.$el,"tabindex","-1"),y(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){b(nt,this)&&nt.splice(nt.indexOf(this),1),nt.length||c(document.body,"overflowY",""),c(this.$el,"zIndex",""),nt.some(t=>t.clsPage===this.clsPage)||N(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&M(this.$el)!==this.container?(X(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Zs(this))},hide(){return this.toggleElement(this.$el,!1,Zs(this))}}};function Zs(t){let{transitionElement:e,_toggle:i}=t;return(s,n)=>new Promise((r,o)=>j(s,"show hide",()=>{s._reject&&s._reject(),s._reject=o,i(s,n);const a=j(e,"transitionstart",()=>{j(e,"transitionend transitioncancel",r,{self:!0}),clearTimeout(h)},{self:!0}),h=setTimeout(()=>{a(),r()},ki(c(e,"transitionDuration")))})).then(()=>delete s._reject)}var Eo={install:_o,mixins:[Gi],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler(){C(this.panel,"uk-margin-auto-vertical")?$(this.$el,"uk-flex"):c(this.$el,"display","block"),z(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),N(this.$el,"uk-flex")}}]};function _o(t){let{modal:e}=t;e.dialog=function(s,n){const r=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+s+"</div> </div>",n);return r.show(),I(r.$el,"hidden",async()=>{await Promise.resolve(),r.$destroy(!0)},{self:!0}),r},e.alert=function(s,n){return i(r=>{let{labels:o}=r;return'<div class="uk-modal-body">'+(D(s)?s:_t(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+o.ok+"</button> </div>"},n,r=>r.resolve())},e.confirm=function(s,n){return i(r=>{let{labels:o}=r;return'<form> <div class="uk-modal-body">'+(D(s)?s:_t(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+o.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+o.ok+"</button> </div> </form>"},n,r=>r.reject())},e.prompt=function(s,n,r){return i(o=>{let{labels:a}=o;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(D(s)?s:_t(s))+'</label> <input class="uk-input" value="'+(n||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},r,o=>o.resolve(null),o=>y("input",o.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(s,n,r,o){n={bgClose:!1,escClose:!0,labels:e.labels,...n};const a=e.dialog(s(n),n),h=new Xe;let u=!1;return I(a.$el,"submit","form",f=>{f.preventDefault(),h.resolve(o==null?void 0:o(a)),u=!0,a.hide()}),I(a.$el,"hide",()=>!u&&r(h)),h.promise.dialog=a,h.promise}}var No={extends:Ds,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Qs=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var Mo={mixins:[st,he],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:Qs,align:Z?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:Qs,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:s}=t;return i===!0||s?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return dt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||dt(e,this.$el)||y("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=y("<div></div>"))):null},watch(t){$(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const s=O("."+i,e);if(this.dropContainer!==e)for(const r of O("."+i,this.dropContainer)){var n;const o=(n=this.getDropdown(r))==null?void 0:n.target;!b(s,r)&&o&&R(o,this.$el)&&s.push(r)}return s},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset})},immediate:!0},toggles(t,e){let{dropdown:i}=t;return O(i,e)}},disconnected(){this.dropbar&&ct(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&b(i.mode,"hover")&&i.target&&!R(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,s=this.getActive();i===qt.DOWN&&Ht(e,"aria-expanded")&&(t.preventDefault(),!s||s.target!==e?(e.click(),j(this.dropContainer,"show",n=>{let{target:r}=n;return tn(r)})):tn(s.$el)),Us(t,this.toggles,s)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!b(this.dropdowns,e))return;const s=this.getActive(),n=O(Ke,e),r=pt(n,a=>W(a,":focus"));if(i===qt.UP&&(t.preventDefault(),r>0&&n[r-1].focus()),i===qt.DOWN&&(t.preventDefault(),r<n.length-1&&n[r+1].focus()),i===qt.ESC){var o;s==null||(o=s.target)==null||o.focus()}Us(t,this.toggles,s)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&b(t.mode,"hover")&&!this.dropdowns.some(e=>W(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){M(this.dropbar)||ti(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:s}=e;!C(i,this.clsDrop)||(this.dropbarMode==="slide"&&$(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&$(i,this.clsDrop+"-dropbar"),s==="bottom"&&this.transitionTo(i.offsetHeight+x(c(i,"marginTop"))+x(c(i,"marginBottom")),i))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const s=this.getActive();W(this.dropbar,":hover")&&(s==null?void 0:s.$el)===i&&!this.toggles.some(n=>s.target!==n&&W(n,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!C(i,this.clsDrop))return;const s=this.getActive();(!s||(s==null?void 0:s.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return K&&R(K.target,this.$el)&&K},transitionTo(t,e){const{dropbar:i}=this,s=F(i)?z(i):0;return e=s<t&&e,c(e,"clip","rect(0,"+e.offsetWidth+"px,"+s+"px,0)"),z(i,s),P.cancel([e,i]),Promise.all([P.start(i,{height:t},this.duration),P.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(_).then(()=>{c(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Us(t,e,i){const{current:s,keyCode:n}=t,r=(i==null?void 0:i.target)||s,o=e.indexOf(r);n===qt.LEFT&&o>0&&(i==null||i.hide(!1),e[o-1].focus()),n===qt.RIGHT&&o<e.length-1&&(i==null||i.hide(!1),e[o+1].focus()),n===qt.TAB&&(r.focus(),i==null||i.hide(!1))}function tn(t){if(!y(":focus",t)){var e;(e=y(Ke,t))==null||e.focus()}}const qt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Do={mixins:[Gi],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1},computed:{clsFlip(t){let{flip:e,clsFlip:i}=t;return e?i:""},clsOverlay(t){let{overlay:e,clsOverlay:i}=t;return e?i:""},clsMode(t){let{mode:e,clsMode:i}=t;return i+"-"+e},clsSidebarAnimation(t){let{mode:e,clsSidebarAnimation:i}=t;return e==="none"||e==="reveal"?"":i},clsContainerAnimation(t){let{mode:e,clsContainerAnimation:i}=t;return e!=="push"&&e!=="reveal"?"":i},transitionElement(t){let{mode:e}=t;return e==="reveal"?M(this.panel):this.panel}},update:{read(){this.isToggled()&&!F(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&y(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el(){return this.panel},handler(t){let{targetTouches:e}=t;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el(){return this.panel},handler(t){if(t.targetTouches.length!==1)return;const e=t.targetTouches[0].clientY-this.clientY,{scrollTop:i,scrollHeight:s,clientHeight:n}=this.panel;(n>=s||i===0&&e>0||s-i<=n&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!C(M(this.panel),this.clsMode)&&(ei(this.panel,"<div>"),$(M(this.panel),this.clsMode)),c(document.documentElement,"overflowY",this.overlay?"hidden":""),$(document.body,this.clsContainer,this.clsFlip),c(document.body,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),$(this.$el,this.clsOverlay),$(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),z(document.body),$(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Bo()}},{name:"hide",self:!0,handler(){N(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&zo(),this.mode==="reveal"&&ii(this.panel),N(this.panel,this.clsSidebarAnimation,this.clsMode),N(this.$el,this.clsOverlay),c(this.$el,"display",""),N(document.body,this.clsContainer,this.clsFlip),c(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Ct(t.type,"Left")^this.flip&&this.hide()}}]};function Bo(){en().content+=",user-scalable=0"}function zo(){const t=en();t.content=t.content.replace(/,user-scalable=0$/,"")}function en(){return y('meta[name="viewport"]',document.head)||X(document.head,'<meta name="viewport">')}var Oo={mixins:[st],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return at(e,i)},content(t,e){let{selContent:i}=t;return at(e,i)}},connected(){c(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!F(this.$el)?!1:{current:x(c(this.$el,"maxHeight")),max:Math.max(this.minHeight,z(this.container)-(k(this.content).height-z(this.$el)))}},write(t){let{current:e,max:i}=t;c(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&m(this.$el,"resize")},events:["resize"]}},Ho={props:["width","height"],connected(){$(this.$el,"uk-responsive-width")},update:{read(){return F(this.$el)&&this.width&&this.height?{width:Ne(M(this.$el)),height:this.height}:!1},write(t){z(this.$el,ye.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Fo={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&y(t)||document.body,m(this.$el,"beforescroll",[this,t])&&(await ji(t,{offset:this.offset}),m(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+Pe(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const Nt="_ukScrollspy";var Lo={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?O(i,e):[e]},watch(t){this.hidden&&c(Se(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){for(const t of this.elements)N(t,this.inViewClass,t[Nt]?t[Nt].cls:""),delete t[Nt]},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;for(const e of this.elements)e[Nt]||(e[Nt]={cls:U(e,"uk-scrollspy-class")||this.cls}),e[Nt].show=oe(e,this.offsetTop,this.offsetLeft)},write(t){for(const e of this.elements){const i=e[Nt];i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}},events:["scroll","resize"]}],methods:{toggle(t,e){const i=t[Nt];i.off&&i.off(),c(t,"visibility",!e&&this.hidden?"hidden":""),V(t,this.inViewClass,e),V(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=j(t,"animationcancel animationend",()=>Qe(t,"uk-animation-[\\w-]+"))),m(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},Wo={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 O('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return O(this.links.map(t=>Pe(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return at(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!F(this.$el))return!1;const[e]=jt(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:s}=e,n=s-ze(e);let r=!1;return i===n?r=t-1:(this.targets.every((o,a)=>{if(B(o).top-B(ae(e)).top-this.offset<=0)return r=a,!0}),r===!1&&this.overflow&&(r=0)),{active:r}},write(t){let{active:e}=t;const i=e!==!1&&!C(this.elements[e],this.cls);this.links.forEach(s=>s.blur()),N(this.elements,this.cls),$(this.elements[e],this.cls),i&&m(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Ro={mixins:[st,ci],props:{position:String,top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{position(t,e){let{position:i}=t;return i==="auto"?(this.isFixed?this.placeholder:e).offsetHeight>z(window)?"bottom":"top":i},offset(t,e){let{offset:i}=t;return this.position==="bottom"&&(i+="+100vh-100%"),ft(i,"height",e)},selTarget(t,e){let{selTarget:i}=t;return i&&y(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return dt(i,e)||this.placeholder},isActive:{get(){return C(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(Ni(this.selTarget,this.clsInactive,this.clsActive),m(this.$el,"active")):!t&&!C(this.selTarget,this.clsInactive)&&(Ni(this.selTarget,this.clsActive,this.clsInactive),m(this.$el,"inactive"))}}},connected(){this.placeholder=y("+ .uk-sticky-placeholder",this.$el)||y('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected(){this.isFixed&&(this.hide(),N(this.selTarget,this.clsInactive)),ct(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},handler(){if(!(this.targetOffset!==!1&&location.hash&&Rt(window)>0))return;const t=y(location.hash);t&&H.read(()=>{const{top:e}=B(t),i=B(this.$el).top,s=this.$el.offsetHeight;this.isFixed&&i+s>=e&&i<=e+t.offsetHeight&&Rt(window,e-s-(zt(this.targetOffset)?this.targetOffset:0)-this.offset)})}}],update:[{read(t,e){let{height:i,margin:s}=t;if(this.inactive=!this.matchMedia||!F(this.$el),this.inactive)return!1;const n=this.isActive&&e.has("resize");n&&this.hide(),this.isActive||(i=this.$el.offsetHeight,s=c(this.$el,"margin")),n&&this.show();const r=Math.max(0,i+this.offset-z(window)),o=this.isFixed?this.placeholder:this.$el,a=B(o).top,h=B(o.offsetParent).top,u=sn(this.top,this.$el,a),f=sn(this.bottom,this.$el,a+i,!0),l=Math.max(u,a)-this.offset,d=f?f-this.$el.offsetHeight+r-this.offset:le(this.$el).scrollHeight-z(window);return{start:l,end:d,overflow:r,topOffset:a,offsetParentTop:h,height:i,margin:s,width:k(F(this.widthElement)?this.widthElement:this.$el).width,top:_e(o)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:s}=this;c(s,{height:e,margin:i}),R(s,document)||(ti(this.$el,s),s.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:s,overflowScroll:n=0,start:r,end:o}=t;const a=Rt(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:ot(n+ot(a,r,o)-ot(e,r,o),0,s)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:r,scroll:o,prevScroll:a=0,top:h,start:u,topOffset:f,height:l}=t;if(o<0||o===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const d=Date.now();if((d-s>300||n!==r)&&(t.initScroll=o,t.initTimestamp=d),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-o)<=30&&Math.abs(a-o)<=10))if(this.inactive||o<u||this.showOnUp&&(o<=u||n==="down"&&i||n==="up"&&!this.isFixed&&o<=f+l)){if(!this.isFixed){mt.inProgress(this.$el)&&h>o&&(mt.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&o>f?(mt.cancel(this.$el),mt.out(this.$el,this.animation).then(()=>this.hide(),_)):this.hide()}else this.isFixed?this.update():this.animation?(mt.cancel(this.$el),this.show(),mt.in(this.$el,this.animation).catch(_)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,N(this.$el,this.clsFixed,this.clsBelow),c(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){const{width:t,scroll:e=0,overflow:i,overflowScroll:s=0,start:n,end:r,topOffset:o,height:a,offsetParentTop:h}=this._data,u=n!==0||e>n;let f=this.offset,l="fixed";e>r&&(f=r+this.offset-h,l="absolute"),i&&(f-=s),c(this.$el,{position:l,top:f+"px",width:t}),this.isActive=u,V(this.$el,this.clsBelow,e>o+a),$(this.$el,this.clsFixed)}}};function sn(t,e,i,s){if(!t)return 0;if(D(t)&&t.match(/^-?\d/))return i+ft(t);{const n=t===!0?M(e):dt(t,e);return B(n).bottom-(s&&n&&R(e,n)?x(c(n,"paddingBottom")):0)}}var nn={mixins:[Tt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return Ce(i,e)},watch(t){this.swiping&&c(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>L(i).forEach((s,n)=>V(s,this.cls,n===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return O(i,e).filter(s=>!W(s,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return L(this.$el).filter(t=>this.toggles.some(e=>R(e,t)))}},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Ce(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(U(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(Ct(e,"Left")?"next":"previous")}}],methods:{index(){return pt(this.children,t=>C(t,this.cls))},show(t){const e=this.index(),i=Kt(this.children[Kt(t,this.toggles,e)],L(this.$el));e!==i&&(this.children.forEach((s,n)=>{V(s,this.cls,i===n),T(this.toggles[n],"aria-expanded",i===n)}),this.connects.forEach(async s=>{let{children:n}=s;await this.toggleElement(S(n).filter(r=>C(r,this.cls)),!1,e>=0),await this.toggleElement(n[i],!0,e>=0)}))}}},jo={mixins:[st],extends:nn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=C(this.$el,"uk-tab-left")?"uk-tab-left":C(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const qo=32;var Vo={mixins:[ci,Tt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!b(this.mode,"media")&&!Je(this.$el)&&T(this.$el,"tabindex","0")},computed:{target:{get(t,e){let{href:i,target:s}=t;return s=Ce(s||i,e),s.length&&s||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:ut,filter(){return b(this.mode,"hover")},handler(t){!kt(t)||this._showState||(m(this.$el,"focus"),j(document,ut,()=>m(this.$el,"blur"),!0,e=>!R(e.target,this.$el)),b(this.mode,"click")&&(this._preventClick=!0))}},{name:Wt+" "+se+" focus blur",filter(){return b(this.mode,"hover")},handler(t){if(kt(t))return;const e=b([Wt,"focus"],t.type),i=T(this.$el,"aria-expanded");if(!(!e&&(t.type===se&&W(this.$el,":focus")||t.type==="blur"&&W(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 b(this.mode,"click")&&vt(this.$el,"input")},handler(t){t.keyCode===qo&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return b(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(at(t.target,'a[href="#"], a[href=""]')||(e=at(t.target,"a[href]"))&&(T(this.$el,"aria-expanded")!=="true"||e.hash&&W(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read(){return b(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write(t){let{match:e}=t;const i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{async toggle(t){if(!m(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>C(s,this.clsLeave));if(e.length){for(const s of this.target){const n=b(e,s);this.toggleElement(s,n,n)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(s=>!b(i,s)),!0)},updateAria(t){b(this.mode,"media")||T(this.$el,"aria-expanded",Ve(t)?t:this.isToggled(this.target))}}},Yo=Object.freeze({__proto__:null,Accordion:Ds,Alert:Tr,Cover:Cr,Drop:Os,Dropdown:Os,FormCustom:Ar,Gif:Er,Grid:Nr,HeightMatch:zr,HeightViewport:Hr,Icon:Gs,Img:po,Leader:Ao,Margin:Hs,Modal:Eo,Nav:No,Navbar:Mo,Offcanvas:Do,OverflowAuto:Oo,Responsive:Ho,Scroll:Fo,Scrollspy:Lo,ScrollspyNav:Wo,Sticky:Ro,Svg:Rs,Switcher:nn,Tab:jo,Toggle:Vo,Video:Bs,Close:ao,Spinner:lo,SlidenavNext:Xs,SlidenavPrevious:Xs,SearchIcon:oo,Marker:bt,NavbarToggleIcon:bt,OverlayIcon:bt,PaginationNext:bt,PaginationPrevious:bt,Totop:bt});it(Yo,(t,e)=>tt.component(e,t)),tt.use(yr),kr(tt);var Go={mixins:[st],props:{date:String,clsWrapper:String},data:{date:"",clsWrapper:".uk-countdown-%unit%"},computed:{date(t){let{date:e}=t;return Date.parse(e)},days(t,e){let{clsWrapper:i}=t;return y(i.replace("%unit%","days"),e)},hours(t,e){let{clsWrapper:i}=t;return y(i.replace("%unit%","hours"),e)},minutes(t,e){let{clsWrapper:i}=t;return y(i.replace("%unit%","minutes"),e)},seconds(t,e){let{clsWrapper:i}=t;return y(i.replace("%unit%","seconds"),e)},units(){return["days","hours","minutes","seconds"].filter(t=>this[t])}},connected(){this.start()},disconnected(){this.stop(),this.units.forEach(t=>gs(this[t]))},events:[{name:"visibilitychange",el(){return document},handler(){document.hidden?this.stop():this.start()}}],update:{write(){const t=Xo(this.date);t.total<=0&&(this.stop(),t.days=t.hours=t.minutes=t.seconds=0);for(const e of this.units){let i=String(Math.floor(t[e]));i=i.length<2?"0"+i:i;const s=this[e];s.textContent!==i&&(i=i.split(""),i.length!==s.children.length&&_t(s,i.map(()=>"<span></span>").join("")),i.forEach((n,r)=>s.children[r].textContent=n))}}},methods:{start(){this.stop(),this.date&&this.units.length&&(this.$update(),this.timer=setInterval(this.$update,1e3))},stop(){this.timer&&(clearInterval(this.timer),this.timer=null)}}};function Xo(t){const e=t-Date.now();return{total:e,seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24}}const Xi="uk-transition-leave",Ki="uk-transition-enter";function rn(t,e,i,s){s===void 0&&(s=0);const n=ui(e,!0),r={opacity:1},o={opacity:0},a=f=>()=>n===ui(e)?f():Promise.reject(),h=a(()=>($(e,Xi),Promise.all(an(e).map((f,l)=>new Promise(d=>setTimeout(()=>P.start(f,o,i/2,"ease").then(d),l*s)))).then(()=>N(e,Xi)))),u=a(()=>{const f=z(e);return $(e,Ki),t(),c(L(e),{opacity:0}),new Promise(l=>requestAnimationFrame(()=>{const d=L(e),g=z(e);c(e,"alignContent","flex-start"),z(e,f);const v=an(e);c(d,o);const p=v.map((w,A)=>new Promise(E=>setTimeout(()=>P.start(w,r,i/2,"ease").then(E),A*s)));f!==g&&p.push(P.start(e,{height:g},i/2+v.length*s,"ease")),Promise.all(p).then(()=>{N(e,Ki),n===ui(e)&&(c(e,{height:"",alignContent:""}),c(d,{opacity:""}),delete e.dataset.transition),l()})}))});return C(e,Xi)?on(e).then(u):C(e,Ki)?on(e).then(h).then(u):h().then(u)}function ui(t,e){return e&&(t.dataset.transition=1+ui(t)),At(t.dataset.transition)||0}function on(t){return Promise.all(L(t).filter(P.inProgress).map(e=>new Promise(i=>j(e,"transitionend transitioncanceled",i))))}function an(t){return Vi(L(t)).reduce((e,i)=>e.concat(xe(i.filter(s=>oe(s)),"offsetLeft")),[])}function Ko(t,e,i){return new Promise(s=>requestAnimationFrame(()=>{let n=L(e);const r=n.map(a=>ln(a,!0)),o=c(e,["height","padding"]);P.cancel(e),n.forEach(P.cancel),hn(e),t(),n=n.concat(L(e).filter(a=>!b(n,a))),Promise.resolve().then(()=>{H.flush();const a=c(e,["height","padding"]),[h,u]=Jo(e,n,r);n.forEach((f,l)=>u[l]&&c(f,u[l])),c(e,{display:"block",...o}),requestAnimationFrame(()=>{const f=n.map((l,d)=>M(l)===e&&P.start(l,h[d],i,"ease")).concat(P.start(e,a,i,"ease"));Promise.all(f).then(()=>{n.forEach((l,d)=>M(l)===e&&c(l,"display",h[d].opacity===0?"none":"")),hn(e)},_).then(s)})})}))}function ln(t,e){const i=c(t,"zIndex");return F(t)?{display:"",opacity:e?c(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?Jt(t):i,...cn(t)}:!1}function Jo(t,e,i){const s=e.map((r,o)=>M(r)&&o in i?i[o]?F(r)?cn(r):{opacity:0}:{opacity:F(r)?1:0}:!1),n=s.map((r,o)=>{const a=M(e[o])===t&&(i[o]||ln(e[o]));if(!a)return!1;if(!r)delete a.opacity;else if(!("opacity"in r)){const{opacity:h}=a;h%1?r.opacity=1:delete a.opacity}return a});return[s,n]}function hn(t){c(t.children,{height:"",left:"",opacity:"",pointerEvents:"",position:"",top:"",marginTop:"",marginLeft:"",transform:"",width:"",zIndex:""}),c(t,{height:"",display:"",padding:""})}function cn(t){const{height:e,width:i}=B(t),{top:s,left:n}=Ue(t),{marginLeft:r,marginTop:o}=c(t,["marginTop","marginLeft"]);return{top:s,left:n,height:e,width:i,marginLeft:r,marginTop:o,transform:""}}var un={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e){e===void 0&&(e=this.$el);const i=this.animation;return(i==="fade"?rn:i==="delayed-fade"?function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return rn(...r,40)}:i?Ko:()=>(t(),Promise.resolve()))(t,e,this.duration).then(()=>this.$update(e,"resize"),_)}}},Zo={mixins:[un],args:"target",props:{target:Boolean,selActive:Boolean},data:{target:null,selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{toggles:{get(t,e){let{attrItem:i}=t;return O("["+i+"],[data-"+i+"]",e)},watch(){if(this.updateState(),this.selActive!==!1){const t=O(this.selActive,this.$el);this.toggles.forEach(e=>V(e,this.cls,b(t,e)))}},immediate:!0},children:{get(t,e){let{target:i}=t;return O(i+" > *",e)},watch(t,e){e&&!ea(t,e)&&this.updateState()},immediate:!0}},events:[{name:"click",delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.apply(t.current)}}],methods:{apply(t){const e=this.getState(),i=fn(t,this.attrItem,this.getState());Qo(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>C(t,this.cls)).reduce((t,e)=>fn(e,this.attrItem,t),{filter:{"":""},sort:[]})},setState(t,e){e===void 0&&(e=!0),t={filter:{"":""},sort:[],...t},m(this.$el,"beforeFilter",[this,t]),this.toggles.forEach(i=>V(i,this.cls,!!ta(i,this.attrItem,t))),Promise.all(O(this.target,this.$el).map(i=>{const s=()=>{Uo(t,i,L(i)),this.$update(this.$el)};return e?this.animate(s,i):s()})).then(()=>m(this.$el,"afterFilter",[this]))},updateState(){H.write(()=>this.setState(this.getState(),!1))}}};function dn(t,e){return Be(U(t,e),["filter"])}function Qo(t,e){return["filter","sort"].every(i=>Ye(t[i],e[i]))}function Uo(t,e,i){const s=ia(t);i.forEach(o=>c(o,"display",s&&!W(o,s)?"none":""));const[n,r]=t.sort;if(n){const o=sa(i,n,r);Ye(o,i)||X(e,o)}}function fn(t,e,i){const s=dn(t,e),{filter:n,group:r,sort:o,order:a="asc"}=s;return(n||G(o))&&(r?n?(delete i.filter[""],i.filter[r]=n):(delete i.filter[r],(Xt(i.filter)||""in i.filter)&&(i.filter={"":n||""})):i.filter={"":n||""}),G(o)||(i.sort=[o,a]),i}function ta(t,e,i){let{filter:s={"":""},sort:[n,r]}=i;const{filter:o="",group:a="",sort:h,order:u="asc"}=dn(t,e);return G(h)?a in s&&o===s[a]||!o&&a&&!(a in s)&&!s[""]:n===h&&r===u}function ea(t,e){return t.length===e.length&&t.every(i=>~e.indexOf(i))}function ia(t){let{filter:e}=t,i="";return it(e,s=>i+=s||""),i}function sa(t,e,i){return[...t].sort((s,n)=>U(s,e).localeCompare(U(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}var Ji={slide:{show(t){return[{transform:q(t*-100)},{transform:q()}]},percent(t){return Fe(t)},translate(t,e){return[{transform:q(e*-100*t)},{transform:q(e*100*(1-t))}]}}};function Fe(t){return Math.abs(c(t,"transform").split(",")[4]/t.offsetWidth)||0}function q(t,e){return t===void 0&&(t=0),e===void 0&&(e="%"),t+=t?e:"","translate3d("+t+", 0, 0)"}function ce(t){return"scale3d("+t+", "+t+", 1)"}var gn={...Ji,fade:{show(){return[{opacity:0},{opacity:1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t},{opacity:t}]}},scale:{show(){return[{opacity:0,transform:ce(1-.2)},{opacity:1,transform:ce(1)}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:ce(1-.2*t)},{opacity:t,transform:ce(1-.2+.2*t)}]}}};function na(t,e,i,s){let{animation:n,easing:r}=s;const{percent:o,translate:a,show:h=_}=n,u=h(i),f=new Xe;return{dir:i,show(l,d,g){d===void 0&&(d=0);const v=g?"linear":r;return l-=Math.round(l*ot(d,-1,1)),this.translate(d),di(e,"itemin",{percent:d,duration:l,timing:v,dir:i}),di(t,"itemout",{percent:1-d,duration:l,timing:v,dir:i}),Promise.all([P.start(e,u[1],l,v),P.start(t,u[0],l,v)]).then(()=>{this.reset(),f.resolve()},_),f.promise},cancel(){P.cancel([e,t])},reset(){for(const l in u[0])c([e,t],l,"")},forward(l,d){return d===void 0&&(d=this.percent()),P.cancel([e,t]),this.show(l,d,!0)},translate(l){this.reset();const d=a(l,i);c(e,d[1]),c(t,d[0]),di(e,"itemtranslatein",{percent:l,dir:i}),di(t,"itemtranslateout",{percent:1-l,dir:i})},percent(){return o(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function di(t,e,i){m(t,Ae(e,!1,!1,i))}var ra={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){T(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>(!this.draggable||!y(":focus",this.$el))&&(!this.pauseOnHover||!W(this.$el,":hover"))&&!this.stack.length&&this.show("next"),this.autoplayInterval)},stopAutoplay(){this.interval&&clearInterval(this.interval)}}},oa={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const s=Qt(i).x*(Z?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(i)}}},events:[{name:ut,delegate(){return this.selSlides},handler(t){!this.draggable||!kt(t)&&aa(t.target)||at(t.target,ke)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,I(document,ie,this.move,{passive:!1}),I(document,wt+" "+ne+" input",this.end,!0),c(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;c(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;const{slides:i}=this;let{prevIndex:s}=this,n=Math.abs(e),r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;for(;r!==s&&n>o;)this.drag-=o*this.dir,s=r,n-=o,r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;this.percent=n/o;const a=i[s],h=i[r],u=this.index!==r,f=s===r;let l;[this.index,this.prevIndex].filter(d=>!b([r,s],d)).forEach(d=>{m(i[d],"itemhidden",[this]),f&&(l=!0,this.prevIndex=s)}),(this.index===s&&this.prevIndex!==s||l)&&m(i[this.index],"itemshown",[this]),u&&(this.prevIndex=s,this.index=r,!f&&m(a,"beforeitemhide",[this]),m(h,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!f&&h),u&&(!f&&m(a,"itemhide",[this]),m(h,"itemshow",[this]))},end(){if(Zt(document,ie,this.move,{passive:!1}),Zt(document,wt+" "+ne+" input",this.end,!0),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(Z?this.dir*(Z?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}c(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null}}};function aa(t){return!t.children.length&&t.childNodes.length}var la={data:{selNav:!1},computed:{nav(t,e){let{selNav:i}=t;return y(i,e)},selNavItem(t){let{attrItem:e}=t;return"["+e+"],[data-"+e+"]"},navItems(t,e){return O(this.selNavItem,e)}},update:{write(){this.nav&&this.length!==this.nav.children.length&&_t(this.nav,this.slides.map((t,e)=>"<li "+this.attrItem+'="'+e+'"><a href></a></li>').join("")),this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]},events:[{name:"click",delegate(){return this.selNavItem},handler(t){t.preventDefault(),this.show(U(t.current,this.attrItem))}},{name:"itemshow",handler:"updateNav"}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=U(e,this.attrItem);V(e,this.clsActive,At(i)===t),V(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}}}},pn={mixins:[ra,oa,la],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number,selSlides:String},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){N(this.slides,this.clsActive)},computed:{duration(t,e){let{velocity:i}=t;return mn(e.offsetWidth/i)},list(t,e){let{selList:i}=t;return y(i,e)},maxIndex(){return this.length-1},selSlides(t){let{selList:e,selSlides:i}=t;return e+" "+(i||"> *")},slides:{get(){return O(this.selSlides,this.$el)},watch(){this.$reset()}},length(){return this.slides.length}},events:{itemshown(){this.$update(this.list)}},methods:{show(t,e){if(e===void 0&&(e=!1),this.dragging||!this.length)return;const{stack:i}=this,s=e?0:i.length,n=()=>{i.splice(s,1),i.length&&this.show(i.shift(),!0)};if(i[e?"unshift":"push"](t),!e&&i.length>1){i.length===2&&this._transitioner.forward(Math.min(this.duration,200));return}const r=this.getIndex(this.index),o=C(this.slides,this.clsActive)&&this.slides[r],a=this.getIndex(t,this.index),h=this.slides[a];if(o===h){n();return}if(this.dir=ha(t,r),this.prevIndex=r,this.index=a,o&&!m(o,"beforeitemhide",[this])||!m(h,"beforeitemshow",[this,o])){this.index=this.prevIndex,n();return}const u=this._show(o,h,e).then(()=>(o&&m(o,"itemhidden",[this]),m(h,"itemshown",[this]),new Promise(f=>{H.write(()=>{i.shift(),i.length?this.show(i.shift(),!0):this._transitioner=null,f()})})));return o&&m(o,"itemhide",[this]),m(h,"itemshow",[this]),u},getIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.index),ot(Kt(t,this.slides,e,this.finite),0,this.maxIndex)},getValidIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),this.getIndex(t,e)},_show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:i?e.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing,...this.transitionOptions}),!i&&!t)return this._translate(1),Promise.resolve();const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_getDistance(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()},_translate(t,e,i){e===void 0&&(e=this.prevIndex),i===void 0&&(i=this.index);const s=this._getTransitioner(e!==i?e:!1,i);return s.translate(t),s},_getTransitioner(t,e,i,s){return t===void 0&&(t=this.prevIndex),e===void 0&&(e=this.index),i===void 0&&(i=this.dir||1),s===void 0&&(s=this.transitionOptions),new this.Transitioner(Gt(t)?this.slides[t]:t,Gt(e)?this.slides[e]:e,i*(Z?-1:1),s)}}};function ha(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function mn(t){return .5*t+300}var vn={mixins:[pn],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:Ji,Transitioner:na},computed:{animation(t){let{animation:e,Animations:i}=t;return{...i[e]||i.slide,name:e}},transitionOptions(){return{animation:this.animation}}},events:{"itemshow itemhide itemshown itemhidden"(t){let{target:e}=t;this.$update(e)},beforeitemshow(t){let{target:e}=t;$(e,this.clsActive)},itemshown(t){let{target:e}=t;$(e,this.clsActivated)},itemhidden(t){let{target:e}=t;N(e,this.clsActive,this.clsActivated)}}},wn={mixins:[he,Gi,Tt,vn],functional:!0,props:{delayControls:Number,preload:Number,videoAutoplay:Boolean,template:String},data:()=>({preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"uk-lightbox-item",selClose:".uk-close-large",selCaption:".uk-lightbox-caption",pauseOnHover:!1,velocity:2,Animations:gn,template:'<div class="uk-lightbox uk-overflow-hidden"> <ul class="uk-lightbox-items"></ul> <div class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href uk-slidenav-next uk-lightbox-item="next"></a> <div class="uk-lightbox-toolbar uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){const t=y(this.template),e=y(this.selList,t);this.items.forEach(()=>X(e,"<li>")),this.$mount(X(this.container,t))},computed:{caption(t,e){let{selCaption:i}=t;return y(i,e)}},events:[{name:ie+" "+ut+" keydown",handler:"showControls"},{name:"click",self:!0,delegate(){return this.selSlides},handler(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),N(this.slides,this.clsActive),P.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el(){return document},handler(t){if(!(!this.isToggled(this.$el)||!this.draggable))switch(t.keyCode){case 37:this.show("previous");break;case 39:this.show("next");break}}},{name:"beforeitemshow",handler(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=gn.scale,N(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler(){_t(this.caption,this.getItem().caption||"");for(let t=-this.preload;t<=this.preload;t++)this.loadItem(this.index+t)}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,alt:n="",poster:r,attrs:o={}}=e;if(this.setItem(e,"<span uk-spinner></span>"),!i)return;let a;const h={frameborder:"0",allow:"autoplay",allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":""+this.videoAutoplay};if(s==="image"||i.match(/\.(avif|jpe?g|a?png|gif|svg|webp)($|\?)/i))try{const{width:u,height:f}=await hs(i,o.srcset,o.size);this.setItem(e,Le("img",{src:i,width:u,height:f,alt:n,...o}))}catch{this.setError(e)}else if(s==="video"||i.match(/\.(mp4|webm|ogv)($|\?)/i)){const u=Le("video",{src:i,poster:r,controls:"",playsinline:"","uk-video":""+this.videoAutoplay,...o});I(u,"loadedmetadata",()=>{T(u,{width:u.videoWidth,height:u.videoHeight}),this.setItem(e,u)}),I(u,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,Le("iframe",{src:i,frameborder:"0",allowfullscreen:"",class:"uk-lightbox-iframe",...o}));else if(a=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?[?&]v=|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,Le("iframe",{src:"https://www.youtube"+(a[1]||"")+".com/embed/"+a[2]+(a[3]?"?"+a[3]:""),width:1920,height:1080,...h,...o}));else if(a=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:u,width:f}=await(await fetch("https://vimeo.com/api/oembed.json?maxwidth=1920&url="+encodeURI(i),{credentials:"omit"})).json();this.setItem(e,Le("iframe",{src:"https://player.vimeo.com/video/"+a[1]+(a[2]?"?"+a[2]:""),width:f,height:u,...h,...o}))}catch{this.setError(e)}}}],methods:{loadItem(t){t===void 0&&(t=this.index);const e=this.getItem(t);this.getSlide(e).childElementCount||m(this.$el,"itemload",[e])},getItem(t){return t===void 0&&(t=this.index),this.items[Kt(t,this.slides)]},setItem(t,e){m(this.$el,"itemloaded",[this,_t(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2"></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),$(this.$el,"uk-active","uk-transition-active")},hideControls(){N(this.$el,"uk-active","uk-transition-active")}}};function Le(t,e){const i=Ft("<"+t+">");return T(i,e),i}var ca={install:ua,props:{toggle:String},data:{toggle:"a"},computed:{toggles:{get(t,e){let{toggle:i}=t;return O(i,e)},watch(){this.hide()}}},disconnected(){this.hide()},events:[{name:"click",delegate(){return this.toggle+":not(.uk-disabled)"},handler(t){t.preventDefault(),this.show(t.current)}}],methods:{show(t){const e=is(this.toggles.map(bn),"source");if(Bt(t)){const{source:i}=bn(t);t=pt(e,s=>{let{source:n}=s;return i===n})}return this.panel=this.panel||this.$create("lightboxPanel",{...this.$props,items:e}),I(this.panel.$el,"hidden",()=>this.panel=!1),this.panel.show(t)},hide(){return this.panel&&this.panel.hide()}}};function ua(t,e){t.lightboxPanel||t.component("lightboxPanel",wn),yt(e.props,t.component("lightboxPanel").options.props)}function bn(t){const e={};for(const i of["href","caption","type","poster","alt","attrs"])e[i==="href"?"source":i]=U(t,i);return e.attrs=Be(e.attrs),e}var da={mixins:[he],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:null,pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:fa,computed:{marginProp(t){let{pos:e}=t;return"margin"+(lt(e,"top")?"Top":"Bottom")},startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=y("."+this.clsContainer+"-"+this.pos,this.container)||X(this.container,'<div class="'+this.clsContainer+" "+this.clsContainer+"-"+this.pos+'" style="display: block"></div>');this.$mount(X(t,'<div class="'+this.clsMsg+(this.status?" "+this.clsMsg+"-"+this.status:"")+'"> <a href class="'+this.clsClose+'" data-uk-close></a> <div>'+this.message+"</div> </div>"))},async connected(){const t=x(c(this.$el,this.marginProp));await P.start(c(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){at(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()},[Wt](){this.timer&&clearTimeout(this.timer)},[se](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=M(i);m(i,"close",[this]),ct(i),s!=null&&s.hasChildNodes()||ct(s)};this.timer&&clearTimeout(this.timer),t||await P.start(this.$el,this.startProps),e(this.$el)}}};function fa(t){t.notification.closeAll=function(e,i){St(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}const fi={x:pi,y:pi,rotate:pi,scale:pi,color:Zi,backgroundColor:Zi,borderColor:Zi,blur:Vt,hue:Vt,fopacity:Vt,grayscale:Vt,invert:Vt,saturate:Vt,sepia:Vt,opacity:pa,stroke:ma,bgx:yn,bgy:yn},{keys:gi}=Object;var xn={mixins:[ci],props:Tn(gi(fi),"list"),data:Tn(gi(fi),void 0),computed:{props(t,e){return gi(fi).reduce((i,s)=>(G(t[s])||(i[s]=fi[s](s,e,t[s].slice())),i),{})}},events:{bgimageload(){this.$emit()}},methods:{reset(){it(this.getCss(0),(t,e)=>c(this.$el,e,""))},getCss(t){return gi(this.props).reduce((e,i)=>(this.props[i](e,t),e),{transform:"",filter:""})}}};function pi(t,e,i){const s=Qi(i)||{x:"px",y:"px",rotate:"deg"}[t]||"";let n;return(t==="x"||t==="y")&&(t="translate"+me(t),n=r=>x(x(r).toFixed(s==="px"?0:6))),i.length===1&&i.unshift(t==="scale"?1:0),i=ue(i,n),(r,o)=>{r.transform+=" "+t+"("+We(i,o)+s+")"}}function Zi(t,e,i){return i.length===1&&i.unshift(Re(e,t,"")),i=ue(i,s=>ga(e,s)),(s,n)=>{const[r,o,a]=Sn(i,n),h=r.map((u,f)=>(u+=a*(o[f]-u),f===3?x(u):parseInt(u,10))).join(",");s[t]="rgba("+h+")"}}function ga(t,e){return Re(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(x)}function Vt(t,e,i){i.length===1&&i.unshift(0);const s=Qi(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=ue(i),(n,r)=>{const o=We(i,r);n.filter+=" "+t+"("+(o+s)+")"}}function pa(t,e,i){return i.length===1&&i.unshift(Re(e,t,"")),i=ue(i),(s,n)=>{s[t]=We(i,n)}}function ma(t,e,i){i.length===1&&i.unshift(0);const s=Qi(i),n=qs(e);return i=ue(i.reverse(),r=>(r=x(r),s==="%"?r*n/100:r)),i.some(r=>{let[o]=r;return o})?(c(e,"strokeDasharray",n),(r,o)=>{r.strokeDashoffset=We(i,o)}):_}function yn(t,e,i){i.length===1&&i.unshift(0),t=t.substr(-1);const s=t==="y"?"height":"width";i=ue(i,r=>ft(r,s,e));const n=Re(e,"background-position-"+t,"");return Re(e,"backgroundSize","")==="cover"?va(t,e,i,n,s):$n(t,i,n)}function va(t,e,i,s,n){const r=wa(e);if(!r.width)return _;const o=i.map(A=>{let[E]=A;return E}),a=Math.min(...o),h=Math.max(...o),u=o.indexOf(a)<o.indexOf(h),f=h-a;let l=(u?-f:0)-(u?a:h);const d={width:e.offsetWidth,height:e.offsetHeight},g=ye.cover(r,d),v=g[n]-d[n];if(v<f)d[n]=g[n]+f-v;else if(v>f){const A=d[n]/ft(s,n,e,!0);A&&(l-=(v-f)/A)}const p=ye.cover(r,d),w=$n(t,i,l+"px");return(A,E)=>{w(A,E),A.backgroundSize=p.width+"px "+p.height+"px",A.backgroundRepeat="no-repeat"}}function $n(t,e,i){return function(s,n){s["background-position-"+t]="calc("+i+" + "+We(e,n)+"px)"}}const mi={};function wa(t){const e=c(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(mi[e])return mi[e];const i=new Image;return e&&(i.src=e,i.naturalWidth||(i.onload=()=>{mi[e]=kn(i),m(t,"bgimageload")})),mi[e]=kn(i)}function kn(t){return{width:t.naturalWidth,height:t.naturalHeight}}function ue(t,e){e===void 0&&(e=x);const i=[],{length:s}=t;for(let n=0;n<s;n++){let[r,o]=D(t[n])?t[n].trim().split(" "):[t[n]];r=e(r),o=o?x(o)/100:null,n===0?o===null?o=0:o&&i.push([r,0]):n===s-1&&(o===null?o=1:o!==1&&(i.push([r,o]),o=1)),i.push([r,o])}for(let n=1;n<i.length-1;n++)if(i[n][1]===null){const r=pt(i.slice(n+1),a=>{let[,h]=a;return h!==null})+1,o=(i[n+r][1]-i[n-1][1])/(r+1);for(let a=0;a<r;a++)i[n+a][1]=i[n-1][1]+o*(a+1);n+=r}return i}function Sn(t,e){const i=pt(t.slice(1),s=>{let[,n]=s;return e<=n})+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function We(t,e){const[i,s,n]=Sn(t,e);return Gt(i)?i+Math.abs(i-s)*n*(i<s?1:-1):+s}const ba=/^[\d-]+([^\s]+)/;function Qi(t,e){for(const i of t){const s=i.match==null?void 0:i.match(ba);if(s)return s[1]}return e}function Re(t,e,i){const s=t.style[e],n=c(c(t,e,i),e);return t.style[e]=s,n}function Tn(t,e){return t.reduce((i,s)=>(i[s]=e,i),{})}var xa={mixins:[xn],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target(t,e){let{target:i}=t;return Cn(i&&dt(i,e)||e)},start(t){let{start:e}=t;return ft(e,"height",this.target,!0)},end(t){let{end:e,viewport:i}=t;return ft(e||(i=(1-i)*100)&&i+"vh+"+i+"%","height",this.target,!0)}},update:{read(t,e){let{percent:i}=t;if(e.has("scroll")||(i=!1),!this.matchMedia)return;const s=i;return i=ya(qi(this.target,this.start,this.end),this.easing),{percent:i,style:s===i?!1:this.getCss(i)}},write(t){let{style:e}=t;if(!this.matchMedia){this.reset();return}e&&c(this.$el,e)},events:["scroll","resize"]}};function ya(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,-e+1)}function Cn(t){return t?"offsetTop"in t?t:Cn(M(t)):document.documentElement}var In={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);(!~this.prevIndex||this.index!==t)&&this.show(t)},events:["resize"]}},Pn={connected(){window.IntersectionObserver&&(this.observer=new IntersectionObserver(t=>{t.some(e=>e.isIntersecting)&&An(this.getAdjacentSlides())},{rootMargin:"50% 50%"}),this.observer.observe(this.$el))},disconnected(){this.observer&&this.observer.disconnect()},update:{read(){F(this.$el)&&An(this.getAdjacentSlides())},events:["resize"]}};function An(t){t===void 0&&(t=[]);for(const e of t)e&&O('img[loading="lazy"]',e).forEach(i=>$e(i,"loading"))}function $a(t,e,i,s){let{center:n,easing:r,list:o}=s;const a=new Xe,h=t?je(t,o,n):je(e,o,n)+k(e).width*i,u=e?je(e,o,n):h+k(t).width*i*(Z?-1:1);return{dir:i,show(f,l,d){l===void 0&&(l=0);const g=d?"linear":r;return f-=Math.round(f*ot(l,-1,1)),this.translate(l),l=t?l:ot(l,0,1),Ui(this.getItemIn(),"itemin",{percent:l,duration:f,timing:g,dir:i}),t&&Ui(this.getItemIn(!0),"itemout",{percent:1-l,duration:f,timing:g,dir:i}),P.start(o,{transform:q(-u*(Z?-1:1),"px")},f,g).then(a.resolve,_),a.promise},cancel(){P.cancel(o)},reset(){c(o,"transform","")},forward(f,l){return l===void 0&&(l=this.percent()),P.cancel(o),this.show(f,l,!0)},translate(f){const l=this.getDistance()*i*(Z?-1:1);c(o,"transform",q(ot(-u+(l-l*f),-vi(o),k(o).width)*(Z?-1:1),"px"));const d=this.getActives(),g=this.getItemIn(),v=this.getItemIn(!0);f=t?ot(f,-1,1):0;for(const p of L(o)){const w=b(d,p),A=p===g,E=p===v,J=A||!E&&(w||i*(Z?-1:1)===-1^wi(p,o)>wi(t||e));Ui(p,"itemtranslate"+(J?"in":"out"),{dir:i,percent:E?1-f:A?f:w?1:0})}},percent(){return Math.abs((c(o,"transform").split(",")[4]*(Z?-1:1)+h)/(u-h))},getDistance(){return Math.abs(u-h)},getItemIn(f){f===void 0&&(f=!1);let l=this.getActives(),d=_n(o,je(e||t,o,n));if(f){const g=l;l=d,d=g}return d[pt(d,g=>!b(l,g))]},getActives(){return _n(o,je(t||e,o,n))}}}function je(t,e,i){const s=wi(t,e);return i?s-ka(t,e):Math.min(s,En(e))}function En(t){return Math.max(0,vi(t)-k(t).width)}function vi(t){return L(t).reduce((e,i)=>k(i).width+e,0)}function ka(t,e){return k(e).width/2-k(t).width/2}function wi(t,e){return t&&(Ue(t).left+(Z?k(t).width-k(e).width:0))*(Z?-1:1)||0}function _n(t,e){e-=1;const i=k(t).width,s=e+i+2;return L(t).filter(n=>{const r=wi(n,t),o=r+Math.min(k(n).width,i);return r>=e&&o<=s})}function Ui(t,e,i){m(t,Ae(e,!1,!1,i))}var Sa={mixins:[st,pn,In,Pn],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:$a},computed:{avgWidth(){return vi(this.list)/this.length},finite(t){let{finite:e}=t;return e||Math.ceil(vi(this.list))<Math.floor(k(this.list).width+Ta(this.list)+this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return be(this.sets);let t=0;const e=En(this.list),i=pt(this.slides,s=>{if(t>=e)return!0;t+=k(s).width});return~i?i:this.length-1},sets(t){let{sets:e}=t;if(!e)return;const i=k(this.list).width/(this.center?2:1);let s=0,n=i,r=0;return e=xe(this.slides,"offsetLeft").reduce((o,a,h)=>{const u=k(a).width;if(r+u>s&&(!this.center&&h>this.maxIndex&&(h=this.maxIndex),!b(o,h))){const l=this.slides[h+1];this.center&&l&&u<n-k(l).width/2?n-=u:(n=i,o.push(h),s=r+i+(this.center?u/2:0))}return r+=u,o},[]),!Xt(e)&&e},transitionOptions(){return{center:this.center,list:this.list}}},connected(){V(this.$el,this.clsContainer,!y("."+this.clsContainer,this.$el))},update:{write(){for(const i of this.navItems){const s=At(U(i,this.attrItem));s!==!1&&(i.hidden=!this.maxIndex||s>this.maxIndex||this.sets&&!b(this.sets,s))}this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1));const t=this._getTransitioner(this.index).getActives(),e=[this.clsActive,(!this.sets||b(this.sets,x(this.index)))&&this.clsActivated||""];for(const i of this.slides)V(i,e,b(t,i))},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!b(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let s=0;s<e;s++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=mn(this.avgWidth/this.velocity)*(k(this.slides[i]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&$(this._getTransitioner().getItemIn(),this.clsActive)}},methods:{reorder(){if(this.finite){c(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,r)=>c(n,"order",this.dir>0&&r<t?1:this.dir<0&&r>=this.index?-1:"")),!this.center)return;const e=this.slides[t];let i=k(this.list).width/2-k(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),r=this.slides[n];c(r,"order",n>t?-2:-1),i-=k(r).width}},getValidIndex(t,e){if(t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),t=this.getIndex(t,e),!this.sets)return t;let i;do{if(b(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t},getAdjacentSlides(){const{width:t}=k(this.list),e=-t,i=t*2,s=k(this.slides[this.index]).width,n=this.center?t/2-s/2:0,r=new Set;for(const o of[-1,1]){let a=n+(o>0?s:0),h=0;do{const u=this.slides[this.getIndex(this.index+o+h++*o)];a+=k(u).width*o,r.add(u)}while(this.slides.length>h&&a>e&&a<i)}return Array.from(r)}}};function Ta(t){return Math.max(0,...L(t).map(e=>k(e).width))}var Nn={mixins:[xn],data:{selItem:"!li"},computed:{item(t,e){let{selItem:i}=t;return dt(i,e)}},events:[{name:"itemin itemout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,duration:s,timing:n,dir:r}}=t;H.read(()=>{const o=this.getCss(Dn(e,r,i)),a=this.getCss(Mn(e)?.5:r>0?1:0);H.write(()=>{c(this.$el,o),P.start(this.$el,a,s,n).catch(_)})})}},{name:"transitioncanceled transitionend",self:!0,el(){return this.item},handler(){P.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,dir:s}}=t;H.read(()=>{const n=this.getCss(Dn(e,s,i));H.write(()=>c(this.$el,n))})}}]};function Mn(t){return Ct(t,"in")}function Dn(t,e,i){return i/=2,Mn(t)^e<0?i:1-i}var Ca={...Ji,fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:ce(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:ce(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:q(30),zIndex:-1},{transform:q(),zIndex:0}]:[{transform:q(-100),zIndex:0},{transform:q(),zIndex:-1}]},percent(t,e,i){return i<0?1-Fe(e):Fe(t)},translate(t,e){return e<0?[{transform:q(30*t),zIndex:-1},{transform:q(-100*(1-t)),zIndex:0}]:[{transform:q(-t*100),zIndex:0},{transform:q(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:q(100),zIndex:0},{transform:q(),zIndex:-1}]:[{transform:q(-30),zIndex:-1},{transform:q(),zIndex:0}]},percent(t,e,i){return i>0?1-Fe(e):Fe(t)},translate(t,e){return e<0?[{transform:q(t*100),zIndex:0},{transform:q(-30*(1-t)),zIndex:-1}]:[{transform:q(-30*t),zIndex:-1},{transform:q(100*(1-t)),zIndex:0}]}}},Ia={mixins:[st,vn,In,Pn],props:{ratio:String,minHeight:Number,maxHeight:Number},data:{ratio:"16:9",minHeight:!1,maxHeight:!1,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:Ca},update:{read(){if(!this.list)return!1;let[t,e]=this.ratio.split(":").map(Number);return e=e*this.list.offsetWidth/t||0,this.minHeight&&(e=Math.max(this.minHeight,e)),this.maxHeight&&(e=Math.min(this.maxHeight,e)),{height:e-Ut(this.list,"height","content-box")}},write(t){let{height:e}=t;e>0&&c(this.list,"minHeight",e)},events:["resize"]},methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}},Pa={mixins:[st,un],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},created(){for(const t of["init","start","move","end"]){const e=this[t];this[t]=i=>{yt(this.pos,Qt(i)),e(i)}}},events:{name:ut,passive:!1,handler:"init"},computed:{target(){return(this.$el.tBodies||[this.$el])[0]},items(){return L(this.target)},isEmpty:{get(){return Xt(this.items)},watch(t){V(this.target,this.clsEmpty,t)},immediate:!0},handles:{get(t,e){let{handle:i}=t;return i?O(i,e):this.items},watch(t,e){c(e,{touchAction:"",userSelect:""}),c(t,{touchAction:Lt?"none":"",userSelect:"none"})},immediate:!0}},update:{write(t){if(!this.drag||!M(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:r}=this;c(this.drag,{top:i-s,left:e-n});const o=this.getSortable(document.elementFromPoint(e,i));if(!o)return;const{items:a}=o;if(a.some(P.inProgress))return;const h=Na(a,{x:e,y:i});if(a.length&&(!h||h===r))return;const u=this.getSortable(r),f=Ma(o.target,h,r,e,i,o===u&&t.moved!==h);f!==!1&&(f&&r===f||(o!==u?(u.remove(r),t.moved=h):delete t.moved,o.insert(r,f),this.touched.add(o)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(r=>R(e,r));!n||s||i>0||Ci(e)||R(e,"."+this.clsNoDrag)||this.handle&&!R(e,this.handle)||(t.preventDefault(),this.touched=new Set([this]),this.placeholder=n,this.origin={target:e,index:Jt(n),...this.pos},I(document,ie,this.move),I(document,wt,this.end),this.threshold||this.start(t))},start(t){this.drag=_a(this.$container,this.placeholder);const{left:e,top:i}=this.placeholder.getBoundingClientRect();yt(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),$(this.drag,this.clsDrag,this.clsCustom),$(this.placeholder,this.clsPlaceholder),$(this.items,this.clsItem),$(document.documentElement,this.clsDragState),m(this.$el,"start",[this,this.placeholder]),Aa(this.pos),this.move(t)},move(t){this.drag?this.$emit("move"):(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t)},end(){if(Zt(document,ie,this.move),Zt(document,wt,this.end),!this.drag)return;Ea();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==Jt(this.placeholder)&&m(this.$el,"moved",[this,this.placeholder]):(m(t.$el,"added",[t,this.placeholder]),m(this.$el,"removed",[this,this.placeholder])),m(this.$el,"stop",[this,this.placeholder]),ct(this.drag),this.drag=null;for(const{clsPlaceholder:e,clsItem:i}of this.touched)for(const s of this.touched)N(s.items,e,i);this.touched=null,N(document.documentElement,this.clsDragState)},insert(t,e){$(this.items,this.clsItem);const i=()=>e?zi(e,t):X(this.target,t);this.animate(i)},remove(t){!R(t,this.target)||this.animate(()=>ct(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=M(t))}}};let Bn;function Aa(t){let e=Date.now();Bn=setInterval(()=>{let{x:i,y:s}=t;s+=Rt(window);const n=(Date.now()-e)*.3;e=Date.now(),jt(document.elementFromPoint(i,t.y),/auto|scroll/).reverse().some(r=>{let{scrollTop:o,scrollHeight:a}=r;const{top:h,bottom:u,height:f}=B(ae(r));if(h<s&&h+35>s)o-=n;else if(u>s&&u-35<s)o+=n;else return;if(o>0&&o<a-f)return Rt(r,o),!0})},15)}function Ea(){clearInterval(Bn)}function _a(t,e){const i=X(t,e.outerHTML.replace(/(^<)(?:li|tr)|(?:li|tr)(\/>$)/g,"$1div$2"));return c(i,"margin","0","important"),c(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:c(e,"padding")}),z(i.firstElementChild,z(e.firstElementChild)),i}function Na(t,e){return t[pt(t,i=>Ge(e,i.getBoundingClientRect()))]}function Ma(t,e,i,s,n,r){if(!L(t).length)return;const o=e.getBoundingClientRect();if(!r)return Da(t,i)||n<o.top+o.height/2?e:e.nextElementSibling;const a=i.getBoundingClientRect(),h=zn([o.top,o.bottom],[a.top,a.bottom]),u=h?s:n,f=h?"width":"height",l=h?"left":"top",d=h?"right":"bottom",g=a[f]<o[f]?o[f]-a[f]:0;return a[l]<o[l]?g&&u<o[l]+g?!1:e.nextElementSibling:g&&u>o[d]-g?!1:e}function Da(t,e){const i=L(t).length===1;i&&X(t,e);const s=L(t),n=s.some((r,o)=>{const a=r.getBoundingClientRect();return s.slice(o+1).some(h=>{const u=h.getBoundingClientRect();return!zn([a.left,a.right],[u.left,u.right])})});return i&&ct(e),n}function zn(t,e){return t[1]>e[0]&&e[1]>t[0]}var Ba={mixins:[he,Tt,zs],args:"title",props:{delay:Number,title:String},data:{pos:"top",title:"",delay:0,animation:["uk-animation-scale-up"],duration:100,cls:"uk-active",clsPos:"uk-tooltip"},beforeConnect(){this._hasTitle=Ht(this.$el,"title"),T(this.$el,"title",""),this.updateAria(!1),za(this.$el)},disconnected(){this.hide(),T(this.$el,"title",this._hasTitle?this.title:null)},methods:{show(){this.isToggled(this.tooltip||null)||!this.title||(this._unbind=j(document,"show keydown "+ut,this.hide,!1,t=>t.type===ut&&!R(t.target,this.$el)||t.type==="keydown"&&t.keyCode===27||t.type==="show"&&t.detail[0]!==this&&t.detail[0].$name===this.$name),clearTimeout(this.showTimer),this.showTimer=setTimeout(this._show,this.delay))},async hide(){W(this.$el,"input:focus")||(clearTimeout(this.showTimer),!!this.isToggled(this.tooltip||null)&&(await this.toggleElement(this.tooltip,!1,!1),ct(this.tooltip),this.tooltip=null,this._unbind()))},_show(){this.tooltip=X(this.container,'<div class="'+this.clsPos+'"> <div class="'+this.clsPos+'-inner">'+this.title+"</div> </div>"),I(this.tooltip,"toggled",(t,e)=>{this.updateAria(e),!!e&&(this.positionAt(this.tooltip,this.$el),this.origin=this.getAxis()==="y"?Me(this.dir)+"-"+this.align:this.align+"-"+Me(this.dir))}),this.toggleElement(this.tooltip,!0)},updateAria(t){T(this.$el,"aria-expanded",t)}},events:{focus:"show",blur:"hide",[Wt+" "+se](t){kt(t)||this[t.type===Wt?"show":"hide"]()},[ut](t){kt(t)&&this.show()}}};function za(t){Je(t)||T(t,"tabindex","0")}var Oa={props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,msgInvalidMime:String,msgInvalidName:String,msgInvalidSize:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,msgInvalidMime:"Invalid File Type: %s",msgInvalidName:"Invalid File Name: %s",msgInvalidSize:"Invalid File Size: %s Kilobytes Max",multiple:!1,name:"files[]",params:{},type:"",url:"",abort:_,beforeAll:_,beforeSend:_,complete:_,completeAll:_,error:_,fail:_,load:_,loadEnd:_,loadStart:_,progress:_},events:{change(t){!W(t.target,'input[type="file"]')||(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){bi(t);const e=t.dataTransfer;!(e!=null&&e.files)||(N(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){bi(t)},dragover(t){bi(t),$(this.$el,this.clsDragover)},dragleave(t){bi(t),N(this.$el,this.clsDragover)}},methods:{async upload(t){if(!t.length)return;m(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3<s.size){this.fail(this.msgInvalidSize.replace("%s",this.maxSize));return}if(this.allow&&!On(this.allow,s.name)){this.fail(this.msgInvalidName.replace("%s",this.allow));return}if(this.mime&&!On(this.mime,s.type)){this.fail(this.msgInvalidMime.replace("%s",this.mime));return}}this.multiple||(t=t.slice(0,1)),this.beforeAll(this,t);const e=Ha(t,this.concurrent),i=async s=>{const n=new FormData;s.forEach(r=>n.append(this.name,r));for(const r in this.params)n.append(r,this.params[r]);try{const r=await ls(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:o=>{const{xhr:a}=o;a.upload&&I(a.upload,"progress",this.progress);for(const h of["loadStart","load","loadEnd","abort"])I(a,h.toLowerCase(),this[h]);return this.beforeSend(o)}});this.complete(r),e.length?await i(e.shift()):this.completeAll(r)}catch(r){this.error(r)}};await i(e.shift())}}};function On(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function Ha(t,e){const i=[];for(let s=0;s<t.length;s+=e)i.push(t.slice(s,s+e));return i}function bi(t){t.preventDefault(),t.stopPropagation()}var Fa=Object.freeze({__proto__:null,Countdown:Go,Filter:Zo,Lightbox:ca,LightboxPanel:wn,Notification:da,Parallax:xa,Slider:Sa,SliderParallax:Nn,Slideshow:Ia,SlideshowParallax:Nn,Sortable:Pa,Tooltip:Ba,Upload:Oa});return it(Fa,(t,e)=>tt.component(e,t)),tt});