uikit 3.14.4-dev.cd89debeb → 3.14.4-dev.d2929b5b7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +41 -12
- package/build/util.js +1 -0
- package/dist/css/uikit-core-rtl.css +380 -102
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +380 -102
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +397 -107
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +397 -107
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +7 -5
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +99 -135
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +99 -135
- 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 +4 -5
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +4 -5
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +22 -7
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +4 -5
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +22 -7
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +3 -3
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +93 -132
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +419 -381
- package/dist/js/uikit-core.min.js +14 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +472 -417
- package/dist/js/uikit.min.js +14 -1
- package/package.json +1 -1
- package/src/images/{backgrounds/nav-parent-open.svg → components/nav-parent-icon-large.svg} +0 -0
- package/src/images/components/nav-parent-icon.svg +3 -0
- package/src/images/components/navbar-parent-icon.svg +3 -0
- package/src/images/components/navbar-toggle-icon.svg +22 -3
- package/src/js/api/state.js +1 -1
- package/src/js/components/filter.js +5 -3
- package/src/js/components/sortable.js +2 -3
- package/src/js/core/accordion.js +9 -17
- package/src/js/core/alert.js +35 -14
- package/src/js/core/drop.js +90 -61
- package/src/js/core/height-viewport.js +14 -6
- package/src/js/core/icon.js +16 -0
- package/src/js/core/index.js +2 -0
- package/src/js/core/leader.js +2 -2
- package/src/js/core/navbar.js +42 -30
- package/src/js/core/scroll.js +37 -10
- package/src/js/core/sticky.js +8 -9
- package/src/js/mixin/media.js +4 -5
- package/src/js/mixin/modal.js +9 -6
- package/src/js/mixin/position.js +22 -8
- package/src/js/mixin/slider-drag.js +20 -8
- package/src/js/mixin/togglable.js +80 -133
- package/src/js/util/animation.js +4 -3
- package/src/js/util/dimensions.js +6 -6
- package/src/js/util/filter.js +3 -7
- package/src/js/util/position.js +43 -47
- package/src/js/util/style.js +4 -13
- package/src/js/util/viewport.js +5 -32
- package/src/less/components/_import.less +1 -0
- package/src/less/components/drop.less +1 -18
- package/src/less/components/dropbar.less +115 -0
- package/src/less/components/dropdown.less +16 -16
- package/src/less/components/leader.less +1 -1
- package/src/less/components/nav.less +240 -63
- package/src/less/components/navbar.less +73 -28
- package/src/less/components/utility.less +21 -4
- package/src/less/theme/_import.less +1 -0
- package/src/less/theme/dropbar.less +44 -0
- package/src/less/theme/dropdown.less +0 -11
- package/src/less/theme/nav.less +43 -9
- package/src/less/theme/navbar.less +4 -10
- package/src/scss/components/_import.scss +1 -0
- package/src/scss/components/drop.scss +1 -18
- package/src/scss/components/dropbar.scss +115 -0
- package/src/scss/components/dropdown.scss +16 -16
- package/src/scss/components/leader.scss +1 -1
- package/src/scss/components/nav.scss +189 -51
- package/src/scss/components/navbar.scss +61 -28
- package/src/scss/components/utility.scss +19 -3
- package/src/scss/mixins-theme.scss +93 -25
- package/src/scss/mixins.scss +89 -17
- package/src/scss/theme/_import.scss +1 -0
- package/src/scss/theme/dropbar.scss +44 -0
- package/src/scss/theme/dropdown.scss +0 -8
- package/src/scss/theme/nav.scss +41 -9
- package/src/scss/theme/navbar.scss +4 -7
- package/src/scss/variables-theme.scss +69 -17
- package/src/scss/variables.scss +58 -13
- package/tests/accordion.html +2 -2
- package/tests/alert.html +2 -2
- package/tests/countdown.html +1 -1
- package/tests/drop.html +453 -371
- package/tests/dropbar.html +456 -0
- package/tests/dropdown.html +26 -401
- package/tests/filter.html +9 -12
- package/tests/form.html +1 -1
- package/tests/index.html +126 -107
- package/tests/lightbox.html +5 -5
- package/tests/list.html +8 -8
- package/tests/modal.html +13 -13
- package/tests/nav.html +117 -75
- package/tests/navbar.html +1997 -1138
- package/tests/offcanvas.html +17 -21
- package/tests/parallax.html +1 -1
- package/tests/position.html +13 -24
- package/tests/progress.html +9 -9
- package/tests/scroll.html +7 -10
- package/tests/search.html +5 -5
- package/tests/slider.html +6 -5
- package/tests/slideshow.html +8 -8
- package/tests/sortable.html +6 -8
- package/tests/sticky-navbar.html +6 -6
- package/tests/sticky.html +8 -8
- package/tests/switcher.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/table.html +7 -7
- package/tests/toggle.html +2 -2
- package/tests/tooltip.html +1 -1
- package/tests/upload.html +11 -11
- package/tests/utility.html +19 -0
- package/src/images/backgrounds/nav-parent-close.svg +0 -3
package/dist/js/uikit.min.js
CHANGED
|
@@ -1 +1,14 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.cd89debeb | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(ge,me){typeof exports=="object"&&typeof module<"u"?module.exports=me():typeof define=="function"&&define.amd?define("uikit",me):(ge=typeof globalThis<"u"?globalThis:ge||self,ge.UIkit=me())})(this,function(){"use strict";const{hasOwnProperty:ge,toString:me}=Object.prototype;function Ot(t,e){return ge.call(t,e)}const io=/\B([A-Z])/g,Mt=ot(t=>t.replace(io,"-$1").toLowerCase()),so=/-(\w)/g,Xt=ot(t=>t.replace(so,as)),yt=ot(t=>t.length?as(null,t.charAt(0))+t.slice(1):"");function as(t,e){return e?e.toUpperCase():""}function st(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function Jt(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 $t(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:nt,from:bi}=Array,{assign:kt}=Object;function pt(t){return typeof t=="function"}function Pt(t){return t!==null&&typeof t=="object"}function At(t){return me.call(t)==="[object Object]"}function Bt(t){return Pt(t)&&t===t.window}function ve(t){return yi(t)===9}function xi(t){return yi(t)>=1}function Kt(t){return yi(t)===1}function yi(t){return!Bt(t)&&Pt(t)&&t.nodeType}function He(t){return typeof t=="boolean"}function O(t){return typeof t=="string"}function Zt(t){return typeof t=="number"}function Nt(t){return Zt(t)||O(t)&&!isNaN(t-parseFloat(t))}function we(t){return!(nt(t)?t.length:Pt(t)?Object.keys(t).length:!1)}function V(t){return t===void 0}function $i(t){return He(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Et(t){const e=Number(t);return isNaN(e)?!1:e}function b(t){return parseFloat(t)||0}function j(t){return y(t)[0]}function y(t){return t&&(xi(t)?[t]:Array.from(t).filter(xi))||[]}function Dt(t){var e;if(Bt(t))return t;t=j(t);const i=ve(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function be(t,e){return t===e||Pt(t)&&Pt(e)&&Object.keys(t).length===Object.keys(e).length&&St(t,(i,s)=>i===e[s])}function ki(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),s=>s===e?i:e)}function Qt(t){return t[t.length-1]}function St(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function Le(t,e){return t.slice().sort((i,s)=>{let{[e]:n=0}=i,{[e]:o=0}=s;return n>o?1:o>n?-1:0})}function ls(t,e){const i=new Set;return t.filter(s=>{let{[e]:n}=s;return i.has(n)?!1:i.add(n)})}function U(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Et(t)||0,e),i)}function A(){}function Si(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(s=>{let[n,o]=s;return Math.min(...e.map(r=>{let{[n]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function Fe(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function Ti(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}}function hs(t,e){t={...t};for(const i in t)t=t[i]>e[i]?Ti(t,i,e[i]):t;return t}function no(t,e){t=hs(t,e);for(const i in t)t=t[i]<e[i]?Ti(t,i,e[i]):t;return t}const We={ratio:Ti,contain:hs,cover:no};function Ut(t,e,i,s){i===void 0&&(i=0),s===void 0&&(s=!1),e=y(e);const{length:n}=e;return n?(t=Nt(t)?Et(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(j(t)),s?U(t,0,n-1):(t%=n,t<0?t+n:t)):-1}function ot(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class je{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function S(t,e,i){if(Pt(e)){for(const n in e)S(t,n,e[n]);return}if(V(i)){var s;return(s=j(t))==null?void 0:s.getAttribute(e)}else for(const n of y(t))pt(i)&&(i=i.call(n,S(n,e))),i===null?xe(n,e):n.setAttribute(e,i)}function zt(t,e){return y(t).some(i=>i.hasAttribute(e))}function xe(t,e){const i=y(t);for(const s of e.split(" "))for(const n of i)n.removeAttribute(s)}function rt(t,e){for(const i of[e,"data-"+e])if(zt(t,i))return S(t,i)}const oo={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 Ci(t){return y(t).some(e=>oo[e.tagName.toLowerCase()])}function W(t){return y(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ye="input,select,textarea,button";function Ii(t){return y(t).some(e=>H(e,ye))}const Re=ye+",a[href],[tabindex]";function qe(t){return H(t,Re)}function E(t){var e;return(e=j(t))==null?void 0:e.parentElement}function $e(t,e){return y(t).filter(i=>H(i,e))}function H(t,e){return y(t).some(i=>i.matches(e))}function at(t,e){return st(e,">")&&(e=e.slice(1)),Kt(t)?t.closest(e):y(t).map(i=>at(i,e)).filter(Boolean)}function B(t,e){return O(e)?H(t,e)||!!at(t,e):t===e||j(e).contains(j(t))}function ke(t,e){const i=[];for(;t=E(t);)(!e||H(t,e))&&i.push(t);return i}function N(t,e){t=j(t);const i=t?y(t.children):[];return e?$e(i,e):i}function te(t,e){return e?y(t).indexOf(j(e)):N(E(t)).indexOf(t)}function Tt(t,e){return Pi(t,us(t,e))}function Se(t,e){return Te(t,us(t,e))}function Pi(t,e){return j(ds(t,e,"querySelector"))}function Te(t,e){return y(ds(t,e,"querySelectorAll"))}const ro=/(^|[^\\],)\s*[!>+~-]/,cs=ot(t=>t.match(ro));function us(t,e){return e===void 0&&(e=document),O(t)&&cs(t)||ve(e)?e:e.ownerDocument}const ao=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,lo=ot(t=>t.replace(ao,"$1 *"));function ds(t,e,i){if(e===void 0&&(e=document),!t||!O(t))return t;if(t=lo(t),cs(t)){const s=co(t);t="";for(let n of s){let o=e;if(n[0]==="!"){const r=n.substr(1).trim().split(" ");if(o=at(E(e),r[0]),n=r.slice(1).join(" ").trim(),!n.length&&s.length===1)return o}if(n[0]==="-"){const r=n.substr(1).trim().split(" "),a=(o||e).previousElementSibling;o=H(a,n.substr(1))?a:null,n=r.slice(1).join(" ")}o&&(t+=(t?",":"")+uo(o)+" "+n)}e=document}try{return e[i](t)}catch{return null}}const ho=/.*?[^\\](?:,|$)/g,co=ot(t=>t.match(ho).map(e=>e.replace(/,$/,"").trim()));function uo(t){const e=[];for(;t.parentNode;){const i=S(t,"id");if(i){e.unshift("#"+Ai(i));break}else{let{tagName:s}=t;s!=="HTML"&&(s+=":nth-child("+(te(t)+1)+")"),e.unshift(s),t=t.parentNode}}return e.join(" > ")}function Ai(t){return O(t)?CSS.escape(t):""}function T(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,o,r,a=!1]=Ei(e);r.length>1&&(r=po(r)),a!=null&&a.self&&(r=go(r)),o&&(r=fo(o,r));for(const l of n)for(const h of s)h.addEventListener(l,r,a);return()=>ee(s,n,r,a)}function ee(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,,o,r=!1]=Ei(e);for(const a of n)for(const l of s)l.removeEventListener(a,o,r)}function D(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[s,n,o,r,a=!1,l]=Ei(e),h=T(s,n,o,u=>{const d=!l||l(u);d&&(h(),r(u,d))},a);return h}function p(t,e,i){return _i(t).every(s=>s.dispatchEvent(Ht(e,!0,!0,i)))}function Ht(t,e,i,s){return e===void 0&&(e=!0),i===void 0&&(i=!1),O(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function Ei(t){return t[0]=_i(t[0]),O(t[1])&&(t[1]=t[1].split(" ")),pt(t[2])&&t.splice(2,0,!1),t}function fo(t,e){return i=>{const s=t[0]===">"?Te(t,i.currentTarget).reverse().filter(n=>B(i.target,n))[0]:at(i.target,t);s&&(i.current=s,e.call(this,i))}}function po(t){return e=>nt(e.detail)?t(e,...e.detail):t(e)}function go(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function fs(t){return t&&"addEventListener"in t}function mo(t){return fs(t)?t:j(t)}function _i(t){return nt(t)?t.map(mo).filter(Boolean):O(t)?Te(t):fs(t)?[t]:y(t)}function Ct(t){return t.pointerType==="touch"||!!t.touches}function ie(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}function ps(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:A,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>vo(t,i))}function vo(t,e){return new Promise((i,s)=>{const{xhr:n}=e;for(const o in e)if(o in n)try{n[o]=e[o]}catch{}n.open(e.method.toUpperCase(),t);for(const o in e.headers)n.setRequestHeader(o,e.headers[o]);T(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s(kt(Error(n.statusText),{xhr:n,status:n.status}))}),T(n,"error",()=>s(kt(Error("Network Error"),{xhr:n}))),T(n,"timeout",()=>s(kt(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}function gs(t,e,i){return new Promise((s,n)=>{const o=new Image;o.onerror=r=>{n(r)},o.onload=()=>{s(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const wo={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,s){s===void 0&&(s="");const n=y(t);for(const o of n)if(O(e)){if(e=Oi(e),V(i))return getComputedStyle(o).getPropertyValue(e);o.style.setProperty(e,Nt(i)&&!wo[e]?i+"px":i||Zt(i)?i:"",s)}else if(nt(e)){const r={};for(const a of e)r[a]=c(o,a);return r}else Pt(e)&&(s=i,St(e,(r,a)=>c(o,a,r,s)));return n[0]}const bo=/^\s*(["'])?(.*?)\1\s*$/;function se(t,e){return e===void 0&&(e=document.documentElement),c(e,"--uk-"+t).replace(bo,"$2")}const Oi=ot(t=>xo(t)),ms=["webkit","moz"];function xo(t){if(t[0]==="-")return t;t=Mt(t);const{style:e}=document.documentElement;if(t in e)return t;let i=ms.length,s;for(;i--;)if(s="-"+ms[i]+"-"+t,s in e)return s}function x(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];vs(t,i,"add")}function _(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];vs(t,i,"remove")}function Mi(t,e){S(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function Bi(t){!(arguments.length<=1)&&arguments[1]&&_(t,arguments.length<=1?void 0:arguments[1]),!(arguments.length<=2)&&arguments[2]&&x(t,arguments.length<=2?void 0:arguments[2])}function I(t,e){return[e]=Ni(e),!!e&&y(t).some(i=>i.classList.contains(e))}function L(t,e,i){const s=Ni(e);V(i)||(i=!!i);for(const n of y(t))for(const o of s)n.classList.toggle(o,i)}function vs(t,e,i){e=e.reduce((s,n)=>s.concat(Ni(n)),[]);for(const s of y(t))s.classList[i](...e)}function Ni(t){return String(t).split(/\s|,/).filter(Boolean)}function ws(t,e,i,s){return i===void 0&&(i=400),s===void 0&&(s="linear"),i=Math.round(i),Promise.all(y(t).map(n=>new Promise((o,r)=>{for(const l in e){const h=c(n,l);h===""&&c(n,l,h)}const a=setTimeout(()=>p(n,"transitionend"),i);D(n,"transitionend transitioncanceled",l=>{let{type:h}=l;clearTimeout(a),_(n,"uk-transition"),c(n,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),h==="transitioncanceled"?r():o(n)},{self:!0}),x(n,"uk-transition"),c(n,{transitionProperty:Object.keys(e).map(Oi).join(","),transitionDuration:i+"ms",transitionTimingFunction:s,...e})})))}const C={start:ws,stop(t){return p(t,"transitionend"),Promise.resolve()},cancel(t){p(t,"transitioncanceled")},inProgress(t){return I(t,"uk-transition")}},Ce="uk-animation-";function Di(t,e,i,s,n){return i===void 0&&(i=200),Promise.all(y(t).map(o=>new Promise((r,a)=>{p(o,"animationcanceled");const l=setTimeout(()=>p(o,"animationend"),i);D(o,"animationend animationcanceled",h=>{let{type:u}=h;clearTimeout(l),u==="animationcanceled"?a():r(o),c(o,"animationDuration",""),Mi(o,Ce+"\\S*")},{self:!0}),c(o,"animationDuration",i+"ms"),x(o,e,Ce+(n?"leave":"enter")),st(e,Ce)&&(s&&x(o,"uk-transform-origin-"+s),n&&x(o,Ce+"reverse"))})))}const yo=new RegExp(Ce+"(enter|leave)"),ft={in:Di,out(t,e,i,s){return Di(t,e,i,s,!0)},inProgress(t){return yo.test(S(t,"class"))},cancel(t){p(t,"animationcanceled")}},Lt={width:["left","right"],height:["top","bottom"]};function $(t){const e=Kt(t)?j(t).getBoundingClientRect():{height:K(t),width:Ie(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 P(t,e){const i=$(t);if(t){const{scrollY:n,scrollX:o}=Dt(t),r={height:n,width:o};for(const a in Lt)for(const l of Lt[a])i[l]+=r[a]}if(!e)return i;const s=c(t,"position");St(c(t,["left","top"]),(n,o)=>c(t,o,e[o]-i[o]+b(s==="absolute"&&n==="auto"?Ve(t)[o]:n)))}function Ve(t){let{top:e,left:i}=P(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:o}=j(t);let r=o||n;for(;r&&(r===s||r===n)&&c(r,"position")==="static";)r=r.parentNode;if(Kt(r)){const a=P(r);e-=a.top+b(c(r,"borderTopWidth")),i-=a.left+b(c(r,"borderLeftWidth"))}return{top:e-b(c(t,"marginTop")),left:i-b(c(t,"marginLeft"))}}function Ft(t){const e=[0,0];t=j(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,c(t,"position")==="fixed"){const i=Dt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}while(t=t.offsetParent);return e}const K=bs("height"),Ie=bs("width");function bs(t){const e=yt(t);return(i,s)=>{if(V(s)){if(Bt(i))return i["inner"+e];if(ve(i)){const n=i.documentElement;return Math.max(n["offset"+e],n["scroll"+e])}return i=j(i),s=c(i,t),s=s==="auto"?i["offset"+e]:b(s)||0,s-ne(i,t)}else return c(i,t,!s&&s!==0?"":+s+ne(i,t)+"px")}}function ne(t,e,i){return i===void 0&&(i="border-box"),c(t,"boxSizing")===i?Lt[e].map(yt).reduce((s,n)=>s+b(c(t,"padding"+n))+b(c(t,"border"+n+"Width")),0):0}function Ye(t){for(const e in Lt)for(const i in Lt[e])if(Lt[e][i]===t)return Lt[e][1-i];return t}function Z(t,e,i,s){return e===void 0&&(e="width"),i===void 0&&(i=window),s===void 0&&(s=!1),O(t)?ko(t).reduce((n,o)=>{const r=To(o);return r&&(o=Co(r==="vh"?K(Dt(i)):r==="vw"?Ie(Dt(i)):s?i["offset"+yt(e)]:$(i)[e],o)),n+b(o)},0):b(t)}const $o=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,ko=ot(t=>t.toString().replace(/\s/g,"").match($o)||[]),So=/(?:v[hw]|%)$/,To=ot(t=>(t.match(So)||[])[0]);function Co(t,e){return t*b(e)/100}function zi(t){if(document.readyState!=="loading"){t();return}D(document,"DOMContentLoaded",t)}function gt(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function xs(t){return t=w(t),t.innerHTML="",t}function _t(t,e){return V(e)?w(t).innerHTML:R(xs(t),e)}const Io=Xe("prepend"),R=Xe("append"),Hi=Xe("before"),Ge=Xe("after");function Xe(t){return function(e,i){var s;const n=y(O(i)?Wt(i):i);return(s=w(e))==null||s[t](...n),$s(n)}}function ct(t){y(t).forEach(e=>e.remove())}function Je(t,e){for(e=j(Hi(t,e));e.firstChild;)e=e.firstChild;return R(e,t),e}function ys(t,e){return y(y(t).map(i=>i.hasChildNodes()?Je(y(i.childNodes),e):R(i,e)))}function Ke(t){y(t).map(E).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const Po=/^\s*<(\w+|!)[^>]*>/,Ao=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Wt(t){const e=Ao.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return Po.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,$s(i.childNodes)}function $s(t){return t.length>1?t:t[0]}function mt(t,e){if(!!Kt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;mt(t,e),t=i}}function w(t,e){return ks(t)?j(Wt(t)):Pi(t,e)}function M(t,e){return ks(t)?y(Wt(t)):Te(t,e)}function ks(t){return O(t)&&st(t.trim(),"<")}const jt=typeof window<"u",X=jt&&S(document.documentElement,"dir")==="rtl",Rt=jt&&"ontouchstart"in window,oe=jt&&window.PointerEvent,ut=oe?"pointerdown":Rt?"touchstart":"mousedown",re=oe?"pointermove":Rt?"touchmove":"mousemove",vt=oe?"pointerup":Rt?"touchend":"mouseup",qt=oe?"pointerenter":Rt?"":"mouseenter",ae=oe?"pointerleave":Rt?"":"mouseleave",le=oe?"pointercancel":"touchcancel",z={reads:[],writes:[],read(t){return this.reads.push(t),Fi(),t},write(t){return this.writes.push(t),Fi(),t},clear(t){Ts(this.reads,t),Ts(this.writes,t)},flush:Li};function Li(t){Ss(z.reads),Ss(z.writes.splice(0)),z.scheduled=!1,(z.reads.length||z.writes.length)&&Fi(t+1)}const Eo=4;function Fi(t){z.scheduled||(z.scheduled=!0,t&&t<Eo?Promise.resolve().then(()=>Li(t)):requestAnimationFrame(()=>Li(1)))}function Ss(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Ts(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function Wi(){}Wi.prototype={positions:[],init(){this.positions=[];let t;this.unbind=T(document,"mousemove",e=>t=ie(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){var t;(t=this.unbind)==null||t.call(this),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:s,top:n,bottom:o}=e,[r]=this.positions,a=Qt(this.positions),l=[r,a];return Fe(a,e)?!1:[[{x:i,y:n},{x:s,y:o}],[{x:i,y:o},{x:s,y:n}]].some(u=>{const d=_o(l,u);return d&&Fe(d,e)})}};function _o(t,e){let[{x:i,y:s},{x:n,y:o}]=t,[{x:r,y:a},{x:l,y:h}]=e;const u=(h-a)*(n-i)-(l-r)*(o-s);if(u===0)return!1;const d=((l-r)*(s-a)-(h-a)*(i-r))/u;return d<0?!1:{x:i+d*(n-i),y:s+d*(o-s)}}function he(t,e,i,s){s===void 0&&(s=!0);const n=new IntersectionObserver(s?(o,r)=>{o.some(a=>a.isIntersecting)&&e(o,r)}:e,i);for(const o of y(t))n.observe(o);return n}const Oo=jt&&window.ResizeObserver;function Ze(t,e,i){return i===void 0&&(i={box:"border-box"}),Oo?Is(ResizeObserver,t,e,i):(Mo(),Pe.add(e),{disconnect(){Pe.delete(e)}})}let Pe;function Mo(){if(Pe)return;Pe=new Set;let t;const e=()=>{if(!t){t=!0,z.read(()=>t=!1);for(const i of Pe)i()}};T(window,"load resize",e),T(document,"loadedmetadata load",e,!0)}function Cs(t,e,i){return Is(MutationObserver,t,e,i)}function Is(t,e,i,s){const n=new t(i);for(const o of y(e))n.observe(o,s);return n}const Q={};Q.events=Q.created=Q.beforeConnect=Q.connected=Q.beforeDisconnect=Q.disconnected=Q.destroy=ji,Q.args=function(t,e){return e!==!1&&ji(e||t)},Q.update=function(t,e){return Le(ji(t,pt(e)?{read:e}:e),"order")},Q.props=function(t,e){if(nt(e)){const i={};for(const s of e)i[s]=String;e=i}return Q.methods(t,e)},Q.computed=Q.methods=function(t,e){return e?t?{...t,...e}:e:t},Q.data=function(t,e,i){return i?Ps(t,e,i):e?t?function(s){return Ps(t,e,s)}:e:t};function Ps(t,e,i){return Q.computed(pt(t)?t.call(i,i):t,pt(e)?e.call(i,i):e)}function ji(t,e){return t=t&&!nt(t)?[t]:t,e?t?t.concat(e):nt(e)?e:[e]:t}function Bo(t,e){return V(e)?t:e}function ce(t,e,i){const s={};if(pt(e)&&(e=e.options),e.extends&&(t=ce(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=ce(t,o,i);for(const o in t)n(o);for(const o in e)Ot(t,o)||n(o);function n(o){s[o]=(Q[o]||Bo)(t[o],e[o],i)}return s}function Ae(t,e){e===void 0&&(e=[]);try{return t?st(t,"{")?JSON.parse(t):e.length&&!g(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,o]=s.split(/:(.*)/);return n&&!V(o)&&(i[n.trim()]=o.trim()),i},{}):{}}catch{return{}}}function As(t){if(Ue(t)&&Ri(t,{func:"playVideo",method:"play"}),Qe(t))try{t.play().catch(A)}catch{}}function Es(t){Ue(t)&&Ri(t,{func:"pauseVideo",method:"pause"}),Qe(t)&&t.pause()}function _s(t){Ue(t)&&Ri(t,{func:"mute",method:"setVolume",value:0}),Qe(t)&&(t.muted=!0)}function Os(t){return Qe(t)||Ue(t)}function Qe(t){return gt(t,"video")}function Ue(t){return gt(t,"iframe")&&(Ms(t)||Bs(t))}function Ms(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Bs(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Ri(t,e){await Do(t),Ns(t,e)}function Ns(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const qi="_ukPlayer";let No=0;function Do(t){if(t[qi])return t[qi];const e=Ms(t),i=Bs(t),s=++No;let n;return t[qi]=new Promise(o=>{e&&D(t,"load",()=>{const r=()=>Ns(t,{event:"listening",id:s});n=setInterval(r,100),r()}),D(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===s&&a.event==="onReady"||i&&Number(a.player_id)===s)}catch{}}),t.src=""+t.src+(g(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+s)}).then(()=>clearInterval(n))}function ti(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),W(t)?Si(...lt(t).map(s=>{const{top:n,left:o,bottom:r,right:a}=dt(s);return{top:n-e,left:o-i,bottom:r+e,right:a+i}}).concat(P(t))):!1}function Vt(t,e){if(Bt(t)||ve(t)?t=Gi(t):t=j(t),V(e))return t.scrollTop;t.scrollTop=e}function Vi(t,e){let{offset:i=0}=e===void 0?{}:e;const s=W(t)?lt(t):[];return s.reduce((a,l,h)=>{const{scrollTop:u,scrollHeight:d,offsetHeight:f}=l,m=dt(l),k=d-m.height,{height:v,top:J}=s[h-1]?dt(s[h-1]):P(t);let G=Math.ceil(J-m.top-i+u);return i>0&&f<v+i?G+=i:i=0,G>k?(i-=G-k,G=k):G<0&&(i-=G,G=0),()=>n(l,G-u).then(a)},()=>Promise.resolve())();function n(a,l){return new Promise(h=>{const u=a.scrollTop,d=o(Math.abs(l)),f=Date.now();(function m(){const k=r(U((Date.now()-f)/d));Vt(a,u+l*k),k===1?h():requestAnimationFrame(m)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function Yi(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!W(t))return 0;const[s]=lt(t,/auto|scroll/,!0),{scrollHeight:n,scrollTop:o}=s,{height:r}=dt(s),a=n-r,l=Ft(t)[0]-Ft(s)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return U((o-h)/(u-h))}function lt(t,e,i){e===void 0&&(e=/auto|scroll|hidden|clip/),i===void 0&&(i=!1);const s=Gi(t);let n=ke(t).reverse();n=n.slice(n.indexOf(s)+1);const o=$t(n,r=>c(r,"position")==="fixed");return~o&&(n=n.slice(o)),[s].concat(n.filter(r=>e.test(c(r,"overflow"))&&(!i||r.scrollHeight>dt(r).height))).reverse()}function dt(t){const e=Dt(t),{document:{body:i,documentElement:s}}=e;let n=t===Gi(t)||t===i?e:t;const{visualViewport:o}=e;if(Bt(n)&&o){let{height:a,width:l,scale:h,pageTop:u,pageLeft:d}=o;return a=Math.round(a*h),l=Math.round(l*h),{height:a,width:l,top:u,left:d,bottom:u+a,right:d+l}}let r=P(n);for(let[a,l,h,u]of[["width","x","left","right"],["height","y","top","bottom"]])Bt(n)?n=s:r[h]+=b(c(n,"border"+yt(h)+"Width")),r[a]=r[l]=n["client"+yt(a)],r[u]=r[a]+r[h];return r}function Gi(t){return Dt(t).document.scrollingElement}const wt=[["width","x","left","right"],["height","y","top","bottom"]];function Ds(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i};const s=i.flip?Ls(t,e,i):zs(t,e,i);P(t,s)}function zs(t,e,i){let{attach:s,offset:n}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i};const o=P(t),r=P(e);for(const[a,[l,h,u,d]]of Object.entries(wt))o[u]=o[h]=r[u]+Hs(s.target[a],d,r[l])-Hs(s.element[a],d,o[l])+ +n[a],o[d]=o[u]+o[l];return o}function Hs(t,e,i){return t==="center"?i/2:t===e?i:0}function Ls(t,e,i){const s=zs(t,e,i),n=P(e);let{flip:o,attach:{element:r,target:a},offset:l,boundary:h,viewport:u,viewportOffset:d}=i,f=lt(t);h===e&&(f=f.filter(v=>v!==h));const[m]=f;f.push(u);const k={...s};for(const[v,[J,G,q,ht]]of Object.entries(wt)){if(o!==!0&&!g(o,G))continue;const Un=!Ws(s,n,v)&&Ws(s,n,1-v);u=Fs(...f.filter(Boolean).map(dt)),d&&(u[q]+=d,u[ht]-=d),h&&!Un&&s[J]<=P(h)[J]&&(u=Fs(u,P(h)));const to=s[q]>=u[q],eo=s[ht]<=u[ht];if(to&&eo)continue;let pe;if(Un){if(r[v]===ht&&to||r[v]===q&&eo)continue;if(pe=(r[v]===q?-s[J]:r[v]===ht?s[J]:0)+(a[v]===q?n[J]:a[v]===ht?-n[J]:0)-l[v]*2,!Xi({...s,[q]:s[q]+pe,[ht]:s[ht]+pe},m,v)){if(Xi(s,m,v))continue;if(i.recursion)return!1;if(o===!0||g(o,wt[1-v][1])){const rs=Ls(t,e,{...i,attach:{element:r.map(js).reverse(),target:a.map(js).reverse()},offset:l.reverse(),flip:o===!0?o:[...o,wt[1-v][1]],recursion:!0});if(rs&&Xi(rs,m,1-v))return rs}}}else pe=U(U(s[q],u[q],u[ht]-s[J]),n[q]-s[J]+l[v],n[ht]-l[v])-s[q];k[q]=s[G]=s[q]+pe,k[ht]+=pe}return k}function Fs(){let t={};for(var e=arguments.length,i=new Array(e),s=0;s<e;s++)i[s]=arguments[s];for(const n of i)for(const[,,o,r]of wt)t[o]=Math.max(t[o]||0,n[o]),t[r]=Math.min(...[t[r],n[r]].filter(Boolean));return t}function Xi(t,e,i){const s=dt(e),[n,,o,r]=wt[i];return s[o]-=e["scroll"+yt(o)],s[r]=s[o]+e["scroll"+yt(n)],t[o]>=s[o]&&t[r]<=s[r]}function Ws(t,e,i){const[,,s,n]=wt[i];return t[n]>e[s]&&e[n]>t[s]}function js(t){for(let e=0;e<wt.length;e++){const i=wt[e].indexOf(t);if(~i)return wt[1-e][i%2+2]}}var zo=Object.freeze({__proto__:null,ajax:ps,getImage:gs,transition:ws,Transition:C,animate:Di,Animation:ft,attr:S,hasAttr:zt,removeAttr:xe,data:rt,addClass:x,removeClass:_,removeClasses:Mi,replaceClass:Bi,hasClass:I,toggleClass:L,dimensions:$,offset:P,position:Ve,offsetPosition:Ft,height:K,width:Ie,boxModelAdjust:ne,flipPosition:Ye,toPx:Z,ready:zi,isTag:gt,empty:xs,html:_t,prepend:Io,append:R,before:Hi,after:Ge,remove:ct,wrapAll:Je,wrapInner:ys,unwrap:Ke,fragment:Wt,apply:mt,$:w,$$:M,inBrowser:jt,isRtl:X,hasTouch:Rt,pointerDown:ut,pointerMove:re,pointerUp:vt,pointerEnter:qt,pointerLeave:ae,pointerCancel:le,on:T,off:ee,once:D,trigger:p,createEvent:Ht,toEventTargets:_i,isTouch:Ct,getEventPos:ie,fastdom:z,isVoidElement:Ci,isVisible:W,selInput:ye,isInput:Ii,selFocusable:Re,isFocusable:qe,parent:E,filter:$e,matches:H,closest:at,within:B,parents:ke,children:N,index:te,hasOwn:Ot,hyphenate:Mt,camelize:Xt,ucfirst:yt,startsWith:st,endsWith:Jt,includes:g,findIndex:$t,isArray:nt,toArray:bi,assign:kt,isFunction:pt,isObject:Pt,isPlainObject:At,isWindow:Bt,isDocument:ve,isNode:xi,isElement:Kt,isBoolean:He,isString:O,isNumber:Zt,isNumeric:Nt,isEmpty:we,isUndefined:V,toBoolean:$i,toNumber:Et,toFloat:b,toNode:j,toNodes:y,toWindow:Dt,isEqual:be,swap:ki,last:Qt,each:St,sortBy:Le,uniqueBy:ls,clamp:U,noop:A,intersectRect:Si,pointInRect:Fe,Dimensions:We,getIndex:Ut,memoize:ot,Deferred:je,MouseTracker:Wi,observeIntersection:he,observeResize:Ze,observeMutation:Cs,mergeOptions:ce,parseOptions:Ae,play:As,pause:Es,mute:_s,isVideo:Os,positionAt:Ds,query:Tt,queryAll:Se,find:Pi,findAll:Te,escape:Ai,css:c,getCssVar:se,propName:Oi,isInView:ti,scrollTop:Vt,scrollIntoView:Vi,scrolledOver:Yi,scrollParents:lt,offsetViewport:dt});function Ho(t){const e=t.data;t.use=function(n){if(!n.installed)return n.call(null,this),n.installed=!0,this},t.mixin=function(n,o){o=(O(o)?t.component(o):o)||this,o.options=ce(o.options,n)},t.extend=function(n){n=n||{};const o=this,r=function(l){this._init(l)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=ce(o.options,n),r.super=o,r.extend=o.extend,r},t.update=function(n,o){n=n?j(n):document.body;for(const r of ke(n).reverse())s(r[e],o);mt(n,r=>s(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(n){i=w(n)}});function s(n,o){if(!!n)for(const r in n)n[r]._connected&&n[r]._callUpdate(o)}}function Lo(t){t.prototype._callHook=function(s){var n;(n=this.$options[s])==null||n.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computed={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(s){s===void 0&&(s="update"),this._connected&&((s==="update"||s==="resize")&&this._callWatches(),this.$options.update&&(this._updates||(this._updates=new Set,z.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(s.type||s)))},t.prototype._callWatches=function(){if(this._watch)return;const s=!Ot(this,"_watch");this._watch=z.read(()=>{this._connected&&i.call(this,s),this._watch=null})};function e(s){for(const{read:n,write:o,events:r=[]}of this.$options.update){if(!s.has("update")&&!r.some(l=>s.has(l)))continue;let a;n&&(a=n.call(this,this._data,s),a&&At(a)&&kt(this._data,a)),o&&a!==!1&&z.write(()=>o.call(this,this._data,s))}}function i(s){const{$options:{computed:n}}=this,o={...this._computed};this._computed={};for(const r in n){const{watch:a,immediate:l}=n[r];a&&(s&&l||Ot(o,r)&&!be(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function Fo(t){let e=0;t.prototype._init=function(i){i=i||{},i.data=qo(i,this.constructor.options),this.$options=ce(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 s in i)this.$props[s]=this[s]=i[s]},t.prototype._initMethods=function(){const{methods:i}=this.$options;if(i)for(const s in i)this[s]=i[s].bind(this)},t.prototype._initComputeds=function(){const{computed:i}=this.$options;if(this._computed={},i)for(const s in i)Wo(this,s,i[s])},t.prototype._initProps=function(i){let s;i=i||Rs(this.$options,this.$name);for(s in i)V(i[s])||(this.$props[s]=i[s]);const n=[this.$options.computed,this.$options.methods];for(s in this.$props)s in i&&jo(n,s)&&(this[s]=this.$props[s])},t.prototype._initEvents=function(){this._events=[];for(const i of this.$options.events||[])if(Ot(i,"handler"))ei(this,i);else for(const s in i)ei(this,i[s],s)},t.prototype._unbindEvents=function(){this._events.forEach(i=>i()),delete this._events},t.prototype._initObservers=function(){this._observers=[Yo(this)],this.$options.computed&&this.registerObserver(Vo(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 Rs(t,e){const i={},{args:s=[],props:n={},el:o}=t;if(!n)return i;for(const a in n){const l=Mt(a);let h=rt(o,l);V(h)||(h=n[a]===Boolean&&h===""?!0:Ji(n[a],h),!(l==="target"&&(!h||st(h,"_")))&&(i[a]=h))}const r=Ae(rt(o,e),s);for(const a in r){const l=Xt(a);n[l]!==void 0&&(i[l]=Ji(n[l],r[a]))}return i}function Wo(t,e,i){Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:s,$props:n,$el:o}=t;return Ot(s,e)||(s[e]=(i.get||i).call(t,n,o)),s[e]},set(s){const{_computed:n}=t;n[e]=i.set?i.set.call(t,s):s,V(n[e])&&delete n[e]}})}function ei(t,e,i){At(e)||(e={name:i,handler:e});let{name:s,el:n,handler:o,capture:r,passive:a,delegate:l,filter:h,self:u}=e;if(n=pt(n)?n.call(t):n||t.$el,nt(n)){n.forEach(d=>ei(t,{...e,el:d},i));return}!n||h&&!h.call(t)||t._events.push(T(n,s,l?O(l)?l:l.call(t):null,O(o)?t[o]:o.bind(t),{passive:a,capture:r,self:u}))}function jo(t,e){return t.every(i=>!i||!Ot(i,e))}function Ji(t,e){return t===Boolean?$i(e):t===Number?Et(e):t==="list"?Ro(e):t?t(e):e}function Ro(t){return nt(t)?t:O(t)?t.split(/,(?![^(]*\))/).map(e=>Nt(e)?Et(e):$i(e.trim())):[t]}function qo(t,e){let{data:i={}}=t,{args:s=[],props:n={}}=e;nt(i)&&(i=i.slice(0,s.length).reduce((o,r,a)=>(At(r)?kt(o,r):o[s[a]]=r,o),{}));for(const o in i)V(i[o])?delete i[o]:n[o]&&(i[o]=Ji(n[o],i[o]));return i}function Vo(t){const{el:e}=t.$options,i=new MutationObserver(()=>t.$emit());return i.observe(e,{childList:!0,subtree:!0}),i}function Yo(t){const{$name:e,$options:i,$props:s}=t,{attrs:n,props:o,el:r}=i;if(!o||n===!1)return;const a=nt(n)?n:Object.keys(o),l=a.map(u=>Mt(u)).concat(e),h=new MutationObserver(u=>{const d=Rs(i,e);u.some(f=>{let{attributeName:m}=f;const k=m.replace("data-","");return(k===e?a:[Xt(k),Xt(m)]).some(v=>!V(d[v])&&d[v]!==s[v])})&&t.$reset()});return h.observe(r,{attributes:!0,attributeFilter:l.concat(l.map(u=>"data-"+u))}),h}function Go(t){const e=t.data;t.prototype.$create=function(s,n,o){return t[s](n,o)},t.prototype.$mount=function(s){const{name:n}=this.$options;s[e]||(s[e]={}),!s[e][n]&&(s[e][n]=this,this.$el=this.$options.el=this.$options.el||s,B(s,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(s){s===void 0&&(s=!1);const{el:n,name:o}=this.$options;n&&this._callDisconnected(),this._callHook("destroy"),n!=null&&n[e]&&(delete n[e][o],we(n[e])||delete n[e],s&&ct(this.$el))},t.prototype.$emit=function(s){this._callUpdate(s)},t.prototype.$update=function(s,n){s===void 0&&(s=this.$el),t.update(s,n)},t.prototype.$getComponent=t.getComponent;const i=ot(s=>t.prefix+Mt(s));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function Xo(t){const e=t.data,i={};t.component=function(s,n){const o=Mt(s);if(s=Xt(o),!n)return At(i[s])&&(i[s]=t.extend(i[s])),i[s];t[s]=function(a,l){const h=t.component(s);return h.options.functional?new h({data:At(a)?a:[...arguments]}):a?M(a).map(u)[0]:u();function u(d){const f=t.getComponent(d,s);if(f)if(l)f.$destroy();else return f;return new h({el:d,data:l})}};const r=At(n)?{...n}:n.options;return r.name=s,r.install==null||r.install(t,r,s),t._initialized&&!r.functional&&z.read(()=>t[s]("[uk-"+o+"],[data-uk-"+o+"]")),i[s]=At(n)?r:n},t.getComponents=s=>(s==null?void 0:s[e])||{},t.getComponent=(s,n)=>t.getComponents(s)[n],t.connect=s=>{if(s[e])for(const n in s[e])s[e][n]._callConnected();for(const n of s.attributes){const o=qs(n.name);o&&o in i&&t[o](s)}},t.disconnect=s=>{for(const n in s[e])s[e][n]._callDisconnected()}}const qs=ot(t=>st(t,"uk-")||st(t,"data-uk-")?Xt(t.replace("data-uk-","").replace("uk-","")):!1),et=function(t){this._init(t)};et.util=zo,et.data="__uikit__",et.prefix="uk-",et.options={},et.version="3.14.4-dev.cd89debeb",Ho(et),Lo(et),Fo(et),Xo(et),Go(et);function Jo(t){const{connect:e,disconnect:i}=t;if(!jt||!window.MutationObserver)return;z.read(function(){document.body&&mt(document.body,e),new MutationObserver(o=>o.forEach(s)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(n)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function s(o){let{addedNodes:r,removedNodes:a}=o;for(const l of r)mt(l,e);for(const l of a)mt(l,i)}function n(o){var r;let{target:a,attributeName:l}=o;const h=qs(l);if(!(!h||!(h in t))){if(zt(a,l)){t[h](a);return}(r=t.getComponent(a,h))==null||r.$destroy()}}}var it={connected(){!I(this.$el,this.$name)&&x(this.$el,this.$name)}},Ee={methods:{lazyload(t,e){t===void 0&&(t=this.$el),e===void 0&&(e=this.$el),this.registerObserver(he(t,(i,s)=>{for(const n of y(pt(e)?e():e))M('[loading="lazy"]',n).forEach(o=>xe(o,"loading"));for(const n of i.filter(o=>{let{isIntersecting:r}=o;return r}).map(o=>{let{target:r}=o;return r}))s.unobserve(n)}))}}},It={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",maxHeight:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:"",boxShadow:""},hideProps:{overflow:"hidden",maxHeight:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0,boxShadow:"none"}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return st(e[0],"slide")}},methods:{toggleElement(t,e,i){return new Promise(s=>Promise.all(y(t).map(n=>{const o=He(e)?e:!this.isToggled(n);if(!p(n,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(pt(i)?i:i===!1||!this.hasAnimation?Ko(this):this.hasTransition?Zo(this):Qo(this))(n,o),a=o?this.clsEnter:this.clsLeave;x(n,a),p(n,o?"show":"hide",[this]);const l=()=>{_(n,a),p(n,o?"shown":"hidden",[this]),this.$update(n)};return r?r.then(l,()=>(_(n,a),Promise.reject())):l()})).then(s,A))},isToggled(t){return t===void 0&&(t=this.$el),[t]=y(t),I(t,this.clsEnter)?!0:I(t,this.clsLeave)?!1:this.cls?I(t,this.cls.split(" ")[0]):W(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=g(this.cls," ")||e!==I(t,this.cls),i&&L(t,this.cls,g(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),M("[autofocus]",t).some(s=>W(s)?s.focus()||!0:s.blur()),i&&(p(t,"toggled",[e,this]),this.$update(t))}}};function Ko(t){let{_toggle:e}=t;return(i,s)=>(ft.cancel(i),C.cancel(i),e(i,s))}function Zo(t){switch(t.animation[0]){case"slide-left":return Ys(t);case"slide-right":return Ys(t,!0)}return Vs(t)}function Vs(t){let{isToggled:e,duration:i,velocity:s,initProps:n,hideProps:o,transition:r,_toggle:a}=t;return(l,h)=>{const u=C.inProgress(l),d=!u&&l.hasChildNodes()?b(c(l.firstElementChild,"marginTop"))+b(c(l.lastElementChild,"marginBottom")):0,f=W(l)?b(c(l,"height"))+d:0,m=u?c(l,Object.keys(n)):h?o:n;C.cancel(l),e(l)||a(l,!0),c(l,"maxHeight",""),z.flush();const k=b(c(l,"height"))+d;return i=s*k+i,c(l,{...m,maxHeight:f}),(h?C.start(l,{...n,overflow:"hidden",maxHeight:k},i*(1-f/k),r):C.start(l,o,i*(f/k),r).then(()=>a(l,!1))).then(()=>c(l,n))}}function Ys(t,e){let{isToggled:i,duration:s,velocity:n,transition:o,_toggle:r}=t;return(a,l)=>{const h=W(a),u=b(c(a,"marginLeft"));C.cancel(a);const[d]=lt(a);c(d,"overflowX","hidden"),i(a)||r(a,!0);const f=b(c(a,"width"));s=n*f+s;const m=h?(f+u*(e?-1:1))/f*100:0,k=P(a),v=e?k.right<d.clientWidth:Math.round(k.left)>0;return c(a,{clipPath:v?e?"polygon(0 0,"+m+"% 0,"+m+"% 100%,0 100%)":"polygon("+(100-m)+"% 0,100% 0,100% 100%,"+(100-m)+"% 100%)":"",marginLeft:(100-m)*(e?1:-1)/100*f}),(l?C.start(a,{clipPath:v?"polygon(0 0,100% 0,100% 100%,0 100%)":"",marginLeft:0},s*(1-m/100),o):C.start(a,{clipPath:v?e?"polygon(0 0,0 0,0 100%,0 100%)":"polygon(100% 0,100% 0,100% 100%,100% 100%)":"",marginLeft:(e?1:-1)*f},s*(m/100),o).then(()=>r(a,!1))).then(()=>{c(d,"overflowX",""),c(a,{clipPath:"",marginLeft:""})})}}function Qo(t){return(e,i)=>{ft.cancel(e);const{animation:s,duration:n,_toggle:o}=t;return i?(o(e,!0),ft.in(e,s[0],n,t.origin)):ft.out(e,s[1]||s[0],n,t.origin).then(()=>o(e,!1))}}var Gs={mixins:[it,Ee,It],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:["slide"],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return M(i,e)},watch(t,e){if(e||I(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))},contents:{get(t){let{content:e}=t;return this.items.map(i=>w(e,i))},watch(t){for(const e of t)ii(e,!I(this.items.find(i=>i.contains(e)),this.clsOpen))},immediate:!0}},connected(){this.lazyload()},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(te(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[Ut(t,this.items)]];const s=$e(this.items,"."+this.clsOpen);if(!this.multiple&&!g(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&!$e(i,":not(."+this.clsOpen+")").length))for(const n of i)this.toggleElement(n,!I(n,this.clsOpen),async(o,r)=>{L(o,this.clsOpen,r),S(w(this.$props.toggle,o),"aria-expanded",r);const a=w((o._wrapper?"> * ":"")+this.content,o);if(e===!1||!this.hasTransition){ii(a,!r);return}if(o._wrapper||(o._wrapper=Je(a,"<div"+(r?" hidden":"")+">")),ii(a,!1),await Vs(this)(o._wrapper,r),ii(a,!r),delete o._wrapper,Ke(a),r){const l=w(this.$props.toggle,o);z.read(()=>{ti(l)||Vi(l,{offset:this.offset})})}})}}};function ii(t,e){t&&(t.hidden=e)}var Uo={mixins:[it,It],args:"animation",props:{close:String},data:{animation:["slide"],selClose:".uk-alert-close",duration:150,hideProps:{opacity:0,...It.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)}}},Xs={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},connected(){this.inView=this.autoplay==="inview",this.inView&&!zt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&_s(this.$el),this.registerObserver(he(this.$el,()=>this.$emit(),{},!1))},update:{read(){return Os(this.$el)?{visible:W(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&ti(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Es(this.$el):(this.autoplay===!0||this.inView&&i)&&As(this.$el)}}},bt={connected(){var t;this.registerObserver(Ze(((t=this.$options.resizeTargets)==null?void 0:t.call(this))||this.$el,()=>this.$emit("resize")))}},tr={mixins:[bt,Xs],props:{width:Number,height:Number},data:{automute:!0},events:{"load loadedmetadata"(){this.$emit("resize")}},resizeTargets(){return[this.$el,E(this.$el)]},update:{read(){const{ratio:t,cover:e}=We,{$el:i,width:s,height:n}=this;let o={width:s,height:n};if(!o.width||!o.height){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};o.width?o=t(h,"width",o.width):n?o=t(h,"height",o.height):o=h}const{offsetHeight:r,offsetWidth:a}=er(i)||E(i),l=e(o,{width:a+(a%2?1:0),height:r+(r%2?1:0)});return!l.width||!l.height?!1:l},write(t){let{height:e,width:i}=t;c(this.$el,{height:e,width:i})},events:["resize"]}};function er(t){for(;t=E(t);)if(c(t,"position")!=="static")return t}var ue={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&w(e)}}},Js={props:{pos:String,offset:null,flip:Boolean},data:{pos:"bottom-"+(X?"right":"left"),flip:!0,offset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=g(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let s=[this.getPositionOffset(t),this.getShiftOffset(t)];const n={element:[Ye(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const r in n)n[r]=n[r].reverse();s=s.reverse()}const o=$(t);c(t,{top:-o.height,left:-o.width}),Ds(t,e,{attach:n,offset:s,boundary:i,flip:this.flip,viewportOffset:this.getViewportOffset(t)})},getPositionOffset(t){return Z(this.offset===!1?se("position-offset",t):this.offset,this.axis==="x"?"width":"height",t)*(g(["left","top"],this.dir)?-1:1)},getShiftOffset(t){return g(["center","justify","stretch"],this.align)?0:Z(se("position-shift-offset",t),this.axis==="y"?"width":"height",t)*(g(["left","top"],this.align)?1:-1)},getViewportOffset(t){return Z(se("position-viewport-offset",t))}}};const tt=[];var Ki={mixins:[it,ue,It],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(){g(tt,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(tt,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(g(tt,this))return!1;!this.stack&&tt.length?(Promise.all(tt.map(e=>e.hide())).then(this.show),t.preventDefault()):tt.push(this)}},{name:"show",self:!0,handler(){D(this.$el,"hide",T(document,"focusin",t=>{Qt(tt)===this&&!B(t.target,this.$el)&&this.$el.focus()})),this.overlay&&(D(this.$el,"hide",Zs(this.$el)),D(this.$el,"hide",Qs())),this.stack&&c(this.$el,"zIndex",b(c(this.$el,"zIndex"))+tt.length),x(document.documentElement,this.clsPage),this.bgClose&&D(this.$el,"hide",T(document,ut,t=>{let{target:e}=t;Qt(tt)!==this||this.overlay&&!B(e,this.$el)||B(e,this.panel)||D(document,vt+" "+le+" scroll",i=>{let{defaultPrevented:s,type:n,target:o}=i;!s&&n===vt&&e===o&&this.hide()},!0)}),{self:!0}),this.escClose&&D(this.$el,"hide",T(document,"keydown",t=>{t.keyCode===27&&Qt(tt)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){qe(this.$el)||S(this.$el,"tabindex","-1"),w(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){g(tt,this)&&tt.splice(tt.indexOf(this),1),tt.length||c(document.body,"overflowY",""),c(this.$el,"zIndex",""),tt.some(t=>t.clsPage===this.clsPage)||_(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&E(this.$el)!==this.container?(R(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Ks(this))},hide(){return this.toggleElement(this.$el,!1,Ks(this))}}};function Ks(t){let{transitionElement:e,_toggle:i}=t;return(s,n)=>new Promise((o,r)=>D(s,"show hide",()=>{s._reject==null||s._reject(),s._reject=r,i(s,n);const a=D(e,"transitionstart",()=>{D(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},ir(c(e,"transitionDuration")))})).then(()=>delete s._reject)}function ir(t){return t?Jt(t,"ms")?b(t):b(t)*1e3:0}function Zs(t){if(CSS.supports("overscroll-behavior","contain")){const s=sr(t,n=>/auto|scroll/.test(c(n,"overflow")));return c(s,"overscrollBehavior","contain"),()=>c(s,"overscrollBehavior","")}let e;const i=[T(t,"touchstart",s=>{let{targetTouches:n}=s;n.length===1&&(e=n[0].clientY)},{passive:!0}),T(t,"touchmove",s=>{if(s.targetTouches.length!==1)return;let[n]=lt(s.target,/auto|scroll/);B(n,t)||(n=t);const o=s.targetTouches[0].clientY-e,{scrollTop:r,scrollHeight:a,clientHeight:l}=n;(l>=a||r===0&&o>0||a-r<=l&&o<0)&&s.cancelable&&s.preventDefault()},{passive:!1})];return()=>i.forEach(s=>s())}function Qs(){const{body:t,documentElement:e}=document;return c(t,{overflowY:Ie(window)>e.clientWidth?"scroll":"",touchAction:"none"}),c(e,"overflowY","hidden"),()=>{c(e,"overflowY",""),c(t,{overflowY:"",touchAction:""})}}function sr(t,e){const i=[];return mt(t,s=>{e(s)&&i.push(s)}),i}let Y;var Us={mixins:[ue,Ee,Js,It],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,display:String,clsDrop:String,animateOut:Boolean,bgScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,display:null,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1,animateOut:!1,bgScroll:!0},created(){this.tracker=new Wi},beforeConnect(){this.clsDrop=this.$props.clsDrop||"uk-"+this.$options.name},connected(){x(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",Tt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,S(this.target,"aria-haspopup",!0),this.lazyload(this.target))},disconnected(){this.isActive()&&(Y=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&&!B(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),H(this.$el,":focus,:hover")||this.hide()}},{name:qt+" focusin",filter(){return g(this.mode,"hover")},handler(t){Ct(t)||this.clearTimers()}},{name:ae+" focusout",filter(){return g(this.mode,"hover")},handler(t){!Ct(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){Y=this,this.tracker.init();for(const t of[T(document,ut,e=>{let{target:i}=e;return!B(i,this.$el)&&D(document,vt+" "+le+" scroll",s=>{let{defaultPrevented:n,type:o,target:r}=s;!n&&o===vt&&i===r&&!(this.target&&B(i,this.target))&&this.hide(!1)},!0)}),T(document,"keydown",e=>{e.keyCode===27&&this.hide(!1)}),...this.bgScroll?[]:[Zs(this.$el),Qs()],...this.display==="static"&&this.align!=="stretch"?[]:(()=>{const e=()=>this.$emit();return[T(window,"resize",e),T(document,"scroll",e,!0),(()=>{const i=Ze(lt(this.$el),e);return()=>i.disconnect()})()]})()])D(this.$el,"hide",t,{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){Y=Y===null&&B(e,this.$el)&&this.isToggled()?this:Y;return}Y=this.isActive()?null:Y,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!I(this.$el,this.clsEnter)&&this.position()}},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1,!1),this.target=t,this.clearTimers(),!this.isActive()){if(Y){if(e&&Y.isDelaying){this.showTimer=setTimeout(()=>H(t,":hover")&&this.show(),10);return}let i;for(;Y&&i!==Y&&!B(this.$el,Y.$el);)i=Y,Y.hide(!1,!1)}this.container&&E(this.$el)!==this.container&&R(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t,e){t===void 0&&(t=!0),e===void 0&&(e=!0);const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelaying=nr(this.$el).some(s=>this.tracker.movesTo(s)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return Y===this},position(){_(this.$el,this.clsDrop+"-stack"),L(this.$el,this.clsDrop+"-boundary",this.boundaryAlign),L(this.$el,this.clsDrop+"-stretch",this.align==="stretch");const t=Tt(this.boundary,this.$el),e=t&&this.boundaryAlign?t:this.target,[i]=lt(t&&this.boundaryAlign?t:this.$el),s=P(i),n=t?P(t):s,o=this.getViewportOffset(this.$el);c(this.$el,"maxWidth","");const r=s.width-2*o;if(this.align==="justify"){const a=this.axis==="y"?"width":"height";c(this.$el,a,Math.min((t?n:P(this.target))[a],s[a]-2*o))}else if(this.align==="stretch"){this.flip=this.axis==="y"?"x":"y",this.display="static";const a=dt(i),l=P(e),h=Math.abs(this.getPositionOffset(this.$el))+o;c(this.$el,{width:this.axis==="y"?a.width:(this.dir==="left"?l.left-a.left:a.right-l.right)-h,height:this.axis==="x"?a.height:(this.dir==="top"?l.top-a.top:a.bottom-l.bottom)-h})}else this.$el.offsetWidth>r&&x(this.$el,this.clsDrop+"-stack");c(this.$el,"maxWidth",r),this.positionAt(this.$el,e,t)}}};function nr(t){const e=[];return mt(t,i=>c(i,"position")!=="static"&&e.push(i)),e}var or={mixins:[it],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return w(ye,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&E(this.input)===e&&this.input.nextElementSibling||w(i,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let s;const n=Ii(e)?"value":"textContent",o=e[n],r=(t=i.files)!=null&&t[0]?i.files[0].name:H(i,"select")&&(s=M("option",i).filter(a=>a.selected)[0])?s.textContent:i.value;o!==r&&(e[n]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return at(this.$el,"form")},handler(){this.$emit()}}]},tn={mixins:[bt],props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},resizeTargets(){return[this.$el,...bi(this.$el.children)]},connected(){this.registerObserver(Cs(this.$el,()=>this.$reset(),{childList:!0}))},update:{read(){const t=Zi(this.$el.children);return{rows:t,columns:rr(t)}},write(t){let{columns:e,rows:i}=t;for(const s of i)for(const n of s)L(n,this.margin,i[0]!==s),L(n,this.firstColumn,e[0].includes(n))},events:["resize"]}};function Zi(t){return en(t,"top","bottom")}function rr(t){const e=[];for(const i of t){const s=en(i,"left","right");for(let n=0;n<s.length;n++)e[n]=e[n]?e[n].concat(s[n]):s[n]}return X?e.reverse():e}function en(t,e,i){const s=[[]];for(const n of t){if(!W(n))continue;let o=si(n);for(let r=s.length-1;r>=0;r--){const a=s[r];if(!a[0]){a.push(n);break}let l;if(a[0].offsetParent===n.offsetParent?l=si(a[0]):(o=si(n,!0),l=si(a[0],!0)),o[e]>=l[i]-1&&o[e]!==l[e]){s.push([n]);break}if(o[i]-1>l[e]||o[e]===l[e]){a.push(n);break}if(r===0){s.unshift([n]);break}}}return s}function si(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:o}=t;return e&&([i,s]=Ft(t)),{top:i,left:s,bottom:i+n,right:s+o}}var _e={connected(){ar(this._uid,()=>this.$emit("scroll"))},disconnected(){lr(this._uid)}};const ni=new Map;let Oe;function ar(t,e){Oe=Oe||T(window,"scroll",()=>ni.forEach(i=>i()),{passive:!0,capture:!0}),ni.set(t,e)}function lr(t){ni.delete(t),Oe&&!ni.size&&(Oe(),Oe=null)}var hr={extends:tn,mixins:[it,_e],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&x(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;L(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||sn(this.$el))return t.translates=!1,!1;let s=!1;const n=N(this.$el),o=dr(e),r=ur(n,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(h=>Le(h,"offsetTop")),s=cr(i,e));let l=Math.abs(this.parallax);return l&&(l=o.reduce((h,u,d)=>Math.max(h,u+r+(d%2?l:l/8)-a),0)),{padding:l,columns:e,translates:s,height:s?a:""}},write(t){let{height:e,padding:i}=t;c(this.$el,"paddingBottom",i||""),e!==!1&&c(this.$el,"height",e)},events:["resize"]},{read(){return this.parallax&&sn(this.$el)?!1:{scrolled:this.parallax?Yi(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:s}=t;i===!1&&!s||e.forEach((n,o)=>n.forEach((r,a)=>c(r,"transform",!i&&!s?"":"translateY("+((s&&-s[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function sn(t){return N(t).some(e=>c(e,"position")==="absolute")}function cr(t,e){const i=t.map(s=>Math.max(...s.map(n=>n.offsetHeight)));return e.map(s=>{let n=0;return s.map((o,r)=>n+=r?i[r-1]-s[r-1].offsetHeight:0)})}function ur(t,e){const[i]=t.filter(s=>I(s,e));return b(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}function dr(t){return t.map(e=>e.reduce((i,s)=>i+s.offsetHeight,0))}var fr={mixins:[bt],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:{get(t,e){let{target:i}=t;return M(i,e)},watch(){this.$reset()}}},resizeTargets(){return[this.$el,...this.elements]},update:{read(){return{rows:(this.row?Zi(this.elements):[this.elements]).map(pr)}},write(t){let{rows:e}=t;for(const{heights:i,elements:s}of e)s.forEach((n,o)=>c(n,"minHeight",i[o]))},events:["resize"]}};function pr(t){if(t.length<2)return{heights:[""],elements:t};c(t,"minHeight","");let e=t.map(gr);const i=Math.max(...e);return{heights:t.map((s,n)=>e[n].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function gr(t){let e=!1;W(t)||(e=t.style.display,c(t,"display","block","important"));const i=$(t).height-ne(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var mr={mixins:[bt],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},resizeTargets(){return[this.$el,...lt(this.$el,/auto|scroll/)]},update:{read(t){let{minHeight:e}=t;if(!W(this.$el))return!1;let i="";const s=ne(this.$el,"height","content-box"),[n]=lt(this.$el,/auto|scroll/),{height:o}=dt(n);if(this.expand)i=Math.max(o-($(n).height-$(this.$el).height)-s,0);else{if(i="calc("+(document.scrollingElement===n?"100vh":o+"px"),this.offsetTop){const r=Ft(this.$el)[0]-Ft(n)[0];i+=r>0&&r<o/2?" - "+r+"px":""}this.offsetBottom===!0?i+=" - "+$(this.$el.nextElementSibling).height+"px":Nt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&Jt(this.offsetBottom,"px")?i+=" - "+b(this.offsetBottom)+"px":O(this.offsetBottom)&&(i+=" - "+$(Tt(this.offsetBottom,this.$el)).height+"px"),i+=(s?" - "+s+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e}=t;c(this.$el,{minHeight:e}),this.minHeight&&b(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},nn={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=xr(t,this.$el);return this.svgEl&&e!==this.svgEl&&ct(this.svgEl),this.applyAttributes(e,t),this.svgEl=e}},A),this.strokeAnimation&&this.svg.then(t=>{this._connected&&(rn(t),this.registerObserver(he(t,(e,i)=>{rn(t),i.disconnect()})))})},disconnected(){this.svg.then(t=>{this._connected||(Ci(this.$el)&&(this.$el.hidden=!1),ct(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){return gt(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>D(this.$el,"load",()=>t(this.getSvg()))):wr(await vr(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&&S(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);S(t,r,a)}this.id||xe(t,"id");const i=["width","height"];let s=i.map(o=>this[o]);s.some(o=>o)||(s=i.map(o=>S(e,o)));const n=S(e,"viewBox");n&&!s.some(o=>o)&&(s=n.split(" ").slice(2)),s.forEach((o,r)=>S(t,i[r],b(o)*this.ratio||null))}}};const vr=ot(async t=>t?st(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function wr(t,e){var i;return e&&g(t,"<symbol")&&(t=br(t,e)||t),t=w(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const on=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,oi={};function br(t,e){if(!oi[t]){oi[t]={},on.lastIndex=0;let i;for(;i=on.exec(t);)oi[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return oi[t][e]}function rn(t){const e=an(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function an(t){return Math.ceil(Math.max(0,...M("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function xr(t,e){if(Ci(e)||gt(e,"canvas")){e.hidden=!0;const s=e.nextElementSibling;return ln(t,s)?s:Ge(e,t)}const i=e.lastElementChild;return ln(t,i)?i:R(e,t)}function ln(t,e){return gt(t,"svg")&>(e,"svg")&&hn(t)===hn(e)}function hn(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var yr='<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>',$r='<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>',kr='<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>',Sr='<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>',Tr='<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>',Cr='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Ir='<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>',Pr='<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>',Ar='<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>',Er='<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>',_r='<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>',Or='<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>',Mr='<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>',Br='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',Nr='<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>',Dr='<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 ri={spinner:Nr,totop:Dr,marker:kr,"close-icon":yr,"close-large":$r,"navbar-toggle-icon":Sr,"overlay-icon":Tr,"pagination-next":Cr,"pagination-previous":Ir,"search-icon":Pr,"search-large":Ar,"search-navbar":Er,"slidenav-next":_r,"slidenav-next-large":Or,"slidenav-previous":Mr,"slidenav-previous-large":Br},Qi={install:Fr,extends:nn,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){x(this.$el,"uk-icon")},methods:{async getSvg(){const t=Wr(this.icon);if(!t)throw"Icon not found.";return t}}},xt={args:!1,extends:Qi,data:t=>({icon:Mt(t.constructor.options.name)}),beforeConnect(){x(this.$el,this.$name)}},cn={extends:xt,beforeConnect(){x(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=I(this.$el,"uk-slidenav-large")?t+"-large":t}},zr={extends:xt,beforeConnect(){this.icon=I(this.$el,"uk-search-icon")&&ke(this.$el,".uk-search-large").length?"search-large":ke(this.$el,".uk-search-navbar").length?"search-navbar":this.$props.icon}},Hr={extends:xt,beforeConnect(){this.icon="close-"+(I(this.$el,"uk-close-large")?"large":"icon")}},Lr={extends:xt,methods:{async getSvg(){const t=await Qi.methods.getSvg.call(this);return this.ratio!==1&&c(w("circle",t),"strokeWidth",1/this.ratio),t}}},ai={};function Fr(t){t.icon.add=(e,i)=>{const s=O(e)?{[e]:i}:e;St(s,(n,o)=>{ri[o]=n,delete ai[o]}),t._initialized&&mt(document.body,n=>St(t.getComponents(n),o=>{o.$options.isIcon&&o.icon in s&&o.$reset()}))}}function Wr(t){return ri[t]?(ai[t]||(ai[t]=w((ri[jr(t)]||ri[t]).trim())),ai[t].cloneNode(!0)):null}function jr(t){return X?ki(ki(t,"left","right"),"previous","next"):t}const Rr=jt&&"loading"in HTMLImageElement.prototype;var qr={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},connected(){if(this.loading!=="lazy"){this.load();return}const t=[this.$el,...Se(this.$props.target,this.$el)];Rr&&li(this.$el)&&(this.$el.loading="lazy",Ui(this.$el),t.length===1)||(Jr(this.$el),this.registerObserver(he(t,(e,i)=>{this.load(),i.disconnect()},{rootMargin:Z(this.offsetTop,"height")+"px "+Z(this.offsetLeft,"width")+"px"})))},disconnected(){this._data.image&&(this._data.image.onload="")},methods:{load(){if(this._data.image)return this._data.image;const t=li(this.$el)?this.$el:Yr(this.$el,this.dataSrc,this.sources);return xe(t,"loading"),Ui(this.$el,t.currentSrc),this._data.image=t}}};function Ui(t,e){if(li(t)){const i=E(t);(Kr(i)?N(i):[t]).forEach(n=>un(n,n))}else e&&!g(t.style.backgroundImage,e)&&(c(t,"backgroundImage","url("+Ai(e)+")"),p(t,Ht("load",!1)))}const Vr=["data-src","data-srcset","sizes"];function un(t,e){Vr.forEach(i=>{const s=rt(t,i);s&&S(e,i.replace(/^(data-)+/,""),s)})}function Yr(t,e,i){const s=new Image;return Gr(s,i),un(t,s),s.onload=()=>{Ui(t,s.currentSrc)},S(s,"src",e),s}function Gr(t,e){if(e=Xr(e),e.length){const i=Wt("<picture>");for(const s of e){const n=Wt("<source>");S(n,s),R(i,n)}R(i,t)}}function Xr(t){if(!t)return[];if(st(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Ae(t);return nt(t)||(t=[t]),t.filter(e=>!we(e))}function Jr(t){li(t)&&!zt(t,"src")&&S(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function Kr(t){return gt(t,"picture")}function li(t){return gt(t,"img")}var hi={props:{media:Boolean},data:{media:!1},connected(){const t=Zr(this.media);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,p(this.$el,Ht("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=T(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function Zr(t){if(O(t)){if(st(t,"@")){const e="breakpoint-"+t.substr(1);t=b(se(e))}else if(isNaN(t))return t}return t&&Nt(t)?"(min-width: "+t+"px)":""}var Qr={mixins:[it,hi,bt],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||se("leader-fill-content")}},connected(){[this.wrapper]=ys(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Ke(this.wrapper.childNodes)},update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write(t){let{width:e,fill:i,hide:s}=t;L(this.wrapper,this.clsHide,s),S(this.wrapper,this.attrFill,new Array(e).join(i))},events:["resize"]}},Ur={install:ta,mixins:[Ki],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(){I(this.panel,"uk-margin-auto-vertical")?x(this.$el,"uk-flex"):c(this.$el,"display","block"),K(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),_(this.$el,"uk-flex")}}]};function ta(t){let{modal:e}=t;e.dialog=function(s,n){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+s+"</div> </div>",n);return o.show(),T(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(s,n){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(O(s)?s:_t(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},n,o=>o.resolve())},e.confirm=function(s,n){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(O(s)?s:_t(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},n,o=>o.reject())},e.prompt=function(s,n,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(O(s)?s:_t(s))+'</label> <input class="uk-input" value="'+(n||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>w("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(s,n,o,r){n={bgClose:!1,escClose:!0,labels:e.labels,...n};const a=e.dialog(s(n),n),l=new je;let h=!1;return T(a.$el,"submit","form",u=>{u.preventDefault(),l.resolve(r==null?void 0:r(a)),h=!0,a.hide()}),T(a.$el,"hide",()=>!h&&o(l)),l.promise.dialog=a,l.promise}}var ea={extends:Gs,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},ia={mixins:[it,ue],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number},data:{dropdown:".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",align:X?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return Tt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||Tt(e,this.$el)||w("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=w("<div></div>"))):null},watch(t){x(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const s=M("."+i,e);if(this.dropContainer!==e)for(const o of M("."+i,this.dropContainer)){var n;const r=(n=this.getDropdown(o))==null?void 0:n.target;!g(s,o)&&r&&B(r,this.$el)&&s.push(o)}return s},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset})},immediate:!0},toggles:{get(t,e){let{dropdown:i}=t;return M(i,e)},watch(){const t=I(this.$el,"uk-navbar-justify");for(const e of M(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el))c(e,"flexGrow",t?M(this.dropdown,e).length:"")},immediate:!0}},disconnected(){this.dropbar&&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&&!B(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,s=this.getActive();i===Yt.DOWN&&zt(e,"aria-expanded")&&(t.preventDefault(),!s||s.target!==e?(e.click(),D(this.dropContainer,"show",n=>{let{target:o}=n;return fn(o)})):fn(s.$el)),dn(t,this.toggles,s)}},{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 s=this.getActive(),n=M(Re,e),o=$t(n,a=>H(a,":focus"));if(i===Yt.UP&&(t.preventDefault(),o>0&&n[o-1].focus()),i===Yt.DOWN&&(t.preventDefault(),o<n.length-1&&n[o+1].focus()),i===Yt.ESC){var r;s==null||(r=s.target)==null||r.focus()}dn(t,this.toggles,s)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&g(t.mode,"hover")&&!this.dropdowns.some(e=>H(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,align:s}=e;!I(i,this.clsDrop)||s==="stretch"||(E(this.dropbar)||Ge(this.dropbarAnchor||this.$el,this.dropbar),x(i,this.clsDrop+"-dropbar"))}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,align:s}=e;!I(i,this.clsDrop)||s==="stretch"||(this._observer=Ze(i,()=>this.transitionTo(P(i).bottom-P(this.dropbar).top+b(c(i,"marginBottom")),i)))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const s=this.getActive();H(this.dropbar,":hover")&&(s==null?void 0:s.$el)===i&&!this.toggles.some(n=>s.target!==n&&H(n,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,align:s}=e;if(!I(i,this.clsDrop)||s==="stretch")return;this._observer.disconnect();const n=this.getActive();(!n||(n==null?void 0:n.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return Y&&B(Y.target,this.$el)&&Y},transitionTo(t,e){const{dropbar:i}=this,s=K(i);e=s<t&&e,c(e,"clipPath","polygon(0 0,100% 0,100% "+s+"px,0 "+s+"px)"),K(i,s),C.cancel([e,i]),Promise.all([C.start(i,{height:t},this.duration),C.start(e,{clipPath:"polygon(0 0,100% 0,100% "+t+"px,0 "+t+"px)"},this.duration)]).catch(A).then(()=>c(e,{clipPath:""}))},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function dn(t,e,i){const{current:s,keyCode:n}=t,o=(i==null?void 0:i.target)||s,r=e.indexOf(o);n===Yt.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),n===Yt.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),n===Yt.TAB&&(o.focus(),i==null||i.hide(!1))}function fn(t){if(!w(":focus",t)){var e;(e=w(Re,t))==null||e.focus()}}const Yt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var pn={props:{swiping:Boolean},data:{swiping:!0},computed:{swipeTarget(t,e){return e}},connected(){!this.swiping||ei(this,{el:this.swipeTarget,name:ut,passive:!0,handler(t){if(!Ct(t))return;const e=ie(t),i="tagName"in t.target?t.target:E(t.target);D(document,vt+" "+le+" scroll",s=>{const{x:n,y:o}=ie(s);(s.type!=="scroll"&&i&&n&&Math.abs(e.x-n)>100||o&&Math.abs(e.y-o)>100)&&setTimeout(()=>{p(i,"swipe"),p(i,"swipe"+sa(e.x,e.y,n,o))})})}})}};function sa(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}var na={mixins:[Ki,pn],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"?E(this.panel):this.panel}},update:{read(){this.isToggled()&&!W(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:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!I(E(this.panel),this.clsMode)&&(Je(this.panel,"<div>"),x(E(this.panel),this.clsMode)),x(document.body,this.clsContainer,this.clsFlip),c(document.body,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),x(this.$el,this.clsOverlay),x(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),K(document.body),x(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&oa()}},{name:"hide",self:!0,handler(){_(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&ra(),this.mode==="reveal"&&Ke(this.panel),_(this.panel,this.clsSidebarAnimation,this.clsMode),_(this.$el,this.clsOverlay),c(this.$el,"display",""),_(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Jt(t.type,"Left")^this.flip&&this.hide()}}]};function oa(){gn().content+=",user-scalable=0"}function ra(){const t=gn();t.content=t.content.replace(/,user-scalable=0$/,"")}function gn(){return w('meta[name="viewport"]',document.head)||R(document.head,'<meta name="viewport">')}var aa={mixins:[it,bt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return at(e,i)},content(t,e){let{selContent:i}=t;return at(e,i)}},resizeTargets(){return[this.container,this.content]},update:{read(){return!this.content||!this.container||!W(this.$el)?!1:{max:Math.max(this.minHeight,K(this.container)-($(this.content).height-K(this.$el)))}},write(t){let{max:e}=t;c(this.$el,{minHeight:this.minHeight,maxHeight:e})},events:["resize"]}},la={mixins:[bt],props:["width","height"],resizeTargets(){return[this.$el,E(this.$el)]},connected(){x(this.$el,"uk-responsive-width")},update:{read(){return W(this.$el)&&this.width&&this.height?{width:Ie(E(this.$el)),height:this.height}:!1},write(t){K(this.$el,We.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},ha={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&w(t)||document.body,p(this.$el,"beforescroll",[this,t])&&(await Vi(t,{offset:this.offset}),p(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo(mn(this.$el)))}}};function mn(t){return document.getElementById(decodeURIComponent(t.hash).substring(1))}var ca={mixins:[_e],args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?M(i,e):[e]},watch(t,e){this.hidden&&c($e(t,":not(."+this.inViewClass+")"),"visibility","hidden"),be(t,e)||this.$reset()},immediate:!0}},connected(){this._data.elements=new Map,this.registerObserver(he(this.elements,t=>{const e=this._data.elements;for(const{target:i,isIntersecting:s}of t){e.has(i)||e.set(i,{cls:rt(i,"uk-scrollspy-class")||this.cls});const n=e.get(i);!this.repeat&&n.show||(n.show=s)}this.$emit()},{rootMargin:Z(this.offsetTop,"height")-1+"px "+(Z(this.offsetLeft,"width")-1)+"px"},!1))},disconnected(){for(const[t,e]of this._data.elements.entries())_(t,this.inViewClass,(e==null?void 0:e.cls)||"")},update:[{write(t){for(const[e,i]of t.elements.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){const i=this._data.elements.get(t);if(!!i){if(i.off==null||i.off(),c(t,"visibility",!e&&this.hidden?"hidden":""),L(t,this.inViewClass,e),L(t,i.cls),/\buk-animation-/.test(i.cls)){const s=()=>Mi(t,"uk-animation-[\\w-]+");e?i.off=D(t,"animationcancel animationend",s):s()}p(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}}},ua={mixins:[_e],props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return M('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},elements(t){let{closest:e}=t;return at(this.links,e||"*")}},update:[{read(){const t=this.links.map(mn).filter(Boolean),{length:e}=t;if(!e||!W(this.$el))return!1;const[i]=lt(t,/auto|scroll/,!0),{scrollTop:s,scrollHeight:n}=i,o=dt(i),r=n-o.height;let a=!1;if(s===r)a=e-1;else{for(let l=0;l<t.length&&!(P(t[l]).top-o.top-this.offset>0);l++)a=+l;a===!1&&this.overflow&&(a=0)}return{active:a}},write(t){let{active:e}=t;const i=e!==!1&&!I(this.elements[e],this.cls);this.links.forEach(s=>s.blur());for(let s=0;s<this.elements.length;s++)L(this.elements[s],this.cls,+s===e);i&&p(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},da={mixins:[it,hi,bt,_e],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{selTarget(t,e){let{selTarget:i}=t;return i&&w(i,e)||e}},resizeTargets(){return document.documentElement},connected(){this.start=wn(this.start||this.top),this.end=wn(this.end||this.bottom),this.placeholder=w("+ .uk-sticky-placeholder",this.$el)||w('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},disconnected(){this.isFixed&&(this.hide(),_(this.selTarget,this.clsInactive)),ct(this.placeholder),this.placeholder=null},events:[{name:"resize",el(){return window},handler(){this.$emit("resize")}},{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){!location.hash||Vt(window)===0||setTimeout(()=>{const t=P(w(location.hash)),e=P(this.$el);this.isFixed&&Si(t,e)&&Vt(window,t.top-e.height-Z(this.targetOffset,"height",this.placeholder)-Z(this.offset,"height",this.placeholder))})}}],update:[{read(t,e){let{height:i,margin:s}=t;if(this.inactive=!this.matchMedia||!W(this.$el),this.inactive)return!1;const n=this.active&&e.has("resize");n&&(c(this.selTarget,"transition","0s"),this.hide()),this.active||(i=P(this.$el).height,s=c(this.$el,"margin")),n&&(this.show(),requestAnimationFrame(()=>c(this.selTarget,"transition","")));const o=this.isFixed?this.placeholder:this.$el,r=K(window);let a=this.position;this.overflowFlip&&i>r&&(a=a==="top"?"bottom":"top");let l=Z(this.offset,"height",o);a==="bottom"&&(i<r||this.overflowFlip)&&(l+=r-i);const h=this.overflowFlip?0:Math.max(0,i+l-r),u=P(o).top,d=(this.start===!1?u:vn(this.start,this.$el,u))-l,f=this.end===!1?document.scrollingElement.scrollHeight-r:vn(this.end,this.$el,u+i,!0)-P(this.$el).height+h-l;return{start:d,end:f,offset:l,overflow:h,topOffset:u,height:i,margin:s,width:$(o).width,top:Ft(o)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:s}=this;c(s,{height:e,margin:i}),B(s,document)||(Ge(this.$el,s),s.hidden=!0)},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:s,overflowScroll:n=0,start:o,end:r}=t;const a=Vt(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,offsetParentTop:P((this.isFixed?this.placeholder:this.$el).offsetParent).top,overflowScroll:U(n+U(a,o,r)-U(e,o,r),0,s)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:h,topOffset:u,height:d}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const f=Date.now();if((f-s>300||n!==o)&&(t.initScroll=r,t.initTimestamp=f),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||n==="down"&&i||n==="up"&&!this.isFixed&&r<=u+d)){if(!this.isFixed){ft.inProgress(this.$el)&&l>r&&(ft.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>u?(ft.cancel(this.$el),ft.out(this.$el,this.animation).then(()=>this.hide(),A)):this.hide()}else this.isFixed?this.update():this.animation&&r>u?(ft.cancel(this.$el),this.show(),ft.in(this.$el,this.animation).catch(A)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.setActive(!1),_(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:s=0,start:n,end:o,offset:r,topOffset:a,height:l,offsetParentTop:h}=this._data;const u=n!==0||e>n;let d="fixed";e>o&&(r+=o-h,d="absolute"),i&&(r-=s),c(this.$el,{position:d,top:r+"px",width:t}),this.setActive(u),L(this.$el,this.clsBelow,e>a+l),x(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(Bi(this.selTarget,this.clsInactive,this.clsActive),e!==t&&p(this.$el,"active")):(Bi(this.selTarget,this.clsActive,this.clsInactive),e!==t&&p(this.$el,"inactive"))}}};function vn(t,e,i,s){if(!t)return 0;if(Nt(t)||O(t)&&t.match(/^-?\d/))return i+Z(t,"height",e,!0);{const n=t===!0?E(e):Tt(t,e);return P(n).bottom-(s&&n&&B(e,n)?b(c(n,"paddingBottom")):0)}}function wn(t){return t==="true"?!0:t==="false"?!1:t}var bn={mixins:[Ee,pn,It],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 Se(i,e)},watch(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>N(i).forEach((s,n)=>L(s,this.cls,n===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return M(i,e).filter(s=>!H(s,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return N(this.$el).filter(t=>this.toggles.some(e=>B(e,t)))},swipeTarget(){return this.connects}},connected(){this.lazyload(this.$el,this.connects),zi(()=>this.$emit())},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Se(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(rt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(Jt(e,"Left")?"next":"previous")}}],methods:{index(){return $t(this.children,t=>I(t,this.cls))},show(t){const e=this.index(),i=Ut(t,this.toggles,e),s=Ut(this.children[i],N(this.$el));N(this.$el).forEach((o,r)=>{L(o,this.cls,s===r),S(this.toggles[r],"aria-expanded",s===r)});const n=e>=0&&e!==i;this.connects.forEach(async o=>{let{children:r}=o;await this.toggleElement(y(r).filter(a=>I(a,this.cls)),!1,n),await this.toggleElement(r[s],!0,n)})}}},fa={mixins:[it],extends:bn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=I(this.$el,"uk-tab-left")?"uk-tab-left":I(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const pa=32;var ga={mixins:[Ee,hi,It],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get(t,e){let{href:i,target:s}=t;return s=Se(s||i,e),s.length&&s||[e]},watch(){this.updateAria()},immediate:!0}},connected(){!g(this.mode,"media")&&!qe(this.$el)&&S(this.$el,"tabindex","0"),this.lazyload(this.$el,this.target),zi(()=>this.$emit())},events:[{name:ut,filter(){return g(this.mode,"hover")},handler(t){this._preventClick=null,!(!Ct(t)||this._showState)&&(p(this.$el,"focus"),D(document,ut,()=>p(this.$el,"blur"),!0,e=>!B(e.target,this.$el)),g(this.mode,"click")&&(this._preventClick=!0))}},{name:qt+" "+ae+" focus blur",filter(){return g(this.mode,"hover")},handler(t){if(Ct(t))return;const e=g([qt,"focus"],t.type),i=S(this.$el,"aria-expanded");if(!(!e&&(t.type===ae&&H(this.$el,":focus")||t.type==="blur"&&H(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")&&!gt(this.$el,"input")},handler(t){t.keyCode===pa&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return["click","hover"].some(t=>g(this.mode,t))},handler(t){let e;(this._preventClick||at(t.target,'a[href="#"], a[href=""]')||(e=at(t.target,"a[href]"))&&(S(this.$el,"aria-expanded")!=="true"||e.hash&&H(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&g(this.mode,"click")&&this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}},{name:"mediachange",filter(){return g(this.mode,"media")},el(){return this.target},handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!p(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>I(s,this.clsLeave));if(e.length){for(const s of this.target){const n=g(e,s);this.toggleElement(s,n,n)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(s=>!g(i,s)),!0)},updateAria(t){g(this.mode,"media")||S(this.$el,"aria-expanded",He(t)?t:this.isToggled(this.target))}}},ma=Object.freeze({__proto__:null,Accordion:Gs,Alert:Uo,Cover:tr,Drop:Us,Dropdown:Us,FormCustom:or,Grid:hr,HeightMatch:fr,HeightViewport:mr,Icon:Qi,Img:qr,Leader:Qr,Margin:tn,Modal:Ur,Nav:ea,Navbar:ia,Offcanvas:na,OverflowAuto:aa,Responsive:la,Scroll:ha,Scrollspy:ca,ScrollspyNav:ua,Sticky:da,Svg:nn,Switcher:bn,Tab:fa,Toggle:ga,Video:Xs,Close:Hr,Spinner:Lr,SlidenavNext:cn,SlidenavPrevious:cn,SearchIcon:zr,Marker:xt,NavbarToggleIcon:xt,OverlayIcon:xt,PaginationNext:xt,PaginationPrevious:xt,Totop:xt});St(ma,(t,e)=>et.component(e,t)),Jo(et);const va=["days","hours","minutes","seconds"];var wa={mixins:[it],props:{date:String,clsWrapper:String},data:{date:"",clsWrapper:".uk-countdown-%unit%"},connected(){this.date=Date.parse(this.$props.date),this.start()},disconnected(){this.stop()},events:[{name:"visibilitychange",el(){return document},handler(){document.hidden?this.stop():this.start()}}],methods:{start(){this.stop(),this.update(),this.timer=setInterval(this.update,1e3)},stop(){clearInterval(this.timer)},update(){const t=ba(this.date);(!this.date||t.total<=0)&&(this.stop(),t.days=t.hours=t.minutes=t.seconds=0);for(const e of va){const i=w(this.clsWrapper.replace("%unit%",e),this.$el);if(!i)continue;let s=String(Math.trunc(t[e]));s=s.length<2?"0"+s:s,i.textContent!==s&&(s=s.split(""),s.length!==i.children.length&&_t(i,s.map(()=>"<span></span>").join("")),s.forEach((n,o)=>i.children[o].textContent=n))}}}};function ba(t){const e=t-Date.now();return{total:e,seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24}}const ts="uk-transition-leave",es="uk-transition-enter";function xn(t,e,i,s){s===void 0&&(s=0);const n=ci(e,!0),o={opacity:1},r={opacity:0},a=u=>()=>n===ci(e)?u():Promise.reject(),l=a(()=>(x(e,ts),Promise.all($n(e).map((u,d)=>new Promise(f=>setTimeout(()=>C.start(u,r,i/2,"ease").then(f),d*s)))).then(()=>_(e,ts)))),h=a(()=>{const u=K(e);return x(e,es),t(),c(N(e),{opacity:0}),new Promise(d=>requestAnimationFrame(()=>{const f=N(e),m=K(e);c(e,"alignContent","flex-start"),K(e,u);const k=$n(e);c(f,r);const v=k.map((J,G)=>new Promise(q=>setTimeout(()=>C.start(J,o,i/2,"ease").then(q),G*s)));u!==m&&v.push(C.start(e,{height:m},i/2+k.length*s,"ease")),Promise.all(v).then(()=>{_(e,es),n===ci(e)&&(c(e,{height:"",alignContent:""}),c(f,{opacity:""}),delete e.dataset.transition),d()})}))});return I(e,ts)?yn(e).then(h):I(e,es)?yn(e).then(l).then(h):l().then(h)}function ci(t,e){return e&&(t.dataset.transition=1+ci(t)),Et(t.dataset.transition)||0}function yn(t){return Promise.all(N(t).filter(C.inProgress).map(e=>new Promise(i=>D(e,"transitionend transitioncanceled",i))))}function $n(t){return Zi(N(t)).reduce((e,i)=>e.concat(Le(i.filter(s=>ti(s)),"offsetLeft")),[])}function xa(t,e,i){return new Promise(s=>requestAnimationFrame(()=>{let n=N(e);const o=n.map(a=>kn(a,!0)),r=c(e,["height","padding"]);C.cancel(e),n.forEach(C.cancel),Sn(e),t(),n=n.concat(N(e).filter(a=>!g(n,a))),Promise.resolve().then(()=>{z.flush();const a=c(e,["height","padding"]),[l,h]=ya(e,n,o);n.forEach((u,d)=>h[d]&&c(u,h[d])),c(e,{display:"block",...r}),requestAnimationFrame(()=>{const u=n.map((d,f)=>E(d)===e&&C.start(d,l[f],i,"ease")).concat(C.start(e,a,i,"ease"));Promise.all(u).then(()=>{n.forEach((d,f)=>E(d)===e&&c(d,"display",l[f].opacity===0?"none":"")),Sn(e)},A).then(s)})})}))}function kn(t,e){const i=c(t,"zIndex");return W(t)?{display:"",opacity:e?c(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?te(t):i,...Tn(t)}:!1}function ya(t,e,i){const s=e.map((o,r)=>E(o)&&r in i?i[r]?W(o)?Tn(o):{opacity:0}:{opacity:W(o)?1:0}:!1),n=s.map((o,r)=>{const a=E(e[r])===t&&(i[r]||kn(e[r]));if(!a)return!1;if(!o)delete a.opacity;else if(!("opacity"in o)){const{opacity:l}=a;l%1?o.opacity=1:delete a.opacity}return a});return[s,n]}function Sn(t){c(t.children,{height:"",left:"",opacity:"",pointerEvents:"",position:"",top:"",marginTop:"",marginLeft:"",transform:"",width:"",zIndex:""}),c(t,{height:"",display:"",padding:""})}function Tn(t){const{height:e,width:i}=P(t),{top:s,left:n}=Ve(t),{marginLeft:o,marginTop:r}=c(t,["marginTop","marginLeft"]);return{top:s,left:n,height:e,width:i,marginLeft:o,marginTop:r,transform:""}}var Cn={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e){e===void 0&&(e=this.$el);const i=this.animation;return(i==="fade"?xn:i==="delayed-fade"?function(){for(var n=arguments.length,o=new Array(n),r=0;r<n;r++)o[r]=arguments[r];return xn(...o,40)}:i?xa:()=>(t(),Promise.resolve()))(t,e,this.duration).then(()=>this.$update(e,"resize"),A)}}},$a={mixins:[Cn],args:"target",props:{target:Boolean,selActive:Boolean},data:{target:null,selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{toggles:{get(t,e){let{attrItem:i}=t;return M("["+i+"],[data-"+i+"]",e)},watch(){if(this.updateState(),this.selActive!==!1){const t=M(this.selActive,this.$el);this.toggles.forEach(e=>L(e,this.cls,g(t,e)))}},immediate:!0},children:{get(t,e){let{target:i}=t;return M(i+" > *",e)},watch(t,e){e&&!Ca(t,e)&&this.updateState()},immediate:!0}},events:[{name:"click",delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.apply(t.current)}}],methods:{apply(t){const e=this.getState(),i=Pn(t,this.attrItem,this.getState());ka(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>I(t,this.cls)).reduce((t,e)=>Pn(e,this.attrItem,t),{filter:{"":""},sort:[]})},setState(t,e){e===void 0&&(e=!0),t={filter:{"":""},sort:[],...t},p(this.$el,"beforeFilter",[this,t]),this.toggles.forEach(i=>L(i,this.cls,!!Ta(i,this.attrItem,t))),Promise.all(M(this.target,this.$el).map(i=>{const s=()=>{Sa(t,i,N(i)),this.$update(this.$el)};return e?this.animate(s,i):s()})).then(()=>p(this.$el,"afterFilter",[this]))},updateState(){z.write(()=>this.setState(this.getState(),!1))}}};function In(t,e){return Ae(rt(t,e),["filter"])}function ka(t,e){return["filter","sort"].every(i=>be(t[i],e[i]))}function Sa(t,e,i){const s=Ia(t);i.forEach(r=>c(r,"display",s&&!H(r,s)?"none":""));const[n,o]=t.sort;if(n){const r=Pa(i,n,o);be(r,i)||R(e,r)}}function Pn(t,e,i){const s=In(t,e),{filter:n,group:o,sort:r,order:a="asc"}=s;return(n||V(r))&&(o?n?(delete i.filter[""],i.filter[o]=n):(delete i.filter[o],(we(i.filter)||""in i.filter)&&(i.filter={"":n||""})):i.filter={"":n||""}),V(r)||(i.sort=[r,a]),i}function Ta(t,e,i){let{filter:s={"":""},sort:[n,o]}=i;const{filter:r="",group:a="",sort:l,order:h="asc"}=In(t,e);return V(l)?a in s&&r===s[a]||!r&&a&&!(a in s)&&!s[""]:n===l&&o===h}function Ca(t,e){return t.length===e.length&&t.every(i=>e.includes(i))}function Ia(t){let{filter:e}=t,i="";return St(e,s=>i+=s||""),i}function Pa(t,e,i){return[...t].sort((s,n)=>rt(s,e).localeCompare(rt(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}var is={slide:{show(t){return[{transform:F(t*-100)},{transform:F()}]},percent(t){return Me(t)},translate(t,e){return[{transform:F(e*-100*t)},{transform:F(e*100*(1-t))}]}}};function Me(t){return Math.abs(c(t,"transform").split(",")[4]/t.offsetWidth)||0}function F(t,e){return t===void 0&&(t=0),e===void 0&&(e="%"),t+=t?e:"","translate3d("+t+", 0, 0)"}function de(t){return"scale3d("+t+", "+t+", 1)"}var An={...is,fade:{show(){return[{opacity:0},{opacity:1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t},{opacity:t}]}},scale:{show(){return[{opacity:0,transform:de(1-.2)},{opacity:1,transform:de(1)}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:de(1-.2*t)},{opacity:t,transform:de(1-.2+.2*t)}]}}};function Aa(t,e,i,s){let{animation:n,easing:o}=s;const{percent:r,translate:a,show:l=A}=n,h=l(i),u=new je;return{dir:i,show(d,f,m){f===void 0&&(f=0);const k=m?"linear":o;return d-=Math.round(d*U(f,-1,1)),this.translate(f),ui(e,"itemin",{percent:f,duration:d,timing:k,dir:i}),ui(t,"itemout",{percent:1-f,duration:d,timing:k,dir:i}),Promise.all([C.start(e,h[1],d,k),C.start(t,h[0],d,k)]).then(()=>{this.reset(),u.resolve()},A),u.promise},cancel(){C.cancel([e,t])},reset(){for(const d in h[0])c([e,t],d,"")},forward(d,f){return f===void 0&&(f=this.percent()),C.cancel([e,t]),this.show(d,f,!0)},translate(d){this.reset();const f=a(d,i);c(e,f[1]),c(t,f[0]),ui(e,"itemtranslatein",{percent:d,dir:i}),ui(t,"itemtranslateout",{percent:1-d,dir:i})},percent(){return r(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function ui(t,e,i){p(t,Ht(e,!1,!1,i))}var Ea={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){S(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>(!this.draggable||!w(":focus",this.$el))&&(!this.pauseOnHover||!H(this.$el,":hover"))&&!this.stack.length&&this.show("next"),this.autoplayInterval)},stopAutoplay(){this.interval&&clearInterval(this.interval)}}},_a={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const s=ie(i).x*(X?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(i)}}},events:[{name:ut,delegate(){return this.selSlides},handler(t){!this.draggable||!Ct(t)&&Oa(t.target)||at(t.target,ye)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,T(document,re,this.move,{passive:!1}),T(document,vt+" "+le+" input",this.end,!0),c(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;c(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;const{slides:i}=this;let{prevIndex:s}=this,n=Math.abs(e),o=this.getIndex(s+this.dir,s),r=this._getDistance(s,o)||i[s].offsetWidth;for(;o!==s&&n>r;)this.drag-=r*this.dir,s=o,n-=r,o=this.getIndex(s+this.dir,s),r=this._getDistance(s,o)||i[s].offsetWidth;this.percent=n/r;const a=i[s],l=i[o],h=this.index!==o,u=s===o;let d;[this.index,this.prevIndex].filter(f=>!g([o,s],f)).forEach(f=>{p(i[f],"itemhidden",[this]),u&&(d=!0,this.prevIndex=s)}),(this.index===s&&this.prevIndex!==s||d)&&p(i[this.index],"itemshown",[this]),h&&(this.prevIndex=s,this.index=o,!u&&p(a,"beforeitemhide",[this]),p(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!u&&l),h&&(!u&&p(a,"itemhide",[this]),p(l,"itemshow",[this]))},end(){if(ee(document,re,this.move,{passive:!1}),ee(document,vt+" "+le+" input",this.end,!0),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(X?this.dir*(X?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}c(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null}}};function Oa(t){return!t.children.length&&t.childNodes.length}var Ma={data:{selNav:!1},computed:{nav(t,e){let{selNav:i}=t;return w(i,e)},selNavItem(t){let{attrItem:e}=t;return"["+e+"],[data-"+e+"]"},navItems(t,e){return M(this.selNavItem,e)}},update:{write(){this.nav&&this.length!==this.nav.children.length&&_t(this.nav,this.slides.map((t,e)=>"<li "+this.attrItem+'="'+e+'"><a href></a></li>').join("")),this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]},events:[{name:"click",delegate(){return this.selNavItem},handler(t){t.preventDefault(),this.show(rt(t.current,this.attrItem))}},{name:"itemshow",handler:"updateNav"}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=rt(e,this.attrItem);L(e,this.clsActive,Et(i)===t),L(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}}}},En={mixins:[Ea,_a,Ma,bt],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number,selSlides:String},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){_(this.slides,this.clsActive)},computed:{duration(t,e){let{velocity:i}=t;return _n(e.offsetWidth/i)},list(t,e){let{selList:i}=t;return w(i,e)},maxIndex(){return this.length-1},selSlides(t){let{selList:e,selSlides:i}=t;return e+" "+(i||"> *")},slides:{get(){return M(this.selSlides,this.$el)},watch(){this.$reset()}},length(){return this.slides.length}},methods:{show(t,e){if(e===void 0&&(e=!1),this.dragging||!this.length)return;const{stack:i}=this,s=e?0:i.length,n=()=>{i.splice(s,1),i.length&&this.show(i.shift(),!0)};if(i[e?"unshift":"push"](t),!e&&i.length>1){i.length===2&&this._transitioner.forward(Math.min(this.duration,200));return}const o=this.getIndex(this.index),r=I(this.slides,this.clsActive)&&this.slides[o],a=this.getIndex(t,this.index),l=this.slides[a];if(r===l){n();return}if(this.dir=Ba(t,o),this.prevIndex=o,this.index=a,r&&!p(r,"beforeitemhide",[this])||!p(l,"beforeitemshow",[this,r])){this.index=this.prevIndex,n();return}const h=this._show(r,l,e).then(()=>(r&&p(r,"itemhidden",[this]),p(l,"itemshown",[this]),new Promise(u=>{z.write(()=>{i.shift(),i.length?this.show(i.shift(),!0):this._transitioner=null,u()})})));return r&&p(r,"itemhide",[this]),p(l,"itemshow",[this]),h},getIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.index),U(Ut(t,this.slides,e,this.finite),0,this.maxIndex)},getValidIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),this.getIndex(t,e)},_show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:i?e.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing,...this.transitionOptions}),!i&&!t)return this._translate(1),Promise.resolve();const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_getDistance(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()},_translate(t,e,i){e===void 0&&(e=this.prevIndex),i===void 0&&(i=this.index);const s=this._getTransitioner(e!==i?e:!1,i);return s.translate(t),s},_getTransitioner(t,e,i,s){return t===void 0&&(t=this.prevIndex),e===void 0&&(e=this.index),i===void 0&&(i=this.dir||1),s===void 0&&(s=this.transitionOptions),new this.Transitioner(Zt(t)?this.slides[t]:t,Zt(e)?this.slides[e]:e,i*(X?-1:1),s)}}};function Ba(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function _n(t){return .5*t+300}var On={mixins:[En],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:is,Transitioner:Aa},computed:{animation(t){let{animation:e,Animations:i}=t;return{...i[e]||i.slide,name:e}},transitionOptions(){return{animation:this.animation}}},events:{beforeitemshow(t){let{target:e}=t;x(e,this.clsActive)},itemshown(t){let{target:e}=t;x(e,this.clsActivated)},itemhidden(t){let{target:e}=t;_(e,this.clsActive,this.clsActivated)}}},Mn={mixins:[ue,Ki,It,On],functional:!0,props:{delayControls:Number,preload:Number,videoAutoplay:Boolean,template:String},data:()=>({preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"uk-lightbox-item",selClose:".uk-close-large",selCaption:".uk-lightbox-caption",pauseOnHover:!1,velocity:2,Animations:An,template:'<div class="uk-lightbox uk-overflow-hidden"> <ul class="uk-lightbox-items"></ul> <div class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href uk-slidenav-next uk-lightbox-item="next"></a> <div class="uk-lightbox-toolbar uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){const t=w(this.template),e=w(this.selList,t);this.items.forEach(()=>R(e,"<li>")),this.$mount(R(this.container,t))},computed:{caption(t,e){let{selCaption:i}=t;return w(i,e)}},events:[{name:re+" "+ut+" keydown",handler:"showControls"},{name:"click",self:!0,delegate(){return this.selSlides},handler(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),_(this.slides,this.clsActive),C.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el(){return document},handler(t){if(!(!this.isToggled(this.$el)||!this.draggable))switch(t.keyCode){case 37:this.show("previous");break;case 39:this.show("next");break}}},{name:"beforeitemshow",handler(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=An.scale,_(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler(){_t(this.caption,this.getItem().caption||"");for(let t=-this.preload;t<=this.preload;t++)this.loadItem(this.index+t)}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,alt:n="",poster:o,attrs:r={}}=e;if(this.setItem(e,"<span uk-spinner></span>"),!i)return;let a;const l={frameborder:"0",allow:"autoplay",allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":""+this.videoAutoplay};if(s==="image"||i.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i))try{const{width:h,height:u}=await gs(i,r.srcset,r.size);this.setItem(e,Be("img",{src:i,width:h,height:u,alt:n,...r}))}catch{this.setError(e)}else if(s==="video"||i.match(/\.(mp4|webm|ogv)($|\?)/i)){const h=Be("video",{src:i,poster:o,controls:"",playsinline:"","uk-video":""+this.videoAutoplay,...r});T(h,"loadedmetadata",()=>{S(h,{width:h.videoWidth,height:h.videoHeight}),this.setItem(e,h)}),T(h,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,Be("iframe",{src:i,frameborder:"0",allowfullscreen:"",class:"uk-lightbox-iframe",...r}));else if(a=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?[?&]v=|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,Be("iframe",{src:"https://www.youtube"+(a[1]||"")+".com/embed/"+a[2]+(a[3]?"?"+a[3]:""),width:1920,height:1080,...l,...r}));else if(a=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:h,width:u}=await(await fetch("https://vimeo.com/api/oembed.json?maxwidth=1920&url="+encodeURI(i),{credentials:"omit"})).json();this.setItem(e,Be("iframe",{src:"https://player.vimeo.com/video/"+a[1]+(a[2]?"?"+a[2]:""),width:u,height:h,...l,...r}))}catch{this.setError(e)}}}],methods:{loadItem(t){t===void 0&&(t=this.index);const e=this.getItem(t);this.getSlide(e).childElementCount||p(this.$el,"itemload",[e])},getItem(t){return t===void 0&&(t=this.index),this.items[Ut(t,this.slides)]},setItem(t,e){p(this.$el,"itemloaded",[this,_t(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2"></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),x(this.$el,"uk-active","uk-transition-active")},hideControls(){_(this.$el,"uk-active","uk-transition-active")}}};function Be(t,e){const i=Wt("<"+t+">");return S(i,e),i}var Na={install:Da,props:{toggle:String},data:{toggle:"a"},computed:{toggles:{get(t,e){let{toggle:i}=t;return M(i,e)},watch(){this.hide()}}},disconnected(){this.hide()},events:[{name:"click",delegate(){return this.toggle+":not(.uk-disabled)"},handler(t){t.preventDefault(),this.show(t.current)}}],methods:{show(t){const e=ls(this.toggles.map(Bn),"source");if(Kt(t)){const{source:i}=Bn(t);t=$t(e,s=>{let{source:n}=s;return i===n})}return this.panel=this.panel||this.$create("lightboxPanel",{...this.$props,items:e}),T(this.panel.$el,"hidden",()=>this.panel=!1),this.panel.show(t)},hide(){var t;return(t=this.panel)==null?void 0:t.hide()}}};function Da(t,e){t.lightboxPanel||t.component("lightboxPanel",Mn),kt(e.props,t.component("lightboxPanel").options.props)}function Bn(t){const e={};for(const i of["href","caption","type","poster","alt","attrs"])e[i==="href"?"source":i]=rt(t,i);return e.attrs=Ae(e.attrs),e}var za={mixins:[ue],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:null,pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:Ha,computed:{marginProp(t){let{pos:e}=t;return"margin"+(st(e,"top")?"Top":"Bottom")},startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=w("."+this.clsContainer+"-"+this.pos,this.container)||R(this.container,'<div class="'+this.clsContainer+" "+this.clsContainer+"-"+this.pos+'" style="display: block"></div>');this.$mount(R(t,'<div class="'+this.clsMsg+(this.status?" "+this.clsMsg+"-"+this.status:"")+'"> <a href class="'+this.clsClose+'" data-uk-close></a> <div>'+this.message+"</div> </div>"))},async connected(){const t=b(c(this.$el,this.marginProp));await C.start(c(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){at(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()},[qt](){this.timer&&clearTimeout(this.timer)},[ae](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=E(i);p(i,"close",[this]),ct(i),s!=null&&s.hasChildNodes()||ct(s)};this.timer&&clearTimeout(this.timer),t||await C.start(this.$el,this.startProps),e(this.$el)}}};function Ha(t){t.notification.closeAll=function(e,i){mt(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}const di={x:fi,y:fi,rotate:fi,scale:fi,color:ss,backgroundColor:ss,borderColor:ss,blur:Gt,hue:Gt,fopacity:Gt,grayscale:Gt,invert:Gt,saturate:Gt,sepia:Gt,opacity:Fa,stroke:Wa,bgx:zn,bgy:zn},{keys:Nn}=Object;var Dn={mixins:[hi],props:Wn(Nn(di),"list"),data:Wn(Nn(di),void 0),computed:{props(t,e){const i={};for(const n in t)n in di&&!V(t[n])&&(i[n]=t[n].slice());const s={};for(const n in i)s[n]=di[n](n,e,i[n],i);return s}},events:{load(){this.$emit()}},methods:{reset(){for(const t in this.getCss(0))c(this.$el,t,"")},getCss(t){const e={transform:"",filter:""};for(const i in this.props)this.props[i](e,t);return e}}};function fi(t,e,i){let s=gi(i)||{x:"px",y:"px",rotate:"deg"}[t]||"",n;return t==="x"||t==="y"?(t="translate"+yt(t),n=o=>b(b(o).toFixed(s==="px"?0:6))):t==="scale"&&(s="",n=o=>gi([o])?Z(o,"width",e,!0)/e.offsetWidth:o),i.length===1&&i.unshift(t==="scale"?1:0),i=fe(i,n),(o,r)=>{o.transform+=" "+t+"("+Ne(i,r)+s+")"}}function ss(t,e,i){return i.length===1&&i.unshift(De(e,t,"")),i=fe(i,s=>La(e,s)),(s,n)=>{const[o,r,a]=Fn(i,n),l=o.map((h,u)=>(h+=a*(r[u]-h),u===3?b(h):parseInt(h,10))).join(",");s[t]="rgba("+l+")"}}function La(t,e){return De(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(b)}function Gt(t,e,i){i.length===1&&i.unshift(0);const s=gi(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=fe(i),(n,o)=>{const r=Ne(i,o);n.filter+=" "+t+"("+(r+s)+")"}}function Fa(t,e,i){return i.length===1&&i.unshift(De(e,t,"")),i=fe(i),(s,n)=>{s[t]=Ne(i,n)}}function Wa(t,e,i){i.length===1&&i.unshift(0);const s=gi(i),n=an(e);return i=fe(i.reverse(),o=>(o=b(o),s==="%"?o*n/100:o)),i.some(o=>{let[r]=o;return r})?(c(e,"strokeDasharray",n),(o,r)=>{o.strokeDashoffset=Ne(i,r)}):A}function zn(t,e,i,s){i.length===1&&i.unshift(0);const n=t==="bgy"?"height":"width";s[t]=fe(i,a=>Z(a,n,e));const o=["bgx","bgy"].filter(a=>a in s);if(o.length===2&&t==="bgx")return A;if(De(e,"backgroundSize","")==="cover")return ja(t,e,i,s);const r={};for(const a of o)r[a]=Hn(e,a);return Ln(o,r,s)}function ja(t,e,i,s){const n=Ra(e);if(!n.width)return A;const o={width:e.offsetWidth,height:e.offsetHeight},r=["bgx","bgy"].filter(u=>u in s),a={};for(const u of r){const d=s[u].map(J=>{let[G]=J;return G}),f=Math.min(...d),m=Math.max(...d),k=d.indexOf(f)<d.indexOf(m),v=m-f;a[u]=(k?-v:0)-(k?f:m)+"px",o[u==="bgy"?"height":"width"]+=v}const l=We.cover(n,o);for(const u of r){const d=u==="bgy"?"height":"width",f=l[d]-o[d];a[u]="max("+Hn(e,u)+",-"+f+"px) + "+a[u]}const h=Ln(r,a,s);return(u,d)=>{h(u,d),u.backgroundSize=l.width+"px "+l.height+"px",u.backgroundRepeat="no-repeat"}}function Hn(t,e){return De(t,"background-position-"+e.substr(-1),"")}function Ln(t,e,i){return function(s,n){for(const o of t){const r=Ne(i[o],n);s["background-position-"+o.substr(-1)]="calc("+e[o]+" + "+r+"px)"}}}const pi={};function Ra(t){const e=c(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(pi[e])return pi[e];const i=new Image;return e&&(i.src=e,!i.naturalWidth)?(i.onload=()=>{pi[e]=ns(i),p(t,Ht("load",!1))},ns(i)):pi[e]=ns(i)}function ns(t){return{width:t.naturalWidth,height:t.naturalHeight}}function fe(t,e){e===void 0&&(e=b);const i=[],{length:s}=t;let n=0;for(let o=0;o<s;o++){let[r,a]=O(t[o])?t[o].trim().split(" "):[t[o]];if(r=e(r),a=a?b(a)/100:null,o===0?a===null?a=0:a&&i.push([r,0]):o===s-1&&(a===null?a=1:a!==1&&(i.push([r,a]),a=1)),i.push([r,a]),a===null)n++;else if(n){const l=i[o-n-1][1],h=(a-l)/(n+1);for(let u=n;u>0;u--)i[o-u][1]=l+h*(n-u+1);n=0}}return i}function Fn(t,e){const i=$t(t.slice(1),s=>{let[,n]=s;return e<=n})+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function Ne(t,e){const[i,s,n]=Fn(t,e);return Zt(i)?i+Math.abs(i-s)*n*(i<s?1:-1):+s}const qa=/^-?\d+(\S*)/;function gi(t,e){for(const i of t){const s=i.match==null?void 0:i.match(qa);if(s)return s[1]}return e}function De(t,e,i){const s=t.style[e],n=c(c(t,e,i),e);return t.style[e]=s,n}function Wn(t,e){return t.reduce((i,s)=>(i[s]=e,i),{})}var Va={mixins:[Dn,bt,_e],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target(t,e){let{target:i}=t;return jn(i&&Tt(i,e)||e)},start(t){let{start:e}=t;return Z(e,"height",this.target,!0)},end(t){let{end:e,viewport:i}=t;return Z(e||(i=(1-i)*100)&&i+"vh+"+i+"%","height",this.target,!0)}},update:{read(t,e){let{percent:i}=t;if(e.has("scroll")||(i=!1),!this.matchMedia)return;const s=i;return i=Ya(Yi(this.target,this.start,this.end),this.easing),{percent:i,style:s===i?!1:this.getCss(i)}},write(t){let{style:e}=t;if(!this.matchMedia){this.reset();return}e&&c(this.$el,e)},events:["scroll","resize"]}};function Ya(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,1-e)}function jn(t){return t?"offsetTop"in t?t:jn(E(t)):document.documentElement}var Rn={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);(!~this.prevIndex||this.index!==t)&&this.show(t)},events:["resize"]}},qn={mixins:[Ee],connected(){this.lazyload(this.slides,this.getAdjacentSlides)}};function Ga(t,e,i,s){let{center:n,easing:o,list:r}=s;const a=new je,l=t?ze(t,r,n):ze(e,r,n)+$(e).width*i,h=e?ze(e,r,n):l+$(t).width*i*(X?-1:1);return{dir:i,show(u,d,f){d===void 0&&(d=0);const m=f?"linear":o;return u-=Math.round(u*U(d,-1,1)),this.translate(d),d=t?d:U(d,0,1),os(this.getItemIn(),"itemin",{percent:d,duration:u,timing:m,dir:i}),t&&os(this.getItemIn(!0),"itemout",{percent:1-d,duration:u,timing:m,dir:i}),C.start(r,{transform:F(-h*(X?-1:1),"px")},u,m).then(a.resolve,A),a.promise},cancel(){C.cancel(r)},reset(){c(r,"transform","")},forward(u,d){return d===void 0&&(d=this.percent()),C.cancel(r),this.show(u,d,!0)},translate(u){const d=this.getDistance()*i*(X?-1:1);c(r,"transform",F(U(-h+(d-d*u),-mi(r),$(r).width)*(X?-1:1),"px"));const f=this.getActives(),m=this.getItemIn(),k=this.getItemIn(!0);u=t?U(u,-1,1):0;for(const v of N(r)){const J=g(f,v),G=v===m,q=v===k,ht=G||!q&&(J||i*(X?-1:1)===-1^vi(v,r)>vi(t||e));os(v,"itemtranslate"+(ht?"in":"out"),{dir:i,percent:q?1-u:G?u:J?1:0})}},percent(){return Math.abs((c(r,"transform").split(",")[4]*(X?-1:1)+l)/(h-l))},getDistance(){return Math.abs(h-l)},getItemIn(u){u===void 0&&(u=!1);let d=this.getActives(),f=Yn(r,ze(e||t,r,n));if(u){const m=d;d=f,f=m}return f[$t(f,m=>!g(d,m))]},getActives(){return Yn(r,ze(t||e,r,n))}}}function ze(t,e,i){const s=vi(t,e);return i?s-Xa(t,e):Math.min(s,Vn(e))}function Vn(t){return Math.max(0,mi(t)-$(t).width)}function mi(t){return N(t).reduce((e,i)=>$(i).width+e,0)}function Xa(t,e){return $(e).width/2-$(t).width/2}function vi(t,e){return t&&(Ve(t).left+(X?$(t).width-$(e).width:0))*(X?-1:1)||0}function Yn(t,e){e-=1;const i=$(t).width,s=e+i+2;return N(t).filter(n=>{const o=vi(n,t),r=o+Math.min($(n).width,i);return o>=e&&r<=s})}function os(t,e,i){p(t,Ht(e,!1,!1,i))}var Ja={mixins:[it,En,Rn,qn],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:Ga},computed:{avgWidth(){return mi(this.list)/this.length},finite(t){let{finite:e}=t;return e||Math.ceil(mi(this.list))<Math.trunc($(this.list).width+Ka(this.list)+this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return Qt(this.sets);let t=0;const e=Vn(this.list),i=$t(this.slides,s=>{if(t>=e)return!0;t+=$(s).width});return~i?i:this.length-1},sets(t){let{sets:e}=t;if(!e)return;let i=0;const s=[],n=$(this.list).width;for(let o=0;o<this.slides.length;o++){const r=$(this.slides[o]).width;i+r>n&&(i=0),this.center?i<n/2&&i+r+$(this.slides[+o+1]).width/2>n/2&&(s.push(+o),i=n/2-r/2):i===0&&s.push(Math.min(+o,this.maxIndex)),i+=r}if(s.length)return s},transitionOptions(){return{center:this.center,list:this.list}}},connected(){L(this.$el,this.clsContainer,!w("."+this.clsContainer,this.$el))},update:{write(){for(const t of this.navItems){const e=Et(rt(t,this.attrItem));e!==!1&&(t.hidden=!this.maxIndex||e>this.maxIndex||this.sets&&!g(this.sets,e))}this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1)),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!g(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let s=0;s<e;s++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=_n(this.avgWidth/this.velocity)*($(this.slides[i]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&x(this._getTransitioner().getItemIn(),this.clsActive)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){c(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,o)=>c(n,"order",this.dir>0&&o<t?1:this.dir<0&&o>=this.index?-1:"")),!this.center)return;const e=this.slides[t];let i=$(this.list).width/2-$(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),o=this.slides[n];c(o,"order",n>t?-2:-1),i-=$(o).width}},updateActiveClasses(){const t=this._getTransitioner(this.index).getActives(),e=[this.clsActive,(!this.sets||g(this.sets,b(this.index)))&&this.clsActivated||""];for(const i of this.slides)L(i,e,g(t,i))},getValidIndex(t,e){if(t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),t=this.getIndex(t,e),!this.sets)return t;let i;do{if(g(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t},getAdjacentSlides(){const{width:t}=$(this.list),e=-t,i=t*2,s=$(this.slides[this.index]).width,n=this.center?t/2-s/2:0,o=new Set;for(const r of[-1,1]){let a=n+(r>0?s:0),l=0;do{const h=this.slides[this.getIndex(this.index+r+l++*r)];a+=$(h).width*r,o.add(h)}while(this.slides.length>l&&a>e&&a<i)}return Array.from(o)}}};function Ka(t){return Math.max(0,...N(t).map(e=>$(e).width))}var Gn={mixins:[Dn],data:{selItem:"!li"},beforeConnect(){this.item=Tt(this.selItem,this.$el)},disconnected(){this.item=null},events:[{name:"itemin itemout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,duration:s,timing:n,dir:o}}=t;z.read(()=>{const r=this.getCss(Jn(e,o,i)),a=this.getCss(Xn(e)?.5:o>0?1:0);z.write(()=>{c(this.$el,r),C.start(this.$el,a,s,n).catch(A)})})}},{name:"transitioncanceled transitionend",self:!0,el(){return this.item},handler(){C.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,dir:s}}=t;z.read(()=>{const n=this.getCss(Jn(e,s,i));z.write(()=>c(this.$el,n))})}}]};function Xn(t){return Jt(t,"in")}function Jn(t,e,i){return i/=2,Xn(t)^e<0?i:1-i}var Za={...is,fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:de(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:de(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:F(30),zIndex:-1},{transform:F(),zIndex:0}]:[{transform:F(-100),zIndex:0},{transform:F(),zIndex:-1}]},percent(t,e,i){return i<0?1-Me(e):Me(t)},translate(t,e){return e<0?[{transform:F(30*t),zIndex:-1},{transform:F(-100*(1-t)),zIndex:0}]:[{transform:F(-t*100),zIndex:0},{transform:F(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:F(100),zIndex:0},{transform:F(),zIndex:-1}]:[{transform:F(-30),zIndex:-1},{transform:F(),zIndex:0}]},percent(t,e,i){return i>0?1-Me(e):Me(t)},translate(t,e){return e<0?[{transform:F(t*100),zIndex:0},{transform:F(-30*(1-t)),zIndex:-1}]:[{transform:F(-30*t),zIndex:-1},{transform:F(100*(1-t)),zIndex:0}]}}},Qa={mixins:[it,On,Rn,qn],props:{ratio:String,minHeight:Number,maxHeight:Number},data:{ratio:"16:9",minHeight:!1,maxHeight:!1,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:Za},update:{read(){if(!this.list)return!1;let[t,e]=this.ratio.split(":").map(Number);return e=e*this.list.offsetWidth/t||0,this.minHeight&&(e=Math.max(this.minHeight,e)),this.maxHeight&&(e=Math.min(this.maxHeight,e)),{height:e-ne(this.list,"height","content-box")}},write(t){let{height:e}=t;e>0&&c(this.list,"minHeight",e)},events:["resize"]},methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}},Ua={mixins:[it,Cn],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},created(){for(const t of["init","start","move","end"]){const e=this[t];this[t]=i=>{kt(this.pos,ie(i)),e(i)}}},events:{name:ut,passive:!1,handler:"init"},computed:{target(){return(this.$el.tBodies||[this.$el])[0]},items(){return N(this.target)},isEmpty:{get(){return we(this.items)},watch(t){L(this.target,this.clsEmpty,t)},immediate:!0},handles:{get(t,e){let{handle:i}=t;return i?M(i,e):this.items},watch(t,e){c(e,{touchAction:"",userSelect:""}),c(t,{touchAction:Rt?"none":"",userSelect:"none"})},immediate:!0}},update:{write(t){if(!this.drag||!E(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:o}=this;c(this.drag,{top:i-s,left:e-n});const r=this.getSortable(document.elementFromPoint(e,i));if(!r)return;const{items:a}=r;if(a.some(C.inProgress))return;const l=sl(a,{x:e,y:i});if(a.length&&(!l||l===o))return;const h=this.getSortable(o),u=nl(r.target,l,o,e,i,r===h&&t.moved!==l);u!==!1&&(u&&o===u||(r!==h?(h.remove(o),t.moved=l):delete t.moved,r.insert(o,u),this.touched.add(r)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(o=>B(e,o));!n||s||i>0||Ii(e)||B(e,"."+this.clsNoDrag)||this.handle&&!B(e,this.handle)||(t.preventDefault(),this.touched=new Set([this]),this.placeholder=n,this.origin={target:e,index:te(n),...this.pos},T(document,re,this.move),T(document,vt,this.end),this.threshold||this.start(t))},start(t){this.drag=il(this.$container,this.placeholder);const{left:e,top:i}=this.placeholder.getBoundingClientRect();kt(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),x(this.drag,this.clsDrag,this.clsCustom),x(this.placeholder,this.clsPlaceholder),x(this.items,this.clsItem),x(document.documentElement,this.clsDragState),p(this.$el,"start",[this,this.placeholder]),tl(this.pos),this.move(t)},move(t){this.drag?this.$emit("move"):(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t)},end(){if(ee(document,re,this.move),ee(document,vt,this.end),!this.drag)return;el();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==te(this.placeholder)&&p(this.$el,"moved",[this,this.placeholder]):(p(t.$el,"added",[t,this.placeholder]),p(this.$el,"removed",[this,this.placeholder])),p(this.$el,"stop",[this,this.placeholder]),ct(this.drag),this.drag=null;for(const{clsPlaceholder:e,clsItem:i}of this.touched)for(const s of this.touched)_(s.items,e,i);this.touched=null,_(document.documentElement,this.clsDragState)},insert(t,e){x(this.items,this.clsItem);const i=()=>e?Hi(e,t):R(this.target,t);this.animate(i)},remove(t){!B(t,this.target)||this.animate(()=>ct(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=E(t))}}};let Kn;function tl(t){let e=Date.now();Kn=setInterval(()=>{let{x:i,y:s}=t;s+=Vt(window);const n=(Date.now()-e)*.3;e=Date.now(),lt(document.elementFromPoint(i,t.y),/auto|scroll/).reverse().some(o=>{let{scrollTop:r,scrollHeight:a}=o;const{top:l,bottom:h,height:u}=dt(o);if(l<s&&l+35>s)r-=n;else if(h>s&&h-35<s)r+=n;else return;if(r>0&&r<a-u)return Vt(o,r),!0})},15)}function el(){clearInterval(Kn)}function il(t,e){const i=R(t,e.outerHTML.replace(/(^<)(?:li|tr)|(?:li|tr)(\/>$)/g,"$1div$2"));return c(i,"margin","0","important"),c(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:c(e,"padding")}),K(i.firstElementChild,K(e.firstElementChild)),i}function sl(t,e){return t[$t(t,i=>Fe(e,i.getBoundingClientRect()))]}function nl(t,e,i,s,n,o){if(!N(t).length)return;const r=e.getBoundingClientRect();if(!o)return ol(t,i)||n<r.top+r.height/2?e:e.nextElementSibling;const a=i.getBoundingClientRect(),l=Zn([r.top,r.bottom],[a.top,a.bottom]),h=l?s:n,u=l?"width":"height",d=l?"left":"top",f=l?"right":"bottom",m=a[u]<r[u]?r[u]-a[u]:0;return a[d]<r[d]?m&&h<r[d]+m?!1:e.nextElementSibling:m&&h>r[f]-m?!1:e}function ol(t,e){const i=N(t).length===1;i&&R(t,e);const s=N(t),n=s.some((o,r)=>{const a=o.getBoundingClientRect();return s.slice(r+1).some(l=>{const h=l.getBoundingClientRect();return!Zn([a.left,a.right],[h.left,h.right])})});return i&&ct(e),n}function Zn(t,e){return t[1]>e[0]&&e[1]>t[0]}var rl={mixins:[ue,It,Js],args:"title",props:{delay:Number,title:String},data:{pos:"top",title:"",delay:0,animation:["uk-animation-scale-up"],duration:100,cls:"uk-active"},beforeConnect(){this._hasTitle=zt(this.$el,"title"),S(this.$el,"title",""),this.updateAria(!1),al(this.$el)},disconnected(){this.hide(),S(this.$el,"title",this._hasTitle?this.title:null)},methods:{show(){this.isToggled(this.tooltip||null)||!this.title||(this._unbind=D(document,"show keydown "+ut,this.hide,!1,t=>t.type===ut&&!B(t.target,this.$el)||t.type==="keydown"&&t.keyCode===27||t.type==="show"&&t.detail[0]!==this&&t.detail[0].$name===this.$name),clearTimeout(this.showTimer),this.showTimer=setTimeout(this._show,this.delay))},async hide(){H(this.$el,"input:focus")||(clearTimeout(this.showTimer),this.isToggled(this.tooltip||null)&&(await this.toggleElement(this.tooltip,!1,!1),ct(this.tooltip),this.tooltip=null,this._unbind()))},_show(){this.tooltip=R(this.container,'<div class="uk-'+this.$options.name+'"> <div class="uk-'+this.$options.name+'-inner">'+this.title+"</div> </div>"),T(this.tooltip,"toggled",(t,e)=>{if(this.updateAria(e),!e)return;this.positionAt(this.tooltip,this.$el);const[i,s]=ll(this.tooltip,this.$el,this.pos);this.origin=this.axis==="y"?Ye(i)+"-"+s:s+"-"+Ye(i)}),this.toggleElement(this.tooltip,!0)},updateAria(t){S(this.$el,"aria-expanded",t)}},events:{focus:"show",blur:"hide",[qt+" "+ae](t){Ct(t)||this[t.type===qt?"show":"hide"]()},[ut](t){Ct(t)&&this.show()}}};function al(t){qe(t)||S(t,"tabindex","0")}function ll(t,e,i){let[s,n]=i;const o=P(t),r=P(e),a=[["left","right"],["top","bottom"]];for(const h of a){if(o[h[0]]>=r[h[1]]){s=h[1];break}if(o[h[1]]<=r[h[0]]){s=h[0];break}}const l=g(a[0],s)?a[1]:a[0];return o[l[0]]===r[l[0]]?n=l[0]:o[l[1]]===r[l[1]]?n=l[1]:n="center",[s,n]}var hl={props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,msgInvalidMime:String,msgInvalidName:String,msgInvalidSize:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,msgInvalidMime:"Invalid File Type: %s",msgInvalidName:"Invalid File Name: %s",msgInvalidSize:"Invalid File Size: %s Kilobytes Max",multiple:!1,name:"files[]",params:{},type:"",url:"",abort:A,beforeAll:A,beforeSend:A,complete:A,completeAll:A,error:A,fail:A,load:A,loadEnd:A,loadStart:A,progress:A},events:{change(t){!H(t.target,'input[type="file"]')||(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){wi(t);const e=t.dataTransfer;!(e!=null&&e.files)||(_(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){wi(t)},dragover(t){wi(t),x(this.$el,this.clsDragover)},dragleave(t){wi(t),_(this.$el,this.clsDragover)}},methods:{async upload(t){if(t=bi(t),!t.length)return;p(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3<s.size){this.fail(this.msgInvalidSize.replace("%s",this.maxSize));return}if(this.allow&&!Qn(this.allow,s.name)){this.fail(this.msgInvalidName.replace("%s",this.allow));return}if(this.mime&&!Qn(this.mime,s.type)){this.fail(this.msgInvalidMime.replace("%s",this.mime));return}}this.multiple||(t=t.slice(0,1)),this.beforeAll(this,t);const e=cl(t,this.concurrent),i=async s=>{const n=new FormData;s.forEach(o=>n.append(this.name,o));for(const o in this.params)n.append(o,this.params[o]);try{const o=await ps(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:r=>{const{xhr:a}=r;a.upload&&T(a.upload,"progress",this.progress);for(const l of["loadStart","load","loadEnd","abort"])T(a,l.toLowerCase(),this[l]);return this.beforeSend(r)}});this.complete(o),e.length?await i(e.shift()):this.completeAll(o)}catch(o){this.error(o)}};await i(e.shift())}}};function Qn(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function cl(t,e){const i=[];for(let s=0;s<t.length;s+=e)i.push(t.slice(s,s+e));return i}function wi(t){t.preventDefault(),t.stopPropagation()}var ul=Object.freeze({__proto__:null,Countdown:wa,Filter:$a,Lightbox:Na,LightboxPanel:Mn,Notification:za,Parallax:Va,Slider:Ja,SliderParallax:Gn,Slideshow:Qa,SlideshowParallax:Gn,Sortable:Ua,Tooltip:rl,Upload:hl});return St(ul,(t,e)=>et.component(e,t)),et});
|
|
1
|
+
/*! UIkit 3.14.4-dev.d2929b5b7 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(me,ve){typeof exports=="object"&&typeof module<"u"?module.exports=ve():typeof define=="function"&&define.amd?define("uikit",ve):(me=typeof globalThis<"u"?globalThis:me||self,me.UIkit=ve())})(this,function(){"use strict";const{hasOwnProperty:me,toString:ve}=Object.prototype;function Nt(t,e){return me.call(t,e)}const ro=/\B([A-Z])/g,zt=lt(t=>t.replace(ro,"-$1").toLowerCase()),ao=/-(\w)/g,Zt=lt(t=>t.replace(ao,ds)),Ct=lt(t=>t.length?ds(null,t.charAt(0))+t.slice(1):"");function ds(t,e){return e?e.toUpperCase():""}function tt(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function Qt(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 yt(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:et,from:yi}=Array,{assign:$t}=Object;function mt(t){return typeof t=="function"}function It(t){return t!==null&&typeof t=="object"}function Pt(t){return ve.call(t)==="[object Object]"}function Ut(t){return It(t)&&t===t.window}function Le(t){return ki(t)===9}function $i(t){return ki(t)>=1}function te(t){return ki(t)===1}function ki(t){return!Ut(t)&&It(t)&&t.nodeType}function Fe(t){return typeof t=="boolean"}function _(t){return typeof t=="string"}function ee(t){return typeof t=="number"}function Ht(t){return ee(t)||_(t)&&!isNaN(t-parseFloat(t))}function we(t){return!(et(t)?t.length:It(t)?Object.keys(t).length:!1)}function X(t){return t===void 0}function Si(t){return Fe(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Et(t){const e=Number(t);return isNaN(e)?!1:e}function w(t){return parseFloat(t)||0}function q(t){return y(t)[0]}function y(t){return t&&($i(t)?[t]:Array.from(t).filter($i))||[]}function Lt(t){var e;if(Ut(t))return t;t=q(t);const i=Le(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function be(t,e){return t===e||It(t)&&It(e)&&Object.keys(t).length===Object.keys(e).length&&kt(t,(i,s)=>i===e[s])}function Ti(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),s=>s===e?i:e)}function ie(t){return t[t.length-1]}function kt(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function We(t,e){return t.slice().sort((i,s)=>{let{[e]:n=0}=i,{[e]:o=0}=s;return n>o?1:o>n?-1:0})}function fs(t,e){const i=new Set;return t.filter(s=>{let{[e]:n}=s;return i.has(n)?!1:i.add(n)})}function Q(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Et(t)||0,e),i)}function C(){}function Ci(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(s=>{let[n,o]=s;return Math.min(...e.map(r=>{let{[n]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function je(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function Ii(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}}function ps(t,e){t={...t};for(const i in t)t=t[i]>e[i]?Ii(t,i,e[i]):t;return t}function lo(t,e){t=ps(t,e);for(const i in t)t=t[i]<e[i]?Ii(t,i,e[i]):t;return t}const Re={ratio:Ii,contain:ps,cover:lo};function se(t,e,i,s){i===void 0&&(i=0),s===void 0&&(s=!1),e=y(e);const{length:n}=e;return n?(t=Ht(t)?Et(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(q(t)),s?Q(t,0,n-1):(t%=n,t<0?t+n:t)):-1}function lt(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class qe{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function S(t,e,i){if(It(e)){for(const n in e)S(t,n,e[n]);return}if(X(i)){var s;return(s=q(t))==null?void 0:s.getAttribute(e)}else for(const n of y(t))mt(i)&&(i=i.call(n,S(n,e))),i===null?xe(n,e):n.setAttribute(e,i)}function Ft(t,e){return y(t).some(i=>i.hasAttribute(e))}function xe(t,e){const i=y(t);for(const s of e.split(" "))for(const n of i)n.removeAttribute(s)}function ht(t,e){for(const i of[e,"data-"+e])if(Ft(t,i))return S(t,i)}const ho={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 Pi(t){return y(t).some(e=>ho[e.tagName.toLowerCase()])}function V(t){return y(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ye="input,select,textarea,button";function Ei(t){return y(t).some(e=>W(e,ye))}const Ve=ye+",a[href],[tabindex]";function Ye(t){return W(t,Ve)}function P(t){var e;return(e=q(t))==null?void 0:e.parentElement}function $e(t,e){return y(t).filter(i=>W(i,e))}function W(t,e){return y(t).some(i=>i.matches(e))}function it(t,e){return te(t)?t.closest(tt(e,">")?e.slice(1):e):y(t).map(i=>it(i,e)).filter(Boolean)}function E(t,e){return _(e)?!!it(t,e):q(e).contains(q(t))}function ne(t,e){const i=[];for(;t=P(t);)(!e||W(t,e))&&i.push(t);return i}function D(t,e){t=q(t);const i=t?y(t.children):[];return e?$e(i,e):i}function oe(t,e){return e?y(t).indexOf(q(e)):D(P(t)).indexOf(t)}function ft(t,e){return Ai(t,ms(t,e))}function ke(t,e){return Se(t,ms(t,e))}function Ai(t,e){return q(vs(t,e,"querySelector"))}function Se(t,e){return y(vs(t,e,"querySelectorAll"))}const co=/(^|[^\\],)\s*[!>+~-]/,gs=lt(t=>t.match(co));function ms(t,e){return e===void 0&&(e=document),_(t)&&gs(t)||Le(e)?e:e.ownerDocument}const uo=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,fo=lt(t=>t.replace(uo,"$1 *"));function vs(t,e,i){if(e===void 0&&(e=document),!t||!_(t))return t;if(t=fo(t),gs(t)){const s=go(t);t="";for(let n of s){let o=e;if(n[0]==="!"){const r=n.substr(1).trim().split(" ");if(o=it(P(e),r[0]),n=r.slice(1).join(" ").trim(),!n.length&&s.length===1)return o}if(n[0]==="-"){const r=n.substr(1).trim().split(" "),a=(o||e).previousElementSibling;o=W(a,n.substr(1))?a:null,n=r.slice(1).join(" ")}o&&(t+=(t?",":"")+mo(o)+" "+n)}e=document}try{return e[i](t)}catch{return null}}const po=/.*?[^\\](?:,|$)/g,go=lt(t=>t.match(po).map(e=>e.replace(/,$/,"").trim()));function mo(t){const e=[];for(;t.parentNode;){const i=S(t,"id");if(i){e.unshift("#"+Oi(i));break}else{let{tagName:s}=t;s!=="HTML"&&(s+=":nth-child("+(oe(t)+1)+")"),e.unshift(s),t=t.parentNode}}return e.join(" > ")}function Oi(t){return _(t)?CSS.escape(t):""}function k(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,o,r,a=!1]=_i(e);r.length>1&&(r=wo(r)),a!=null&&a.self&&(r=bo(r)),o&&(r=vo(o,r));for(const l of n)for(const h of s)h.addEventListener(l,r,a);return()=>Wt(s,n,r,a)}function Wt(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,,o,r=!1]=_i(e);for(const a of n)for(const l of s)l.removeEventListener(a,o,r)}function N(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[s,n,o,r,a=!1,l]=_i(e),h=k(s,n,o,u=>{const d=!l||l(u);d&&(h(),r(u,d))},a);return h}function p(t,e,i){return Bi(t).every(s=>s.dispatchEvent(jt(e,!0,!0,i)))}function jt(t,e,i,s){return e===void 0&&(e=!0),i===void 0&&(i=!1),_(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function _i(t){return t[0]=Bi(t[0]),_(t[1])&&(t[1]=t[1].split(" ")),mt(t[2])&&t.splice(2,0,!1),t}function vo(t,e){return i=>{const s=t[0]===">"?Se(t,i.currentTarget).reverse().filter(n=>E(i.target,n))[0]:it(i.target,t);s&&(i.current=s,e.call(this,i))}}function wo(t){return e=>et(e.detail)?t(e,...e.detail):t(e)}function bo(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function ws(t){return t&&"addEventListener"in t}function xo(t){return ws(t)?t:q(t)}function Bi(t){return et(t)?t.map(xo).filter(Boolean):_(t)?Se(t):ws(t)?[t]:y(t)}function St(t){return t.pointerType==="touch"||!!t.touches}function re(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}function bs(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:C,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>yo(t,i))}function yo(t,e){return new Promise((i,s)=>{const{xhr:n}=e;for(const o in e)if(o in n)try{n[o]=e[o]}catch{}n.open(e.method.toUpperCase(),t);for(const o in e.headers)n.setRequestHeader(o,e.headers[o]);k(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s($t(Error(n.statusText),{xhr:n,status:n.status}))}),k(n,"error",()=>s($t(Error("Network Error"),{xhr:n}))),k(n,"timeout",()=>s($t(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}function xs(t,e,i){return new Promise((s,n)=>{const o=new Image;o.onerror=r=>{n(r)},o.onload=()=>{s(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const $o={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,s){s===void 0&&(s="");const n=y(t);for(const o of n)if(_(e)){if(e=Mi(e),X(i))return getComputedStyle(o).getPropertyValue(e);o.style.setProperty(e,Ht(i)&&!$o[e]?i+"px":i||ee(i)?i:"",s)}else if(et(e)){const r={};for(const a of e)r[a]=c(o,a);return r}else It(e)&&(s=i,kt(e,(r,a)=>c(o,a,r,s)));return n[0]}const Mi=lt(t=>ko(t));function ko(t){if(tt(t,"--"))return t;t=zt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const s="-"+i+"-"+t;if(s in e)return s}}function b(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ys(t,i,"add")}function A(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ys(t,i,"remove")}function Di(t,e){S(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function Ni(t){!(arguments.length<=1)&&arguments[1]&&A(t,arguments.length<=1?void 0:arguments[1]),!(arguments.length<=2)&&arguments[2]&&b(t,arguments.length<=2?void 0:arguments[2])}function I(t,e){return[e]=zi(e),!!e&&y(t).some(i=>i.classList.contains(e))}function j(t,e,i){const s=zi(e);X(i)||(i=!!i);for(const n of y(t))for(const o of s)n.classList.toggle(o,i)}function ys(t,e,i){e=e.reduce((s,n)=>s.concat(zi(n)),[]);for(const s of y(t))s.classList[i](...e)}function zi(t){return String(t).split(/\s|,/).filter(Boolean)}function $s(t,e,i,s){return i===void 0&&(i=400),s===void 0&&(s="linear"),i=Math.round(i),Promise.all(y(t).map(n=>new Promise((o,r)=>{for(const l in e){const h=c(n,l);h===""&&c(n,l,h)}const a=setTimeout(()=>p(n,"transitionend"),i);N(n,"transitionend transitioncanceled",l=>{let{type:h}=l;clearTimeout(a),A(n,"uk-transition"),c(n,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),h==="transitioncanceled"?r():o(n)},{self:!0}),b(n,"uk-transition"),c(n,{transitionProperty:Object.keys(e).map(Mi).join(","),transitionDuration:i+"ms",transitionTimingFunction:s,...e})})))}const T={start:$s,async stop(t){p(t,"transitionend"),await Promise.resolve()},async cancel(t){p(t,"transitioncanceled"),await Promise.resolve()},inProgress(t){return I(t,"uk-transition")}},Te="uk-animation-";function Hi(t,e,i,s,n){return i===void 0&&(i=200),Promise.all(y(t).map(o=>new Promise((r,a)=>{p(o,"animationcanceled");const l=setTimeout(()=>p(o,"animationend"),i);N(o,"animationend animationcanceled",h=>{let{type:u}=h;clearTimeout(l),u==="animationcanceled"?a():r(o),c(o,"animationDuration",""),Di(o,Te+"\\S*")},{self:!0}),c(o,"animationDuration",i+"ms"),b(o,e,Te+(n?"leave":"enter")),tt(e,Te)&&(s&&b(o,"uk-transform-origin-"+s),n&&b(o,Te+"reverse"))})))}const So=new RegExp(Te+"(enter|leave)"),pt={in:Hi,out(t,e,i,s){return Hi(t,e,i,s,!0)},inProgress(t){return So.test(S(t,"class"))},cancel(t){p(t,"animationcanceled")}},Rt={width:["left","right"],height:["top","bottom"]};function x(t){const e=te(t)?q(t).getBoundingClientRect():{height:J(t),width:Ce(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function B(t,e){const i=x(t);if(t){const{scrollY:n,scrollX:o}=Lt(t),r={height:n,width:o};for(const a in Rt)for(const l of Rt[a])i[l]+=r[a]}if(!e)return i;const s=c(t,"position");kt(c(t,["left","top"]),(n,o)=>c(t,o,e[o]-i[o]+w(s==="absolute"&&n==="auto"?Xe(t)[o]:n)))}function Xe(t){let{top:e,left:i}=B(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:o}=q(t);let r=o||n;for(;r&&(r===s||r===n)&&c(r,"position")==="static";)r=r.parentNode;if(te(r)){const a=B(r);e-=a.top+w(c(r,"borderTopWidth")),i-=a.left+w(c(r,"borderLeftWidth"))}return{top:e-w(c(t,"marginTop")),left:i-w(c(t,"marginLeft"))}}function qt(t){t=q(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+w(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+w(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=Lt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const J=ks("height"),Ce=ks("width");function ks(t){const e=Ct(t);return(i,s)=>{if(X(s)){if(Ut(i))return i["inner"+e];if(Le(i)){const n=i.documentElement;return Math.max(n["offset"+e],n["scroll"+e])}return i=q(i),s=c(i,t),s=s==="auto"?i["offset"+e]:w(s)||0,s-ae(i,t)}else return c(i,t,!s&&s!==0?"":+s+ae(i,t)+"px")}}function ae(t,e,i){return i===void 0&&(i="border-box"),c(t,"boxSizing")===i?Rt[e].map(Ct).reduce((s,n)=>s+w(c(t,"padding"+n))+w(c(t,"border"+n+"Width")),0):0}function Ge(t){for(const e in Rt)for(const i in Rt[e])if(Rt[e][i]===t)return Rt[e][1-i];return t}function K(t,e,i,s){return e===void 0&&(e="width"),i===void 0&&(i=window),s===void 0&&(s=!1),_(t)?Co(t).reduce((n,o)=>{const r=Po(o);return r&&(o=Eo(r==="vh"?J(Lt(i)):r==="vw"?Ce(Lt(i)):s?i["offset"+Ct(e)]:x(i)[e],o)),n+w(o)},0):w(t)}const To=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,Co=lt(t=>t.toString().replace(/\s/g,"").match(To)||[]),Io=/(?:v[hw]|%)$/,Po=lt(t=>(t.match(Io)||[])[0]);function Eo(t,e){return t*w(e)/100}function Li(t){if(document.readyState!=="loading"){t();return}N(document,"DOMContentLoaded",t)}function vt(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function Ss(t){return t=v(t),t.innerHTML="",t}function At(t,e){return X(e)?v(t).innerHTML:R(Ss(t),e)}const Ao=Ke("prepend"),R=Ke("append"),Fi=Ke("before"),Je=Ke("after");function Ke(t){return function(e,i){var s;const n=y(_(i)?Vt(i):i);return(s=v(e))==null||s[t](...n),Ts(n)}}function ct(t){y(t).forEach(e=>e.remove())}function Wi(t,e){for(e=q(Fi(t,e));e.firstChild;)e=e.firstChild;return R(e,t),e}function ji(t,e){return y(y(t).map(i=>i.hasChildNodes()?Wi(y(i.childNodes),e):R(i,e)))}function Ze(t){y(t).map(P).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const Oo=/^\s*<(\w+|!)[^>]*>/,_o=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Vt(t){const e=_o.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return Oo.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,Ts(i.childNodes)}function Ts(t){return t.length>1?t:t[0]}function wt(t,e){if(!!te(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;wt(t,e),t=i}}function v(t,e){return Cs(t)?q(Vt(t)):Ai(t,e)}function M(t,e){return Cs(t)?y(Vt(t)):Se(t,e)}function Cs(t){return _(t)&&tt(t.trim(),"<")}const Yt=typeof window<"u",G=Yt&&S(document.documentElement,"dir")==="rtl",Xt=Yt&&"ontouchstart"in window,le=Yt&&window.PointerEvent,gt=le?"pointerdown":Xt?"touchstart":"mousedown",Qe=le?"pointermove":Xt?"touchmove":"mousemove",Ot=le?"pointerup":Xt?"touchend":"mouseup",Gt=le?"pointerenter":Xt?"":"mouseenter",he=le?"pointerleave":Xt?"":"mouseleave",Ue=le?"pointercancel":"touchcancel",L={reads:[],writes:[],read(t){return this.reads.push(t),qi(),t},write(t){return this.writes.push(t),qi(),t},clear(t){Ps(this.reads,t),Ps(this.writes,t)},flush:Ri};function Ri(t){Is(L.reads),Is(L.writes.splice(0)),L.scheduled=!1,(L.reads.length||L.writes.length)&&qi(t+1)}const Bo=4;function qi(t){L.scheduled||(L.scheduled=!0,t&&t<Bo?Promise.resolve().then(()=>Ri(t)):requestAnimationFrame(()=>Ri(1)))}function Is(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Ps(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function Vi(){}Vi.prototype={positions:[],init(){this.positions=[];let t;this.unbind=k(document,"mousemove",e=>t=re(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){var t;(t=this.unbind)==null||t.call(this),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:s,top:n,bottom:o}=e,[r]=this.positions,a=ie(this.positions),l=[r,a];return je(a,e)?!1:[[{x:i,y:n},{x:s,y:o}],[{x:i,y:o},{x:s,y:n}]].some(u=>{const d=Mo(l,u);return d&&je(d,e)})}};function Mo(t,e){let[{x:i,y:s},{x:n,y:o}]=t,[{x:r,y:a},{x:l,y:h}]=e;const u=(h-a)*(n-i)-(l-r)*(o-s);if(u===0)return!1;const d=((l-r)*(s-a)-(h-a)*(i-r))/u;return d<0?!1:{x:i+d*(n-i),y:s+d*(o-s)}}function ce(t,e,i,s){s===void 0&&(s=!0);const n=new IntersectionObserver(s?(o,r)=>{o.some(a=>a.isIntersecting)&&e(o,r)}:e,i);for(const o of y(t))n.observe(o);return n}const Do=Yt&&window.ResizeObserver;function ti(t,e,i){return i===void 0&&(i={box:"border-box"}),Do?As(ResizeObserver,t,e,i):(No(),Ie.add(e),{disconnect(){Ie.delete(e)}})}let Ie;function No(){if(Ie)return;Ie=new Set;let t;const e=()=>{if(!t){t=!0,L.read(()=>t=!1);for(const i of Ie)i()}};k(window,"load resize",e),k(document,"loadedmetadata load",e,!0)}function Es(t,e,i){return As(MutationObserver,t,e,i)}function As(t,e,i,s){const n=new t(i);for(const o of y(e))n.observe(o,s);return n}const Z={};Z.events=Z.created=Z.beforeConnect=Z.connected=Z.beforeDisconnect=Z.disconnected=Z.destroy=Yi,Z.args=function(t,e){return e!==!1&&Yi(e||t)},Z.update=function(t,e){return We(Yi(t,mt(e)?{read:e}:e),"order")},Z.props=function(t,e){if(et(e)){const i={};for(const s of e)i[s]=String;e=i}return Z.methods(t,e)},Z.computed=Z.methods=function(t,e){return e?t?{...t,...e}:e:t},Z.data=function(t,e,i){return i?Os(t,e,i):e?t?function(s){return Os(t,e,s)}:e:t};function Os(t,e,i){return Z.computed(mt(t)?t.call(i,i):t,mt(e)?e.call(i,i):e)}function Yi(t,e){return t=t&&!et(t)?[t]:t,e?t?t.concat(e):et(e)?e:[e]:t}function zo(t,e){return X(e)?t:e}function ue(t,e,i){const s={};if(mt(e)&&(e=e.options),e.extends&&(t=ue(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=ue(t,o,i);for(const o in t)n(o);for(const o in e)Nt(t,o)||n(o);function n(o){s[o]=(Z[o]||zo)(t[o],e[o],i)}return s}function Pe(t,e){e===void 0&&(e=[]);try{return t?tt(t,"{")?JSON.parse(t):e.length&&!g(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,o]=s.split(/:(.*)/);return n&&!X(o)&&(i[n.trim()]=o.trim()),i},{}):{}}catch{return{}}}function _s(t){if(ii(t)&&Xi(t,{func:"playVideo",method:"play"}),ei(t))try{t.play().catch(C)}catch{}}function Bs(t){ii(t)&&Xi(t,{func:"pauseVideo",method:"pause"}),ei(t)&&t.pause()}function Ms(t){ii(t)&&Xi(t,{func:"mute",method:"setVolume",value:0}),ei(t)&&(t.muted=!0)}function Ds(t){return ei(t)||ii(t)}function ei(t){return vt(t,"video")}function ii(t){return vt(t,"iframe")&&(Ns(t)||zs(t))}function Ns(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function zs(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Xi(t,e){await Lo(t),Hs(t,e)}function Hs(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const Gi="_ukPlayer";let Ho=0;function Lo(t){if(t[Gi])return t[Gi];const e=Ns(t),i=zs(t),s=++Ho;let n;return t[Gi]=new Promise(o=>{e&&N(t,"load",()=>{const r=()=>Hs(t,{event:"listening",id:s});n=setInterval(r,100),r()}),N(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===s&&a.event==="onReady"||i&&Number(a.player_id)===s)}catch{}}),t.src=""+t.src+(g(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+s)}).then(()=>clearInterval(n))}function si(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),V(t)?Ci(...st(t).map(s=>{const{top:n,left:o,bottom:r,right:a}=U(s);return{top:n-e,left:o-i,bottom:r+e,right:a+i}}).concat(B(t))):!1}function Ji(t,e){let{offset:i=0}=e===void 0?{}:e;const s=V(t)?st(t):[];return s.reduce((a,l,h)=>{const{scrollTop:u,scrollHeight:d,offsetHeight:f}=l,m=U(l),O=d-m.height,{height:$,top:H}=s[h-1]?U(s[h-1]):B(t);let z=Math.ceil(H-m.top-i+u);return i>0&&f<$+i?z+=i:i=0,z>O?(i-=z-O,z=O):z<0&&(i-=z,z=0),()=>n(l,z-u).then(a)},()=>Promise.resolve())();function n(a,l){return new Promise(h=>{const u=a.scrollTop,d=o(Math.abs(l)),f=Date.now();(function m(){const O=r(Q((Date.now()-f)/d));a.scrollTop=u+l*O,O===1?h():requestAnimationFrame(m)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function Ki(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!V(t))return 0;const[s]=st(t,/auto|scroll/,!0),{scrollHeight:n,scrollTop:o}=s,{height:r}=U(s),a=n-r,l=qt(t)[0]-qt(s)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return Q((o-h)/(u-h))}function st(t,e,i){e===void 0&&(e=/auto|scroll|hidden|clip/),i===void 0&&(i=!1);const s=Ls(t);let n=ne(t).reverse();n=n.slice(n.indexOf(s)+1);const o=yt(n,r=>c(r,"position")==="fixed");return~o&&(n=n.slice(o)),[s].concat(n.filter(r=>e.test(c(r,"overflow"))&&(!i||r.scrollHeight>U(r).height))).reverse()}function U(t){const e=Lt(t),{document:{documentElement:i}}=e;let s=t===Ls(t)?e:t;const{visualViewport:n}=e;if(Ut(s)&&n){let{height:r,width:a,scale:l,pageTop:h,pageLeft:u}=n;return r=Math.round(r*l),a=Math.round(a*l),{height:r,width:a,top:h,left:u,bottom:h+r,right:u+a}}let o=B(s);for(let[r,a,l,h]of[["width","x","left","right"],["height","y","top","bottom"]])Ut(s)?s=i:o[l]+=w(c(s,"border-"+l+"-width")),o[r]=o[a]=s["client"+Ct(r)],o[h]=o[r]+o[l];return o}function Ls(t){return Lt(t).document.scrollingElement}const _t=[["width","x","left","right"],["height","y","top","bottom"]];function Fs(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},et(e)||(e=[e,e]),B(t,js(t,e,i))}function Fo(t,e,i){let{attach:s,offset:n}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i};const o=B(t);for(const[r,[a,l,h,u]]of Object.entries(_t)){const d=s.target[r]===s.element[r]?U(e[r]):B(e[r]);o[h]=o[l]=d[h]+Ws(s.target[r],u,d[a])-Ws(s.element[r],u,o[a])+ +n[r],o[u]=o[h]+o[a]}return o}function Ws(t,e,i){return t==="center"?i/2:t===e?i:0}function js(t,e,i){const s=Fo(t,e,i);let{flip:n,shift:o,attach:{element:r,target:a},offset:l,boundary:h,viewportOffset:u}=i;if(!n&&!o)return s;const d={...s};for(const[f,[m,O,$,H]]of Object.entries(_t)){let z=st(e[f]);const[xt]=z;let dt=Rs(...z.map(U));u&&(dt[$]+=u,dt[H]-=u),h&&(dt=Rs(dt,U(h)));const Mt=s[$]>=dt[$],ge=s[H]<=dt[H];if(Mt&&ge)continue;let Tt=0;const at=B(e[f]);if(!qs(s,at,f)&&qs(s,at,1-f)){if(!n||r[f]===H&&Mt||r[f]===$&&ge)continue;if(Tt=(r[f]===$?-s[m]:r[f]===H?s[m]:0)+(a[f]===$?at[m]:a[f]===H?-at[m]:0)-l[f]*2,!Zi({...s,[$]:s[$]+Tt,[H]:s[H]+Tt},xt,f)){if(Zi(s,xt,f))continue;if(i.recursion)return!1;const Dt=js(t,e,{...i,attach:{element:r.map(Vs).reverse(),target:a.map(Vs).reverse()},offset:l.reverse(),recursion:!0});if(Dt&&Zi(Dt,xt,1-f))return Dt;continue}}else o&&(Tt=Q(Q(s[$],dt[$],dt[H]-s[m]),at[$]-s[m]+l[f],at[H]-l[f])-s[$]);d[$]=s[O]=s[$]+Tt,d[H]+=Tt}return d}function Rs(){let t={};for(var e=arguments.length,i=new Array(e),s=0;s<e;s++)i[s]=arguments[s];for(const n of i)for(const[,,o,r]of _t)t[o]=Math.max(t[o]||0,n[o]),t[r]=Math.min(...[t[r],n[r]].filter(Boolean));return t}function Zi(t,e,i){const s=U(e),[n,,o,r]=_t[i];return s[o]-=e["scroll"+Ct(o)],s[r]=s[o]+e["scroll"+Ct(n)],t[o]>=s[o]&&t[r]<=s[r]}function qs(t,e,i){const[,,s,n]=_t[i];return t[n]>e[s]&&e[n]>t[s]}function Vs(t){for(let e=0;e<_t.length;e++){const i=_t[e].indexOf(t);if(~i)return _t[1-e][i%2+2]}}var Wo=Object.freeze({__proto__:null,ajax:bs,getImage:xs,transition:$s,Transition:T,animate:Hi,Animation:pt,attr:S,hasAttr:Ft,removeAttr:xe,data:ht,addClass:b,removeClass:A,removeClasses:Di,replaceClass:Ni,hasClass:I,toggleClass:j,dimensions:x,offset:B,position:Xe,offsetPosition:qt,height:J,width:Ce,boxModelAdjust:ae,flipPosition:Ge,toPx:K,ready:Li,isTag:vt,empty:Ss,html:At,prepend:Ao,append:R,before:Fi,after:Je,remove:ct,wrapAll:Wi,wrapInner:ji,unwrap:Ze,fragment:Vt,apply:wt,$:v,$$:M,inBrowser:Yt,isRtl:G,hasTouch:Xt,pointerDown:gt,pointerMove:Qe,pointerUp:Ot,pointerEnter:Gt,pointerLeave:he,pointerCancel:Ue,on:k,off:Wt,once:N,trigger:p,createEvent:jt,toEventTargets:Bi,isTouch:St,getEventPos:re,fastdom:L,isVoidElement:Pi,isVisible:V,selInput:ye,isInput:Ei,selFocusable:Ve,isFocusable:Ye,parent:P,filter:$e,matches:W,closest:it,within:E,parents:ne,children:D,index:oe,hasOwn:Nt,hyphenate:zt,camelize:Zt,ucfirst:Ct,startsWith:tt,endsWith:Qt,includes:g,findIndex:yt,isArray:et,toArray:yi,assign:$t,isFunction:mt,isObject:It,isPlainObject:Pt,isWindow:Ut,isDocument:Le,isNode:$i,isElement:te,isBoolean:Fe,isString:_,isNumber:ee,isNumeric:Ht,isEmpty:we,isUndefined:X,toBoolean:Si,toNumber:Et,toFloat:w,toNode:q,toNodes:y,toWindow:Lt,isEqual:be,swap:Ti,last:ie,each:kt,sortBy:We,uniqueBy:fs,clamp:Q,noop:C,intersectRect:Ci,pointInRect:je,Dimensions:Re,getIndex:se,memoize:lt,Deferred:qe,MouseTracker:Vi,observeIntersection:ce,observeResize:ti,observeMutation:Es,mergeOptions:ue,parseOptions:Pe,play:_s,pause:Bs,mute:Ms,isVideo:Ds,positionAt:Fs,query:ft,queryAll:ke,find:Ai,findAll:Se,escape:Oi,css:c,propName:Mi,isInView:si,scrollIntoView:Ji,scrolledOver:Ki,scrollParents:st,offsetViewport:U});function jo(t){const e=t.data;t.use=function(n){if(!n.installed)return n.call(null,this),n.installed=!0,this},t.mixin=function(n,o){o=(_(o)?t.component(o):o)||this,o.options=ue(o.options,n)},t.extend=function(n){n=n||{};const o=this,r=function(l){this._init(l)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=ue(o.options,n),r.super=o,r.extend=o.extend,r},t.update=function(n,o){n=n?q(n):document.body;for(const r of ne(n).reverse())s(r[e],o);wt(n,r=>s(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(n){i=v(n)}});function s(n,o){if(!!n)for(const r in n)n[r]._connected&&n[r]._callUpdate(o)}}function Ro(t){t.prototype._callHook=function(s){var n;(n=this.$options[s])==null||n.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computed={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(s){s===void 0&&(s="update"),this._connected&&((s==="update"||s==="resize")&&this._callWatches(),this.$options.update&&(this._updates||(this._updates=new Set,L.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(s.type||s)))},t.prototype._callWatches=function(){if(this._watch)return;const s=!Nt(this,"_watch");this._watch=L.read(()=>{this._connected&&i.call(this,s),this._watch=null})};function e(s){for(const{read:n,write:o,events:r=[]}of this.$options.update){if(!s.has("update")&&!r.some(l=>s.has(l)))continue;let a;n&&(a=n.call(this,this._data,s),a&&Pt(a)&&$t(this._data,a)),o&&a!==!1&&L.write(()=>o.call(this,this._data,s))}}function i(s){const{$options:{computed:n}}=this,o={...this._computed};this._computed={};for(const r in n){const{watch:a,immediate:l}=n[r];a&&(s&&l||Nt(o,r)&&!be(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function qo(t){let e=0;t.prototype._init=function(i){i=i||{},i.data=Go(i,this.constructor.options),this.$options=ue(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 s in i)this.$props[s]=this[s]=i[s]},t.prototype._initMethods=function(){const{methods:i}=this.$options;if(i)for(const s in i)this[s]=i[s].bind(this)},t.prototype._initComputeds=function(){const{computed:i}=this.$options;if(this._computed={},i)for(const s in i)Vo(this,s,i[s])},t.prototype._initProps=function(i){let s;i=i||Ys(this.$options,this.$name);for(s in i)X(i[s])||(this.$props[s]=i[s]);const n=[this.$options.computed,this.$options.methods];for(s in this.$props)s in i&&Yo(n,s)&&(this[s]=this.$props[s])},t.prototype._initEvents=function(){this._events=[];for(const i of this.$options.events||[])if(Nt(i,"handler"))ni(this,i);else for(const s in i)ni(this,i[s],s)},t.prototype._unbindEvents=function(){this._events.forEach(i=>i()),delete this._events},t.prototype._initObservers=function(){this._observers=[Ko(this)],this.$options.computed&&this.registerObserver(Jo(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 Ys(t,e){const i={},{args:s=[],props:n={},el:o}=t;if(!n)return i;for(const a in n){const l=zt(a);let h=ht(o,l);X(h)||(h=n[a]===Boolean&&h===""?!0:Qi(n[a],h),!(l==="target"&&tt(h,"_"))&&(i[a]=h))}const r=Pe(ht(o,e),s);for(const a in r){const l=Zt(a);n[l]!==void 0&&(i[l]=Qi(n[l],r[a]))}return i}function Vo(t,e,i){Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:s,$props:n,$el:o}=t;return Nt(s,e)||(s[e]=(i.get||i).call(t,n,o)),s[e]},set(s){const{_computed:n}=t;n[e]=i.set?i.set.call(t,s):s,X(n[e])&&delete n[e]}})}function ni(t,e,i){Pt(e)||(e={name:i,handler:e});let{name:s,el:n,handler:o,capture:r,passive:a,delegate:l,filter:h,self:u}=e;if(n=mt(n)?n.call(t):n||t.$el,et(n)){n.forEach(d=>ni(t,{...e,el:d},i));return}!n||h&&!h.call(t)||t._events.push(k(n,s,l?_(l)?l:l.call(t):null,_(o)?t[o]:o.bind(t),{passive:a,capture:r,self:u}))}function Yo(t,e){return t.every(i=>!i||!Nt(i,e))}function Qi(t,e){return t===Boolean?Si(e):t===Number?Et(e):t==="list"?Xo(e):t?t(e):e}function Xo(t){return et(t)?t:_(t)?t.split(/,(?![^(]*\))/).map(e=>Ht(e)?Et(e):Si(e.trim())):[t]}function Go(t,e){let{data:i={}}=t,{args:s=[],props:n={}}=e;et(i)&&(i=i.slice(0,s.length).reduce((o,r,a)=>(Pt(r)?$t(o,r):o[s[a]]=r,o),{}));for(const o in i)X(i[o])?delete i[o]:n[o]&&(i[o]=Qi(n[o],i[o]));return i}function Jo(t){const{el:e}=t.$options,i=new MutationObserver(()=>t.$emit());return i.observe(e,{childList:!0,subtree:!0}),i}function Ko(t){const{$name:e,$options:i,$props:s}=t,{attrs:n,props:o,el:r}=i;if(!o||n===!1)return;const a=et(n)?n:Object.keys(o),l=a.map(u=>zt(u)).concat(e),h=new MutationObserver(u=>{const d=Ys(i,e);u.some(f=>{let{attributeName:m}=f;const O=m.replace("data-","");return(O===e?a:[Zt(O),Zt(m)]).some($=>!X(d[$])&&d[$]!==s[$])})&&t.$reset()});return h.observe(r,{attributes:!0,attributeFilter:l.concat(l.map(u=>"data-"+u))}),h}function Zo(t){const e=t.data;t.prototype.$create=function(s,n,o){return t[s](n,o)},t.prototype.$mount=function(s){const{name:n}=this.$options;s[e]||(s[e]={}),!s[e][n]&&(s[e][n]=this,this.$el=this.$options.el=this.$options.el||s,E(s,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(s){s===void 0&&(s=!1);const{el:n,name:o}=this.$options;n&&this._callDisconnected(),this._callHook("destroy"),n!=null&&n[e]&&(delete n[e][o],we(n[e])||delete n[e],s&&ct(this.$el))},t.prototype.$emit=function(s){this._callUpdate(s)},t.prototype.$update=function(s,n){s===void 0&&(s=this.$el),t.update(s,n)},t.prototype.$getComponent=t.getComponent;const i=lt(s=>t.prefix+zt(s));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function Qo(t){const e=t.data,i={};t.component=function(s,n){const o=zt(s);if(s=Zt(o),!n)return Pt(i[s])&&(i[s]=t.extend(i[s])),i[s];t[s]=function(a,l){const h=t.component(s);return h.options.functional?new h({data:Pt(a)?a:[...arguments]}):a?M(a).map(u)[0]:u();function u(d){const f=t.getComponent(d,s);if(f)if(l)f.$destroy();else return f;return new h({el:d,data:l})}};const r=Pt(n)?{...n}:n.options;return r.name=s,r.install==null||r.install(t,r,s),t._initialized&&!r.functional&&L.read(()=>t[s]("[uk-"+o+"],[data-uk-"+o+"]")),i[s]=Pt(n)?r:n},t.getComponents=s=>(s==null?void 0:s[e])||{},t.getComponent=(s,n)=>t.getComponents(s)[n],t.connect=s=>{if(s[e])for(const n in s[e])s[e][n]._callConnected();for(const n of s.attributes){const o=Xs(n.name);o&&o in i&&t[o](s)}},t.disconnect=s=>{for(const n in s[e])s[e][n]._callDisconnected()}}const Xs=lt(t=>tt(t,"uk-")||tt(t,"data-uk-")?Zt(t.replace("data-uk-","").replace("uk-","")):!1),nt=function(t){this._init(t)};nt.util=Wo,nt.data="__uikit__",nt.prefix="uk-",nt.options={},nt.version="3.14.4-dev.d2929b5b7",jo(nt),Ro(nt),qo(nt),Qo(nt),Zo(nt);function Uo(t){const{connect:e,disconnect:i}=t;if(!Yt||!window.MutationObserver)return;L.read(function(){document.body&&wt(document.body,e),new MutationObserver(o=>o.forEach(s)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(n)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function s(o){let{addedNodes:r,removedNodes:a}=o;for(const l of r)wt(l,e);for(const l of a)wt(l,i)}function n(o){var r;let{target:a,attributeName:l}=o;const h=Xs(l);if(!(!h||!(h in t))){if(Ft(a,l)){t[h](a);return}(r=t.getComponent(a,h))==null||r.$destroy()}}}var ot={connected(){!I(this.$el,this.$name)&&b(this.$el,this.$name)}},Ee={methods:{lazyload(t,e){t===void 0&&(t=this.$el),e===void 0&&(e=this.$el),this.registerObserver(ce(t,(i,s)=>{for(const n of y(mt(e)?e():e))M('[loading="lazy"]',n).forEach(o=>xe(o,"loading"));for(const n of i.filter(o=>{let{isIntersecting:r}=o;return r}).map(o=>{let{target:r}=o;return r}))s.unobserve(n)}))}}},Bt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave"},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return["slide","reveal"].some(i=>tt(e[0],i))}},methods:{toggleElement(t,e,i){return new Promise(s=>Promise.all(y(t).map(n=>{const o=Fe(e)?e:!this.isToggled(n);if(!p(n,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(mt(i)?i:i===!1||!this.hasAnimation?tr(this):this.hasTransition?Gs(this):er(this))(n,o),a=o?this.clsEnter:this.clsLeave;b(n,a),p(n,o?"show":"hide",[this]);const l=()=>{A(n,a),p(n,o?"shown":"hidden",[this]),this.$update(n)};return r?r.then(l,()=>(A(n,a),Promise.reject())):l()})).then(s,C))},isToggled(t){return t===void 0&&(t=this.$el),[t]=y(t),I(t,this.clsEnter)?!0:I(t,this.clsLeave)?!1:this.cls?I(t,this.cls.split(" ")[0]):V(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=g(this.cls," ")||e!==I(t,this.cls),i&&j(t,this.cls,g(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),M("[autofocus]",t).some(s=>V(s)?s.focus()||!0:s.blur()),i&&(p(t,"toggled",[e,this]),this.$update(t))}}};function tr(t){let{_toggle:e}=t;return(i,s)=>(pt.cancel(i),T.cancel(i),e(i,s))}function Gs(t){var e;const[i="reveal",s="top"]=((e=t.animation[0])==null?void 0:e.split("-"))||[],n=[["left","right"],["top","bottom"]],o=n[g(n[0],s)?0:1],r=o[1]===s,l=["width","height"][n.indexOf(o)],h="margin-"+o[0],u="margin-"+s;return async(d,f)=>{let{duration:m,velocity:O,transition:$,_toggle:H}=t,z=x(d)[l];const xt=T.inProgress(d);await T.cancel(d),f&&H(d,!0);const dt=Object.fromEntries(["padding","border","width","height","overflow",h,u].map(oo=>[oo,d.style[oo]])),Mt=x(d),ge=w(c(d,h)),Tt=w(c(d,u)),at=Mt[l]+Tt;!xt&&!f&&(z+=Tt);const[Dt]=ji(d,"<div>");c(Dt,{boxSizing:"border-box",height:Mt.height,width:Mt.width,...c(d,["padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",u])}),c(d,{padding:0,border:0,[u]:0,width:Mt.width,height:Mt.height,overflow:"hidden",[l]:z});const so=z/at;m=(O*at+m)*(f?1-so:so);const no={[l]:f?at:0};r&&(c(d,h,at-z+ge),no[h]=f?ge:at+ge),!r^i==="reveal"&&(c(Dt,h,-at+z),T.start(Dt,{[h]:f?0:-at},m,$));try{await T.start(d,no,m,$)}finally{c(d,dt),Ze(Dt.firstChild),f||H(d,!1)}}}function er(t){return(e,i)=>{pt.cancel(e);const{animation:s,duration:n,_toggle:o}=t;return i?(o(e,!0),pt.in(e,s[0],n,t.origin)):pt.out(e,s[1]||s[0],n,t.origin).then(()=>o(e,!1))}}var Js={mixins:[ot,Ee,Bt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return M(i,e)},watch(t,e){if(e||I(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=>v(e,i))},contents:{get(t){let{content:e}=t;return this.items.map(i=>v(e,i))},watch(t){for(const e of t)Ks(e,!I(this.items.find(i=>E(e,i)),this.clsOpen))},immediate:!0}},connected(){this.lazyload()},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(oe(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[se(t,this.items)]];const s=$e(this.items,"."+this.clsOpen);if(!this.multiple&&!g(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&!$e(i,":not(."+this.clsOpen+")").length))for(const n of i)this.toggleElement(n,!I(n,this.clsOpen),async(o,r)=>{j(o,this.clsOpen,r),S(v(this.$props.toggle,o),"aria-expanded",r);const a=v(this.content,o);if(e===!1||!this.animation){a.hidden=!r,Ks(a,!r);return}if(await Gs(this)(a,r),r){const l=v(this.$props.toggle,o);L.read(()=>{si(l)||Ji(l,{offset:this.offset})})}})}}};function Ks(t,e){t&&(t.hidden=e)}var ir={mixins:[ot,Bt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,sr(this)),this.$destroy(!0)}}};function sr(t){let{duration:e,transition:i,velocity:s}=t;return n=>{const o=w(c(n,"height"));return c(n,"height",o),T.start(n,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},s*o+e,i)}}var Zs={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},connected(){this.inView=this.autoplay==="inview",this.inView&&!Ft(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&Ms(this.$el),this.registerObserver(ce(this.$el,()=>this.$emit(),{},!1))},update:{read(){return Ds(this.$el)?{visible:V(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&si(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Bs(this.$el):(this.autoplay===!0||this.inView&&i)&&_s(this.$el)}}},bt={connected(){var t;this.registerObserver(ti(((t=this.$options.resizeTargets)==null?void 0:t.call(this))||this.$el,()=>this.$emit("resize")))}},nr={mixins:[bt,Zs],props:{width:Number,height:Number},data:{automute:!0},events:{"load loadedmetadata"(){this.$emit("resize")}},resizeTargets(){return[this.$el,P(this.$el)]},update:{read(){const{ratio:t,cover:e}=Re,{$el:i,width:s,height:n}=this;let o={width:s,height:n};if(!o.width||!o.height){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};o.width?o=t(h,"width",o.width):n?o=t(h,"height",o.height):o=h}const{offsetHeight:r,offsetWidth:a}=or(i)||P(i),l=e(o,{width:a+(a%2?1:0),height:r+(r%2?1:0)});return!l.width||!l.height?!1:l},write(t){let{height:e,width:i}=t;c(this.$el,{height:e,width:i})},events:["resize"]}};function or(t){for(;t=P(t);)if(c(t,"position")!=="static")return t}var de={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&v(e)}}},Qs={props:{pos:String,offset:null,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:"bottom-"+(G?"right":"left"),offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=g(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let s=[this.getPositionOffset(t),this.getShiftOffset(t)];const n={element:[this.inset?this.dir:Ge(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const h in n)n[h]=n[h].reverse();s=s.reverse()}const[o]=st(t,/auto|scroll/),{scrollTop:r,scrollLeft:a}=o,l=x(t);c(t,{top:-l.height,left:-l.width}),Fs(t,e,{attach:n,offset:s,boundary:i,flip:this.flip,shift:this.shift,viewportOffset:this.getViewportOffset(t)}),o.scrollTop=r,o.scrollLeft=a},getPositionOffset(t){return K(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(g(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t){return this.align==="center"?0:K(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(g(["left","top"],this.align)?1:-1)},getViewportOffset(t){return K(c(t,"--uk-position-viewport-offset"))}}};const rt=[];var Ui={mixins:[ot,de,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 v(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){g(rt,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(rt,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(g(rt,this))return!1;!this.stack&&rt.length?(Promise.all(rt.map(e=>e.hide())).then(this.show),t.preventDefault()):rt.push(this)}},{name:"show",self:!0,handler(){N(this.$el,"hide",k(document,"focusin",t=>{ie(rt)===this&&!E(t.target,this.$el)&&this.$el.focus()})),this.overlay&&(N(this.$el,"hidden",tn(this.$el)),N(this.$el,"hidden",en())),this.stack&&c(this.$el,"zIndex",w(c(this.$el,"zIndex"))+rt.length),b(document.documentElement,this.clsPage),this.bgClose&&N(this.$el,"hide",k(document,gt,t=>{let{target:e}=t;ie(rt)!==this||this.overlay&&!E(e,this.$el)||E(e,this.panel)||N(document,Ot+" "+Ue+" scroll",i=>{let{defaultPrevented:s,type:n,target:o}=i;!s&&n===Ot&&e===o&&this.hide()},!0)}),{self:!0}),this.escClose&&N(this.$el,"hide",k(document,"keydown",t=>{t.keyCode===27&&ie(rt)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Ye(this.$el)||S(this.$el,"tabindex","-1"),v(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){g(rt,this)&&rt.splice(rt.indexOf(this),1),c(this.$el,"zIndex",""),rt.some(t=>t.clsPage===this.clsPage)||A(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&P(this.$el)!==this.container?(R(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Us(this))},hide(){return this.toggleElement(this.$el,!1,Us(this))}}};function Us(t){let{transitionElement:e,_toggle:i}=t;return(s,n)=>new Promise((o,r)=>N(s,"show hide",()=>{s._reject==null||s._reject(),s._reject=r,i(s,n);const a=N(e,"transitionstart",()=>{N(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},rr(c(e,"transitionDuration")))})).then(()=>delete s._reject)}function rr(t){return t?Qt(t,"ms")?w(t):w(t)*1e3:0}function tn(t){if(CSS.supports("overscroll-behavior","contain")){const s=ar(t,n=>/auto|scroll/.test(c(n,"overflow")));return c(s,"overscrollBehavior","contain"),()=>c(s,"overscrollBehavior","")}let e;const i=[k(t,"touchstart",s=>{let{targetTouches:n}=s;n.length===1&&(e=n[0].clientY)},{passive:!0}),k(t,"touchmove",s=>{if(s.targetTouches.length!==1)return;let[n]=st(s.target,/auto|scroll/);E(n,t)||(n=t);const o=s.targetTouches[0].clientY-e,{scrollTop:r,scrollHeight:a,clientHeight:l}=n;(l>=a||r===0&&o>0||a-r<=l&&o<0)&&s.cancelable&&s.preventDefault()},{passive:!1})];return()=>i.forEach(s=>s())}let ts;function en(){if(ts)return C;ts=!0;const{body:t,documentElement:e}=document;return c(t,{overflowY:Ce(window)>e.clientWidth?"scroll":"",touchAction:"none"}),c(e,"overflowY","hidden"),()=>{ts=!1,c(e,"overflowY",""),c(t,{overflowY:"",touchAction:""})}}function ar(t,e){const i=[];return wt(t,s=>{e(s)&&i.push(s)}),i}let Y;var sn={mixins:[de,Ee,Qs,Bt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,display:String,clsDrop:String,animateOut:Boolean,bgScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,display:null,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{target(t,e){let{target:i,targetX:s,targetY:n}=t;return s=s||i||this.targetEl,n=n||i||this.targetEl,[s===!0?window:ft(s,e),n===!0?window:ft(n,e)]}},created(){this.tracker=new Vi},beforeConnect(){this.clsDrop=this.$props.clsDrop||"uk-"+this.$options.name},connected(){b(this.$el,this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=this.$create("toggle",ft(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,S(this.targetEl,"aria-haspopup",!0),this.lazyload(this.targetEl))},disconnected(){this.isActive()&&(Y=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!E(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),W(this.$el,":focus,:hover")||this.hide()}},{name:Gt+" focusin",filter(){return g(this.mode,"hover")},handler(t){St(t)||this.clearTimers()}},{name:he+" focusout",filter(){return g(this.mode,"hover")},handler(t){!St(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){Y=this,this.tracker.init();for(const t of[k(document,gt,e=>{let{target:i}=e;return!E(i,this.$el)&&N(document,Ot+" "+Ue+" scroll",s=>{let{defaultPrevented:n,type:o,target:r}=s;!n&&o===Ot&&i===r&&!(this.targetEl&&E(i,this.targetEl))&&this.hide(!1)},!0)}),k(document,"keydown",e=>{e.keyCode===27&&this.hide(!1)}),...this.bgScroll?[]:[tn(this.$el),en()],...this.display==="static"?[]:(()=>{const e=()=>this.$emit();return[k(window,"resize",e),k([document,st(this.$el)],"scroll",e),(()=>{const i=ti(st(this.$el),e);return()=>i.disconnect()})()]})()])N(this.$el,"hide",t,{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){Y=Y===null&&E(e,this.$el)&&this.isToggled()?this:Y;return}Y=this.isActive()?null:Y,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!I(this.$el,this.clsEnter)&&this.position()}},methods:{show(t,e){if(t===void 0&&(t=this.targetEl),e===void 0&&(e=!0),this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(Y){if(e&&Y.isDelaying){this.showTimer=setTimeout(()=>W(t,":hover")&&this.show(),10);return}let i;for(;Y&&i!==Y&&!E(this.$el,Y.$el);)i=Y,Y.hide(!1,!1)}this.container&&P(this.$el)!==this.container&&R(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t,e){t===void 0&&(t=!0),e===void 0&&(e=!0);const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelaying=lr(this.$el).some(s=>this.tracker.movesTo(s)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return Y===this},position(){A(this.$el,this.clsDrop+"-stack"),c(this.$el,{maxWidth:"",top:"",left:""}),this.$el.hidden=!0;const t=ft(this.boundary,this.$el),e=U(t||window),i=this.target.map(r=>U(st(r)[0])),s=this.getViewportOffset(this.$el),n=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[r,[a,l]]of n)g([a,!0],this.stretch)&&c(this.$el,{[l]:this.axis===a?"":Math.min(e[l],i[r][l]-2*s),["overflow-"+a]:"auto"});const o=i[0].width-2*s;this.$el.offsetWidth>o&&b(this.$el,this.clsDrop+"-stack"),c(this.$el,"maxWidth",o),this.$el.hidden=!1,this.positionAt(this.$el,this.target,t);for(const[r,[a,l,h,u]]of n)if(this.axis===a&&g([a,!0],this.stretch)){const d=Math.abs(this.getPositionOffset(this.$el)),f=B(this.target[r]),m=B(this.$el);c(this.$el,{[l]:(f[h]>m[h]?f[h]-Math.max(e[h],i[r][h]+s):Math.min(e[u],i[r][u]-s)-f[u])-d,["overflow-"+a]:"auto"}),this.positionAt(this.$el,this.target,t)}}}};function lr(t){const e=[];return wt(t,i=>c(i,"position")!=="static"&&e.push(i)),e}var hr={mixins:[ot],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return v(ye,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&P(this.input)===e&&this.input.nextElementSibling||v(i,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let s;const n=Ei(e)?"value":"textContent",o=e[n],r=(t=i.files)!=null&&t[0]?i.files[0].name:W(i,"select")&&(s=M("option",i).filter(a=>a.selected)[0])?s.textContent:i.value;o!==r&&(e[n]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return it(this.$el,"form")},handler(){this.$emit()}}]},nn={mixins:[bt],props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},resizeTargets(){return[this.$el,...yi(this.$el.children)]},connected(){this.registerObserver(Es(this.$el,()=>this.$reset(),{childList:!0}))},update:{read(){const t=es(this.$el.children);return{rows:t,columns:cr(t)}},write(t){let{columns:e,rows:i}=t;for(const s of i)for(const n of s)j(n,this.margin,i[0]!==s),j(n,this.firstColumn,e[0].includes(n))},events:["resize"]}};function es(t){return on(t,"top","bottom")}function cr(t){const e=[];for(const i of t){const s=on(i,"left","right");for(let n=0;n<s.length;n++)e[n]=e[n]?e[n].concat(s[n]):s[n]}return G?e.reverse():e}function on(t,e,i){const s=[[]];for(const n of t){if(!V(n))continue;let o=oi(n);for(let r=s.length-1;r>=0;r--){const a=s[r];if(!a[0]){a.push(n);break}let l;if(a[0].offsetParent===n.offsetParent?l=oi(a[0]):(o=oi(n,!0),l=oi(a[0],!0)),o[e]>=l[i]-1&&o[e]!==l[e]){s.push([n]);break}if(o[i]-1>l[e]||o[e]===l[e]){a.push(n);break}if(r===0){s.unshift([n]);break}}}return s}function oi(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:o}=t;return e&&([i,s]=qt(t)),{top:i,left:s,bottom:i+n,right:s+o}}var Ae={connected(){ur(this._uid,()=>this.$emit("scroll"))},disconnected(){dr(this._uid)}};const ri=new Map;let Oe;function ur(t,e){Oe=Oe||k(window,"scroll",()=>ri.forEach(i=>i()),{passive:!0,capture:!0}),ri.set(t,e)}function dr(t){ri.delete(t),Oe&&!ri.size&&(Oe(),Oe=null)}var fr={extends:nn,mixins:[ot,Ae],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&b(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;j(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||rn(this.$el))return t.translates=!1,!1;let s=!1;const n=D(this.$el),o=mr(e),r=gr(n,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(h=>We(h,"offsetTop")),s=pr(i,e));let l=Math.abs(this.parallax);return l&&(l=o.reduce((h,u,d)=>Math.max(h,u+r+(d%2?l:l/8)-a),0)),{padding:l,columns:e,translates:s,height:s?a:""}},write(t){let{height:e,padding:i}=t;c(this.$el,"paddingBottom",i||""),e!==!1&&c(this.$el,"height",e)},events:["resize"]},{read(){return this.parallax&&rn(this.$el)?!1:{scrolled:this.parallax?Ki(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:s}=t;i===!1&&!s||e.forEach((n,o)=>n.forEach((r,a)=>c(r,"transform",!i&&!s?"":"translateY("+((s&&-s[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function rn(t){return D(t).some(e=>c(e,"position")==="absolute")}function pr(t,e){const i=t.map(s=>Math.max(...s.map(n=>n.offsetHeight)));return e.map(s=>{let n=0;return s.map((o,r)=>n+=r?i[r-1]-s[r-1].offsetHeight:0)})}function gr(t,e){const[i]=t.filter(s=>I(s,e));return w(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}function mr(t){return t.map(e=>e.reduce((i,s)=>i+s.offsetHeight,0))}var vr={mixins:[bt],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:{get(t,e){let{target:i}=t;return M(i,e)},watch(){this.$reset()}}},resizeTargets(){return[this.$el,...this.elements]},update:{read(){return{rows:(this.row?es(this.elements):[this.elements]).map(wr)}},write(t){let{rows:e}=t;for(const{heights:i,elements:s}of e)s.forEach((n,o)=>c(n,"minHeight",i[o]))},events:["resize"]}};function wr(t){if(t.length<2)return{heights:[""],elements:t};c(t,"minHeight","");let e=t.map(br);const i=Math.max(...e);return{heights:t.map((s,n)=>e[n].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function br(t){let e=!1;V(t)||(e=t.style.display,c(t,"display","block","important"));const i=x(t).height-ae(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var xr={mixins:[bt],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},resizeTargets(){return[this.$el,...st(this.$el,/auto|scroll/)]},update:{read(t){let{minHeight:e}=t;if(!V(this.$el))return!1;let i="";const s=ae(this.$el,"height","content-box"),{body:n,scrollingElement:o}=document,[r]=st(this.$el,/auto|scroll/),{height:a}=U(r===n?o:r);if(this.expand)i=Math.max(a-(x(r).height-x(this.$el).height)-s,0);else{const l=o===r||n===r;if(i="calc("+(l?"100vh":a+"px"),this.offsetTop)if(l){const h=qt(this.$el)[0]-qt(r)[0];i+=h>0&&h<a/2?" - "+h+"px":""}else i+=" - "+c(r,"paddingTop");this.offsetBottom===!0?i+=" - "+x(this.$el.nextElementSibling).height+"px":Ht(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&Qt(this.offsetBottom,"px")?i+=" - "+w(this.offsetBottom)+"px":_(this.offsetBottom)&&(i+=" - "+x(ft(this.offsetBottom,this.$el)).height+"px"),i+=(s?" - "+s+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e}=t;c(this.$el,{minHeight:e}),this.minHeight&&w(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},an={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&g(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=Sr(t,this.$el);return this.svgEl&&e!==this.svgEl&&ct(this.svgEl),this.applyAttributes(e,t),this.svgEl=e}},C),this.strokeAnimation&&this.svg.then(t=>{this._connected&&(hn(t),this.registerObserver(ce(t,(e,i)=>{hn(t),i.disconnect()})))})},disconnected(){this.svg.then(t=>{this._connected||(Pi(this.$el)&&(this.$el.hidden=!1),ct(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){return vt(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>N(this.$el,"load",()=>t(this.getSvg()))):$r(await yr(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&&S(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);S(t,r,a)}this.id||xe(t,"id");const i=["width","height"];let s=i.map(o=>this[o]);s.some(o=>o)||(s=i.map(o=>S(e,o)));const n=S(e,"viewBox");n&&!s.some(o=>o)&&(s=n.split(" ").slice(2)),s.forEach((o,r)=>S(t,i[r],w(o)*this.ratio||null))}}};const yr=lt(async t=>t?tt(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function $r(t,e){var i;return e&&g(t,"<symbol")&&(t=kr(t,e)||t),t=v(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const ln=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,ai={};function kr(t,e){if(!ai[t]){ai[t]={},ln.lastIndex=0;let i;for(;i=ln.exec(t);)ai[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return ai[t][e]}function hn(t){const e=cn(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function cn(t){return Math.ceil(Math.max(0,...M("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function Sr(t,e){if(Pi(e)||vt(e,"canvas")){e.hidden=!0;const s=e.nextElementSibling;return un(t,s)?s:Je(e,t)}const i=e.lastElementChild;return un(t,i)?i:R(e,t)}function un(t,e){return vt(t,"svg")&&vt(e,"svg")&&dn(t)===dn(e)}function dn(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var Tr='<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>',Cr='<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>',Ir='<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>',Pr='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Er='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',Ar='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Or=`<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><style>.uk-navbar-toggle svg > [class*='line-'] {
|
|
2
|
+
transition: 0.2s ease-in-out;
|
|
3
|
+
transition-property: transform, opacity,;
|
|
4
|
+
transform-origin: center;
|
|
5
|
+
opacity: 1;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.uk-navbar-toggle[aria-expanded="true"] svg > .line-2 { transform: rotate(45deg); }
|
|
9
|
+
.uk-navbar-toggle[aria-expanded="true"] svg > .line-3 { transform: rotate(-45deg); }
|
|
10
|
+
|
|
11
|
+
.uk-navbar-toggle[aria-expanded="true"] svg > .line-1,
|
|
12
|
+
.uk-navbar-toggle[aria-expanded="true"] svg > .line-4 { opacity: 0; }
|
|
13
|
+
.uk-navbar-toggle[aria-expanded="true"] svg > .line-1 { transform: translateY(6px) scaleX(0); }
|
|
14
|
+
.uk-navbar-toggle[aria-expanded="true"] svg > .line-4 { transform: translateY(-6px) scaleX(0); }</style><rect class="line-1" y="3" width="20" height="2"/><rect class="line-2" y="9" width="20" height="2"/><rect class="line-3" y="9" width="20" height="2"/><rect class="line-4" y="15" width="20" height="2"/></svg>`,_r='<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>',Br='<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>',Mr='<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>',Dr='<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>',Nr='<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>',zr='<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>',Hr='<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>',Lr='<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>',Fr='<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>',Wr='<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>',jr='<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>',Rr='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const li={spinner:jr,totop:Rr,marker:Ir,"close-icon":Tr,"close-large":Cr,"nav-parent-icon":Pr,"nav-parent-icon-large":Er,"navbar-parent-icon":Ar,"navbar-toggle-icon":Or,"overlay-icon":_r,"pagination-next":Br,"pagination-previous":Mr,"search-icon":Dr,"search-large":Nr,"search-navbar":zr,"slidenav-next":Hr,"slidenav-next-large":Lr,"slidenav-previous":Fr,"slidenav-previous-large":Wr},is={install:Gr,extends:an,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){b(this.$el,"uk-icon")},methods:{async getSvg(){const t=Jr(this.icon);if(!t)throw"Icon not found.";return t}}},ut={args:!1,extends:is,data:t=>({icon:zt(t.constructor.options.name)}),beforeConnect(){b(this.$el,this.$name)}},qr={extends:ut,beforeConnect(){const t=this.$props.icon;this.icon=it(this.$el,".uk-nav-primary")?t+"-large":t}},fn={extends:ut,beforeConnect(){b(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=I(this.$el,"uk-slidenav-large")?t+"-large":t}},Vr={extends:ut,beforeConnect(){this.icon=I(this.$el,"uk-search-icon")&&ne(this.$el,".uk-search-large").length?"search-large":ne(this.$el,".uk-search-navbar").length?"search-navbar":this.$props.icon}},Yr={extends:ut,beforeConnect(){this.icon="close-"+(I(this.$el,"uk-close-large")?"large":"icon")}},Xr={extends:ut,methods:{async getSvg(){const t=await is.methods.getSvg.call(this);return this.ratio!==1&&c(v("circle",t),"strokeWidth",1/this.ratio),t}}},hi={};function Gr(t){t.icon.add=(e,i)=>{const s=_(e)?{[e]:i}:e;kt(s,(n,o)=>{li[o]=n,delete hi[o]}),t._initialized&&wt(document.body,n=>kt(t.getComponents(n),o=>{o.$options.isIcon&&o.icon in s&&o.$reset()}))}}function Jr(t){return li[t]?(hi[t]||(hi[t]=v((li[Kr(t)]||li[t]).trim())),hi[t].cloneNode(!0)):null}function Kr(t){return G?Ti(Ti(t,"left","right"),"previous","next"):t}const Zr=Yt&&"loading"in HTMLImageElement.prototype;var Qr={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},connected(){if(this.loading!=="lazy"){this.load();return}const t=[this.$el,...ke(this.$props.target,this.$el)];Zr&&ci(this.$el)&&(this.$el.loading="lazy",ss(this.$el),t.length===1)||(sa(this.$el),this.registerObserver(ce(t,(e,i)=>{this.load(),i.disconnect()},{rootMargin:K(this.offsetTop,"height")+"px "+K(this.offsetLeft,"width")+"px"})))},disconnected(){this._data.image&&(this._data.image.onload="")},methods:{load(){if(this._data.image)return this._data.image;const t=ci(this.$el)?this.$el:ta(this.$el,this.dataSrc,this.sources);return xe(t,"loading"),ss(this.$el,t.currentSrc),this._data.image=t}}};function ss(t,e){if(ci(t)){const i=P(t);(na(i)?D(i):[t]).forEach(n=>pn(n,n))}else e&&!g(t.style.backgroundImage,e)&&(c(t,"backgroundImage","url("+Oi(e)+")"),p(t,jt("load",!1)))}const Ur=["data-src","data-srcset","sizes"];function pn(t,e){Ur.forEach(i=>{const s=ht(t,i);s&&S(e,i.replace(/^(data-)+/,""),s)})}function ta(t,e,i){const s=new Image;return ea(s,i),pn(t,s),s.onload=()=>{ss(t,s.currentSrc)},S(s,"src",e),s}function ea(t,e){if(e=ia(e),e.length){const i=Vt("<picture>");for(const s of e){const n=Vt("<source>");S(n,s),R(i,n)}R(i,t)}}function ia(t){if(!t)return[];if(tt(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Pe(t);return et(t)||(t=[t]),t.filter(e=>!we(e))}function sa(t){ci(t)&&!Ft(t,"src")&&S(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function na(t){return vt(t,"picture")}function ci(t){return vt(t,"img")}var ui={props:{media:Boolean},data:{media:!1},connected(){const t=oa(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,p(this.$el,jt("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=k(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function oa(t,e){if(_(t)){if(tt(t,"@"))t=w(c(e,"--uk-breakpoint-"+t.substr(1)));else if(isNaN(t))return t}return t&&Ht(t)?"(min-width: "+t+"px)":""}var ra={mixins:[ot,ui,bt],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||c(this.$el,"--uk-leader-fill-content")}},connected(){[this.wrapper]=ji(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Ze(this.wrapper.childNodes)},update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write(t){let{width:e,fill:i,hide:s}=t;j(this.wrapper,this.clsHide,s),S(this.wrapper,this.attrFill,new Array(e).join(i))},events:["resize"]}},aa={install:la,mixins:[Ui],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(){I(this.panel,"uk-margin-auto-vertical")?b(this.$el,"uk-flex"):c(this.$el,"display","block"),J(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),A(this.$el,"uk-flex")}}]};function la(t){let{modal:e}=t;e.dialog=function(s,n){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+s+"</div> </div>",n);return o.show(),k(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(s,n){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(_(s)?s:At(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},n,o=>o.resolve())},e.confirm=function(s,n){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(_(s)?s:At(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},n,o=>o.reject())},e.prompt=function(s,n,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(_(s)?s:At(s))+'</label> <input class="uk-input" value="'+(n||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>v("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(s,n,o,r){n={bgClose:!1,escClose:!0,labels:e.labels,...n};const a=e.dialog(s(n),n),l=new qe;let h=!1;return k(a.$el,"submit","form",u=>{u.preventDefault(),l.resolve(r==null?void 0:r(a)),h=!0,a.hide()}),k(a.$el,"hide",()=>!h&&o(l)),l.promise.dialog=a,l.promise}}var ha={extends:Js,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},ca={mixins:[ot,de],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,target:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number},data:{dropdown:".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",align:G?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,flip:!1,shift:!0,boundary:!0,target:!1,targetX:!1,targetY:!1,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return ft(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||ft(e,this.$el)||v("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=v("<div></div>"))):null},watch(t){b(t,"uk-dropbar","uk-dropbar-top","uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const s=M("."+i,e);if(this.dropContainer!==e)for(const o of M("."+i,this.dropContainer)){var n;const r=(n=this.getDropdown(o))==null?void 0:n.targetEl;!g(s,o)&&r&&E(r,this.$el)&&s.push(o)}return s},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos})},immediate:!0},toggles:{get(t,e){let{dropdown:i}=t;return M(i,e)},watch(){const t=I(this.$el,"uk-navbar-justify");for(const e of M(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el))c(e,"flexGrow",t?M(this.dropdown,e).length:"")},immediate:!0}},disconnected(){this.dropbar&&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.targetEl&&!E(i.targetEl,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,s=this.getActive();i===Jt.DOWN&&Ft(e,"aria-expanded")&&(t.preventDefault(),!s||s.targetEl!==e?(e.click(),N(this.dropContainer,"show",n=>{let{target:o}=n;return mn(o)})):mn(s.$el)),gn(t,this.toggles,s)}},{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 s=this.getActive(),n=M(Ve,e),o=yt(n,a=>W(a,":focus"));if(i===Jt.UP&&(t.preventDefault(),o>0&&n[o-1].focus()),i===Jt.DOWN&&(t.preventDefault(),o<n.length-1&&n[o+1].focus()),i===Jt.ESC){var r;s==null||(r=s.targetEl)==null||r.focus()}gn(t,this.toggles,s)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&g(t.mode,"hover")&&!this.dropdowns.some(e=>W(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;!this.isDropbarDrop(e)||(P(this.dropbar)||Je(this.dropbarAnchor||this.$el,this.dropbar),b(e,this.clsDrop+"-dropbar"))}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;!this.isDropbarDrop(e)||(this._observer=ti(e,()=>{const i=ne(e,"."+this.clsDrop).concat(e).map(r=>B(r)),s=Math.min(...i.map(r=>{let{top:a}=r;return a})),n=Math.max(...i.map(r=>{let{bottom:a}=r;return a})),o=B(this.dropbar);c(this.dropbar,"top",this.dropbar.offsetTop-(o.top-s)),this.transitionTo(n-s+w(c(e,"marginBottom")),e)}))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){const e=this.getActive();W(this.dropbar,":hover")&&(e==null?void 0:e.$el)===t.target&&!this.toggles.some(i=>e.targetEl!==i&&W(i,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;if(!this.isDropbarDrop(e))return;this._observer.disconnect();const i=this.getActive();(!i||(i==null?void 0:i.$el)===e)&&this.transitionTo(0)}}],methods:{getActive(){return Y&&E(Y.targetEl,this.$el)&&Y},transitionTo(t,e){const{dropbar:i}=this,s=J(i);e=s<t&&e,c(e,"clipPath","polygon(0 0,100% 0,100% "+s+"px,0 "+s+"px)"),J(i,s),T.cancel([e,i]),Promise.all([T.start(i,{height:t},this.duration),T.start(e,{clipPath:"polygon(0 0,100% 0,100% "+t+"px,0 "+t+"px)"},this.duration)]).catch(C).then(()=>c(e,{clipPath:""}))},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return this.getDropdown(t)&&I(t,this.clsDrop)}}};function gn(t,e,i){const{current:s,keyCode:n}=t,o=(i==null?void 0:i.targetEl)||s,r=e.indexOf(o);n===Jt.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),n===Jt.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),n===Jt.TAB&&(o.focus(),i==null||i.hide(!1))}function mn(t){if(!v(":focus",t)){var e;(e=v(Ve,t))==null||e.focus()}}const Jt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var vn={props:{swiping:Boolean},data:{swiping:!0},computed:{swipeTarget(t,e){return e}},connected(){!this.swiping||ni(this,{el:this.swipeTarget,name:gt,passive:!0,handler(t){if(!St(t))return;const e=re(t),i="tagName"in t.target?t.target:P(t.target);N(document,Ot+" "+Ue+" scroll",s=>{const{x:n,y:o}=re(s);(s.type!=="scroll"&&i&&n&&Math.abs(e.x-n)>100||o&&Math.abs(e.y-o)>100)&&setTimeout(()=>{p(i,"swipe"),p(i,"swipe"+ua(e.x,e.y,n,o))})})}})}};function ua(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}var da={mixins:[Ui,vn],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()&&!V(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&v(e,document.body)&&this.hide()}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!I(P(this.panel),this.clsMode)&&(Wi(this.panel,"<div>"),b(P(this.panel),this.clsMode)),b(document.body,this.clsContainer,this.clsFlip),c(document.body,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),b(this.$el,this.clsOverlay),b(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),J(document.body),b(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&fa()}},{name:"hide",self:!0,handler(){A(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&pa(),this.mode==="reveal"&&Ze(this.panel),A(this.panel,this.clsSidebarAnimation,this.clsMode),A(this.$el,this.clsOverlay),c(this.$el,"display",""),A(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Qt(t.type,"Left")^this.flip&&this.hide()}}]};function fa(){wn().content+=",user-scalable=0"}function pa(){const t=wn();t.content=t.content.replace(/,user-scalable=0$/,"")}function wn(){return v('meta[name="viewport"]',document.head)||R(document.head,'<meta name="viewport">')}var ga={mixins:[ot,bt],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 it(e,i)},content(t,e){let{selContent:i}=t;return it(e,i)}},resizeTargets(){return[this.container,this.content]},update:{read(){return!this.content||!this.container||!V(this.$el)?!1:{max:Math.max(this.minHeight,J(this.container)-(x(this.content).height-J(this.$el)))}},write(t){let{max:e}=t;c(this.$el,{minHeight:this.minHeight,maxHeight:e})},events:["resize"]}},ma={mixins:[bt],props:["width","height"],resizeTargets(){return[this.$el,P(this.$el)]},connected(){b(this.$el,"uk-responsive-width")},update:{read(){return V(this.$el)&&this.width&&this.height?{width:Ce(P(this.$el)),height:this.height}:!1},write(t){J(this.$el,Re.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},va={props:{offset:Number},data:{offset:0},connected(){wa(this)},disconnected(){ba(this)},methods:{async scrollTo(t){t=t&&v(t)||document.body,p(this.$el,"beforescroll",[this,t])&&(await Ji(t,{offset:this.offset}),p(this.$el,"scrolled",[this,t]))}}};const _e=new Set;function wa(t){_e.size||k(document,"click",bn),_e.add(t)}function ba(t){_e.delete(t),_e.length||Wt(document,"click",bn)}function bn(t){if(!t.defaultPrevented)for(const e of _e)E(t.target,e.$el)&&(t.preventDefault(),e.scrollTo(xn(e.$el)))}function xn(t){return document.getElementById(decodeURIComponent(t.hash).substring(1))}var xa={mixins:[Ae],args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?M(i,e):[e]},watch(t,e){this.hidden&&c($e(t,":not(."+this.inViewClass+")"),"visibility","hidden"),be(t,e)||this.$reset()},immediate:!0}},connected(){this._data.elements=new Map,this.registerObserver(ce(this.elements,t=>{const e=this._data.elements;for(const{target:i,isIntersecting:s}of t){e.has(i)||e.set(i,{cls:ht(i,"uk-scrollspy-class")||this.cls});const n=e.get(i);!this.repeat&&n.show||(n.show=s)}this.$emit()},{rootMargin:K(this.offsetTop,"height")-1+"px "+(K(this.offsetLeft,"width")-1)+"px"},!1))},disconnected(){for(const[t,e]of this._data.elements.entries())A(t,this.inViewClass,(e==null?void 0:e.cls)||"")},update:[{write(t){for(const[e,i]of t.elements.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){const i=this._data.elements.get(t);if(!!i){if(i.off==null||i.off(),c(t,"visibility",!e&&this.hidden?"hidden":""),j(t,this.inViewClass,e),j(t,i.cls),/\buk-animation-/.test(i.cls)){const s=()=>Di(t,"uk-animation-[\\w-]+");e?i.off=N(t,"animationcancel animationend",s):s()}p(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}}},ya={mixins:[Ae],props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return M('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},elements(t){let{closest:e}=t;return it(this.links,e||"*")}},update:[{read(){const t=this.links.map(xn).filter(Boolean),{length:e}=t;if(!e||!V(this.$el))return!1;const[i]=st(t,/auto|scroll/,!0),{scrollTop:s,scrollHeight:n}=i,o=U(i),r=n-o.height;let a=!1;if(s===r)a=e-1;else{for(let l=0;l<t.length&&!(B(t[l]).top-o.top-this.offset>0);l++)a=+l;a===!1&&this.overflow&&(a=0)}return{active:a}},write(t){let{active:e}=t;const i=e!==!1&&!I(this.elements[e],this.cls);this.links.forEach(s=>s.blur());for(let s=0;s<this.elements.length;s++)j(this.elements[s],this.cls,+s===e);i&&p(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},$a={mixins:[ot,ui,bt,Ae],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{selTarget(t,e){let{selTarget:i}=t;return i&&v(i,e)||e}},resizeTargets(){return document.documentElement},connected(){this.start=$n(this.start||this.top),this.end=$n(this.end||this.bottom),this.placeholder=v("+ .uk-sticky-placeholder",this.$el)||v('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},disconnected(){this.isFixed&&(this.hide(),A(this.selTarget,this.clsInactive)),ct(this.placeholder),this.placeholder=null},events:[{name:"resize",el(){return window},handler(){this.$emit("resize")}},{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=B(v(location.hash)),i=B(this.$el);this.isFixed&&Ci(e,i)&&(t.scrollTop=e.top-i.height-K(this.targetOffset,"height",this.placeholder)-K(this.offset,"height",this.placeholder))})}}],update:[{read(t,e){let{height:i,margin:s}=t;if(this.inactive=!this.matchMedia||!V(this.$el),this.inactive)return!1;const n=this.active&&e.has("resize");n&&(c(this.selTarget,"transition","0s"),this.hide()),this.active||(i=B(this.$el).height,s=c(this.$el,"margin")),n&&(this.show(),requestAnimationFrame(()=>c(this.selTarget,"transition","")));const o=this.isFixed?this.placeholder:this.$el,r=J(window);let a=this.position;this.overflowFlip&&i>r&&(a=a==="top"?"bottom":"top");let l=K(this.offset,"height",o);a==="bottom"&&(i<r||this.overflowFlip)&&(l+=r-i);const h=this.overflowFlip?0:Math.max(0,i+l-r),u=B(o).top,d=(this.start===!1?u:yn(this.start,this.$el,u))-l,f=this.end===!1?document.scrollingElement.scrollHeight-r:yn(this.end,this.$el,u+i,!0)-B(this.$el).height+h-l;return{start:d,end:f,offset:l,overflow:h,topOffset:u,height:i,margin:s,width:x(o).width,top:qt(o)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:s}=this;c(s,{height:e,margin:i}),E(s,document)||(Je(this.$el,s),s.hidden=!0)},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:s,overflowScroll:n=0,start:o,end:r}=t;const a=document.scrollingElement.scrollTop;return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,offsetParentTop:B((this.isFixed?this.placeholder:this.$el).offsetParent).top,overflowScroll:Q(n+Q(a,o,r)-Q(e,o,r),0,s)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:h,topOffset:u,height:d}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const f=Date.now();if((f-s>300||n!==o)&&(t.initScroll=r,t.initTimestamp=f),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||n==="down"&&i||n==="up"&&!this.isFixed&&r<=u+d)){if(!this.isFixed){pt.inProgress(this.$el)&&l>r&&(pt.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>u?(pt.cancel(this.$el),pt.out(this.$el,this.animation).then(()=>this.hide(),C)):this.hide()}else this.isFixed?this.update():this.animation&&r>u?(pt.cancel(this.$el),this.show(),pt.in(this.$el,this.animation).catch(C)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.setActive(!1),A(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:s=0,start:n,end:o,offset:r,topOffset:a,height:l,offsetParentTop:h}=this._data;const u=n!==0||e>n;let d="fixed";e>o&&(r+=o-h,d="absolute"),i&&(r-=s),c(this.$el,{position:d,top:r+"px",width:t}),this.setActive(u),j(this.$el,this.clsBelow,e>a+l),b(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(Ni(this.selTarget,this.clsInactive,this.clsActive),e!==t&&p(this.$el,"active")):(Ni(this.selTarget,this.clsActive,this.clsInactive),e!==t&&p(this.$el,"inactive"))}}};function yn(t,e,i,s){if(!t)return 0;if(Ht(t)||_(t)&&t.match(/^-?\d/))return i+K(t,"height",e,!0);{const n=t===!0?P(e):ft(t,e);return B(n).bottom-(s&&n&&E(e,n)?w(c(n,"paddingBottom")):0)}}function $n(t){return t==="true"?!0:t==="false"?!1:t}var kn={mixins:[Ee,vn,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 ke(i,e)},watch(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>D(i).forEach((s,n)=>j(s,this.cls,n===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return M(i,e).filter(s=>!W(s,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return D(this.$el).filter(t=>this.toggles.some(e=>E(e,t)))},swipeTarget(){return this.connects}},connected(){this.lazyload(this.$el,this.connects),Li(()=>this.$emit())},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?ke(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(ht(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(Qt(e,"Left")?"next":"previous")}}],methods:{index(){return yt(this.children,t=>I(t,this.cls))},show(t){const e=this.index(),i=se(t,this.toggles,e),s=se(this.children[i],D(this.$el));D(this.$el).forEach((o,r)=>{j(o,this.cls,s===r),S(this.toggles[r],"aria-expanded",s===r)});const n=e>=0&&e!==i;this.connects.forEach(async o=>{let{children:r}=o;await this.toggleElement(y(r).filter(a=>I(a,this.cls)),!1,n),await this.toggleElement(r[s],!0,n)})}}},ka={mixins:[ot],extends:kn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=I(this.$el,"uk-tab-left")?"uk-tab-left":I(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Sa=32;var Ta={mixins:[Ee,ui,Bt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get(t,e){let{href:i,target:s}=t;return s=ke(s||i,e),s.length&&s||[e]},watch(){this.updateAria()},immediate:!0}},connected(){!g(this.mode,"media")&&!Ye(this.$el)&&S(this.$el,"tabindex","0"),this.lazyload(this.$el,this.target),Li(()=>this.$emit())},events:[{name:gt,filter(){return g(this.mode,"hover")},handler(t){this._preventClick=null,!(!St(t)||this._showState)&&(p(this.$el,"focus"),N(document,gt,()=>p(this.$el,"blur"),!0,e=>!E(e.target,this.$el)),g(this.mode,"click")&&(this._preventClick=!0))}},{name:Gt+" "+he+" focus blur",filter(){return g(this.mode,"hover")},handler(t){if(St(t))return;const e=g([Gt,"focus"],t.type),i=S(this.$el,"aria-expanded");if(!(!e&&(t.type===he&&W(this.$el,":focus")||t.type==="blur"&&W(this.$el,":hover")))){if(this._showState&&e&&i!==this._showState){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return g(this.mode,"click")&&!vt(this.$el,"input")},handler(t){t.keyCode===Sa&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return["click","hover"].some(t=>g(this.mode,t))},handler(t){let e;(this._preventClick||it(t.target,'a[href="#"], a[href=""]')||(e=it(t.target,"a[href]"))&&(S(this.$el,"aria-expanded")!=="true"||e.hash&&W(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&g(this.mode,"click")&&this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}},{name:"mediachange",filter(){return g(this.mode,"media")},el(){return this.target},handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!p(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>I(s,this.clsLeave));if(e.length){for(const s of this.target){const n=g(e,s);this.toggleElement(s,n,n)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(s=>!g(i,s)),!0)},updateAria(t){g(this.mode,"media")||S(this.$el,"aria-expanded",Fe(t)?t:this.isToggled(this.target))}}},Ca=Object.freeze({__proto__:null,Accordion:Js,Alert:ir,Cover:nr,Drop:sn,Dropdown:sn,FormCustom:hr,Grid:fr,HeightMatch:vr,HeightViewport:xr,Icon:is,Img:Qr,Leader:ra,Margin:nn,Modal:aa,Nav:ha,Navbar:ca,Offcanvas:da,OverflowAuto:ga,Responsive:ma,Scroll:va,Scrollspy:xa,ScrollspyNav:ya,Sticky:$a,Svg:an,Switcher:kn,Tab:ka,Toggle:Ta,Video:Zs,Close:Yr,Spinner:Xr,NavParentIcon:qr,SlidenavNext:fn,SlidenavPrevious:fn,SearchIcon:Vr,Marker:ut,NavbarParentIcon:ut,NavbarToggleIcon:ut,OverlayIcon:ut,PaginationNext:ut,PaginationPrevious:ut,Totop:ut});kt(Ca,(t,e)=>nt.component(e,t)),Uo(nt);const Ia=["days","hours","minutes","seconds"];var Pa={mixins:[ot],props:{date:String,clsWrapper:String},data:{date:"",clsWrapper:".uk-countdown-%unit%"},connected(){this.date=Date.parse(this.$props.date),this.start()},disconnected(){this.stop()},events:[{name:"visibilitychange",el(){return document},handler(){document.hidden?this.stop():this.start()}}],methods:{start(){this.stop(),this.update(),this.timer=setInterval(this.update,1e3)},stop(){clearInterval(this.timer)},update(){const t=Ea(this.date);(!this.date||t.total<=0)&&(this.stop(),t.days=t.hours=t.minutes=t.seconds=0);for(const e of Ia){const i=v(this.clsWrapper.replace("%unit%",e),this.$el);if(!i)continue;let s=String(Math.trunc(t[e]));s=s.length<2?"0"+s:s,i.textContent!==s&&(s=s.split(""),s.length!==i.children.length&&At(i,s.map(()=>"<span></span>").join("")),s.forEach((n,o)=>i.children[o].textContent=n))}}}};function Ea(t){const e=t-Date.now();return{total:e,seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24}}const ns="uk-transition-leave",os="uk-transition-enter";function Sn(t,e,i,s){s===void 0&&(s=0);const n=di(e,!0),o={opacity:1},r={opacity:0},a=u=>()=>n===di(e)?u():Promise.reject(),l=a(()=>(b(e,ns),Promise.all(Cn(e).map((u,d)=>new Promise(f=>setTimeout(()=>T.start(u,r,i/2,"ease").then(f),d*s)))).then(()=>A(e,ns)))),h=a(()=>{const u=J(e);return b(e,os),t(),c(D(e),{opacity:0}),new Promise(d=>requestAnimationFrame(()=>{const f=D(e),m=J(e);c(e,"alignContent","flex-start"),J(e,u);const O=Cn(e);c(f,r);const $=O.map((H,z)=>new Promise(xt=>setTimeout(()=>T.start(H,o,i/2,"ease").then(xt),z*s)));u!==m&&$.push(T.start(e,{height:m},i/2+O.length*s,"ease")),Promise.all($).then(()=>{A(e,os),n===di(e)&&(c(e,{height:"",alignContent:""}),c(f,{opacity:""}),delete e.dataset.transition),d()})}))});return I(e,ns)?Tn(e).then(h):I(e,os)?Tn(e).then(l).then(h):l().then(h)}function di(t,e){return e&&(t.dataset.transition=1+di(t)),Et(t.dataset.transition)||0}function Tn(t){return Promise.all(D(t).filter(T.inProgress).map(e=>new Promise(i=>N(e,"transitionend transitioncanceled",i))))}function Cn(t){return es(D(t)).reduce((e,i)=>e.concat(We(i.filter(s=>si(s)),"offsetLeft")),[])}function Aa(t,e,i){return new Promise(s=>requestAnimationFrame(()=>{let n=D(e);const o=n.map(a=>In(a,!0)),r=c(e,["height","padding"]);T.cancel(e),n.forEach(T.cancel),Pn(e),t(),n=n.concat(D(e).filter(a=>!g(n,a))),Promise.resolve().then(()=>{L.flush();const a=c(e,["height","padding"]),[l,h]=Oa(e,n,o);n.forEach((u,d)=>h[d]&&c(u,h[d])),c(e,{display:"block",...r}),requestAnimationFrame(()=>{const u=n.map((d,f)=>P(d)===e&&T.start(d,l[f],i,"ease")).concat(T.start(e,a,i,"ease"));Promise.all(u).then(()=>{n.forEach((d,f)=>P(d)===e&&c(d,"display",l[f].opacity===0?"none":"")),Pn(e)},C).then(s)})})}))}function In(t,e){const i=c(t,"zIndex");return V(t)?{display:"",opacity:e?c(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?oe(t):i,...En(t)}:!1}function Oa(t,e,i){const s=e.map((o,r)=>P(o)&&r in i?i[r]?V(o)?En(o):{opacity:0}:{opacity:V(o)?1:0}:!1),n=s.map((o,r)=>{const a=P(e[r])===t&&(i[r]||In(e[r]));if(!a)return!1;if(!o)delete a.opacity;else if(!("opacity"in o)){const{opacity:l}=a;l%1?o.opacity=1:delete a.opacity}return a});return[s,n]}function Pn(t){c(t.children,{height:"",left:"",opacity:"",pointerEvents:"",position:"",top:"",marginTop:"",marginLeft:"",transform:"",width:"",zIndex:""}),c(t,{height:"",display:"",padding:""})}function En(t){const{height:e,width:i}=B(t),{top:s,left:n}=Xe(t),{marginLeft:o,marginTop:r}=c(t,["marginTop","marginLeft"]);return{top:s,left:n,height:e,width:i,marginLeft:o,marginTop:r,transform:""}}var An={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e){e===void 0&&(e=this.$el);const i=this.animation;return(i==="fade"?Sn:i==="delayed-fade"?function(){for(var n=arguments.length,o=new Array(n),r=0;r<n;r++)o[r]=arguments[r];return Sn(...o,40)}:i?Aa:()=>(t(),Promise.resolve()))(t,e,this.duration).then(()=>this.$update(e,"resize"),C)}}},_a={mixins:[An],args:"target",props:{target:Boolean,selActive:Boolean},data:{target:null,selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{toggles:{get(t,e){let{attrItem:i}=t;return M("["+i+"],[data-"+i+"]",e)},watch(){if(this.updateState(),this.selActive!==!1){const t=M(this.selActive,this.$el);this.toggles.forEach(e=>j(e,this.cls,g(t,e)))}},immediate:!0},children:{get(t,e){let{target:i}=t;return M(i+" > *",e)},watch(t,e){e&&!Na(t,e)&&this.updateState()},immediate:!0}},events:[{name:"click",delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.apply(t.current)}}],methods:{apply(t){const e=this.getState(),i=_n(t,this.attrItem,this.getState());Ba(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>I(t,this.cls)).reduce((t,e)=>_n(e,this.attrItem,t),{filter:{"":""},sort:[]})},async setState(t,e){e===void 0&&(e=!0),t={filter:{"":""},sort:[],...t},p(this.$el,"beforeFilter",[this,t]),this.toggles.forEach(i=>j(i,this.cls,!!Da(i,this.attrItem,t))),await Promise.all(M(this.target,this.$el).map(i=>{const s=()=>{Ma(t,i,D(i)),this.$update(this.$el)};return e?this.animate(s,i):s()})),p(this.$el,"afterFilter",[this])},updateState(){L.write(()=>this.setState(this.getState(),!1))}}};function On(t,e){return Pe(ht(t,e),["filter"])}function Ba(t,e){return["filter","sort"].every(i=>be(t[i],e[i]))}function Ma(t,e,i){const s=za(t);i.forEach(r=>c(r,"display",s&&!W(r,s)?"none":""));const[n,o]=t.sort;if(n){const r=Ha(i,n,o);be(r,i)||R(e,r)}}function _n(t,e,i){const s=On(t,e),{filter:n,group:o,sort:r,order:a="asc"}=s;return(n||X(r))&&(o?n?(delete i.filter[""],i.filter[o]=n):(delete i.filter[o],(we(i.filter)||""in i.filter)&&(i.filter={"":n||""})):i.filter={"":n||""}),X(r)||(i.sort=[r,a]),i}function Da(t,e,i){let{filter:s={"":""},sort:[n,o]}=i;const{filter:r="",group:a="",sort:l,order:h="asc"}=On(t,e);return X(l)?a in s&&r===s[a]||!r&&a&&!(a in s)&&!s[""]:n===l&&o===h}function Na(t,e){return t.length===e.length&&t.every(i=>e.includes(i))}function za(t){let{filter:e}=t,i="";return kt(e,s=>i+=s||""),i}function Ha(t,e,i){return[...t].sort((s,n)=>ht(s,e).localeCompare(ht(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}var rs={slide:{show(t){return[{transform:F(t*-100)},{transform:F()}]},percent(t){return Be(t)},translate(t,e){return[{transform:F(e*-100*t)},{transform:F(e*100*(1-t))}]}}};function Be(t){return Math.abs(c(t,"transform").split(",")[4]/t.offsetWidth)||0}function F(t,e){return t===void 0&&(t=0),e===void 0&&(e="%"),t+=t?e:"","translate3d("+t+", 0, 0)"}function fe(t){return"scale3d("+t+", "+t+", 1)"}var Bn={...rs,fade:{show(){return[{opacity:0},{opacity:1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t},{opacity:t}]}},scale:{show(){return[{opacity:0,transform:fe(1-.2)},{opacity:1,transform:fe(1)}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:fe(1-.2*t)},{opacity:t,transform:fe(1-.2+.2*t)}]}}};function La(t,e,i,s){let{animation:n,easing:o}=s;const{percent:r,translate:a,show:l=C}=n,h=l(i),u=new qe;return{dir:i,show(d,f,m){f===void 0&&(f=0);const O=m?"linear":o;return d-=Math.round(d*Q(f,-1,1)),this.translate(f),fi(e,"itemin",{percent:f,duration:d,timing:O,dir:i}),fi(t,"itemout",{percent:1-f,duration:d,timing:O,dir:i}),Promise.all([T.start(e,h[1],d,O),T.start(t,h[0],d,O)]).then(()=>{this.reset(),u.resolve()},C),u.promise},cancel(){T.cancel([e,t])},reset(){for(const d in h[0])c([e,t],d,"")},forward(d,f){return f===void 0&&(f=this.percent()),T.cancel([e,t]),this.show(d,f,!0)},translate(d){this.reset();const f=a(d,i);c(e,f[1]),c(t,f[0]),fi(e,"itemtranslatein",{percent:d,dir:i}),fi(t,"itemtranslateout",{percent:1-d,dir:i})},percent(){return r(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function fi(t,e,i){p(t,jt(e,!1,!1,i))}var Fa={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){S(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>(!this.draggable||!v(":focus",this.$el))&&(!this.pauseOnHover||!W(this.$el,":hover"))&&!this.stack.length&&this.show("next"),this.autoplayInterval)},stopAutoplay(){this.interval&&clearInterval(this.interval)}}};const Me={passive:!1,capture:!0},Wa="touchstart mousedown",as="touchmove mousemove",ls="touchend touchcancel mouseup click input";var ja={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const s=re(i).x*(G?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(i)}}},events:[{name:Wa,delegate(){return this.selSlides},handler(t){!this.draggable||!St(t)&&Ra(t.target)||it(t.target,ye)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}},{name:as+" "+ls,el(){return this.list},handler:C,...Me}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,k(document,as,this.move,Me),k(document,ls,this.end,Me),c(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;c(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;const{slides:i}=this;let{prevIndex:s}=this,n=Math.abs(e),o=this.getIndex(s+this.dir,s),r=this._getDistance(s,o)||i[s].offsetWidth;for(;o!==s&&n>r;)this.drag-=r*this.dir,s=o,n-=r,o=this.getIndex(s+this.dir,s),r=this._getDistance(s,o)||i[s].offsetWidth;this.percent=n/r;const a=i[s],l=i[o],h=this.index!==o,u=s===o;let d;[this.index,this.prevIndex].filter(f=>!g([o,s],f)).forEach(f=>{p(i[f],"itemhidden",[this]),u&&(d=!0,this.prevIndex=s)}),(this.index===s&&this.prevIndex!==s||d)&&p(i[this.index],"itemshown",[this]),h&&(this.prevIndex=s,this.index=o,!u&&p(a,"beforeitemhide",[this]),p(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!u&&l),h&&(!u&&p(a,"itemhide",[this]),p(l,"itemshow",[this]))},end(){if(Wt(document,as,this.move,Me),Wt(document,ls,this.end,Me),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(G?this.dir*(G?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}c(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null}}};function Ra(t){return!t.children.length&&t.childNodes.length}var qa={data:{selNav:!1},computed:{nav(t,e){let{selNav:i}=t;return v(i,e)},selNavItem(t){let{attrItem:e}=t;return"["+e+"],[data-"+e+"]"},navItems(t,e){return M(this.selNavItem,e)}},update:{write(){this.nav&&this.length!==this.nav.children.length&&At(this.nav,this.slides.map((t,e)=>"<li "+this.attrItem+'="'+e+'"><a href></a></li>').join("")),this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]},events:[{name:"click",delegate(){return this.selNavItem},handler(t){t.preventDefault(),this.show(ht(t.current,this.attrItem))}},{name:"itemshow",handler:"updateNav"}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=ht(e,this.attrItem);j(e,this.clsActive,Et(i)===t),j(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}}}},Mn={mixins:[Fa,ja,qa,bt],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number,selSlides:String},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){A(this.slides,this.clsActive)},computed:{duration(t,e){let{velocity:i}=t;return Dn(e.offsetWidth/i)},list(t,e){let{selList:i}=t;return v(i,e)},maxIndex(){return this.length-1},selSlides(t){let{selList:e,selSlides:i}=t;return e+" "+(i||"> *")},slides:{get(){return M(this.selSlides,this.$el)},watch(){this.$reset()}},length(){return this.slides.length}},methods:{show(t,e){if(e===void 0&&(e=!1),this.dragging||!this.length)return;const{stack:i}=this,s=e?0:i.length,n=()=>{i.splice(s,1),i.length&&this.show(i.shift(),!0)};if(i[e?"unshift":"push"](t),!e&&i.length>1){i.length===2&&this._transitioner.forward(Math.min(this.duration,200));return}const o=this.getIndex(this.index),r=I(this.slides,this.clsActive)&&this.slides[o],a=this.getIndex(t,this.index),l=this.slides[a];if(r===l){n();return}if(this.dir=Va(t,o),this.prevIndex=o,this.index=a,r&&!p(r,"beforeitemhide",[this])||!p(l,"beforeitemshow",[this,r])){this.index=this.prevIndex,n();return}const h=this._show(r,l,e).then(()=>(r&&p(r,"itemhidden",[this]),p(l,"itemshown",[this]),new Promise(u=>{L.write(()=>{i.shift(),i.length?this.show(i.shift(),!0):this._transitioner=null,u()})})));return r&&p(r,"itemhide",[this]),p(l,"itemshow",[this]),h},getIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.index),Q(se(t,this.slides,e,this.finite),0,this.maxIndex)},getValidIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),this.getIndex(t,e)},_show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:i?e.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing,...this.transitionOptions}),!i&&!t)return this._translate(1),Promise.resolve();const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_getDistance(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()},_translate(t,e,i){e===void 0&&(e=this.prevIndex),i===void 0&&(i=this.index);const s=this._getTransitioner(e!==i?e:!1,i);return s.translate(t),s},_getTransitioner(t,e,i,s){return t===void 0&&(t=this.prevIndex),e===void 0&&(e=this.index),i===void 0&&(i=this.dir||1),s===void 0&&(s=this.transitionOptions),new this.Transitioner(ee(t)?this.slides[t]:t,ee(e)?this.slides[e]:e,i*(G?-1:1),s)}}};function Va(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function Dn(t){return .5*t+300}var Nn={mixins:[Mn],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:rs,Transitioner:La},computed:{animation(t){let{animation:e,Animations:i}=t;return{...i[e]||i.slide,name:e}},transitionOptions(){return{animation:this.animation}}},events:{beforeitemshow(t){let{target:e}=t;b(e,this.clsActive)},itemshown(t){let{target:e}=t;b(e,this.clsActivated)},itemhidden(t){let{target:e}=t;A(e,this.clsActive,this.clsActivated)}}},zn={mixins:[de,Ui,Bt,Nn],functional:!0,props:{delayControls:Number,preload:Number,videoAutoplay:Boolean,template:String},data:()=>({preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"uk-lightbox-item",selClose:".uk-close-large",selCaption:".uk-lightbox-caption",pauseOnHover:!1,velocity:2,Animations:Bn,template:'<div class="uk-lightbox uk-overflow-hidden"> <ul class="uk-lightbox-items"></ul> <div class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href uk-slidenav-next uk-lightbox-item="next"></a> <div class="uk-lightbox-toolbar uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){const t=v(this.template),e=v(this.selList,t);this.items.forEach(()=>R(e,"<li>")),this.$mount(R(this.container,t))},computed:{caption(t,e){let{selCaption:i}=t;return v(i,e)}},events:[{name:Qe+" "+gt+" keydown",handler:"showControls"},{name:"click",self:!0,delegate(){return this.selSlides},handler(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),A(this.slides,this.clsActive),T.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el(){return document},handler(t){if(!(!this.isToggled(this.$el)||!this.draggable))switch(t.keyCode){case 37:this.show("previous");break;case 39:this.show("next");break}}},{name:"beforeitemshow",handler(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=Bn.scale,A(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler(){At(this.caption,this.getItem().caption||"");for(let t=-this.preload;t<=this.preload;t++)this.loadItem(this.index+t)}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,alt:n="",poster:o,attrs:r={}}=e;if(this.setItem(e,"<span uk-spinner></span>"),!i)return;let a;const l={frameborder:"0",allow:"autoplay",allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":""+this.videoAutoplay};if(s==="image"||i.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i))try{const{width:h,height:u}=await xs(i,r.srcset,r.size);this.setItem(e,De("img",{src:i,width:h,height:u,alt:n,...r}))}catch{this.setError(e)}else if(s==="video"||i.match(/\.(mp4|webm|ogv)($|\?)/i)){const h=De("video",{src:i,poster:o,controls:"",playsinline:"","uk-video":""+this.videoAutoplay,...r});k(h,"loadedmetadata",()=>{S(h,{width:h.videoWidth,height:h.videoHeight}),this.setItem(e,h)}),k(h,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,De("iframe",{src:i,frameborder:"0",allowfullscreen:"",class:"uk-lightbox-iframe",...r}));else if(a=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?[?&]v=|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,De("iframe",{src:"https://www.youtube"+(a[1]||"")+".com/embed/"+a[2]+(a[3]?"?"+a[3]:""),width:1920,height:1080,...l,...r}));else if(a=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:h,width:u}=await(await fetch("https://vimeo.com/api/oembed.json?maxwidth=1920&url="+encodeURI(i),{credentials:"omit"})).json();this.setItem(e,De("iframe",{src:"https://player.vimeo.com/video/"+a[1]+(a[2]?"?"+a[2]:""),width:u,height:h,...l,...r}))}catch{this.setError(e)}}}],methods:{loadItem(t){t===void 0&&(t=this.index);const e=this.getItem(t);this.getSlide(e).childElementCount||p(this.$el,"itemload",[e])},getItem(t){return t===void 0&&(t=this.index),this.items[se(t,this.slides)]},setItem(t,e){p(this.$el,"itemloaded",[this,At(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2"></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),b(this.$el,"uk-active","uk-transition-active")},hideControls(){A(this.$el,"uk-active","uk-transition-active")}}};function De(t,e){const i=Vt("<"+t+">");return S(i,e),i}var Ya={install:Xa,props:{toggle:String},data:{toggle:"a"},computed:{toggles:{get(t,e){let{toggle:i}=t;return M(i,e)},watch(){this.hide()}}},disconnected(){this.hide()},events:[{name:"click",delegate(){return this.toggle+":not(.uk-disabled)"},handler(t){t.preventDefault(),this.show(t.current)}}],methods:{show(t){const e=fs(this.toggles.map(Hn),"source");if(te(t)){const{source:i}=Hn(t);t=yt(e,s=>{let{source:n}=s;return i===n})}return this.panel=this.panel||this.$create("lightboxPanel",{...this.$props,items:e}),k(this.panel.$el,"hidden",()=>this.panel=!1),this.panel.show(t)},hide(){var t;return(t=this.panel)==null?void 0:t.hide()}}};function Xa(t,e){t.lightboxPanel||t.component("lightboxPanel",zn),$t(e.props,t.component("lightboxPanel").options.props)}function Hn(t){const e={};for(const i of["href","caption","type","poster","alt","attrs"])e[i==="href"?"source":i]=ht(t,i);return e.attrs=Pe(e.attrs),e}var Ga={mixins:[de],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:null,pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:Ja,computed:{marginProp(t){let{pos:e}=t;return"margin"+(tt(e,"top")?"Top":"Bottom")},startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=v("."+this.clsContainer+"-"+this.pos,this.container)||R(this.container,'<div class="'+this.clsContainer+" "+this.clsContainer+"-"+this.pos+'" style="display: block"></div>');this.$mount(R(t,'<div class="'+this.clsMsg+(this.status?" "+this.clsMsg+"-"+this.status:"")+'"> <a href class="'+this.clsClose+'" data-uk-close></a> <div>'+this.message+"</div> </div>"))},async connected(){const t=w(c(this.$el,this.marginProp));await T.start(c(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){it(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()},[Gt](){this.timer&&clearTimeout(this.timer)},[he](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=P(i);p(i,"close",[this]),ct(i),s!=null&&s.hasChildNodes()||ct(s)};this.timer&&clearTimeout(this.timer),t||await T.start(this.$el,this.startProps),e(this.$el)}}};function Ja(t){t.notification.closeAll=function(e,i){wt(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}const pi={x:gi,y:gi,rotate:gi,scale:gi,color:hs,backgroundColor:hs,borderColor:hs,blur:Kt,hue:Kt,fopacity:Kt,grayscale:Kt,invert:Kt,saturate:Kt,sepia:Kt,opacity:Za,stroke:Qa,bgx:Wn,bgy:Wn},{keys:Ln}=Object;var Fn={mixins:[ui],props:Vn(Ln(pi),"list"),data:Vn(Ln(pi),void 0),computed:{props(t,e){const i={};for(const n in t)n in pi&&!X(t[n])&&(i[n]=t[n].slice());const s={};for(const n in i)s[n]=pi[n](n,e,i[n],i);return s}},events:{load(){this.$emit()}},methods:{reset(){for(const t in this.getCss(0))c(this.$el,t,"")},getCss(t){const e={transform:"",filter:""};for(const i in this.props)this.props[i](e,t);return e}}};function gi(t,e,i){let s=vi(i)||{x:"px",y:"px",rotate:"deg"}[t]||"",n;return t==="x"||t==="y"?(t="translate"+Ct(t),n=o=>w(w(o).toFixed(s==="px"?0:6))):t==="scale"&&(s="",n=o=>vi([o])?K(o,"width",e,!0)/e.offsetWidth:o),i.length===1&&i.unshift(t==="scale"?1:0),i=pe(i,n),(o,r)=>{o.transform+=" "+t+"("+Ne(i,r)+s+")"}}function hs(t,e,i){return i.length===1&&i.unshift(ze(e,t,"")),i=pe(i,s=>Ka(e,s)),(s,n)=>{const[o,r,a]=qn(i,n),l=o.map((h,u)=>(h+=a*(r[u]-h),u===3?w(h):parseInt(h,10))).join(",");s[t]="rgba("+l+")"}}function Ka(t,e){return ze(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(w)}function Kt(t,e,i){i.length===1&&i.unshift(0);const s=vi(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=pe(i),(n,o)=>{const r=Ne(i,o);n.filter+=" "+t+"("+(r+s)+")"}}function Za(t,e,i){return i.length===1&&i.unshift(ze(e,t,"")),i=pe(i),(s,n)=>{s[t]=Ne(i,n)}}function Qa(t,e,i){i.length===1&&i.unshift(0);const s=vi(i),n=cn(e);return i=pe(i.reverse(),o=>(o=w(o),s==="%"?o*n/100:o)),i.some(o=>{let[r]=o;return r})?(c(e,"strokeDasharray",n),(o,r)=>{o.strokeDashoffset=Ne(i,r)}):C}function Wn(t,e,i,s){i.length===1&&i.unshift(0);const n=t==="bgy"?"height":"width";s[t]=pe(i,a=>K(a,n,e));const o=["bgx","bgy"].filter(a=>a in s);if(o.length===2&&t==="bgx")return C;if(ze(e,"backgroundSize","")==="cover")return Ua(t,e,i,s);const r={};for(const a of o)r[a]=jn(e,a);return Rn(o,r,s)}function Ua(t,e,i,s){const n=tl(e);if(!n.width)return C;const o={width:e.offsetWidth,height:e.offsetHeight},r=["bgx","bgy"].filter(u=>u in s),a={};for(const u of r){const d=s[u].map(H=>{let[z]=H;return z}),f=Math.min(...d),m=Math.max(...d),O=d.indexOf(f)<d.indexOf(m),$=m-f;a[u]=(O?-$:0)-(O?f:m)+"px",o[u==="bgy"?"height":"width"]+=$}const l=Re.cover(n,o);for(const u of r){const d=u==="bgy"?"height":"width",f=l[d]-o[d];a[u]="max("+jn(e,u)+",-"+f+"px) + "+a[u]}const h=Rn(r,a,s);return(u,d)=>{h(u,d),u.backgroundSize=l.width+"px "+l.height+"px",u.backgroundRepeat="no-repeat"}}function jn(t,e){return ze(t,"background-position-"+e.substr(-1),"")}function Rn(t,e,i){return function(s,n){for(const o of t){const r=Ne(i[o],n);s["background-position-"+o.substr(-1)]="calc("+e[o]+" + "+r+"px)"}}}const mi={};function tl(t){const e=c(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(mi[e])return mi[e];const i=new Image;return e&&(i.src=e,!i.naturalWidth)?(i.onload=()=>{mi[e]=cs(i),p(t,jt("load",!1))},cs(i)):mi[e]=cs(i)}function cs(t){return{width:t.naturalWidth,height:t.naturalHeight}}function pe(t,e){e===void 0&&(e=w);const i=[],{length:s}=t;let n=0;for(let o=0;o<s;o++){let[r,a]=_(t[o])?t[o].trim().split(" "):[t[o]];if(r=e(r),a=a?w(a)/100:null,o===0?a===null?a=0:a&&i.push([r,0]):o===s-1&&(a===null?a=1:a!==1&&(i.push([r,a]),a=1)),i.push([r,a]),a===null)n++;else if(n){const l=i[o-n-1][1],h=(a-l)/(n+1);for(let u=n;u>0;u--)i[o-u][1]=l+h*(n-u+1);n=0}}return i}function qn(t,e){const i=yt(t.slice(1),s=>{let[,n]=s;return e<=n})+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function Ne(t,e){const[i,s,n]=qn(t,e);return ee(i)?i+Math.abs(i-s)*n*(i<s?1:-1):+s}const el=/^-?\d+(\S*)/;function vi(t,e){for(const i of t){const s=i.match==null?void 0:i.match(el);if(s)return s[1]}return e}function ze(t,e,i){const s=t.style[e],n=c(c(t,e,i),e);return t.style[e]=s,n}function Vn(t,e){return t.reduce((i,s)=>(i[s]=e,i),{})}var il={mixins:[Fn,bt,Ae],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target(t,e){let{target:i}=t;return Yn(i&&ft(i,e)||e)},start(t){let{start:e}=t;return K(e,"height",this.target,!0)},end(t){let{end:e,viewport:i}=t;return K(e||(i=(1-i)*100)&&i+"vh+"+i+"%","height",this.target,!0)}},update:{read(t,e){let{percent:i}=t;if(e.has("scroll")||(i=!1),!this.matchMedia)return;const s=i;return i=sl(Ki(this.target,this.start,this.end),this.easing),{percent:i,style:s===i?!1:this.getCss(i)}},write(t){let{style:e}=t;if(!this.matchMedia){this.reset();return}e&&c(this.$el,e)},events:["scroll","resize"]}};function sl(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,1-e)}function Yn(t){return t?"offsetTop"in t?t:Yn(P(t)):document.documentElement}var Xn={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);(!~this.prevIndex||this.index!==t)&&this.show(t)},events:["resize"]}},Gn={mixins:[Ee],connected(){this.lazyload(this.slides,this.getAdjacentSlides)}};function nl(t,e,i,s){let{center:n,easing:o,list:r}=s;const a=new qe,l=t?He(t,r,n):He(e,r,n)+x(e).width*i,h=e?He(e,r,n):l+x(t).width*i*(G?-1:1);return{dir:i,show(u,d,f){d===void 0&&(d=0);const m=f?"linear":o;return u-=Math.round(u*Q(d,-1,1)),this.translate(d),d=t?d:Q(d,0,1),us(this.getItemIn(),"itemin",{percent:d,duration:u,timing:m,dir:i}),t&&us(this.getItemIn(!0),"itemout",{percent:1-d,duration:u,timing:m,dir:i}),T.start(r,{transform:F(-h*(G?-1:1),"px")},u,m).then(a.resolve,C),a.promise},cancel(){T.cancel(r)},reset(){c(r,"transform","")},forward(u,d){return d===void 0&&(d=this.percent()),T.cancel(r),this.show(u,d,!0)},translate(u){const d=this.getDistance()*i*(G?-1:1);c(r,"transform",F(Q(-h+(d-d*u),-wi(r),x(r).width)*(G?-1:1),"px"));const f=this.getActives(),m=this.getItemIn(),O=this.getItemIn(!0);u=t?Q(u,-1,1):0;for(const $ of D(r)){const H=g(f,$),z=$===m,xt=$===O,dt=z||!xt&&(H||i*(G?-1:1)===-1^bi($,r)>bi(t||e));us($,"itemtranslate"+(dt?"in":"out"),{dir:i,percent:xt?1-u:z?u:H?1:0})}},percent(){return Math.abs((c(r,"transform").split(",")[4]*(G?-1:1)+l)/(h-l))},getDistance(){return Math.abs(h-l)},getItemIn(u){u===void 0&&(u=!1);let d=this.getActives(),f=Kn(r,He(e||t,r,n));if(u){const m=d;d=f,f=m}return f[yt(f,m=>!g(d,m))]},getActives(){return Kn(r,He(t||e,r,n))}}}function He(t,e,i){const s=bi(t,e);return i?s-ol(t,e):Math.min(s,Jn(e))}function Jn(t){return Math.max(0,wi(t)-x(t).width)}function wi(t){return D(t).reduce((e,i)=>x(i).width+e,0)}function ol(t,e){return x(e).width/2-x(t).width/2}function bi(t,e){return t&&(Xe(t).left+(G?x(t).width-x(e).width:0))*(G?-1:1)||0}function Kn(t,e){e-=1;const i=x(t).width,s=e+i+2;return D(t).filter(n=>{const o=bi(n,t),r=o+Math.min(x(n).width,i);return o>=e&&r<=s})}function us(t,e,i){p(t,jt(e,!1,!1,i))}var rl={mixins:[ot,Mn,Xn,Gn],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:nl},computed:{avgWidth(){return wi(this.list)/this.length},finite(t){let{finite:e}=t;return e||Math.ceil(wi(this.list))<Math.trunc(x(this.list).width+al(this.list)+this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return ie(this.sets);let t=0;const e=Jn(this.list),i=yt(this.slides,s=>{if(t>=e)return!0;t+=x(s).width});return~i?i:this.length-1},sets(t){let{sets:e}=t;if(!e)return;let i=0;const s=[],n=x(this.list).width;for(let o=0;o<this.slides.length;o++){const r=x(this.slides[o]).width;i+r>n&&(i=0),this.center?i<n/2&&i+r+x(this.slides[+o+1]).width/2>n/2&&(s.push(+o),i=n/2-r/2):i===0&&s.push(Math.min(+o,this.maxIndex)),i+=r}if(s.length)return s},transitionOptions(){return{center:this.center,list:this.list}}},connected(){j(this.$el,this.clsContainer,!v("."+this.clsContainer,this.$el))},update:{write(){for(const t of this.navItems){const e=Et(ht(t,this.attrItem));e!==!1&&(t.hidden=!this.maxIndex||e>this.maxIndex||this.sets&&!g(this.sets,e))}this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1)),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!g(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let s=0;s<e;s++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=Dn(this.avgWidth/this.velocity)*(x(this.slides[i]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&b(this._getTransitioner().getItemIn(),this.clsActive)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){c(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,o)=>c(n,"order",this.dir>0&&o<t?1:this.dir<0&&o>=this.index?-1:"")),!this.center)return;const e=this.slides[t];let i=x(this.list).width/2-x(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),o=this.slides[n];c(o,"order",n>t?-2:-1),i-=x(o).width}},updateActiveClasses(){const t=this._getTransitioner(this.index).getActives(),e=[this.clsActive,(!this.sets||g(this.sets,w(this.index)))&&this.clsActivated||""];for(const i of this.slides)j(i,e,g(t,i))},getValidIndex(t,e){if(t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),t=this.getIndex(t,e),!this.sets)return t;let i;do{if(g(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t},getAdjacentSlides(){const{width:t}=x(this.list),e=-t,i=t*2,s=x(this.slides[this.index]).width,n=this.center?t/2-s/2:0,o=new Set;for(const r of[-1,1]){let a=n+(r>0?s:0),l=0;do{const h=this.slides[this.getIndex(this.index+r+l++*r)];a+=x(h).width*r,o.add(h)}while(this.slides.length>l&&a>e&&a<i)}return Array.from(o)}}};function al(t){return Math.max(0,...D(t).map(e=>x(e).width))}var Zn={mixins:[Fn],data:{selItem:"!li"},beforeConnect(){this.item=ft(this.selItem,this.$el)},disconnected(){this.item=null},events:[{name:"itemin itemout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,duration:s,timing:n,dir:o}}=t;L.read(()=>{const r=this.getCss(Un(e,o,i)),a=this.getCss(Qn(e)?.5:o>0?1:0);L.write(()=>{c(this.$el,r),T.start(this.$el,a,s,n).catch(C)})})}},{name:"transitioncanceled transitionend",self:!0,el(){return this.item},handler(){T.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,dir:s}}=t;L.read(()=>{const n=this.getCss(Un(e,s,i));L.write(()=>c(this.$el,n))})}}]};function Qn(t){return Qt(t,"in")}function Un(t,e,i){return i/=2,Qn(t)^e<0?i:1-i}var ll={...rs,fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:fe(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:fe(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:F(30),zIndex:-1},{transform:F(),zIndex:0}]:[{transform:F(-100),zIndex:0},{transform:F(),zIndex:-1}]},percent(t,e,i){return i<0?1-Be(e):Be(t)},translate(t,e){return e<0?[{transform:F(30*t),zIndex:-1},{transform:F(-100*(1-t)),zIndex:0}]:[{transform:F(-t*100),zIndex:0},{transform:F(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:F(100),zIndex:0},{transform:F(),zIndex:-1}]:[{transform:F(-30),zIndex:-1},{transform:F(),zIndex:0}]},percent(t,e,i){return i>0?1-Be(e):Be(t)},translate(t,e){return e<0?[{transform:F(t*100),zIndex:0},{transform:F(-30*(1-t)),zIndex:-1}]:[{transform:F(-30*t),zIndex:-1},{transform:F(100*(1-t)),zIndex:0}]}}},hl={mixins:[ot,Nn,Xn,Gn],props:{ratio:String,minHeight:Number,maxHeight:Number},data:{ratio:"16:9",minHeight:!1,maxHeight:!1,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:ll},update:{read(){if(!this.list)return!1;let[t,e]=this.ratio.split(":").map(Number);return e=e*this.list.offsetWidth/t||0,this.minHeight&&(e=Math.max(this.minHeight,e)),this.maxHeight&&(e=Math.min(this.maxHeight,e)),{height:e-ae(this.list,"height","content-box")}},write(t){let{height:e}=t;e>0&&c(this.list,"minHeight",e)},events:["resize"]},methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}},cl={mixins:[ot,An],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},created(){for(const t of["init","start","move","end"]){const e=this[t];this[t]=i=>{$t(this.pos,re(i)),e(i)}}},events:{name:gt,passive:!1,handler:"init"},computed:{target(){return(this.$el.tBodies||[this.$el])[0]},items(){return D(this.target)},isEmpty:{get(){return we(this.items)},watch(t){j(this.target,this.clsEmpty,t)},immediate:!0},handles:{get(t,e){let{handle:i}=t;return i?M(i,e):this.items},watch(t,e){c(e,{touchAction:"",userSelect:""}),c(t,{touchAction:Xt?"none":"",userSelect:"none"})},immediate:!0}},update:{write(t){if(!this.drag||!P(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:o}=this;c(this.drag,{top:i-s,left:e-n});const r=this.getSortable(document.elementFromPoint(e,i));if(!r)return;const{items:a}=r;if(a.some(T.inProgress))return;const l=pl(a,{x:e,y:i});if(a.length&&(!l||l===o))return;const h=this.getSortable(o),u=gl(r.target,l,o,e,i,r===h&&t.moved!==l);u!==!1&&(u&&o===u||(r!==h?(h.remove(o),t.moved=l):delete t.moved,r.insert(o,u),this.touched.add(r)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(o=>E(e,o));!n||s||i>0||Ei(e)||E(e,"."+this.clsNoDrag)||this.handle&&!E(e,this.handle)||(t.preventDefault(),this.touched=new Set([this]),this.placeholder=n,this.origin={target:e,index:oe(n),...this.pos},k(document,Qe,this.move),k(document,Ot,this.end),this.threshold||this.start(t))},start(t){this.drag=fl(this.$container,this.placeholder);const{left:e,top:i}=this.placeholder.getBoundingClientRect();$t(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),b(this.drag,this.clsDrag,this.clsCustom),b(this.placeholder,this.clsPlaceholder),b(this.items,this.clsItem),b(document.documentElement,this.clsDragState),p(this.$el,"start",[this,this.placeholder]),ul(this.pos),this.move(t)},move(t){this.drag?this.$emit("move"):(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t)},end(){if(Wt(document,Qe,this.move),Wt(document,Ot,this.end),!this.drag)return;dl();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==oe(this.placeholder)&&p(this.$el,"moved",[this,this.placeholder]):(p(t.$el,"added",[t,this.placeholder]),p(this.$el,"removed",[this,this.placeholder])),p(this.$el,"stop",[this,this.placeholder]),ct(this.drag),this.drag=null;for(const{clsPlaceholder:e,clsItem:i}of this.touched)for(const s of this.touched)A(s.items,e,i);this.touched=null,A(document.documentElement,this.clsDragState)},insert(t,e){b(this.items,this.clsItem);const i=()=>e?Fi(e,t):R(this.target,t);this.animate(i)},remove(t){!E(t,this.target)||this.animate(()=>ct(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=P(t))}}};let to;function ul(t){let e=Date.now();to=setInterval(()=>{let{x:i,y:s}=t;s+=document.scrollingElement.scrollTop;const n=(Date.now()-e)*.3;e=Date.now(),st(document.elementFromPoint(i,t.y),/auto|scroll/).reverse().some(o=>{let{scrollTop:r,scrollHeight:a}=o;const{top:l,bottom:h,height:u}=U(o);if(l<s&&l+35>s)r-=n;else if(h>s&&h-35<s)r+=n;else return;if(r>0&&r<a-u)return o.scrollTop=r,!0})},15)}function dl(){clearInterval(to)}function fl(t,e){const i=R(t,e.outerHTML.replace(/(^<)(?:li|tr)|(?:li|tr)(\/>$)/g,"$1div$2"));return c(i,"margin","0","important"),c(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:c(e,"padding")}),J(i.firstElementChild,J(e.firstElementChild)),i}function pl(t,e){return t[yt(t,i=>je(e,i.getBoundingClientRect()))]}function gl(t,e,i,s,n,o){if(!D(t).length)return;const r=e.getBoundingClientRect();if(!o)return ml(t,i)||n<r.top+r.height/2?e:e.nextElementSibling;const a=i.getBoundingClientRect(),l=eo([r.top,r.bottom],[a.top,a.bottom]),h=l?s:n,u=l?"width":"height",d=l?"left":"top",f=l?"right":"bottom",m=a[u]<r[u]?r[u]-a[u]:0;return a[d]<r[d]?m&&h<r[d]+m?!1:e.nextElementSibling:m&&h>r[f]-m?!1:e}function ml(t,e){const i=D(t).length===1;i&&R(t,e);const s=D(t),n=s.some((o,r)=>{const a=o.getBoundingClientRect();return s.slice(r+1).some(l=>{const h=l.getBoundingClientRect();return!eo([a.left,a.right],[h.left,h.right])})});return i&&ct(e),n}function eo(t,e){return t[1]>e[0]&&e[1]>t[0]}var vl={mixins:[de,Bt,Qs],args:"title",props:{delay:Number,title:String},data:{pos:"top",title:"",delay:0,animation:["uk-animation-scale-up"],duration:100,cls:"uk-active"},beforeConnect(){this._hasTitle=Ft(this.$el,"title"),S(this.$el,"title",""),this.updateAria(!1),wl(this.$el)},disconnected(){this.hide(),S(this.$el,"title",this._hasTitle?this.title:null)},methods:{show(){this.isToggled(this.tooltip||null)||!this.title||(this._unbind=N(document,"show keydown "+gt,this.hide,!1,t=>t.type===gt&&!E(t.target,this.$el)||t.type==="keydown"&&t.keyCode===27||t.type==="show"&&t.detail[0]!==this&&t.detail[0].$name===this.$name),clearTimeout(this.showTimer),this.showTimer=setTimeout(this._show,this.delay))},async hide(){W(this.$el,"input:focus")||(clearTimeout(this.showTimer),this.isToggled(this.tooltip||null)&&(await this.toggleElement(this.tooltip,!1,!1),ct(this.tooltip),this.tooltip=null,this._unbind()))},_show(){this.tooltip=R(this.container,'<div class="uk-'+this.$options.name+'"> <div class="uk-'+this.$options.name+'-inner">'+this.title+"</div> </div>"),k(this.tooltip,"toggled",(t,e)=>{if(this.updateAria(e),!e)return;this.positionAt(this.tooltip,this.$el);const[i,s]=bl(this.tooltip,this.$el,this.pos);this.origin=this.axis==="y"?Ge(i)+"-"+s:s+"-"+Ge(i)}),this.toggleElement(this.tooltip,!0)},updateAria(t){S(this.$el,"aria-expanded",t)}},events:{focus:"show",blur:"hide",[Gt+" "+he](t){St(t)||this[t.type===Gt?"show":"hide"]()},[gt](t){St(t)&&this.show()}}};function wl(t){Ye(t)||S(t,"tabindex","0")}function bl(t,e,i){let[s,n]=i;const o=B(t),r=B(e),a=[["left","right"],["top","bottom"]];for(const h of a){if(o[h[0]]>=r[h[1]]){s=h[1];break}if(o[h[1]]<=r[h[0]]){s=h[0];break}}const l=g(a[0],s)?a[1]:a[0];return o[l[0]]===r[l[0]]?n=l[0]:o[l[1]]===r[l[1]]?n=l[1]:n="center",[s,n]}var xl={props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,msgInvalidMime:String,msgInvalidName:String,msgInvalidSize:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,msgInvalidMime:"Invalid File Type: %s",msgInvalidName:"Invalid File Name: %s",msgInvalidSize:"Invalid File Size: %s Kilobytes Max",multiple:!1,name:"files[]",params:{},type:"",url:"",abort:C,beforeAll:C,beforeSend:C,complete:C,completeAll:C,error:C,fail:C,load:C,loadEnd:C,loadStart:C,progress:C},events:{change(t){!W(t.target,'input[type="file"]')||(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){xi(t);const e=t.dataTransfer;!(e!=null&&e.files)||(A(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){xi(t)},dragover(t){xi(t),b(this.$el,this.clsDragover)},dragleave(t){xi(t),A(this.$el,this.clsDragover)}},methods:{async upload(t){if(t=yi(t),!t.length)return;p(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3<s.size){this.fail(this.msgInvalidSize.replace("%s",this.maxSize));return}if(this.allow&&!io(this.allow,s.name)){this.fail(this.msgInvalidName.replace("%s",this.allow));return}if(this.mime&&!io(this.mime,s.type)){this.fail(this.msgInvalidMime.replace("%s",this.mime));return}}this.multiple||(t=t.slice(0,1)),this.beforeAll(this,t);const e=yl(t,this.concurrent),i=async s=>{const n=new FormData;s.forEach(o=>n.append(this.name,o));for(const o in this.params)n.append(o,this.params[o]);try{const o=await bs(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:r=>{const{xhr:a}=r;a.upload&&k(a.upload,"progress",this.progress);for(const l of["loadStart","load","loadEnd","abort"])k(a,l.toLowerCase(),this[l]);return this.beforeSend(r)}});this.complete(o),e.length?await i(e.shift()):this.completeAll(o)}catch(o){this.error(o)}};await i(e.shift())}}};function io(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function yl(t,e){const i=[];for(let s=0;s<t.length;s+=e)i.push(t.slice(s,s+e));return i}function xi(t){t.preventDefault(),t.stopPropagation()}var $l=Object.freeze({__proto__:null,Countdown:Pa,Filter:_a,Lightbox:Ya,LightboxPanel:zn,Notification:Ga,Parallax:il,Slider:rl,SliderParallax:Zn,Slideshow:hl,SlideshowParallax:Zn,Sortable:cl,Tooltip:vl,Upload:xl});return kt($l,(t,e)=>nt.component(e,t)),nt});
|