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