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