diff --git a/frontend/app.js b/frontend/app.js index c366395..377a8ae 100644 --- a/frontend/app.js +++ b/frontend/app.js @@ -1,2 +1,2 @@ /*! For license information please see app.js.LICENSE.txt */ -(()=>{var t={9669:(t,e,r)=>{t.exports=r(1609)},5448:(t,e,r)=>{"use strict";var o=r(4867),n=r(6026),i=r(4372),a=r(5327),l=r(4097),s=r(4109),c=r(7985),d=r(5061);t.exports=function(t){return new Promise((function(e,r){var p=t.data,u=t.headers,m=t.responseType;o.isFormData(p)&&delete u["Content-Type"];var f=new XMLHttpRequest;if(t.auth){var b=t.auth.username||"",h=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";u.Authorization="Basic "+btoa(b+":"+h)}var g=l(t.baseURL,t.url);function v(){if(f){var o="getAllResponseHeaders"in f?s(f.getAllResponseHeaders()):null,i={data:m&&"text"!==m&&"json"!==m?f.response:f.responseText,status:f.status,statusText:f.statusText,headers:o,config:t,request:f};n(e,r,i),f=null}}if(f.open(t.method.toUpperCase(),a(g,t.params,t.paramsSerializer),!0),f.timeout=t.timeout,"onloadend"in f?f.onloadend=v:f.onreadystatechange=function(){f&&4===f.readyState&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))&&setTimeout(v)},f.onabort=function(){f&&(r(d("Request aborted",t,"ECONNABORTED",f)),f=null)},f.onerror=function(){r(d("Network Error",t,null,f)),f=null},f.ontimeout=function(){var e="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),r(d(e,t,t.transitional&&t.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",f)),f=null},o.isStandardBrowserEnv()){var x=(t.withCredentials||c(g))&&t.xsrfCookieName?i.read(t.xsrfCookieName):void 0;x&&(u[t.xsrfHeaderName]=x)}"setRequestHeader"in f&&o.forEach(u,(function(t,e){void 0===p&&"content-type"===e.toLowerCase()?delete u[e]:f.setRequestHeader(e,t)})),o.isUndefined(t.withCredentials)||(f.withCredentials=!!t.withCredentials),m&&"json"!==m&&(f.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&f.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then((function(t){f&&(f.abort(),r(t),f=null)})),p||(p=null),f.send(p)}))}},1609:(t,e,r)=>{"use strict";var o=r(4867),n=r(1849),i=r(321),a=r(7185);function l(t){var e=new i(t),r=n(i.prototype.request,e);return o.extend(r,i.prototype,e),o.extend(r,e),r}var s=l(r(5655));s.Axios=i,s.create=function(t){return l(a(s.defaults,t))},s.Cancel=r(5263),s.CancelToken=r(4972),s.isCancel=r(6502),s.all=function(t){return Promise.all(t)},s.spread=r(8713),s.isAxiosError=r(6268),t.exports=s,t.exports.default=s},5263:t=>{"use strict";function e(t){this.message=t}e.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},e.prototype.__CANCEL__=!0,t.exports=e},4972:(t,e,r)=>{"use strict";var o=r(5263);function n(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var r=this;t((function(t){r.reason||(r.reason=new o(t),e(r.reason))}))}n.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},n.source=function(){var t;return{token:new n((function(e){t=e})),cancel:t}},t.exports=n},6502:t=>{"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},321:(t,e,r)=>{"use strict";var o=r(4867),n=r(5327),i=r(782),a=r(3572),l=r(7185),s=r(4875),c=s.validators;function d(t){this.defaults=t,this.interceptors={request:new i,response:new i}}d.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=l(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&s.assertOptions(e,{silentJSONParsing:c.transitional(c.boolean,"1.0.0"),forcedJSONParsing:c.transitional(c.boolean,"1.0.0"),clarifyTimeoutError:c.transitional(c.boolean,"1.0.0")},!1);var r=[],o=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(o=o&&e.synchronous,r.unshift(e.fulfilled,e.rejected))}));var n,i=[];if(this.interceptors.response.forEach((function(t){i.push(t.fulfilled,t.rejected)})),!o){var d=[a,void 0];for(Array.prototype.unshift.apply(d,r),d=d.concat(i),n=Promise.resolve(t);d.length;)n=n.then(d.shift(),d.shift());return n}for(var p=t;r.length;){var u=r.shift(),m=r.shift();try{p=u(p)}catch(t){m(t);break}}try{n=a(p)}catch(t){return Promise.reject(t)}for(;i.length;)n=n.then(i.shift(),i.shift());return n},d.prototype.getUri=function(t){return t=l(this.defaults,t),n(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},o.forEach(["delete","get","head","options"],(function(t){d.prototype[t]=function(e,r){return this.request(l(r||{},{method:t,url:e,data:(r||{}).data}))}})),o.forEach(["post","put","patch"],(function(t){d.prototype[t]=function(e,r,o){return this.request(l(o||{},{method:t,url:e,data:r}))}})),t.exports=d},782:(t,e,r)=>{"use strict";var o=r(4867);function n(){this.handlers=[]}n.prototype.use=function(t,e,r){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!r&&r.synchronous,runWhen:r?r.runWhen:null}),this.handlers.length-1},n.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},n.prototype.forEach=function(t){o.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=n},4097:(t,e,r)=>{"use strict";var o=r(1793),n=r(7303);t.exports=function(t,e){return t&&!o(e)?n(t,e):e}},5061:(t,e,r)=>{"use strict";var o=r(481);t.exports=function(t,e,r,n,i){var a=new Error(t);return o(a,e,r,n,i)}},3572:(t,e,r)=>{"use strict";var o=r(4867),n=r(8527),i=r(6502),a=r(5655);function l(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return l(t),t.headers=t.headers||{},t.data=n.call(t,t.data,t.headers,t.transformRequest),t.headers=o.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),o.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return l(t),e.data=n.call(t,e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(l(t),e&&e.response&&(e.response.data=n.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},481:t=>{"use strict";t.exports=function(t,e,r,o,n){return t.config=e,r&&(t.code=r),t.request=o,t.response=n,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},7185:(t,e,r)=>{"use strict";var o=r(4867);t.exports=function(t,e){e=e||{};var r={},n=["url","method","data"],i=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],l=["validateStatus"];function s(t,e){return o.isPlainObject(t)&&o.isPlainObject(e)?o.merge(t,e):o.isPlainObject(e)?o.merge({},e):o.isArray(e)?e.slice():e}function c(n){o.isUndefined(e[n])?o.isUndefined(t[n])||(r[n]=s(void 0,t[n])):r[n]=s(t[n],e[n])}o.forEach(n,(function(t){o.isUndefined(e[t])||(r[t]=s(void 0,e[t]))})),o.forEach(i,c),o.forEach(a,(function(n){o.isUndefined(e[n])?o.isUndefined(t[n])||(r[n]=s(void 0,t[n])):r[n]=s(void 0,e[n])})),o.forEach(l,(function(o){o in e?r[o]=s(t[o],e[o]):o in t&&(r[o]=s(void 0,t[o]))}));var d=n.concat(i).concat(a).concat(l),p=Object.keys(t).concat(Object.keys(e)).filter((function(t){return-1===d.indexOf(t)}));return o.forEach(p,c),r}},6026:(t,e,r)=>{"use strict";var o=r(5061);t.exports=function(t,e,r){var n=r.config.validateStatus;r.status&&n&&!n(r.status)?e(o("Request failed with status code "+r.status,r.config,null,r.request,r)):t(r)}},8527:(t,e,r)=>{"use strict";var o=r(4867),n=r(5655);t.exports=function(t,e,r){var i=this||n;return o.forEach(r,(function(r){t=r.call(i,t,e)})),t}},5655:(t,e,r)=>{"use strict";var o=r(4867),n=r(6016),i=r(481),a={"Content-Type":"application/x-www-form-urlencoded"};function l(t,e){!o.isUndefined(t)&&o.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var s,c={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process))&&(s=r(5448)),s),transformRequest:[function(t,e){return n(e,"Accept"),n(e,"Content-Type"),o.isFormData(t)||o.isArrayBuffer(t)||o.isBuffer(t)||o.isStream(t)||o.isFile(t)||o.isBlob(t)?t:o.isArrayBufferView(t)?t.buffer:o.isURLSearchParams(t)?(l(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):o.isObject(t)||e&&"application/json"===e["Content-Type"]?(l(e,"application/json"),function(t,e,r){if(o.isString(t))try{return(0,JSON.parse)(t),o.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(0,JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var e=this.transitional,r=e&&e.silentJSONParsing,n=e&&e.forcedJSONParsing,a=!r&&"json"===this.responseType;if(a||n&&o.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(a){if("SyntaxError"===t.name)throw i(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};o.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),o.forEach(["post","put","patch"],(function(t){c.headers[t]=o.merge(a)})),t.exports=c},1849:t=>{"use strict";t.exports=function(t,e){return function(){for(var r=new Array(arguments.length),o=0;o{"use strict";var o=r(4867);function n(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,r){if(!e)return t;var i;if(r)i=r(e);else if(o.isURLSearchParams(e))i=e.toString();else{var a=[];o.forEach(e,(function(t,e){null!=t&&(o.isArray(t)?e+="[]":t=[t],o.forEach(t,(function(t){o.isDate(t)?t=t.toISOString():o.isObject(t)&&(t=JSON.stringify(t)),a.push(n(e)+"="+n(t))})))})),i=a.join("&")}if(i){var l=t.indexOf("#");-1!==l&&(t=t.slice(0,l)),t+=(-1===t.indexOf("?")?"?":"&")+i}return t}},7303:t=>{"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},4372:(t,e,r)=>{"use strict";var o=r(4867);t.exports=o.isStandardBrowserEnv()?{write:function(t,e,r,n,i,a){var l=[];l.push(t+"="+encodeURIComponent(e)),o.isNumber(r)&&l.push("expires="+new Date(r).toGMTString()),o.isString(n)&&l.push("path="+n),o.isString(i)&&l.push("domain="+i),!0===a&&l.push("secure"),document.cookie=l.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},1793:t=>{"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},6268:t=>{"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},7985:(t,e,r)=>{"use strict";var o=r(4867);t.exports=o.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");function n(t){var o=t;return e&&(r.setAttribute("href",o),o=r.href),r.setAttribute("href",o),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:"/"===r.pathname.charAt(0)?r.pathname:"/"+r.pathname}}return t=n(window.location.href),function(e){var r=o.isString(e)?n(e):e;return r.protocol===t.protocol&&r.host===t.host}}():function(){return!0}},6016:(t,e,r)=>{"use strict";var o=r(4867);t.exports=function(t,e){o.forEach(t,(function(r,o){o!==e&&o.toUpperCase()===e.toUpperCase()&&(t[e]=r,delete t[o])}))}},4109:(t,e,r)=>{"use strict";var o=r(4867),n=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,r,i,a={};return t?(o.forEach(t.split("\n"),(function(t){if(i=t.indexOf(":"),e=o.trim(t.substr(0,i)).toLowerCase(),r=o.trim(t.substr(i+1)),e){if(a[e]&&n.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([r]):a[e]?a[e]+", "+r:r}})),a):a}},8713:t=>{"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},4875:(t,e,r)=>{"use strict";var o=r(8593),n={};["object","boolean","number","function","string","symbol"].forEach((function(t,e){n[t]=function(r){return typeof r===t||"a"+(e<1?"n ":" ")+t}}));var i={},a=o.version.split(".");function l(t,e){for(var r=e?e.split("."):a,o=t.split("."),n=0;n<3;n++){if(r[n]>o[n])return!0;if(r[n]0;){var i=o[n],a=e[i];if(a){var l=t[i],s=void 0===l||a(l,i,t);if(!0!==s)throw new TypeError("option "+i+" must be "+s)}else if(!0!==r)throw Error("Unknown option "+i)}},validators:n}},4867:(t,e,r)=>{"use strict";var o=r(1849),n=Object.prototype.toString;function i(t){return"[object Array]"===n.call(t)}function a(t){return void 0===t}function l(t){return null!==t&&"object"==typeof t}function s(t){if("[object Object]"!==n.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function c(t){return"[object Function]"===n.call(t)}function d(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),i(t))for(var r=0,o=t.length;r{"use strict";var o=r(144),n=["compactDisplay","currency","currencyDisplay","currencySign","localeMatcher","notation","numberingSystem","signDisplay","style","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits"];function i(t,e){"undefined"!=typeof console&&(console.warn("[vue-i18n] "+t),e&&console.warn(e.stack))}var a=Array.isArray;function l(t){return null!==t&&"object"==typeof t}function s(t){return"string"==typeof t}var c=Object.prototype.toString;function d(t){return"[object Object]"===c.call(t)}function p(t){return null==t}function u(t){return"function"==typeof t}function m(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var r=null,o=null;return 1===t.length?l(t[0])||a(t[0])?o=t[0]:"string"==typeof t[0]&&(r=t[0]):2===t.length&&("string"==typeof t[0]&&(r=t[0]),(l(t[1])||a(t[1]))&&(o=t[1])),{locale:r,params:o}}function f(t){return JSON.parse(JSON.stringify(t))}function b(t,e){return!!~t.indexOf(e)}var h=Object.prototype.hasOwnProperty;function g(t,e){return h.call(t,e)}function v(t){for(var e=arguments,r=Object(t),o=1;o/g,">").replace(/"/g,""").replace(/'/g,"'"))})),t}var w={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof K){if(t.__i18n)try{var e=t.i18n&&t.i18n.messages?t.i18n.messages:{};t.__i18n.forEach((function(t){e=v(e,JSON.parse(t))})),Object.keys(e).forEach((function(r){t.i18n.mergeLocaleMessage(r,e[r])}))}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData()}else if(d(t.i18n)){var r=this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof K?this.$root.$i18n:null;if(r&&(t.i18n.root=this.$root,t.i18n.formatter=r.formatter,t.i18n.fallbackLocale=r.fallbackLocale,t.i18n.formatFallbackMessages=r.formatFallbackMessages,t.i18n.silentTranslationWarn=r.silentTranslationWarn,t.i18n.silentFallbackWarn=r.silentFallbackWarn,t.i18n.pluralizationRules=r.pluralizationRules,t.i18n.preserveDirectiveContent=r.preserveDirectiveContent),t.__i18n)try{var o=t.i18n&&t.i18n.messages?t.i18n.messages:{};t.__i18n.forEach((function(t){o=v(o,JSON.parse(t))})),t.i18n.messages=o}catch(t){}var n=t.i18n.sharedMessages;n&&d(n)&&(t.i18n.messages=v(t.i18n.messages,n)),this._i18n=new K(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale()),r&&r.onComponentInstanceCreated(this._i18n)}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof K?this._i18n=this.$root.$i18n:t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof K&&(this._i18n=t.parent.$i18n)},beforeMount:function(){var t=this.$options;t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n?(t.i18n instanceof K||d(t.i18n))&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0):(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof K||t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof K)&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0)},mounted:function(){this!==this.$root&&this.$options.__INTLIFY_META__&&this.$el&&this.$el.setAttribute("data-intlify",this.$options.__INTLIFY_META__)},beforeDestroy:function(){if(this._i18n){var t=this;this.$nextTick((function(){t._subscribing&&(t._i18n.unsubscribeDataChanging(t),delete t._subscribing),t._i18nWatcher&&(t._i18nWatcher(),t._i18n.destroyVM(),delete t._i18nWatcher),t._localeWatcher&&(t._localeWatcher(),delete t._localeWatcher)}))}}},k={name:"i18n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,e){var r=e.data,o=e.parent,n=e.props,i=e.slots,a=o.$i18n;if(a){var l=n.path,s=n.locale,c=n.places,d=i(),p=a.i(l,s,function(t){var e;for(e in t)if("default"!==e)return!1;return Boolean(e)}(d)||c?function(t,e){var r=e?function(t){return Array.isArray(t)?t.reduce(j,{}):Object.assign({},t)}(e):{};if(!t)return r;var o=(t=t.filter((function(t){return t.tag||""!==t.text.trim()}))).every(S);return t.reduce(o?O:j,r)}(d.default,c):d),u=n.tag&&!0!==n.tag||!1===n.tag?n.tag:"span";return u?t(u,r,p):p}}};function O(t,e){return e.data&&e.data.attrs&&e.data.attrs.place&&(t[e.data.attrs.place]=e),t}function j(t,e,r){return t[r]=e,t}function S(t){return Boolean(t.data&&t.data.attrs&&t.data.attrs.place)}var P,T={name:"i18n-n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},value:{type:Number,required:!0},format:{type:[String,Object]},locale:{type:String}},render:function(t,e){var r=e.props,o=e.parent,i=e.data,a=o.$i18n;if(!a)return null;var c=null,d=null;s(r.format)?c=r.format:l(r.format)&&(r.format.key&&(c=r.format.key),d=Object.keys(r.format).reduce((function(t,e){var o;return b(n,e)?Object.assign({},t,((o={})[e]=r.format[e],o)):t}),null));var p=r.locale||a.locale,u=a._ntp(r.value,p,c,d),m=u.map((function(t,e){var r,o=i.scopedSlots&&i.scopedSlots[t.type];return o?o(((r={})[t.type]=t.value,r.index=e,r.parts=u,r)):t.value})),f=r.tag&&!0!==r.tag||!1===r.tag?r.tag:"span";return f?t(f,{attrs:i.attrs,class:i.class,staticClass:i.staticClass},m):m}};function _(t,e,r){D(0,r)&&E(t,e,r)}function C(t,e,r,o){if(D(0,r)){var n=r.context.$i18n;(function(t,e){var r=e.context;return t._locale===r.$i18n.locale})(t,r)&&x(e.value,e.oldValue)&&x(t._localeMessage,n.getLocaleMessage(n.locale))||E(t,e,r)}}function $(t,e,r,o){if(r.context){var n=r.context.$i18n||{};e.modifiers.preserve||n.preserveDirectiveContent||(t.textContent=""),t._vt=void 0,delete t._vt,t._locale=void 0,delete t._locale,t._localeMessage=void 0,delete t._localeMessage}else i("Vue instance does not exists in VNode context")}function D(t,e){var r=e.context;return r?!!r.$i18n||(i("VueI18n instance does not exists in Vue instance"),!1):(i("Vue instance does not exists in VNode context"),!1)}function E(t,e,r){var o,n,a=function(t){var e,r,o,n;return s(t)?e=t:d(t)&&(e=t.path,r=t.locale,o=t.args,n=t.choice),{path:e,locale:r,args:o,choice:n}}(e.value),l=a.path,c=a.locale,p=a.args,u=a.choice;if(l||c||p)if(l){var m=r.context;t._vt=t.textContent=null!=u?(o=m.$i18n).tc.apply(o,[l,u].concat(z(c,p))):(n=m.$i18n).t.apply(n,[l].concat(z(c,p))),t._locale=m.$i18n.locale,t._localeMessage=m.$i18n.getLocaleMessage(m.$i18n.locale)}else i("`path` is required in v-t directive");else i("value type not supported")}function z(t,e){var r=[];return t&&r.push(t),e&&(Array.isArray(e)||d(e))&&r.push(e),r}function B(t){B.installed=!0,(P=t).version&&Number(P.version.split(".")[0]),function(t){t.prototype.hasOwnProperty("$i18n")||Object.defineProperty(t.prototype,"$i18n",{get:function(){return this._i18n}}),t.prototype.$t=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var o=this.$i18n;return o._t.apply(o,[t,o.locale,o._getMessages(),this].concat(e))},t.prototype.$tc=function(t,e){for(var r=[],o=arguments.length-2;o-- >0;)r[o]=arguments[o+2];var n=this.$i18n;return n._tc.apply(n,[t,n.locale,n._getMessages(),this,e].concat(r))},t.prototype.$te=function(t,e){var r=this.$i18n;return r._te(t,r.locale,r._getMessages(),e)},t.prototype.$d=function(t){for(var e,r=[],o=arguments.length-1;o-- >0;)r[o]=arguments[o+1];return(e=this.$i18n).d.apply(e,[t].concat(r))},t.prototype.$n=function(t){for(var e,r=[],o=arguments.length-1;o-- >0;)r[o]=arguments[o+1];return(e=this.$i18n).n.apply(e,[t].concat(r))}}(P),P.mixin(w),P.directive("t",{bind:_,update:C,unbind:$}),P.component(k.name,k),P.component(T.name,T),P.config.optionMergeStrategies.i18n=function(t,e){return void 0===e?t:e}}var A=function(){this._caches=Object.create(null)};A.prototype.interpolate=function(t,e){if(!e)return[t];var r=this._caches[t];return r||(r=function(t){for(var e=[],r=0,o="";r0)p--,d=4,u[0]();else{if(p=0,void 0===r)return!1;if(!1===(r=function(t){var e,r=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(e=r,M.test(e)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(r):"*"+r)}(r)))return!1;u[1]()}};null!==d;)if(c++,"\\"!==(e=t[c])||!m()){if(n=R(e),8===(i=(l=L[d])[n]||l.else||8))return;if(d=i[0],(a=u[i[1]])&&(o=void 0===(o=i[2])?e:o,!1===a()))return;if(7===d)return s}}(t))&&(this._cache[t]=e),e||[]},V.prototype.getPathValue=function(t,e){if(!l(t))return null;var r=this.parsePath(e);if(0===r.length)return null;for(var o=r.length,n=t,i=0;i/,U=/(?:@(?:\.[a-z]+)?:(?:[\w\-_|.]+|\([\w\-_|.]+\)))/g,W=/^@(?:\.([a-z]+))?:/,G=/[()]/g,q={upper:function(t){return t.toLocaleUpperCase()},lower:function(t){return t.toLocaleLowerCase()},capitalize:function(t){return""+t.charAt(0).toLocaleUpperCase()+t.substr(1)}},Y=new A,K=function(t){var e=this;void 0===t&&(t={}),!P&&"undefined"!=typeof window&&window.Vue&&B(window.Vue);var r=t.locale||"en-US",o=!1!==t.fallbackLocale&&(t.fallbackLocale||"en-US"),n=t.messages||{},i=t.dateTimeFormats||{},a=t.numberFormats||{};this._vm=null,this._formatter=t.formatter||Y,this._modifiers=t.modifiers||{},this._missing=t.missing||null,this._root=t.root||null,this._sync=void 0===t.sync||!!t.sync,this._fallbackRoot=void 0===t.fallbackRoot||!!t.fallbackRoot,this._formatFallbackMessages=void 0!==t.formatFallbackMessages&&!!t.formatFallbackMessages,this._silentTranslationWarn=void 0!==t.silentTranslationWarn&&t.silentTranslationWarn,this._silentFallbackWarn=void 0!==t.silentFallbackWarn&&!!t.silentFallbackWarn,this._dateTimeFormatters={},this._numberFormatters={},this._path=new V,this._dataListeners=new Set,this._componentInstanceCreatedListener=t.componentInstanceCreatedListener||null,this._preserveDirectiveContent=void 0!==t.preserveDirectiveContent&&!!t.preserveDirectiveContent,this.pluralizationRules=t.pluralizationRules||{},this._warnHtmlInMessage=t.warnHtmlInMessage||"off",this._postTranslation=t.postTranslation||null,this._escapeParameterHtml=t.escapeParameterHtml||!1,this.getChoiceIndex=function(t,r){var o,n,i=Object.getPrototypeOf(e);return i&&i.getChoiceIndex?i.getChoiceIndex.call(e,t,r):e.locale in e.pluralizationRules?e.pluralizationRules[e.locale].apply(e,[t,r]):(o=t,n=r,o=Math.abs(o),2===n?o?o>1?1:0:1:o?Math.min(o,2):0)},this._exist=function(t,r){return!(!t||!r||p(e._path.getPathValue(t,r))&&!t[r])},"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||Object.keys(n).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,n[t])})),this._initVM({locale:r,fallbackLocale:o,messages:n,dateTimeFormats:i,numberFormats:a})},X={vm:{configurable:!0},messages:{configurable:!0},dateTimeFormats:{configurable:!0},numberFormats:{configurable:!0},availableLocales:{configurable:!0},locale:{configurable:!0},fallbackLocale:{configurable:!0},formatFallbackMessages:{configurable:!0},missing:{configurable:!0},formatter:{configurable:!0},silentTranslationWarn:{configurable:!0},silentFallbackWarn:{configurable:!0},preserveDirectiveContent:{configurable:!0},warnHtmlInMessage:{configurable:!0},postTranslation:{configurable:!0}};K.prototype._checkLocaleMessage=function(t,e,r){var o=function(t,e,r,n){if(d(r))Object.keys(r).forEach((function(i){var a=r[i];d(a)?(n.push(i),n.push("."),o(t,e,a,n),n.pop(),n.pop()):(n.push(i),o(t,e,a,n),n.pop())}));else if(a(r))r.forEach((function(r,i){d(r)?(n.push("["+i+"]"),n.push("."),o(t,e,r,n),n.pop(),n.pop()):(n.push("["+i+"]"),o(t,e,r,n),n.pop())}));else if(s(r)&&H.test(r)){var l="Detected HTML in message '"+r+"' of keypath '"+n.join("")+"' at '"+e+"'. Consider component interpolation with '' to avoid XSS. See https://bit.ly/2ZqJzkp";"warn"===t?i(l):"error"===t&&function(t,e){"undefined"!=typeof console&&console.error("[vue-i18n] "+t)}(l)}};o(e,t,r,[])},K.prototype._initVM=function(t){var e=P.config.silent;P.config.silent=!0,this._vm=new P({data:t}),P.config.silent=e},K.prototype.destroyVM=function(){this._vm.$destroy()},K.prototype.subscribeDataChanging=function(t){this._dataListeners.add(t)},K.prototype.unsubscribeDataChanging=function(t){!function(t,e){t.delete(e)}(this._dataListeners,t)},K.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",(function(){for(var e,r,o=(e=t._dataListeners,r=[],e.forEach((function(t){return r.push(t)})),r),n=o.length;n--;)P.nextTick((function(){o[n]&&o[n].$forceUpdate()}))}),{deep:!0})},K.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.$i18n.vm.$watch("locale",(function(e){t.$set(t,"locale",e),t.$forceUpdate()}),{immediate:!0})},K.prototype.onComponentInstanceCreated=function(t){this._componentInstanceCreatedListener&&this._componentInstanceCreatedListener(t,this)},X.vm.get=function(){return this._vm},X.messages.get=function(){return f(this._getMessages())},X.dateTimeFormats.get=function(){return f(this._getDateTimeFormats())},X.numberFormats.get=function(){return f(this._getNumberFormats())},X.availableLocales.get=function(){return Object.keys(this.messages).sort()},X.locale.get=function(){return this._vm.locale},X.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},X.fallbackLocale.get=function(){return this._vm.fallbackLocale},X.fallbackLocale.set=function(t){this._localeChainCache={},this._vm.$set(this._vm,"fallbackLocale",t)},X.formatFallbackMessages.get=function(){return this._formatFallbackMessages},X.formatFallbackMessages.set=function(t){this._formatFallbackMessages=t},X.missing.get=function(){return this._missing},X.missing.set=function(t){this._missing=t},X.formatter.get=function(){return this._formatter},X.formatter.set=function(t){this._formatter=t},X.silentTranslationWarn.get=function(){return this._silentTranslationWarn},X.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},X.silentFallbackWarn.get=function(){return this._silentFallbackWarn},X.silentFallbackWarn.set=function(t){this._silentFallbackWarn=t},X.preserveDirectiveContent.get=function(){return this._preserveDirectiveContent},X.preserveDirectiveContent.set=function(t){this._preserveDirectiveContent=t},X.warnHtmlInMessage.get=function(){return this._warnHtmlInMessage},X.warnHtmlInMessage.set=function(t){var e=this,r=this._warnHtmlInMessage;if(this._warnHtmlInMessage=t,r!==t&&("warn"===t||"error"===t)){var o=this._getMessages();Object.keys(o).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,o[t])}))}},X.postTranslation.get=function(){return this._postTranslation},X.postTranslation.set=function(t){this._postTranslation=t},K.prototype._getMessages=function(){return this._vm.messages},K.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},K.prototype._getNumberFormats=function(){return this._vm.numberFormats},K.prototype._warnDefault=function(t,e,r,o,n,i){if(!p(r))return r;if(this._missing){var a=this._missing.apply(null,[t,e,o,n]);if(s(a))return a}if(this._formatFallbackMessages){var l=m.apply(void 0,n);return this._render(e,i,l.params,e)}return e},K.prototype._isFallbackRoot=function(t){return!t&&!p(this._root)&&this._fallbackRoot},K.prototype._isSilentFallbackWarn=function(t){return this._silentFallbackWarn instanceof RegExp?this._silentFallbackWarn.test(t):this._silentFallbackWarn},K.prototype._isSilentFallback=function(t,e){return this._isSilentFallbackWarn(e)&&(this._isFallbackRoot()||t!==this.fallbackLocale)},K.prototype._isSilentTranslationWarn=function(t){return this._silentTranslationWarn instanceof RegExp?this._silentTranslationWarn.test(t):this._silentTranslationWarn},K.prototype._interpolate=function(t,e,r,o,n,i,l){if(!e)return null;var c,m=this._path.getPathValue(e,r);if(a(m)||d(m))return m;if(p(m)){if(!d(e))return null;if(!s(c=e[r])&&!u(c))return null}else{if(!s(m)&&!u(m))return null;c=m}return s(c)&&(c.indexOf("@:")>=0||c.indexOf("@.")>=0)&&(c=this._link(t,e,c,o,"raw",i,l)),this._render(c,n,i,r)},K.prototype._link=function(t,e,r,o,n,i,l){var s=r,c=s.match(U);for(var d in c)if(c.hasOwnProperty(d)){var p=c[d],u=p.match(W),m=u[0],f=u[1],h=p.replace(m,"").replace(G,"");if(b(l,h))return s;l.push(h);var g=this._interpolate(t,e,h,o,"raw"===n?"string":n,"raw"===n?void 0:i,l);if(this._isFallbackRoot(g)){if(!this._root)throw Error("unexpected error");var v=this._root.$i18n;g=v._translate(v._getMessages(),v.locale,v.fallbackLocale,h,o,n,i)}g=this._warnDefault(t,h,g,o,a(i)?i:[i],n),this._modifiers.hasOwnProperty(f)?g=this._modifiers[f](g):q.hasOwnProperty(f)&&(g=q[f](g)),l.pop(),s=g?s.replace(p,g):s}return s},K.prototype._createMessageContext=function(t,e,r,o){var n=this,i=a(t)?t:[],s=l(t)?t:{},c=this._getMessages(),d=this.locale;return{list:function(t){return i[t]},named:function(t){return s[t]},values:t,formatter:e,path:r,messages:c,locale:d,linked:function(t){return n._interpolate(d,c[d]||{},t,null,o,void 0,[t])}}},K.prototype._render=function(t,e,r,o){if(u(t))return t(this._createMessageContext(r,this._formatter||Y,o,e));var n=this._formatter.interpolate(t,r,o);return n||(n=Y.interpolate(t,r,o)),"string"!==e||s(n)?n:n.join("")},K.prototype._appendItemToChain=function(t,e,r){var o=!1;return b(t,e)||(o=!0,e&&(o="!"!==e[e.length-1],e=e.replace(/!/g,""),t.push(e),r&&r[e]&&(o=r[e]))),o},K.prototype._appendLocaleToChain=function(t,e,r){var o,n=e.split("-");do{var i=n.join("-");o=this._appendItemToChain(t,i,r),n.splice(-1,1)}while(n.length&&!0===o);return o},K.prototype._appendBlockToChain=function(t,e,r){for(var o=!0,n=0;n0;)i[a]=arguments[a+4];if(!t)return"";var l=m.apply(void 0,i);this._escapeParameterHtml&&(l.params=y(l.params));var s=l.locale||e,c=this._translate(r,s,this.fallbackLocale,t,o,"string",l.params);if(this._isFallbackRoot(c)){if(!this._root)throw Error("unexpected error");return(n=this._root).$t.apply(n,[t].concat(i))}return c=this._warnDefault(s,t,c,o,i,"string"),this._postTranslation&&null!=c&&(c=this._postTranslation(c,t)),c},K.prototype.t=function(t){for(var e,r=[],o=arguments.length-1;o-- >0;)r[o]=arguments[o+1];return(e=this)._t.apply(e,[t,this.locale,this._getMessages(),null].concat(r))},K.prototype._i=function(t,e,r,o,n){var i=this._translate(r,e,this.fallbackLocale,t,o,"raw",n);if(this._isFallbackRoot(i)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.i(t,e,n)}return this._warnDefault(e,t,i,o,[n],"raw")},K.prototype.i=function(t,e,r){return t?(s(e)||(e=this.locale),this._i(t,e,this._getMessages(),null,r)):""},K.prototype._tc=function(t,e,r,o,n){for(var i,a=[],l=arguments.length-5;l-- >0;)a[l]=arguments[l+5];if(!t)return"";void 0===n&&(n=1);var s={count:n,n},c=m.apply(void 0,a);return c.params=Object.assign(s,c.params),a=null===c.locale?[c.params]:[c.locale,c.params],this.fetchChoice((i=this)._t.apply(i,[t,e,r,o].concat(a)),n)},K.prototype.fetchChoice=function(t,e){if(!t||!s(t))return null;var r=t.split("|");return r[e=this.getChoiceIndex(e,r.length)]?r[e].trim():t},K.prototype.tc=function(t,e){for(var r,o=[],n=arguments.length-2;n-- >0;)o[n]=arguments[n+2];return(r=this)._tc.apply(r,[t,this.locale,this._getMessages(),null,e].concat(o))},K.prototype._te=function(t,e,r){for(var o=[],n=arguments.length-3;n-- >0;)o[n]=arguments[n+3];var i=m.apply(void 0,o).locale||e;return this._exist(r[i],t)},K.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},K.prototype.getLocaleMessage=function(t){return f(this._vm.messages[t]||{})},K.prototype.setLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,e)},K.prototype.mergeLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,v(void 0!==this._vm.messages[t]&&Object.keys(this._vm.messages[t]).length?Object.assign({},this._vm.messages[t]):{},e))},K.prototype.getDateTimeFormat=function(t){return f(this._vm.dateTimeFormats[t]||{})},K.prototype.setDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,e),this._clearDateTimeFormat(t,e)},K.prototype.mergeDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,v(this._vm.dateTimeFormats[t]||{},e)),this._clearDateTimeFormat(t,e)},K.prototype._clearDateTimeFormat=function(t,e){for(var r in e){var o=t+"__"+r;this._dateTimeFormatters.hasOwnProperty(o)&&delete this._dateTimeFormatters[o]}},K.prototype._localizeDateTime=function(t,e,r,o,n){for(var i=e,a=o[i],l=this._getLocaleChain(e,r),s=0;s0;)e[r]=arguments[r+1];var o=this.locale,n=null;return 1===e.length?s(e[0])?n=e[0]:l(e[0])&&(e[0].locale&&(o=e[0].locale),e[0].key&&(n=e[0].key)):2===e.length&&(s(e[0])&&(n=e[0]),s(e[1])&&(o=e[1])),this._d(t,o,n)},K.prototype.getNumberFormat=function(t){return f(this._vm.numberFormats[t]||{})},K.prototype.setNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,e),this._clearNumberFormat(t,e)},K.prototype.mergeNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,v(this._vm.numberFormats[t]||{},e)),this._clearNumberFormat(t,e)},K.prototype._clearNumberFormat=function(t,e){for(var r in e){var o=t+"__"+r;this._numberFormatters.hasOwnProperty(o)&&delete this._numberFormatters[o]}},K.prototype._getNumberFormatter=function(t,e,r,o,n,i){for(var a=e,l=o[a],s=this._getLocaleChain(e,r),c=0;c0;)e[r]=arguments[r+1];var o=this.locale,i=null,a=null;return 1===e.length?s(e[0])?i=e[0]:l(e[0])&&(e[0].locale&&(o=e[0].locale),e[0].key&&(i=e[0].key),a=Object.keys(e[0]).reduce((function(t,r){var o;return b(n,r)?Object.assign({},t,((o={})[r]=e[0][r],o)):t}),null)):2===e.length&&(s(e[0])&&(i=e[0]),s(e[1])&&(o=e[1])),this._n(t,o,i,a)},K.prototype._ntp=function(t,e,r,o){if(!K.availabilities.numberFormat)return[];if(!r)return(o?new Intl.NumberFormat(e,o):new Intl.NumberFormat(e)).formatToParts(t);var n=this._getNumberFormatter(t,e,this.fallbackLocale,this._getNumberFormats(),r,o),i=n&&n.formatToParts(t);if(this._isFallbackRoot(i)){if(!this._root)throw Error("unexpected error");return this._root.$i18n._ntp(t,e,r,o)}return i||[]},Object.defineProperties(K.prototype,X),Object.defineProperty(K,"availabilities",{get:function(){if(!N){var t="undefined"!=typeof Intl;N={dateTimeFormat:t&&void 0!==Intl.DateTimeFormat,numberFormat:t&&void 0!==Intl.NumberFormat}}return N}}),K.install=B,K.version="8.25.0";const J=K;var Z="undefined"!=typeof window,Q="undefined"!=typeof document,tt="undefined"!=typeof navigator,et="undefined"!=typeof Promise,rt="undefined"!=typeof MutationObserver||"undefined"!=typeof WebKitMutationObserver||"undefined"!=typeof MozMutationObserver,ot=Z&&Q&&tt,nt=Z?window:{},it=Q?document:{},at=tt?navigator:{},lt=(at.userAgent||"").toLowerCase(),st=lt.indexOf("jsdom")>0,ct=(/msie|trident/.test(lt),function(){var t=!1;if(ot)try{var e={get passive(){t=!0}};nt.addEventListener("test",e,e),nt.removeEventListener("test",e,e)}catch(e){t=!1}return t}()),dt=ot&&("ontouchstart"in it.documentElement||at.maxTouchPoints>0),pt=ot&&Boolean(nt.PointerEvent||nt.MSPointerEvent),ut=ot&&"IntersectionObserver"in nt&&"IntersectionObserverEntry"in nt&&"intersectionRatio"in nt.IntersectionObserverEntry.prototype,mt="BvConfig",ft=["xs","sm","md","lg","xl"],bt=/\[(\d+)]/g,ht=/^(BV?)/,gt=/^\d+$/,vt=/^\..+/,xt=/^#/,yt=/^#[A-Za-z]+[\w\-:.]*$/,wt=/(<([^>]+)>)/gi,kt=/\B([A-Z])/g,Ot=/([a-z])([A-Z])/g,jt=/^[0-9]*\.?[0-9]+$/,St=/\+/g,Pt=/[-/\\^$*+?.()|[\]{}]/g,Tt=/[\s\uFEFF\xA0]+/g,_t=/\s+/,Ct=/\/\*$/,$t=/(\s|^)(\w)/g,Dt=/^\s+/,Et=/_/g,zt=/-(\w)/g,Bt=/^\d+-\d\d?-\d\d?(?:\s|T|$)/,At=/-|\s|T/,It=/^([0-1]?[0-9]|2[0-3]):[0-5]?[0-9](:[0-5]?[0-9])?$/,Ft=/^.*(#[^#]+)$/,Lt=/%2C/g,Mt=/[!'()*]/g,Rt=/^(\?|#|&)/,Vt=/^\d+(\.\d*)?[/:]\d+(\.\d*)?$/,Nt=/[/:]/,Ht=/^col-/,Ut=/^BIcon/,Wt=/-u-.+/;function Gt(t){return(Gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function qt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Yt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&te(t,e)}function Kt(t){var e=Qt();return function(){var r,o=ee(t);if(e){var n=ee(this).constructor;r=Reflect.construct(o,arguments,n)}else r=o.apply(this,arguments);return Xt(this,r)}}function Xt(t,e){return!e||"object"!==Gt(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function Jt(t){var e="function"==typeof Map?new Map:void 0;return(Jt=function(t){if(null===t||(r=t,-1===Function.toString.call(r).indexOf("[native code]")))return t;var r;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,o)}function o(){return Zt(t,arguments,ee(this).constructor)}return o.prototype=Object.create(t.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),te(o,t)})(t)}function Zt(t,e,r){return(Zt=Qt()?Reflect.construct:function(t,e,r){var o=[null];o.push.apply(o,e);var n=new(Function.bind.apply(t,o));return r&&te(n,r.prototype),n}).apply(null,arguments)}function Qt(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function te(t,e){return(te=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function ee(t){return(ee=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var re=Z?nt.Element:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(Jt(Object)),oe=Z?nt.HTMLElement:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(re),ne=Z?nt.SVGElement:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(re),ie=Z?nt.File:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(Jt(Object));function ae(t){return(ae="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var le=function(t){return ae(t)},se=function(t){return void 0===t},ce=function(t){return null===t},de=function(t){return se(t)||ce(t)},pe=function(t){return"function"===le(t)},ue=function(t){return"boolean"===le(t)},me=function(t){return"string"===le(t)},fe=function(t){return"number"===le(t)},be=function(t){return jt.test(String(t))},he=function(t){return Array.isArray(t)},ge=function(t){return null!==t&&"object"===ae(t)},ve=function(t){return"[object Object]"===Object.prototype.toString.call(t)},xe=function(t){return t instanceof Date},ye=function(t){return t instanceof Event},we=function(t){return"RegExp"===function(t){return Object.prototype.toString.call(t).slice(8,-1)}(t)};function ke(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Oe(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,o=new Array(e);r1&&void 0!==arguments[1]?arguments[1]:e;return he(e)?e.reduce((function(e,r){return[].concat(Re(e),[t(r,r)])}),[]):ve(e)?$e(e).reduce((function(r,o){return Le(Le({},r),{},Me({},o,t(e[o],e[o])))}),{}):r},He=function(t){return t},Ue=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;if(!(e=he(e)?e.join("."):e)||!ge(t))return r;if(e in t)return t[e];var o=(e=String(e).replace(bt,".$1")).split(".").filter(He);return 0===o.length?r:o.every((function(e){return ge(t)&&e in t&&!de(t=t[e])}))?t:ce(t)?null:r},We=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,o=Ue(t,e);return de(o)?r:o},Ge=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r="undefined"!=typeof process&&process?{NODE_ENV:"production"}||0:{};return t?r[t]||e:r},qe=function(){return Ge("BOOTSTRAP_VUE_NO_WARN")||"production"===Ge("NODE_ENV")},Ye=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;qe()||console.warn("[BootstrapVue warn]: ".concat(e?"".concat(e," - "):"").concat(t))},Ke=function(t){return!ot&&(Ye("".concat(t,": Can not be called during SSR.")),!0)},Xe=function(t){return!et&&(Ye("".concat(t,": Requires Promise support.")),!0)};function Je(t,e){for(var r=0;r0&&void 0!==arguments[0]?arguments[0]:{};if(ve(e)){var r=Ce(e);r.forEach((function(r){var o=e[r];"breakpoints"===r?!he(o)||o.length<2||o.some((function(t){return!me(t)||0===t.length}))?Ye('"breakpoints" must be an array of at least 2 breakpoint names',mt):t.$_config[r]=Ne(o):ve(o)&&(t.$_config[r]=Ce(o).reduce((function(t,e){return se(o[e])||(t[e]=Ne(o[e])),t}),t.$_config[r]||{}))}))}}},{key:"resetConfig",value:function(){this.$_config={}}},{key:"getConfig",value:function(){return Ne(this.$_config)}},{key:"getConfigValue",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return Ne(Ue(this.$_config,t,e))}}])&&Je(e.prototype,r),t}(),Qe=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:o.default;e.prototype.$bvConfig=o.default.prototype.$bvConfig=e.prototype.$bvConfig||o.default.prototype.$bvConfig||new Ze,e.prototype.$bvConfig.setConfig(t)};function tr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function er(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},e=t.components,r=t.directives,o=t.plugins,n=function t(n){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.installed||(t.installed=!0,ir(n),Qe(i,n),dr(n,e),ur(n,r),sr(n,o))};return n.installed=!1,n},lr=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return er(er({},e),{},{install:ar(t)})},sr=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var r in e)r&&e[r]&&t.use(e[r])},cr=function(t,e,r){t&&e&&r&&t.component(e,r)},dr=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var r in e)cr(t,r,e[r])},pr=function(t,e,r){t&&e&&r&&t.directive(e.replace(/^VB/,"B"),r)},ur=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var r in e)pr(t,r,e[r])},mr=function(){return(mr=Object.assign||function(t){for(var e,r=1,o=arguments.length;r1&&void 0!==arguments[1]?arguments[1]:NaN,r=parseInt(t,10);return isNaN(r)?e:r},sa=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,r=parseFloat(t);return isNaN(r)?e:r},ca=function(t,e){return sa(t).toFixed(la(e,0))},da=function(t){return t.replace(kt,"-$1").toLowerCase()},pa=function(t){return(t=da(t).replace(zt,(function(t,e){return e?e.toUpperCase():""}))).charAt(0).toUpperCase()+t.slice(1)},ua=function(t){return t.replace(Et," ").replace(Ot,(function(t,e,r){return e+" "+r})).replace($t,(function(t,e,r){return e+r.toUpperCase()}))},ma=function(t){return(t=me(t)?t.trim():String(t)).charAt(0).toUpperCase()+t.slice(1)},fa=function(t){return t.replace(Pt,"\\$&")},ba=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;return de(t)?"":he(t)||ve(t)&&t.toString===Object.prototype.toString?JSON.stringify(t,null,e):String(t)},ha=function(t){return ba(t).trim()},ga=function(t){return ba(t).toLowerCase()},va=re.prototype,xa=["button","[href]:not(.disabled)","input","select","textarea","[tabindex]","[contenteditable]"].map((function(t){return"".concat(t,":not(:disabled):not([disabled])")})).join(", "),ya=va.matches||va.msMatchesSelector||va.webkitMatchesSelector,wa=va.closest||function(t){var e=this;do{if(za(e,t))return e;e=e.parentElement||e.parentNode}while(!ce(e)&&e.nodeType===Node.ELEMENT_NODE);return null},ka=nt.requestAnimationFrame||nt.webkitRequestAnimationFrame||nt.mozRequestAnimationFrame||nt.msRequestAnimationFrame||nt.oRequestAnimationFrame||function(t){return setTimeout(t,16)},Oa=nt.MutationObserver||nt.WebKitMutationObserver||nt.MozMutationObserver||null,ja=function(t){return!(!t||t.nodeType!==Node.ELEMENT_NODE)},Sa=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],e=it.activeElement;return e&&!t.some((function(t){return t===e}))?e:null},Pa=function(t,e){return ba(t).toLowerCase()===ba(e).toLowerCase()},Ta=function(t){return ja(t)&&t===Sa()},_a=function(t){if(!ja(t)||!t.parentNode||!Aa(it.body,t))return!1;if("none"===Ga(t,"display"))return!1;var e=qa(t);return!!(e&&e.height>0&&e.width>0)},Ca=function(t){return!ja(t)||t.disabled||Ha(t,"disabled")||Ma(t,"disabled")},$a=function(t){return ja(t)&&t.offsetHeight},Da=function(t,e){return ea((ja(e)?e:it).querySelectorAll(t))},Ea=function(t,e){return(ja(e)?e:it).querySelector(t)||null},za=function(t,e){return!!ja(t)&&ya.call(t,e)},Ba=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!ja(e))return null;var o=wa.call(e,t);return r?o:o===e?null:o},Aa=function(t,e){return!(!t||!pe(t.contains))&&t.contains(e)},Ia=function(t){return it.getElementById(/^#/.test(t)?t.slice(1):t)||null},Fa=function(t,e){e&&ja(t)&&t.classList&&t.classList.add(e)},La=function(t,e){e&&ja(t)&&t.classList&&t.classList.remove(e)},Ma=function(t,e){return!!(e&&ja(t)&&t.classList)&&t.classList.contains(e)},Ra=function(t,e,r){e&&ja(t)&&t.setAttribute(e,r)},Va=function(t,e){e&&ja(t)&&t.removeAttribute(e)},Na=function(t,e){return e&&ja(t)?t.getAttribute(e):null},Ha=function(t,e){return e&&ja(t)?t.hasAttribute(e):null},Ua=function(t,e,r){e&&ja(t)&&(t.style[e]=r)},Wa=function(t,e){e&&ja(t)&&(t.style[e]="")},Ga=function(t,e){return e&&ja(t)&&t.style[e]||null},qa=function(t){return ja(t)?t.getBoundingClientRect():null},Ya=function(t){var e=nt.getComputedStyle;return e&&ja(t)?e(t):{}},Ka=function(){return nt.getSelection?nt.getSelection():null},Xa=function(t){var e={top:0,left:0};if(!ja(t)||0===t.getClientRects().length)return e;var r=qa(t);if(r){var o=t.ownerDocument.defaultView;e.top=r.top+o.pageYOffset,e.left=r.left+o.pageXOffset}return e},Ja=function(t){var e={top:0,left:0};if(!ja(t))return e;var r={top:0,left:0},o=Ya(t);if("fixed"===o.position)e=qa(t)||e;else{e=Xa(t);for(var n=t.ownerDocument,i=t.offsetParent||n.documentElement;i&&(i===n.body||i===n.documentElement)&&"static"===Ya(i).position;)i=i.parentNode;if(i&&i!==t&&i.nodeType===Node.ELEMENT_NODE){r=Xa(i);var a=Ya(i);r.top+=sa(a.borderTopWidth,0),r.left+=sa(a.borderLeftWidth,0)}}return{top:e.top-r.top-sa(o.marginTop,0),left:e.left-r.left-sa(o.marginLeft,0)}},Za=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document;return Da(xa,t).filter(_a).filter((function(t){return t.tabIndex>-1&&!t.disabled}))},Qa=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{t.focus(e)}catch(t){}return Ta(t)},tl=function(t){try{t.blur()}catch(t){}return!Ta(t)},el=function(t){var e=Pe(null);return function(){for(var r=arguments.length,o=new Array(r),n=0;n1&&void 0!==arguments[1]?arguments[1]:void 0,r=rl.$bvConfig;return r?r.getConfigValue(t,e):Ne(e)},nl=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;return e?ol("".concat(t,".").concat(e),r):ol(t,{})},il=function(){return ol("breakpoints",ft)},al=el((function(){return il()})),ll=el((function(){var t=Ne(al());return t[0]="",t}));function sl(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function cl(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:ci,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:void 0,n=!0===r;return o=n?o:r,cl(cl(cl({},t?{type:t}:{}),n?{required:n}:se(e)?{}:{default:ge(e)?function(){return e}:e}),se(o)?{}:{validator:o})},bl=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:He;if(he(t))return t.map(e);var r={};for(var o in t)De(t,o)&&(r[e(o)]=ge(t[o])?Ee(t[o]):t[o]);return r},hl=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:He;return(he(t)?t.slice():$e(t)).reduce((function(t,o){return t[r(o)]=e[o],t}),{})},gl=function(t,e,r){return cl(cl({},Ne(t)),{},{default:function(){var o=nl(r,e,t.default);return pe(o)?o():o}})},vl=function(t,e){return $e(t).reduce((function(r,o){return cl(cl({},r),{},dl({},o,gl(t[o],o,e)))}),{})},xl=gl({},"","").default.name,yl=function(t){return pe(t)&&t.name!==xl};function wl(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var kl=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e.type,n=void 0===r?ci:r,i=e.defaultValue,a=void 0===i?void 0:i,l=e.validator,s=void 0===l?void 0:l,c=e.event,d=void 0===c?Hn:c,p=wl({},t,fl(n,a,s)),u=o.default.extend({model:{prop:t,event:d},props:p});return{mixin:u,props:p,prop:t,event:d}},Ol=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return(t=oa(t).filter(He)).some((function(t){return e[t]||r[t]}))},jl=function(t){var e,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};t=oa(t).filter(He);for(var i=0;i0&&void 0!==arguments[0]?arguments[0]:Ii,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.$scopedSlots,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$slots;return Ol(t,e,r)},normalizeSlot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Ii,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$scopedSlots,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.$slots,n=jl(t,e,r,o);return n?oa(n):n}}}),Pl=function(t){return ct?ge(t)?t:{capture:!!t||!1}:!!(ge(t)?t.capture:t)},Tl=function(t,e,r,o){t&&t.addEventListener&&t.addEventListener(e,r,Pl(o))},_l=function(t,e,r,o){t&&t.removeEventListener&&t.removeEventListener(e,r,Pl(o))},Cl=function(t){for(var e=t?Tl:_l,r=arguments.length,o=new Array(r>1?r-1:0),n=1;n1&&void 0!==arguments[1]?arguments[1]:{},r=e.preventDefault,o=void 0===r||r,n=e.propagation,i=void 0===n||n,a=e.immediatePropagation,l=void 0!==a&&a;o&&t.preventDefault(),i&&t.stopPropagation(),l&&t.stopImmediatePropagation()},Dl=function(t){return da(t.replace(ht,""))},El=function(t,e){return[ai,Dl(t),e].join("::")},zl=function(t,e){return[ai,e,Dl(t)].join("::")},Bl=vl({ariaLabel:fl(gi,"Close"),content:fl(gi,"×"),disabled:fl(pi,!1),textVariant:fl(gi)},Cr),Al=o.default.extend({name:Cr,functional:!0,props:Bl,render:function(t,e){var r,o,n,i=e.props,a=e.data,l=e.slots,s=e.scopedSlots,c=l(),d=s||{},p={staticClass:"close",class:(r={},o="text-".concat(i.textVariant),n=i.textVariant,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r),attrs:{type:"button",disabled:i.disabled,"aria-label":i.ariaLabel?String(i.ariaLabel):null},on:{click:function(t){i.disabled&&ye(t)&&$l(t)}}};return Ol(Ii,d,c)||(p.domProps={innerHTML:i.content}),t("button",xr(a,p),jl(Ii,{},d,c))}});function Il(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Fl(t){for(var e=1;e0?t:0},Ql=function(t){return""===t||!0===t||!(la(t,0)<1)&&!!t},ts=vl(Ie(Wl(Wl({},Kl),{},{dismissLabel:fl(gi,"Close"),dismissible:fl(pi,!1),fade:fl(pi,!1),variant:fl(gi,"info")})),yr),es=lr({components:{BAlert:o.default.extend({name:yr,mixins:[Yl,Sl],props:ts,data:function(){return{countDown:0,localShow:Ql(this[Xl])}},watch:(Ml={},Gl(Ml,Xl,(function(t){this.countDown=Zl(t),this.localShow=Ql(t)})),Gl(Ml,"countDown",(function(t){var e=this;this.clearCountDownInterval();var r=this[Xl];be(r)&&(this.$emit("dismiss-count-down",t),r!==t&&this.$emit(Jl,t),t>0?(this.localShow=!0,this.$_countDownTimeout=setTimeout((function(){e.countDown--}),1e3)):this.$nextTick((function(){ka((function(){e.localShow=!1}))})))})),Gl(Ml,"localShow",(function(t){var e=this[Xl];t||!this.dismissible&&!be(e)||this.$emit("dismissed"),be(e)||e===t||this.$emit(Jl,t)})),Ml),created:function(){this.$_filterTimer=null;var t=this[Xl];this.countDown=Zl(t),this.localShow=Ql(t)},beforeDestroy:function(){this.clearCountDownInterval()},methods:{dismiss:function(){this.clearCountDownInterval(),this.countDown=0,this.localShow=!1},clearCountDownInterval:function(){clearTimeout(this.$_countDownTimeout),this.$_countDownTimeout=null}},render:function(t){var e=t();if(this.localShow){var r=this.dismissible,o=this.variant,n=t();r&&(n=t(Al,{attrs:{"aria-label":this.dismissLabel},on:{click:this.dismiss}},[this.normalizeSlot("dismiss")])),e=t("div",{staticClass:"alert",class:Gl({"alert-dismissible":r},"alert-".concat(o),o),attrs:{role:"alert","aria-live":"polite","aria-atomic":!0},key:this._uid},[n,this.normalizeSlot()])}return t(Hl,{props:{noFade:!this.fade}},[e])}})}}),rs=Math.min,os=Math.max,ns=Math.abs,is=Math.ceil,as=Math.floor,ls=Math.pow,ss=Math.round;function cs(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r0&&void 0!==arguments[0]?arguments[0]:{},e=t.href,r=t.to,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"a",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"#",i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"/";if(e)return e;if(ys(o))return null;if(me(r))return r||i;if(ve(r)&&(r.path||r.query||r.hash)){var a=ba(r.path),l=gs(r.query),s=ba(r.hash);return s=s&&"#"!==s.charAt(0)?"#".concat(s):s,"".concat(a).concat(l).concat(s)||i}return n};function ks(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Os={viewBox:"0 0 16 16",width:"1em",height:"1em",focusable:"false",role:"img","aria-label":"icon"},js={width:null,height:null,focusable:null,role:null,"aria-label":null},Ss={animation:fl(gi),content:fl(gi),flipH:fl(pi,!1),flipV:fl(pi,!1),fontScale:fl(Ti,1),rotate:fl(Ti,0),scale:fl(Ti,1),shiftH:fl(Ti,0),shiftV:fl(Ti,0),stacked:fl(pi,!1),title:fl(gi),variant:fl(gi)},Ps=o.default.extend({name:"BIconBase",functional:!0,props:Ss,render:function(t,e){var r,o=e.data,n=e.props,i=e.children,a=n.animation,l=n.content,s=n.flipH,c=n.flipV,d=n.stacked,p=n.title,u=n.variant,m=os(sa(n.fontScale,1),0)||1,f=os(sa(n.scale,1),0)||1,b=sa(n.rotate,0),h=sa(n.shiftH,0),g=sa(n.shiftV,0),v=s||c||1!==f,x=v||b,y=h||g,w=!de(l),k=t("g",{attrs:{transform:[x?"translate(8 8)":null,v?"scale(".concat((s?-1:1)*f," ").concat((c?-1:1)*f,")"):null,b?"rotate(".concat(b,")"):null,x?"translate(-8 -8)":null].filter(He).join(" ")||null},domProps:w?{innerHTML:l||""}:{}},i);y&&(k=t("g",{attrs:{transform:"translate(".concat(16*h/16," ").concat(-16*g/16,")")}},[k])),d&&(k=t("g",[k]));var O=[p?t("title",p):null,k].filter(He);return t("svg",xr({staticClass:"b-icon bi",class:(r={},ks(r,"text-".concat(u),u),ks(r,"b-icon-animation-".concat(a),a),r),attrs:Os,style:d?{}:{fontSize:1===m?null:"".concat(100*m,"%")}},o,d?{attrs:js}:{},{attrs:{xmlns:d?null:"http://www.w3.org/2000/svg",fill:"currentColor"}}),O)}});function Ts(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function _s(t){for(var e=1;e'),zs=$s("CalendarFill",''),Bs=$s("ChevronBarLeft",''),As=$s("ChevronDoubleLeft",''),Is=$s("ChevronDown",''),Fs=$s("ChevronLeft",''),Ls=$s("ChevronUp",''),Ms=$s("CircleFill",''),Rs=$s("Clock",''),Vs=$s("ClockFill",''),Ns=$s("Dash",''),Hs=$s("PersonFill",''),Us=$s("Plus",''),Ws=$s("Star",''),Gs=$s("StarFill",''),qs=$s("StarHalf",''),Ys=$s("X",'');function Ks(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Xs(t){for(var e=1;e1?r-1:0),n=1;nt.length)&&(e=t.length);for(var r=0,o=new Array(e);r0&&void 0!==arguments[0]?arguments[0]:{},e=t.target,r=t.rel;return"_blank"===e&&ce(r)?"noopener":r||null}({target:this.target,rel:this.rel})},computedHref:function(){var t=this.to,e=this.href;return ws({to:t,href:e},this.computedTag)},computedProps:function(){var t=this.prefetch;return this.isRouterLink?wc(wc({},hl(wc(wc({},jc),Sc),this)),{},{prefetch:ue(t)?t:void 0,tag:this.routerTag}):{}},computedAttrs:function(){var t=this.bvAttrs,e=this.computedHref,r=this.computedRel,o=this.disabled,n=this.target,i=this.routerTag,a=this.isRouterLink;return wc(wc(wc(wc({},t),e?{href:e}:{}),a&&!Pa(i,"a")?{}:{rel:r,target:n}),{},{tabindex:o?"-1":se(t.tabindex)?null:t.tabindex,"aria-disabled":o?"true":null})},computedListeners:function(){return wc(wc({},this.bvListeners),{},{click:this.onClick})}},methods:{onClick:function(t){var e=arguments,r=ye(t),o=this.isRouterLink,n=this.bvListeners.click;r&&this.disabled?$l(t,{immediatePropagation:!0}):(o&&t.currentTarget.__vue__&&t.currentTarget.__vue__.$emit(Tn,t),oa(n).filter((function(t){return pe(t)})).forEach((function(t){t.apply(void 0,vc(e))})),this.emitOnRoot(Oc,t),this.emitOnRoot("clicked::link",t)),r&&!o&&"#"===this.computedHref&&$l(t,{propagation:!1})},focus:function(){Qa(this.$el)},blur:function(){tl(this.$el)}},render:function(t){var e=this.active,r=this.disabled;return t(this.computedTag,kc({class:{active:e,disabled:r},attrs:this.computedAttrs,props:this.computedProps},this.isRouterLink?"nativeOn":"on",this.computedListeners),this.normalizeSlot())}});function _c(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Cc(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:"";return String(t).replace(wt,"")},ld=function(t,e){return t?{innerHTML:t}:e?{textContent:e}:{}};function sd(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function cd(t){for(var e=1;e-1&&(e=e.slice(0,r).reverse(),Qa(e[0]))},focusNext:function(t){var e=this.getItems(),r=e.indexOf(t.target);r>-1&&(e=e.slice(r+1),Qa(e[0]))},focusLast:function(){var t=this.getItems().reverse();Qa(t[0])},onFocusin:function(t){var e=this.$el;t.target!==e||Aa(e,t.relatedTarget)||($l(t),this.focusFirst(t))},onKeydown:function(t){var e=t.keyCode,r=t.shiftKey;e===cc||e===ac?($l(t),r?this.focusFirst(t):this.focusPrev(t)):e!==rc&&e!==lc||($l(t),r?this.focusLast(t):this.focusNext(t))}},render:function(t){var e=this.keyNav;return t("div",{staticClass:"btn-toolbar",class:{"justify-content-between":this.justify},attrs:{role:"toolbar",tabindex:e?"0":null},on:e?{focusin:this.onFocusin,keydown:this.onKeydown}:{}},[this.normalizeSlot()])}}),$d=lr({components:{BButtonToolbar:Cd,BBtnToolbar:Cd}}),Dd="gregory",Ed="long",zd="short",Bd="2-digit",Ad="numeric";function Id(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r1&&void 0!==arguments[1]?arguments[1]:null,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return t=Nd(t),e=Nd(e)||t,r=Nd(r)||t,t?tr?r:t:null},rp=["ar","az","ckb","fa","he","ks","lrc","mzn","ps","sd","te","ug","ur","yi"].map((function(t){return t.toLowerCase()})),op=function(t){var e=ba(t).toLowerCase().replace(Wt,"").split("-"),r=e.slice(0,2).join("-"),o=e[0];return ra(rp,r)||ra(rp,o)},np={id:fl(gi)},ip=o.default.extend({props:np,data:function(){return{localId_:null}},computed:{safeId:function(){var t=this.id||this.localId_;return function(e){return t?(e=String(e||"").replace(/\s+/g,"_"))?t+"_"+e:t:null}}},mounted:function(){var t=this;this.$nextTick((function(){t.localId_="__BVID__".concat(t._uid)}))}});function ap(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function lp(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:Dd;return t=oa(t).filter(He),new Intl.DateTimeFormat(t,{calendar:e}).resolvedOptions().locale}(oa(this.locale).filter(He),Dd)},computedDateDisabledFn:function(){var t=this.dateDisabledFn;return yl(t)?t:function(){return!1}},computedDateInfoFn:function(){var t=this.dateInfoFn;return yl(t)?t:function(){return{}}},calendarLocale:function(){var t=new Intl.DateTimeFormat(this.computedLocale,{calendar:Dd}),e=t.resolvedOptions().calendar,r=t.resolvedOptions().locale;return e!==Dd&&(r=r.replace(/-u-.+$/i,"").concat("-u-ca-gregory")),r},calendarYear:function(){return this.activeDate.getFullYear()},calendarMonth:function(){return this.activeDate.getMonth()},calendarFirstDay:function(){return Vd(this.calendarYear,this.calendarMonth,1,12)},calendarDaysInMonth:function(){var t=Vd(this.calendarFirstDay);return t.setMonth(t.getMonth()+1,0),t.getDate()},computedVariant:function(){return"btn-".concat(this.selectedVariant||"primary")},computedTodayVariant:function(){return"btn-outline-".concat(this.todayVariant||this.selectedVariant||"primary")},computedNavButtonVariant:function(){return"btn-outline-".concat(this.navButtonVariant||"primary")},isRTL:function(){var t=ba(this.direction).toLowerCase();return"rtl"===t||"ltr"!==t&&op(this.computedLocale)},context:function(){var t=this.selectedYMD,e=this.activeYMD,r=Nd(t),o=Nd(e);return{selectedYMD:t,selectedDate:r,selectedFormatted:r?this.formatDateString(r):this.labelNoDateSelected,activeYMD:e,activeDate:o,activeFormatted:o?this.formatDateString(o):"",disabled:this.dateDisabled(o),locale:this.computedLocale,calendarLocale:this.calendarLocale,rtl:this.isRTL}},dateOutOfRange:function(){var t=this.computedMin,e=this.computedMax;return function(r){return r=Nd(r),t&&re}},dateDisabled:function(){var t=this,e=this.dateOutOfRange;return function(r){r=Nd(r);var o=Hd(r);return!(!e(r)&&!t.computedDateDisabledFn(o,r))}},formatDateString:function(){return Ud(this.calendarLocale,lp(lp({year:Ad,month:Bd,day:Bd},this.dateFormatOptions),{},{hour:void 0,minute:void 0,second:void 0,calendar:Dd}))},formatYearMonth:function(){return Ud(this.calendarLocale,{year:Ad,month:Ed,calendar:Dd})},formatWeekdayName:function(){return Ud(this.calendarLocale,{weekday:Ed,calendar:Dd})},formatWeekdayNameShort:function(){return Ud(this.calendarLocale,{weekday:this.weekdayHeaderFormat||zd,calendar:Dd})},formatDay:function(){var t=new Intl.NumberFormat([this.computedLocale],{style:"decimal",minimumIntegerDigits:1,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"});return function(e){return t.format(e.getDate())}},prevDecadeDisabled:function(){var t=this.computedMin;return this.disabled||t&&qd(Qd(this.activeDate))t},nextYearDisabled:function(){var t=this.computedMax;return this.disabled||t&&Gd(Zd(this.activeDate))>t},nextDecadeDisabled:function(){var t=this.computedMax;return this.disabled||t&&Gd(tp(this.activeDate))>t},calendar:function(){for(var t=[],e=this.calendarFirstDay,r=e.getFullYear(),o=e.getMonth(),n=this.calendarDaysInMonth,i=e.getDay(),a=0-((this.computedWeekStarts>i?7:0)-this.computedWeekStarts)-i,l=0;l<6&&a'.replace("%{w}",ba(t)).replace("%{h}",ba(e)).replace("%{f}",r));return"data:image/svg+xml;charset=UTF-8,".concat(o)}(d,p,o.blankColor||"transparent"),m=null,f=null),o.left?u="float-left":o.right?u="float-right":o.center&&(u="mx-auto",l=!0),t("img",xr(n,{attrs:{src:a,alt:i,width:d?ba(d):null,height:p?ba(p):null,srcset:m||null,sizes:f||null},class:(r={"img-thumbnail":o.thumbnail,"img-fluid":o.fluid||s,"w-100":s,rounded:""===c||!0===c},Fp(r,"rounded-".concat(c),me(c)&&""!==c),Fp(r,u,u),Fp(r,"d-block",l),r)}))}});function Rp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Vp(t){for(var e=1;e0);r!==this.visible&&(this.visible=r,this.callback(r),this.once&&this.visible&&(this.doneOnce=!0,this.stop()))}},{key:"stop",value:function(){this.observer&&this.observer.disconnect(),this.observer=null}}])&&Jp(e.prototype,r),t}(),eu=function(t){var e=t[Qp];e&&e.stop&&e.stop(),delete t[Qp]},ru=function(t,e,r){var o=e.value,n=e.modifiers,i={margin:"0px",once:!1,callback:o};$e(n).forEach((function(t){gt.test(t)?i.margin="".concat(t,"px"):"once"===t.toLowerCase()&&(i.once=!0)})),eu(t),t[Qp]=new tu(t,i,r),t[Qp]._prevModifiers=Ee(n)},ou={bind:ru,componentUpdated:function(t,e,r){var o=e.value,n=e.oldValue,i=e.modifiers;i=Ee(i),!t||o===n&&t[Qp]&&dc(i,t[Qp]._prevModifiers)||ru(t,{value:o,modifiers:i},r)},unbind:function(t){eu(t)}};function nu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function iu(t){for(var e=1;e0||n.removedNodes.length>0))&&(r=!0)}r&&e()}));return o.observe(t,function(t){for(var e=1;e0),touchStartX:0,touchDeltaX:0}},computed:{numSlides:function(){return this.slides.length}},watch:(Ou={},Tu(Ou,Du,(function(t,e){t!==e&&this.setSlide(la(t,0))})),Tu(Ou,"interval",(function(t,e){t!==e&&(t?(this.pause(!0),this.start(!1)):this.pause(!1))})),Tu(Ou,"isPaused",(function(t,e){t!==e&&this.$emit(t?"paused":"unpaused")})),Tu(Ou,"index",(function(t,e){t===e||this.isSliding||this.doSlide(t,e)})),Ou),created:function(){this.$_interval=null,this.$_animationTimeout=null,this.$_touchTimeout=null,this.$_observer=null,this.isPaused=!(la(this.interval,0)>0)},mounted:function(){this.transitionEndEvent=function(t){for(var e in Au)if(!se(t.style[e]))return Au[e];return null}(this.$el)||null,this.updateSlides(),this.setObserver(!0)},beforeDestroy:function(){this.clearInterval(),this.clearAnimationTimeout(),this.clearTouchTimeout(),this.setObserver(!1)},methods:{clearInterval:function(t){function e(){return t.apply(this,arguments)}return e.toString=function(){return t.toString()},e}((function(){clearInterval(this.$_interval),this.$_interval=null})),clearAnimationTimeout:function(){clearTimeout(this.$_animationTimeout),this.$_animationTimeout=null},clearTouchTimeout:function(){clearTimeout(this.$_touchTimeout),this.$_touchTimeout=null},setObserver:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=ju(this.$refs.inner,this.updateSlides.bind(this),{subtree:!1,childList:!0,attributes:!0,attributeFilter:["id"]}))},setSlide:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!(ot&&document.visibilityState&&document.hidden)){var o=this.noWrap,n=this.numSlides;t=as(t),0!==n&&(this.isSliding?this.$once(ri,(function(){ka((function(){return e.setSlide(t,r)}))})):(this.direction=r,this.index=t>=n?o?n-1:0:t<0?o?0:n-1:t,o&&this.index!==t&&this.index!==this[Du]&&this.$emit(Eu,this.index)))}},prev:function(){this.setSlide(this.index-1,"prev")},next:function(){this.setSlide(this.index+1,"next")},pause:function(t){t||(this.isPaused=!0),this.clearInterval()},start:function(t){t||(this.isPaused=!1),this.clearInterval(),this.interval&&this.numSlides>1&&(this.$_interval=setInterval(this.next,os(1e3,this.interval)))},restart:function(){this.$el.contains(Sa())||this.start()},doSlide:function(t,e){var r=this,o=Boolean(this.interval),n=this.calcDirection(this.direction,e,t),i=n.overlayClass,a=n.dirClass,l=this.slides[e],s=this.slides[t];if(l&&s){if(this.isSliding=!0,o&&this.pause(!1),this.$emit("sliding-start",t),this.$emit(Eu,this.index),this.noAnimation)Fa(s,"active"),La(l,"active"),this.isSliding=!1,this.$nextTick((function(){return r.$emit(ri,t)}));else{Fa(s,i),$a(s),Fa(l,a),Fa(s,a);var c=!1,d=function e(){c||(c=!0,r.transitionEndEvent&&r.transitionEndEvent.split(/\s+/).forEach((function(t){return _l(s,t,e,si)})),r.clearAnimationTimeout(),La(s,a),La(s,i),Fa(s,"active"),La(l,"active"),La(l,a),La(l,i),Ra(l,"aria-current","false"),Ra(s,"aria-current","true"),Ra(l,"aria-hidden","true"),Ra(s,"aria-hidden","false"),r.isSliding=!1,r.direction=null,r.$nextTick((function(){return r.$emit(ri,t)})))};this.transitionEndEvent&&this.transitionEndEvent.split(/\s+/).forEach((function(t){return Tl(s,t,d,si)})),this.$_animationTimeout=setTimeout(d,650)}o&&this.start(!1)}},updateSlides:function(){this.pause(!0),this.slides=Da(".carousel-item",this.$refs.inner);var t=this.slides.length,e=os(0,rs(as(this.index),t-1));this.slides.forEach((function(r,o){var n=o+1;o===e?(Fa(r,"active"),Ra(r,"aria-current","true")):(La(r,"active"),Ra(r,"aria-current","false")),Ra(r,"aria-posinset",String(n)),Ra(r,"aria-setsize",String(t))})),this.setSlide(e),this.start(this.isPaused)},calcDirection:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return t?zu[t]:r>e?zu.next:zu.prev},handleClick:function(t,e){var r=t.keyCode;"click"!==t.type&&r!==sc&&r!==nc||($l(t),e())},handleSwipe:function(){var t=ns(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0?this.prev():e<0&&this.next()}},touchStart:function(t){pt&&Bu[t.pointerType.toUpperCase()]?this.touchStartX=t.clientX:pt||(this.touchStartX=t.touches[0].clientX)},touchMove:function(t){t.touches&&t.touches.length>1?this.touchDeltaX=0:this.touchDeltaX=t.touches[0].clientX-this.touchStartX},touchEnd:function(t){pt&&Bu[t.pointerType.toUpperCase()]&&(this.touchDeltaX=t.clientX-this.touchStartX),this.handleSwipe(),this.pause(!1),this.clearTouchTimeout(),this.$_touchTimeout=setTimeout(this.start,500+os(1e3,this.interval))}},render:function(t){var e=this,r=this.indicators,o=this.background,n=this.noAnimation,i=this.noHoverPause,a=this.noTouch,l=this.index,s=this.isSliding,c=this.pause,d=this.restart,p=this.touchStart,u=this.touchEnd,m=this.safeId("__BV_inner_"),f=t("div",{staticClass:"carousel-inner",attrs:{id:m,role:"list"},ref:"inner"},[this.normalizeSlot()]),b=t();if(this.controls){var h=function(r,o,n){var i=function(t){s?$l(t,{propagation:!1}):e.handleClick(t,n)};return t("a",{staticClass:"carousel-control-".concat(r),attrs:{href:"#",role:"button","aria-controls":m,"aria-disabled":s?"true":null},on:{click:i,keydown:i}},[t("span",{staticClass:"carousel-control-".concat(r,"-icon"),attrs:{"aria-hidden":"true"}}),t("span",{class:"sr-only"},[o])])};b=[h("prev",this.labelPrev,this.prev),h("next",this.labelNext,this.next)]}var g=t("ol",{staticClass:"carousel-indicators",directives:[{name:"show",value:r}],attrs:{id:this.safeId("__BV_indicators_"),"aria-hidden":r?"false":"true","aria-label":this.labelIndicators,"aria-owns":m}},this.slides.map((function(o,n){var i=function(t){e.handleClick(t,(function(){e.setSlide(n)}))};return t("li",{class:{active:n===l},attrs:{role:"button",id:e.safeId("__BV_indicator_".concat(n+1,"_")),tabindex:r?"0":"-1","aria-current":n===l?"true":"false","aria-label":"".concat(e.labelGotoSlide," ").concat(n+1),"aria-describedby":o.id||null,"aria-controls":m},on:{click:i,keydown:i},key:"slide_".concat(n)})}))),v={mouseenter:i?yu:c,mouseleave:i?yu:d,focusin:c,focusout:d,keydown:function(t){if(!/input|textarea/i.test(t.target.tagName)){var r=t.keyCode;r!==ac&&r!==lc||($l(t),e[r===ac?"prev":"next"]())}}};return dt&&!a&&(pt?(v["&pointerdown"]=p,v["&pointerup"]=u):(v["&touchstart"]=p,v["&touchmove"]=this.touchMove,v["&touchend"]=u)),t("div",{staticClass:"carousel",class:{slide:!n,"carousel-fade":!n&&this.fade,"pointer-event":dt&&pt&&!a},style:{background:o},attrs:{role:"region",id:this.safeId(),"aria-busy":s?"true":"false"},on:v},[f,b,g])}});function Lu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Mu(t){for(var e=1;e0?(Ra(t,vm,o.join(" ")),Ua(t,km,"none")):(Va(t,vm),Wa(t,km)),ka((function(){!function(t,e){if(Cm(t),e.context){var r=function(r){"keydown"===r.type&&!ra(Tm,r.keyCode)||Ca(t)||(t[gm]||[]).forEach((function(t){e.context.$root.$emit(Om,t)}))};t[bm]=r,Tl(t,"click",r,li),_m(t)&&Tl(t,"keydown",r,li)}}(t,r)})),dc(o,t[gm])||(t[gm]=o,o.forEach((function(t){r.context.$root.$emit(Pm,t)})))}},Bm={bind:function(t,e,r){t[hm]=!1,t[gm]=[],function(t,e){if($m(t,e),e.context){var r=function(e,r){ra(t[gm]||[],e)&&(t[hm]=r,Dm(t,r))};t[fm]=r,e.context.$root.$on([jm,Sm],r)}}(t,r),zm(t,e,r)},componentUpdated:zm,updated:zm,unbind:function(t,e,r){Cm(t),$m(t,r),Em(t,fm),Em(t,bm),Em(t,hm),Em(t,gm),La(t,pm),La(t,um),Va(t,xm),Va(t,vm),Va(t,ym),Wa(t,km)}},Am=lr({directives:{VBToggle:Bm}}),Im=lr({components:{BCollapse:dm},plugins:{VBTogglePlugin:Am}}),Fm="undefined"!=typeof window&&"undefined"!=typeof document&&"undefined"!=typeof navigator,Lm=function(){for(var t=["Edge","Trident","Firefox"],e=0;e=0)return 1;return 0}(),Mm=Fm&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then((function(){e=!1,t()})))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout((function(){e=!1,t()}),Lm))}};function Rm(t){return t&&"[object Function]"==={}.toString.call(t)}function Vm(t,e){if(1!==t.nodeType)return[];var r=t.ownerDocument.defaultView.getComputedStyle(t,null);return e?r[e]:r}function Nm(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function Hm(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=Vm(t),r=e.overflow,o=e.overflowX,n=e.overflowY;return/(auto|scroll|overlay)/.test(r+n+o)?t:Hm(Nm(t))}function Um(t){return t&&t.referenceNode?t.referenceNode:t}var Wm=Fm&&!(!window.MSInputMethodContext||!document.documentMode),Gm=Fm&&/MSIE 10/.test(navigator.userAgent);function qm(t){return 11===t?Wm:10===t?Gm:Wm||Gm}function Ym(t){if(!t)return document.documentElement;for(var e=qm(10)?document.body:null,r=t.offsetParent||null;r===e&&t.nextElementSibling;)r=(t=t.nextElementSibling).offsetParent;var o=r&&r.nodeName;return o&&"BODY"!==o&&"HTML"!==o?-1!==["TH","TD","TABLE"].indexOf(r.nodeName)&&"static"===Vm(r,"position")?Ym(r):r:t?t.ownerDocument.documentElement:document.documentElement}function Km(t){return null!==t.parentNode?Km(t.parentNode):t}function Xm(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var r=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,o=r?t:e,n=r?e:t,i=document.createRange();i.setStart(o,0),i.setEnd(n,0);var a,l,s=i.commonAncestorContainer;if(t!==s&&e!==s||o.contains(n))return"BODY"===(l=(a=s).nodeName)||"HTML"!==l&&Ym(a.firstElementChild)!==a?Ym(s):s;var c=Km(t);return c.host?Xm(c.host,e):Xm(t,Km(e).host)}function Jm(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top",r="top"===e?"scrollTop":"scrollLeft",o=t.nodeName;if("BODY"===o||"HTML"===o){var n=t.ownerDocument.documentElement,i=t.ownerDocument.scrollingElement||n;return i[r]}return t[r]}function Zm(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=Jm(e,"top"),n=Jm(e,"left"),i=r?-1:1;return t.top+=o*i,t.bottom+=o*i,t.left+=n*i,t.right+=n*i,t}function Qm(t,e){var r="x"===e?"Left":"Top",o="Left"===r?"Right":"Bottom";return parseFloat(t["border"+r+"Width"])+parseFloat(t["border"+o+"Width"])}function tf(t,e,r,o){return Math.max(e["offset"+t],e["scroll"+t],r["client"+t],r["offset"+t],r["scroll"+t],qm(10)?parseInt(r["offset"+t])+parseInt(o["margin"+("Height"===t?"Top":"Left")])+parseInt(o["margin"+("Height"===t?"Bottom":"Right")]):0)}function ef(t){var e=t.body,r=t.documentElement,o=qm(10)&&getComputedStyle(r);return{height:tf("Height",e,r,o),width:tf("Width",e,r,o)}}var rf=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},of=function(){function t(t,e){for(var r=0;r2&&void 0!==arguments[2]&&arguments[2],o=qm(10),n="HTML"===e.nodeName,i=sf(t),a=sf(e),l=Hm(t),s=Vm(e),c=parseFloat(s.borderTopWidth),d=parseFloat(s.borderLeftWidth);r&&n&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var p=lf({top:i.top-a.top-c,left:i.left-a.left-d,width:i.width,height:i.height});if(p.marginTop=0,p.marginLeft=0,!o&&n){var u=parseFloat(s.marginTop),m=parseFloat(s.marginLeft);p.top-=c-u,p.bottom-=c-u,p.left-=d-m,p.right-=d-m,p.marginTop=u,p.marginLeft=m}return(o&&!r?e.contains(l):e===l&&"BODY"!==l.nodeName)&&(p=Zm(p,e)),p}function df(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.ownerDocument.documentElement,o=cf(t,r),n=Math.max(r.clientWidth,window.innerWidth||0),i=Math.max(r.clientHeight,window.innerHeight||0),a=e?0:Jm(r),l=e?0:Jm(r,"left"),s={top:a-o.top+o.marginTop,left:l-o.left+o.marginLeft,width:n,height:i};return lf(s)}function pf(t){var e=t.nodeName;if("BODY"===e||"HTML"===e)return!1;if("fixed"===Vm(t,"position"))return!0;var r=Nm(t);return!!r&&pf(r)}function uf(t){if(!t||!t.parentElement||qm())return document.documentElement;for(var e=t.parentElement;e&&"none"===Vm(e,"transform");)e=e.parentElement;return e||document.documentElement}function mf(t,e,r,o){var n=arguments.length>4&&void 0!==arguments[4]&&arguments[4],i={top:0,left:0},a=n?uf(t):Xm(t,Um(e));if("viewport"===o)i=df(a,n);else{var l=void 0;"scrollParent"===o?"BODY"===(l=Hm(Nm(e))).nodeName&&(l=t.ownerDocument.documentElement):l="window"===o?t.ownerDocument.documentElement:o;var s=cf(l,a,n);if("HTML"!==l.nodeName||pf(a))i=s;else{var c=ef(t.ownerDocument),d=c.height,p=c.width;i.top+=s.top-s.marginTop,i.bottom=d+s.top,i.left+=s.left-s.marginLeft,i.right=p+s.left}}var u="number"==typeof(r=r||0);return i.left+=u?r:r.left||0,i.top+=u?r:r.top||0,i.right-=u?r:r.right||0,i.bottom-=u?r:r.bottom||0,i}function ff(t){return t.width*t.height}function bf(t,e,r,o,n){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var a=mf(r,o,i,n),l={top:{width:a.width,height:e.top-a.top},right:{width:a.right-e.right,height:a.height},bottom:{width:a.width,height:a.bottom-e.bottom},left:{width:e.left-a.left,height:a.height}},s=Object.keys(l).map((function(t){return af({key:t},l[t],{area:ff(l[t])})})).sort((function(t,e){return e.area-t.area})),c=s.filter((function(t){var e=t.width,o=t.height;return e>=r.clientWidth&&o>=r.clientHeight})),d=c.length>0?c[0].key:s[0].key,p=t.split("-")[1];return d+(p?"-"+p:"")}function hf(t,e,r){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,n=o?uf(e):Xm(e,Um(r));return cf(r,n,o)}function gf(t){var e=t.ownerDocument.defaultView.getComputedStyle(t),r=parseFloat(e.marginTop||0)+parseFloat(e.marginBottom||0),o=parseFloat(e.marginLeft||0)+parseFloat(e.marginRight||0);return{width:t.offsetWidth+o,height:t.offsetHeight+r}}function vf(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,(function(t){return e[t]}))}function xf(t,e,r){r=r.split("-")[0];var o=gf(t),n={width:o.width,height:o.height},i=-1!==["right","left"].indexOf(r),a=i?"top":"left",l=i?"left":"top",s=i?"height":"width",c=i?"width":"height";return n[a]=e[a]+e[s]/2-o[s]/2,n[l]=r===l?e[l]-o[c]:e[vf(l)],n}function yf(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function wf(t,e,r){return(void 0===r?t:t.slice(0,function(t,e,r){if(Array.prototype.findIndex)return t.findIndex((function(t){return t.name===r}));var o=yf(t,(function(t){return t.name===r}));return t.indexOf(o)}(t,0,r))).forEach((function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var r=t.function||t.fn;t.enabled&&Rm(r)&&(e.offsets.popper=lf(e.offsets.popper),e.offsets.reference=lf(e.offsets.reference),e=r(e,t))})),e}function kf(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=hf(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=bf(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=xf(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=wf(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}function Of(t,e){return t.some((function(t){var r=t.name;return t.enabled&&r===e}))}function jf(t){for(var e=[!1,"ms","Webkit","Moz","O"],r=t.charAt(0).toUpperCase()+t.slice(1),o=0;o1&&void 0!==arguments[1]&&arguments[1],r=If.indexOf(t),o=If.slice(r+1).concat(If.slice(0,r));return e?o.reverse():o}var Lf={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,r=e.split("-")[0],o=e.split("-")[1];if(o){var n=t.offsets,i=n.reference,a=n.popper,l=-1!==["bottom","top"].indexOf(r),s=l?"left":"top",c=l?"width":"height",d={start:nf({},s,i[s]),end:nf({},s,i[s]+i[c]-a[c])};t.offsets.popper=af({},a,d[o])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var r,o=e.offset,n=t.placement,i=t.offsets,a=i.popper,l=i.reference,s=n.split("-")[0];return r=Df(+o)?[+o,0]:function(t,e,r,o){var n=[0,0],i=-1!==["right","left"].indexOf(o),a=t.split(/(\+|\-)/).map((function(t){return t.trim()})),l=a.indexOf(yf(a,(function(t){return-1!==t.search(/,|\s/)})));a[l]&&-1===a[l].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var s=/\s*,\s*|\s+/,c=-1!==l?[a.slice(0,l).concat([a[l].split(s)[0]]),[a[l].split(s)[1]].concat(a.slice(l+1))]:[a];return(c=c.map((function(t,o){var n=(1===o?!i:i)?"height":"width",a=!1;return t.reduce((function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,a=!0,t):a?(t[t.length-1]+=e,a=!1,t):t.concat(e)}),[]).map((function(t){return function(t,e,r,o){var n=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),i=+n[1],a=n[2];if(!i)return t;if(0===a.indexOf("%")){var l=void 0;switch(a){case"%p":l=r;break;case"%":case"%r":default:l=o}return lf(l)[e]/100*i}return"vh"===a||"vw"===a?("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*i:i}(t,n,e,r)}))}))).forEach((function(t,e){t.forEach((function(r,o){Df(r)&&(n[e]+=r*("-"===t[o-1]?-1:1))}))})),n}(o,a,l,s),"left"===s?(a.top+=r[0],a.left-=r[1]):"right"===s?(a.top+=r[0],a.left+=r[1]):"top"===s?(a.left+=r[0],a.top-=r[1]):"bottom"===s&&(a.left+=r[0],a.top+=r[1]),t.popper=a,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var r=e.boundariesElement||Ym(t.instance.popper);t.instance.reference===r&&(r=Ym(r));var o=jf("transform"),n=t.instance.popper.style,i=n.top,a=n.left,l=n[o];n.top="",n.left="",n[o]="";var s=mf(t.instance.popper,t.instance.reference,e.padding,r,t.positionFixed);n.top=i,n.left=a,n[o]=l,e.boundaries=s;var c=e.priority,d=t.offsets.popper,p={primary:function(t){var r=d[t];return d[t]s[t]&&!e.escapeWithReference&&(o=Math.min(d[r],s[t]-("right"===t?d.width:d.height))),nf({},r,o)}};return c.forEach((function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";d=af({},d,p[e](t))})),t.offsets.popper=d,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,r=e.popper,o=e.reference,n=t.placement.split("-")[0],i=Math.floor,a=-1!==["top","bottom"].indexOf(n),l=a?"right":"bottom",s=a?"left":"top",c=a?"width":"height";return r[l]i(o[l])&&(t.offsets.popper[s]=i(o[l])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var r;if(!Bf(t.instance.modifiers,"arrow","keepTogether"))return t;var o=e.element;if("string"==typeof o){if(!(o=t.instance.popper.querySelector(o)))return t}else if(!t.instance.popper.contains(o))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var n=t.placement.split("-")[0],i=t.offsets,a=i.popper,l=i.reference,s=-1!==["left","right"].indexOf(n),c=s?"height":"width",d=s?"Top":"Left",p=d.toLowerCase(),u=s?"left":"top",m=s?"bottom":"right",f=gf(o)[c];l[m]-fa[m]&&(t.offsets.popper[p]+=l[p]+f-a[m]),t.offsets.popper=lf(t.offsets.popper);var b=l[p]+l[c]/2-f/2,h=Vm(t.instance.popper),g=parseFloat(h["margin"+d]),v=parseFloat(h["border"+d+"Width"]),x=b-t.offsets.popper[p]-g-v;return x=Math.max(Math.min(a[c]-f,x),0),t.arrowElement=o,t.offsets.arrow=(nf(r={},p,Math.round(x)),nf(r,u,""),r),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(Of(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var r=mf(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement,t.positionFixed),o=t.placement.split("-")[0],n=vf(o),i=t.placement.split("-")[1]||"",a=[];switch(e.behavior){case"flip":a=[o,n];break;case"clockwise":a=Ff(o);break;case"counterclockwise":a=Ff(o,!0);break;default:a=e.behavior}return a.forEach((function(l,s){if(o!==l||a.length===s+1)return t;o=t.placement.split("-")[0],n=vf(o);var c=t.offsets.popper,d=t.offsets.reference,p=Math.floor,u="left"===o&&p(c.right)>p(d.left)||"right"===o&&p(c.left)p(d.top)||"bottom"===o&&p(c.top)p(r.right),b=p(c.top)p(r.bottom),g="left"===o&&m||"right"===o&&f||"top"===o&&b||"bottom"===o&&h,v=-1!==["top","bottom"].indexOf(o),x=!!e.flipVariations&&(v&&"start"===i&&m||v&&"end"===i&&f||!v&&"start"===i&&b||!v&&"end"===i&&h),y=!!e.flipVariationsByContent&&(v&&"start"===i&&f||v&&"end"===i&&m||!v&&"start"===i&&h||!v&&"end"===i&&b),w=x||y;(u||g||w)&&(t.flipped=!0,(u||g)&&(o=a[s+1]),w&&(i=function(t){return"end"===t?"start":"start"===t?"end":t}(i)),t.placement=o+(i?"-"+i:""),t.offsets.popper=af({},t.offsets.popper,xf(t.instance.popper,t.offsets.reference,t.placement)),t=wf(t.instance.modifiers,t,"flip"))})),t},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,r=e.split("-")[0],o=t.offsets,n=o.popper,i=o.reference,a=-1!==["left","right"].indexOf(r),l=-1===["top","left"].indexOf(r);return n[a?"left":"top"]=i[r]-(l?n[a?"width":"height"]:0),t.placement=vf(e),t.offsets.popper=lf(n),t}},hide:{order:800,enabled:!0,fn:function(t){if(!Bf(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,r=yf(t.instance.modifiers,(function(t){return"preventOverflow"===t.name})).boundaries;if(e.bottomr.right||e.top>r.bottom||e.right2&&void 0!==arguments[2]?arguments[2]:{};rf(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(o.update)},this.update=Mm(this.update.bind(this)),this.options=af({},t.Defaults,n),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=r&&r.jquery?r[0]:r,this.options.modifiers={},Object.keys(af({},t.Defaults.modifiers,n.modifiers)).forEach((function(e){o.options.modifiers[e]=af({},t.Defaults.modifiers[e]||{},n.modifiers?n.modifiers[e]:{})})),this.modifiers=Object.keys(this.options.modifiers).map((function(t){return af({name:t},o.options.modifiers[t])})).sort((function(t,e){return t.order-e.order})),this.modifiers.forEach((function(t){t.enabled&&Rm(t.onLoad)&&t.onLoad(o.reference,o.popper,o.options,t,o.state)})),this.update();var i=this.options.eventsEnabled;i&&this.enableEventListeners(),this.state.eventsEnabled=i}return of(t,[{key:"update",value:function(){return kf.call(this)}},{key:"destroy",value:function(){return Sf.call(this)}},{key:"enableEventListeners",value:function(){return Cf.call(this)}},{key:"disableEventListeners",value:function(){return $f.call(this)}}]),t}();Mf.Utils=("undefined"!=typeof window?window:r.g).PopperUtils,Mf.placements=Af,Mf.Defaults=Lf;const Rf=Mf;function Vf(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Nf(t,e){for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:{};if(Vf(this,t),!e)throw new TypeError("Failed to construct '".concat(this.constructor.name,"'. 1 argument required, ").concat(arguments.length," given."));Se(this,t.Defaults,this.constructor.Defaults,r,{type:e}),Te(this,{type:{enumerable:!0,configurable:!1,writable:!1},cancelable:{enumerable:!0,configurable:!1,writable:!1},nativeEvent:{enumerable:!0,configurable:!1,writable:!1},target:{enumerable:!0,configurable:!1,writable:!1},relatedTarget:{enumerable:!0,configurable:!1,writable:!1},vueTarget:{enumerable:!0,configurable:!1,writable:!1},componentId:{enumerable:!0,configurable:!1,writable:!1}});var o=!1;this.preventDefault=function(){this.cancelable&&(o=!0)},_e(this,"defaultPrevented",{enumerable:!0,get:function(){return o}})}var e,r;return e=t,r=[{key:"Defaults",get:function(){return{type:"",cancelable:!0,nativeEvent:null,target:null,relatedTarget:null,vueTarget:null,componentId:null}}}],null&&Nf(e.prototype,null),r&&Nf(e,r),t}(),Uf=o.default.extend({data:function(){return{listenForClickOut:!1}},watch:{listenForClickOut:function(t,e){t!==e&&(_l(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si),t&&Tl(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si))}},beforeCreate:function(){this.clickOutElement=null,this.clickOutEventName=null},mounted:function(){this.clickOutElement||(this.clickOutElement=document),this.clickOutEventName||(this.clickOutEventName="click"),this.listenForClickOut&&Tl(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si)},beforeDestroy:function(){_l(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si)},methods:{isClickOut:function(t){return!Aa(this.$el,t.target)},_clickOutHandler:function(t){this.clickOutHandler&&this.isClickOut(t)&&this.clickOutHandler(t)}}}),Wf=o.default.extend({data:function(){return{listenForFocusIn:!1}},watch:{listenForFocusIn:function(t,e){t!==e&&(_l(this.focusInElement,"focusin",this._focusInHandler,si),t&&Tl(this.focusInElement,"focusin",this._focusInHandler,si))}},beforeCreate:function(){this.focusInElement=null},mounted:function(){this.focusInElement||(this.focusInElement=document),this.listenForFocusIn&&Tl(this.focusInElement,"focusin",this._focusInHandler,si)},beforeDestroy:function(){_l(this.focusInElement,"focusin",this._focusInHandler,si)},methods:{_focusInHandler:function(t){this.focusInHandler&&this.focusInHandler(t)}}});function Gf(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function qf(t){for(var e=1;e0&&void 0!==arguments[0]&&arguments[0];this.disabled||(this.visible=!1,t&&this.$once(Vn,this.focusToggler))},toggle:function(t){var e=t=t||{},r=e.type,o=e.keyCode;("click"===r||"keydown"===r&&-1!==[nc,sc,rc].indexOf(o))&&(this.disabled?this.visible=!1:(this.$emit(oi,t),$l(t),this.visible?this.hide(!0):this.show()))},onMousedown:function(t){$l(t,{propagation:!1})},onKeydown:function(t){var e=t.keyCode;27===e?this.onEsc(t):e===rc?this.focusNext(t,!1):e===cc&&this.focusNext(t,!0)},onEsc:function(t){this.visible&&(this.visible=!1,$l(t),this.$once(Vn,this.focusToggler))},onSplitClick:function(t){this.disabled?this.visible=!1:this.$emit(Tn,t)},hideHandler:function(t){var e=this,r=t.target;!this.visible||Aa(this.$refs.menu,r)||Aa(this.toggler,r)||(this.clearHideTimeout(),this.$_hideTimeout=setTimeout((function(){return e.hide()}),this.inNavbar?300:0))},clickOutHandler:function(t){this.hideHandler(t)},focusInHandler:function(t){this.hideHandler(t)},focusNext:function(t,e){var r=this,o=t.target;!this.visible||t&&Ba(".dropdown form",o)||($l(t),this.$nextTick((function(){var t=r.getItems();if(!(t.length<1)){var n=t.indexOf(o);e&&n>0?n--:!e&&n1&&void 0!==arguments[1]?arguments[1]:null;if(ve(t)){var r=We(t,this.valueField),o=We(t,this.textField);return{value:se(r)?e||o:r,text:ad(String(se(o)?e:o)),html:We(t,this.htmlField),disabled:Boolean(We(t,this.disabledField))}}return{value:e||t,text:ad(String(t)),disabled:!1}},normalizeOptions:function(t){var e=this;return he(t)?t.map((function(t){return e.normalizeOption(t)})):ve(t)?(Ye('Setting prop "options" to an object is deprecated. Use the array format instead.',this.$options.name),$e(t).map((function(r){return e.normalizeOption(t[r]||{},r)}))):[]}}});function Gb(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function qb(t){for(var e=1;e-1:dc(e,t)},isRadio:function(){return!1}},watch:Dh({},Eh,(function(t,e){dc(t,e)||this.setIndeterminate(t)})),mounted:function(){this.setIndeterminate(this.indeterminate)},methods:{computedLocalCheckedWatcher:function(t,e){if(!dc(t,e)){this.$emit(Ph,t);var r=this.$refs.input;r&&this.$emit(zh,r.indeterminate)}},handleChange:function(t){var e=this,r=t.target,o=r.checked,n=r.indeterminate,i=this.value,a=this.uncheckedValue,l=this.computedLocalChecked;if(he(l)){var s=sh(l,i);o&&s<0?l=l.concat(i):!o&&s>-1&&(l=l.slice(0,s).concat(l.slice(s+1)))}else l=o?i:a;this.computedLocalChecked=l,this.$nextTick((function(){e.$emit(Pn,l),e.isGroup&&e.bvGroup.$emit(Pn,l),e.$emit(zh,n)}))},setIndeterminate:function(t){he(this.computedLocalChecked)&&(t=!1);var e=this.$refs.input;e&&(e.indeterminate=t,this.$emit(zh,t))}}});function Ih(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Fh(t){for(var e=1;e0&&(s=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":s.length>1,"justify-content-end":s.length<2}},s)]);var u=t(bp,{staticClass:"b-form-date-calendar w-100",props:vg(vg({},hl(Pg,i)),{},{hidden:!this.isVisible,value:e,valueAsDate:!1,width:this.calendarWidth}),on:{selected:this.onSelected,input:this.onInput,context:this.onContext},scopedSlots:ze(a,["nav-prev-decade","nav-prev-year","nav-prev-month","nav-this-month","nav-next-month","nav-next-year","nav-next-decade"]),key:"calendar",ref:"calendar"},s);return t(hg,{staticClass:"b-form-datepicker",props:vg(vg({},hl(Tg,i)),{},{formattedValue:e?this.formattedValue:"",id:this.safeId(),lang:this.computedLang,menuClass:[{"bg-dark":n,"text-light":n},this.menuClass],placeholder:l,rtl:this.isRTL,value:e}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:xg({},Bi,a["button-content"]||this.defaultButtonFn),ref:"control"},[u])}}),$g=lr({components:{BFormDatepicker:Cg,BDatepicker:Cg}});function Dg(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Eg(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:"";return new Promise((function(o){var n=[];!function i(){e.readEntries((function(e){0===e.length?o(Promise.all(n).then((function(t){return ia(t)}))):(n.push(Promise.all(e.map((function(e){if(e){if(e.isDirectory)return t(e.createReader(),"".concat(r).concat(e.name,"/"));if(e.isFile)return new Promise((function(t){e.file((function(e){e.$path="".concat(r).concat(e.name),t(e)}))}))}return null})).filter(He))),i())}))}()}))},Hg=vl(Ie(Eg(Eg(Eg(Eg(Eg(Eg(Eg({},np),Ig),dh),uh),hh),fh),{},{accept:fl(gi,""),browseText:fl(gi,"Browse"),capture:fl(pi,!1),directory:fl(pi,!1),dropPlaceholder:fl(gi,"Drop files here"),fileNameFormatter:fl(mi),multiple:fl(pi,!1),noDrop:fl(pi,!1),noDropPlaceholder:fl(gi,"Not allowed"),noTraverse:fl(pi,!1),placeholder:fl(gi,"No file chosen")})),so),Ug=o.default.extend({name:so,mixins:[bc,ip,Ag,Sl,ph,gh,mh,Sl],inheritAttrs:!1,props:Hg,data:function(){return{files:[],dragging:!1,dropAllowed:!this.noDrop,hasFocus:!1}},computed:{computedAccept:function(){var t=this.accept;return 0===(t=(t||"").trim().split(/[,\s]+/).filter(He)).length?null:t.map((function(t){var e="name",r="^",o="$";return vt.test(t)?r="":(e="type",Ct.test(t)&&(o=".+$",t=t.slice(0,-1))),t=fa(t),{rx:new RegExp("".concat(r).concat(t).concat(o)),prop:e}}))},computedCapture:function(){var t=this.capture;return!0===t||""===t||t||null},computedAttrs:function(){var t=this.name,e=this.disabled,r=this.required,o=this.form,n=this.computedCapture,i=this.accept,a=this.multiple,l=this.directory;return Eg(Eg({},this.bvAttrs),{},{type:"file",id:this.safeId(),name:t,disabled:e,required:r,form:o||null,capture:n,accept:i||null,multiple:a,directory:l,webkitdirectory:l,"aria-required":r?"true":null})},computedFileNameFormatter:function(){var t=this.fileNameFormatter;return yl(t)?t:this.defaultFileNameFormatter},clonedFiles:function(){return Ne(this.files)},flattenedFiles:function(){return aa(this.files)},fileNames:function(){return this.flattenedFiles.map((function(t){return t.name}))},labelContent:function(){if(this.dragging&&!this.noDrop)return this.normalizeSlot("drop-placeholder",{allowed:this.dropAllowed})||(this.dropAllowed?this.dropPlaceholder:this.$createElement("span",{staticClass:"text-danger"},this.noDropPlaceholder));if(0===this.files.length)return this.normalizeSlot("placeholder")||this.placeholder;var t=this.flattenedFiles,e=this.clonedFiles,r=this.fileNames,o=this.computedFileNameFormatter;return this.hasNormalizedSlot(Li)?this.normalizeSlot(Li,{files:t,filesTraversed:e,names:r}):o(t,e,r)}},watch:(yg={},zg(yg,Fg,(function(t){(!t||he(t)&&0===t.length)&&this.reset()})),zg(yg,"files",(function(t,e){if(!dc(t,e)){var r=this.multiple,o=this.noTraverse,n=!r||o?aa(t):t;this.$emit(Lg,r?n:n[0]||null)}})),yg),created:function(){this.$_form=null},mounted:function(){var t=Ba("form",this.$el);t&&(Tl(t,"reset",this.reset,li),this.$_form=t)},beforeDestroy:function(){var t=this.$_form;t&&_l(t,"reset",this.reset,li)},methods:{isFileValid:function(t){if(!t)return!1;var e=this.computedAccept;return!e||e.some((function(e){return e.rx.test(t[e.prop])}))},isFilesArrayValid:function(t){var e=this;return he(t)?t.every((function(t){return e.isFileValid(t)})):this.isFileValid(t)},defaultFileNameFormatter:function(t,e,r){return r.join(", ")},setFiles:function(t){this.dropAllowed=!this.noDrop,this.dragging=!1,this.files=this.multiple?this.directory?t:aa(t):aa(t).slice(0,1)},setInputFiles:function(t){try{var e=new ClipboardEvent("").clipboardData||new DataTransfer;aa(Ne(t)).forEach((function(t){delete t.$path,e.items.add(t)})),this.$refs.input.files=e.files}catch(t){}},reset:function(){try{var t=this.$refs.input;t.value="",t.type="",t.type="file"}catch(t){}this.files=[]},handleFiles:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e){var r=t.filter(this.isFilesArrayValid);r.length>0&&(this.setFiles(r),this.setInputFiles(r))}else this.setFiles(t)},focusHandler:function(t){this.plain||"focusout"===t.type?this.hasFocus=!1:this.hasFocus=!0},onChange:function(t){var e=this,r=t.type,o=t.target,n=t.dataTransfer,i=void 0===n?{}:n,a="drop"===r;this.$emit(Pn,t);var l=ea(i.items||[]);if(et&&l.length>0&&!ce(Vg(l[0])))(function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return Promise.all(ea(t).filter((function(t){return"file"===t.kind})).map((function(t){var r=Vg(t);if(r){if(r.isDirectory&&e)return Ng(r.createReader(),"".concat(r.name,"/"));if(r.isFile)return new Promise((function(t){r.file((function(e){e.$path="",t(e)}))}))}return null})).filter(He))})(l,this.directory).then((function(t){return e.handleFiles(t,a)}));else{var s=ea(o.files||i.files||[]).map((function(t){return t.$path=t.webkitRelativePath||"",t}));this.handleFiles(s,a)}},onDragenter:function(t){$l(t),this.dragging=!0;var e=t.dataTransfer,r=void 0===e?{}:e;if(this.noDrop||this.disabled||!this.dropAllowed)return r.dropEffect="none",void(this.dropAllowed=!1);r.dropEffect="copy"},onDragover:function(t){$l(t),this.dragging=!0;var e=t.dataTransfer,r=void 0===e?{}:e;if(this.noDrop||this.disabled||!this.dropAllowed)return r.dropEffect="none",void(this.dropAllowed=!1);r.dropEffect="copy"},onDragleave:function(t){var e=this;$l(t),this.$nextTick((function(){e.dragging=!1,e.dropAllowed=!e.noDrop}))},onDrop:function(t){var e=this;$l(t),this.dragging=!1,this.noDrop||this.disabled||!this.dropAllowed?this.$nextTick((function(){e.dropAllowed=!e.noDrop})):this.onChange(t)}},render:function(t){var e=this.custom,r=this.plain,o=this.size,n=this.dragging,i=this.stateClass,a=this.bvAttrs,l=t("input",{class:[{"form-control-file":r,"custom-file-input":e,focus:e&&this.hasFocus},i],style:e?{zIndex:-5}:{},attrs:this.computedAttrs,on:{change:this.onChange,focusin:this.focusHandler,focusout:this.focusHandler,reset:this.reset},ref:"input"});if(r)return l;var s=t("label",{staticClass:"custom-file-label",class:{dragging:n},attrs:{for:this.safeId(),"data-browse":this.browseText||null}},[t("span",{staticClass:"d-block form-file-text",style:{pointerEvents:"none"}},[this.labelContent])]);return t("div",{staticClass:"custom-file b-form-file",class:[zg({},"b-custom-control-".concat(o),o),i,a.class],style:a.style,attrs:{id:this.safeId("_BV_file_outer_")},on:{dragenter:this.onDragenter,dragover:this.onDragover,dragleave:this.onDragleave,drop:this.onDrop}},[l,s])}}),Wg=lr({components:{BFormFile:Ug,BFile:Ug}}),Gg=function(t){return"\\"+t},qg=function(t){var e=(t=ba(t)).length,r=t.charCodeAt(0);return t.split("").reduce((function(o,n,i){var a=t.charCodeAt(i);return 0===a?o+"�":127===a||a>=1&&a<=31||0===i&&a>=48&&a<=57||1===i&&a>=48&&a<=57&&45===r?o+Gg("".concat(a.toString(16)," ")):0===i&&45===a&&1===e?o+Gg(n):a>=128||45===a||95===a||a>=48&&a<=57||a>=65&&a<=90||a>=97&&a<=122?o+n:o+Gg(n)}),"")};function Yg(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Kg(t){for(var e=1;e0||$e(this.labelColProps).length>0}},watch:{ariaDescribedby:function(t,e){t!==e&&this.updateAriaDescribedby(t,e)}},mounted:function(){var t=this;this.$nextTick((function(){t.updateAriaDescribedby(t.ariaDescribedby)}))},methods:{getAlignClasses:function(t,e){return ll().reduce((function(r,o){var n=t[ml(o,"".concat(e,"Align"))]||null;return n&&r.push(["text",o,n].filter(He).join("-")),r}),[])},getColProps:function(t,e){return ll().reduce((function(r,o){var n=t[ml(o,"".concat(e,"Cols"))];return ue(n=""===n||n||!1)||"auto"===n||(n=(n=la(n,0))>0&&n),n&&(r[o||(ue(n)?"col":"cols")]=n),r}),{})},updateAriaDescribedby:function(t,e){var r=this.labelFor;if(ot&&r){var o=Ea("#".concat(qg(r)),this.$refs.content);if(o){var n="aria-describedby",i=(t||"").split(_t),a=(e||"").split(_t),l=(Na(o,n)||"").split(_t).filter((function(t){return!ra(a,t)})).concat(i).filter((function(t,e,r){return r.indexOf(t)===e})).filter(He).join(" ").trim();l?Ra(o,n,l):Va(o,n)}}},onLegendClick:function(t){if(!this.labelFor){var e=t.target,r=e?e.tagName:"";if(-1===av.indexOf(r)){var o=Da(iv,this.$refs.content).filter(_a);1===o.length&&Qa(o[0])}}}},render:function(t){var e=this.computedState,r=this.feedbackAriaLive,o=this.isHorizontal,n=this.labelFor,i=this.normalizeSlot,a=this.safeId,l=this.tooltip,s=a(),c=!n,d=t(),p=i(Ni)||this.label,u=p?a("_BV_label_"):null;if(p||o){var m=this.labelSize,f=this.labelColProps,b=c?"legend":"label";this.labelSrOnly?(p&&(d=t(b,{class:"sr-only",attrs:{id:u,for:n||null}},[p])),d=t(o?tv:"div",{props:o?f:{}},[d])):d=t(o?tv:b,{on:c?{click:this.onLegendClick}:{},props:o?rv(rv({},f),{},{tag:b}):{},attrs:{id:u,for:n||null,tabindex:c?"-1":null},class:[c?"bv-no-focus-ring":"",o||c?"col-form-label":"",!o&&c?"pt-0":"",o||c?"":"d-block",m?"col-form-label-".concat(m):"",this.labelAlignClasses,this.labelClass]},[p])}var h=t(),g=i("invalid-feedback")||this.invalidFeedback,v=g?a("_BV_feedback_invalid_"):null;g&&(h=t(rh,{props:{ariaLive:r,id:v,role:r?"alert":null,state:e,tooltip:l},attrs:{tabindex:g?"-1":null}},[g]));var x=t(),y=i("valid-feedback")||this.validFeedback,w=y?a("_BV_feedback_valid_"):null;y&&(x=t(nh,{props:{ariaLive:r,id:w,role:r?"alert":null,state:e,tooltip:l},attrs:{tabindex:y?"-1":null}},[y]));var k=t(),O=i("description")||this.description,j=O?a("_BV_description_"):null;O&&(k=t(th,{attrs:{id:j,tabindex:"-1"}},[O]));var S=this.ariaDescribedby=[j,!1===e?v:null,!0===e?w:null].filter(He).join(" ")||null,P=t(o?tv:"div",{props:o?this.contentColProps:{},ref:"content"},[i(Ii,{ariaDescribedby:S,descriptionId:j,id:s,labelId:u})||t(),h,x,k]);return t(c?"fieldset":o?ah:"div",{staticClass:"form-group",class:[{"was-validated":this.validated},this.stateClass],attrs:{id:s,disabled:c?this.disabled:null,role:c?null:"group","aria-invalid":this.computedAriaInvalid,"aria-labelledby":c&&o?u:null}},o&&c?[t(ah,[d,P])]:[d,P])}},sv=lr({components:{BFormGroup:lv,BFormFieldset:lv}}),cv=o.default.extend({computed:{selectionStart:{cache:!1,get:function(){return this.$refs.input.selectionStart},set:function(t){this.$refs.input.selectionStart=t}},selectionEnd:{cache:!1,get:function(){return this.$refs.input.selectionEnd},set:function(t){this.$refs.input.selectionEnd=t}},selectionDirection:{cache:!1,get:function(){return this.$refs.input.selectionDirection},set:function(t){this.$refs.input.selectionDirection=t}}},methods:{select:function(){var t;(t=this.$refs.input).select.apply(t,arguments)},setSelectionRange:function(){var t;(t=this.$refs.input).setSelectionRange.apply(t,arguments)},setRangeText:function(){var t;(t=this.$refs.input).setRangeText.apply(t,arguments)}}});function dv(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function pv(t){for(var e=1;e2&&void 0!==arguments[2]&&arguments[2];return t=ba(t),!this.hasFormatter||this.lazyFormatter&&!r||(t=this.formatter(t,e)),t},modifyValue:function(t){return t=ba(t),this.trim&&(t=t.trim()),this.number&&(t=sa(t,t)),t},updateValue:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=this.lazy;if(!o||r){this.clearDebounce();var n=function(){if((t=e.modifyValue(t))!==e.vModelValue)e.vModelValue=t,e.$emit(gv,t);else if(e.hasFormatter){var r=e.$refs.input;r&&t!==r.value&&(r.value=t)}},i=this.computedDebounce;i>0&&!o&&!r?this.$_inputDebounceTimer=setTimeout(n,i):n()}},onInput:function(t){if(!t.target.composing){var e=t.target.value,r=this.formatValue(e,t);!1===r||t.defaultPrevented?$l(t,{propagation:!1}):(this.localValue=r,this.updateValue(r),this.$emit(Hn,r))}},onChange:function(t){var e=t.target.value,r=this.formatValue(e,t);!1===r||t.defaultPrevented?$l(t,{propagation:!1}):(this.localValue=r,this.updateValue(r,!0),this.$emit(Pn,r))},onBlur:function(t){var e=t.target.value,r=this.formatValue(e,t,!0);!1!==r&&(this.localValue=ba(this.modifyValue(r)),this.updateValue(r,!0)),this.$emit("blur",t)},focus:function(){this.disabled||Qa(this.$el)},blur:function(){this.disabled||tl(this.$el)}}}),yv=o.default.extend({computed:{validity:{cache:!1,get:function(){return this.$refs.input.validity}},validationMessage:{cache:!1,get:function(){return this.$refs.input.validationMessage}},willValidate:{cache:!1,get:function(){return this.$refs.input.willValidate}}},methods:{setCustomValidity:function(){var t;return(t=this.$refs.input).setCustomValidity.apply(t,arguments)},checkValidity:function(){var t;return(t=this.$refs.input).checkValidity.apply(t,arguments)},reportValidity:function(){var t;return(t=this.$refs.input).reportValidity.apply(t,arguments)}}});function wv(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function kv(t){for(var e=1;e=r?"full":e>=r-.5?"half":"empty",d={variant:i,disabled:a,readonly:l};return t("span",{staticClass:"b-rating-star",class:{focused:o&&e===r||!la(e)&&r===s,"b-rating-star-empty":"empty"===c,"b-rating-star-half":"half"===c,"b-rating-star-full":"full"===c},attrs:{tabindex:a||l?null:"-1"},on:{click:this.onClick}},[t("span",{staticClass:"b-rating-icon"},[this.normalizeSlot(c,d)])])}}),Hv=vl(Ie(zv(zv(zv(zv(zv({},np),Fv),Be(dh,["required","autofocus"])),fh),{},{color:fl(gi),iconClear:fl(gi,"x"),iconEmpty:fl(gi,"star"),iconFull:fl(gi,"star-fill"),iconHalf:fl(gi,"star-half"),inline:fl(pi,!1),locale:fl(wi),noBorder:fl(pi,!1),precision:fl(Ti),readonly:fl(pi,!1),showClear:fl(pi,!1),showValue:fl(pi,!1),showValueMax:fl(pi,!1),stars:fl(Ti,5,(function(t){return la(t)>=3})),variant:fl(gi)})),bo),Uv=o.default.extend({name:bo,components:{BIconStar:Ws,BIconStarHalf:qs,BIconStarFill:Gs,BIconX:Ys},mixins:[ip,Iv,bh],props:Hv,data:function(){var t=sa(this[Lv],null),e=Rv(this.stars);return{localValue:ce(t)?null:Vv(t,0,e),hasFocus:!1}},computed:{computedStars:function(){return Rv(this.stars)},computedRating:function(){var t=sa(this.localValue,0),e=la(this.precision,3);return Vv(sa(t.toFixed(e)),0,this.computedStars)},computedLocale:function(){var t=oa(this.locale).filter(He);return new Intl.NumberFormat(t).resolvedOptions().locale},isInteractive:function(){return!this.disabled&&!this.readonly},isRTL:function(){return op(this.computedLocale)},formattedRating:function(){var t=la(this.precision),e=this.showValueMax,r=this.computedLocale,o={notation:"standard",minimumFractionDigits:isNaN(t)?0:t,maximumFractionDigits:isNaN(t)?3:t},n=this.computedStars.toLocaleString(r),i=this.localValue;return i=ce(i)?e?"-":"":i.toLocaleString(r,o),e?"".concat(i,"/").concat(n):i}},watch:(jv={},Bv(jv,Lv,(function(t,e){if(t!==e){var r=sa(t,null);this.localValue=ce(r)?null:Vv(r,0,this.computedStars)}})),Bv(jv,"localValue",(function(t,e){t!==e&&t!==(this.value||0)&&this.$emit(Mv,t||null)})),Bv(jv,"disabled",(function(t){t&&(this.hasFocus=!1,this.blur())})),jv),methods:{focus:function(){this.disabled||Qa(this.$el)},blur:function(){this.disabled||tl(this.$el)},onKeydown:function(t){var e=t.keyCode;if(this.isInteractive&&ra([ac,rc,lc,cc],e)){$l(t,{propagation:!1});var r=la(this.localValue,0),o=this.showClear?0:1,n=this.computedStars,i=this.isRTL?-1:1;e===ac?this.localValue=Vv(r-i,o,n)||null:e===lc?this.localValue=Vv(r+i,o,n):e===rc?this.localValue=Vv(r-1,o,n)||null:e===cc&&(this.localValue=Vv(r+1,o,n))}},onSelected:function(t){this.isInteractive&&(this.localValue=t)},onFocus:function(t){this.hasFocus=!!this.isInteractive&&"focus"===t.type},renderIcon:function(t){return this.$createElement(ec,{props:{icon:t,variant:this.disabled||this.color?null:this.variant||null}})},iconEmptyFn:function(){return this.renderIcon(this.iconEmpty)},iconHalfFn:function(){return this.renderIcon(this.iconHalf)},iconFullFn:function(){return this.renderIcon(this.iconFull)},iconClearFn:function(){return this.$createElement(ec,{props:{icon:this.iconClear}})}},render:function(t){var e=this,r=this.disabled,o=this.readonly,n=this.name,i=this.form,a=this.inline,l=this.variant,s=this.color,c=this.noBorder,d=this.hasFocus,p=this.computedRating,u=this.computedStars,m=this.formattedRating,f=this.showClear,b=this.isRTL,h=this.isInteractive,g=this.$scopedSlots,v=[];if(f&&!r&&!o){var x=t("span",{staticClass:"b-rating-icon"},[(g["icon-clear"]||this.iconClearFn)()]);v.push(t("span",{staticClass:"b-rating-star b-rating-star-clear flex-grow-1",class:{focused:d&&0===p},attrs:{tabindex:h?"-1":null},on:{click:function(){return e.onSelected(null)}},key:"clear"},[x]))}for(var y=0;y1&&void 0!==arguments[1]?arguments[1]:null;if(ve(t)){var r=We(t,this.valueField),o=We(t,this.textField),n=We(t,this.optionsField,null);return ce(n)?{value:se(r)?e||o:r,text:String(se(o)?e:o),html:We(t,this.htmlField),disabled:Boolean(We(t,this.disabledField))}:{label:String(We(t,this.labelField)||o),options:this.normalizeOptions(n)}}return{value:e||t,text:String(t),disabled:!1}}}}),rx=vl({disabled:fl(pi,!1),value:fl(ci,void 0,!0)},vo),ox=o.default.extend({name:vo,functional:!0,props:rx,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.value;return t("option",xr(o,{attrs:{disabled:r.disabled},domProps:{value:i}}),n)}});function nx(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ix(t){for(var e=1;e0?t:500},computedInterval:function(){var t=la(this.repeatInterval,0);return t>0?t:100},computedThreshold:function(){return os(la(this.repeatThreshold,10),1)},computedStepMultiplier:function(){return os(la(this.repeatStepMultiplier,4),1)},computedPrecision:function(){var t=this.computedStep;return as(t)===t?0:(t.toString().split(".")[1]||"").length},computedMultiplier:function(){return ls(10,this.computedPrecision||0)},valueAsFixed:function(){var t=this.localValue;return ce(t)?"":t.toFixed(this.computedPrecision)},computedLocale:function(){var t=oa(this.locale).filter(He);return new Intl.NumberFormat(t).resolvedOptions().locale},computedRTL:function(){return op(this.computedLocale)},defaultFormatter:function(){var t=this.computedPrecision;return new Intl.NumberFormat(this.computedLocale,{style:"decimal",useGrouping:!1,minimumIntegerDigits:1,minimumFractionDigits:t,maximumFractionDigits:t,notation:"standard"}).format},computedFormatter:function(){var t=this.formatterFn;return yl(t)?t:this.defaultFormatter},computedAttrs:function(){return gx(gx({},this.bvAttrs),{},{role:"group",lang:this.computedLocale,tabindex:this.disabled?null:"-1",title:this.ariaLabel})},computedSpinAttrs:function(){var t=this.spinId,e=this.localValue,r=this.computedRequired,o=this.disabled,n=this.state,i=this.computedFormatter,a=!ce(e);return gx(gx({dir:this.computedRTL?"rtl":"ltr"},this.bvAttrs),{},{id:t,role:"spinbutton",tabindex:o?null:"0","aria-live":"off","aria-label":this.ariaLabel||null,"aria-controls":this.ariaControls||null,"aria-invalid":!1===n||!a&&r?"true":null,"aria-required":r?"true":null,"aria-valuemin":ba(this.computedMin),"aria-valuemax":ba(this.computedMax),"aria-valuenow":a?e:null,"aria-valuetext":a?i(e):null})}},watch:(ux={},vx(ux,kx,(function(t){this.localValue=sa(t,null)})),vx(ux,"localValue",(function(t){this.$emit(Ox,t)})),vx(ux,"disabled",(function(t){t&&this.clearRepeat()})),vx(ux,"readonly",(function(t){t&&this.clearRepeat()})),ux),created:function(){this.$_autoDelayTimer=null,this.$_autoRepeatTimer=null,this.$_keyIsDown=!1},beforeDestroy:function(){this.clearRepeat()},deactivated:function(){this.clearRepeat()},methods:{focus:function(){this.disabled||Qa(this.$refs.spinner)},blur:function(){this.disabled||tl(this.$refs.spinner)},emitChange:function(){this.$emit(Pn,this.localValue)},stepValue:function(t){var e=this.localValue;if(!this.disabled&&!ce(e)){var r=this.computedStep*t,o=this.computedMin,n=this.computedMax,i=this.computedMultiplier,a=this.wrap;e=ss((e-o)/r)*r+o+r,e=ss(e*i)/i,this.localValue=e>n?a?o:n:e0&&void 0!==arguments[0]?arguments[0]:1,e=this.localValue;ce(e)?this.localValue=this.computedMin:this.stepValue(1*t)},stepDown:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=this.localValue;ce(e)?this.localValue=this.wrap?this.computedMax:this.computedMin:this.stepValue(-1*t)},onKeydown:function(t){var e=t.keyCode,r=t.altKey,o=t.ctrlKey,n=t.metaKey;if(!(this.disabled||this.readonly||r||o||n)&&ra(jx,e)){if($l(t,{propagation:!1}),this.$_keyIsDown)return;this.resetTimers(),ra([cc,rc],e)?(this.$_keyIsDown=!0,e===cc?this.handleStepRepeat(t,this.stepUp):e===rc&&this.handleStepRepeat(t,this.stepDown)):33===e?this.stepUp(this.computedStepMultiplier):34===e?this.stepDown(this.computedStepMultiplier):e===ic?this.localValue=this.computedMin:e===oc&&(this.localValue=this.computedMax)}},onKeyup:function(t){var e=t.keyCode,r=t.altKey,o=t.ctrlKey,n=t.metaKey;this.disabled||this.readonly||r||o||n||ra(jx,e)&&($l(t,{propagation:!1}),this.resetTimers(),this.$_keyIsDown=!1,this.emitChange())},handleStepRepeat:function(t,e){var r=this,o=t||{},n=o.type,i=o.button;if(!this.disabled&&!this.readonly){if("mousedown"===n&&i)return;this.resetTimers(),e(1);var a=this.computedThreshold,l=this.computedStepMultiplier,s=this.computedDelay,c=this.computedInterval;this.$_autoDelayTimer=setTimeout((function(){var t=0;r.$_autoRepeatTimer=setInterval((function(){e(tt.length)&&(e=t.length);for(var r=0,o=new Array(e);r0&&r.indexOf(t)===e}))},qx=function(t){return me(t)?t:ye(t)&&t.target.value||""},Yx=vl(Ie(Fx(Fx(Fx(Fx(Fx(Fx({},np),Vx),dh),fh),hh),{},{addButtonText:fl(gi,"Add"),addButtonVariant:fl(gi,"outline-secondary"),addOnChange:fl(pi,!1),duplicateTagText:fl(gi,"Duplicate tag(s)"),ignoreInputFocusSelector:fl(wi,Wx),inputAttrs:fl(bi,{}),inputClass:fl(yi),inputId:fl(gi),inputType:fl(gi,"text",(function(t){return ra(Ux,t)})),invalidTagText:fl(gi,"Invalid tag(s)"),limit:fl(fi),limitTagsText:fl(gi,"Tag limit reached"),noAddOnEnter:fl(pi,!1),noOuterFocus:fl(pi,!1),noTagRemove:fl(pi,!1),placeholder:fl(gi,"Add tag..."),removeOnDelete:fl(pi,!1),separator:fl(wi),tagClass:fl(yi),tagPills:fl(pi,!1),tagRemoveLabel:fl(gi,"Remove tag"),tagRemovedLabel:fl(gi,"Tag removed"),tagValidator:fl(mi),tagVariant:fl(gi,"secondary")})),ko),Kx=o.default.extend({name:ko,mixins:[ip,Rx,ph,bh,gh,Sl],props:Yx,data:function(){return{hasFocus:!1,newTag:"",tags:[],removedTags:[],tagsState:{all:[],valid:[],invalid:[],duplicate:[]}}},computed:{computedInputId:function(){return this.inputId||this.safeId("__input__")},computedInputType:function(){return ra(Ux,this.inputType)?this.inputType:"text"},computedInputAttrs:function(){var t=this.disabled,e=this.form;return Fx(Fx({},this.inputAttrs),{},{id:this.computedInputId,value:this.newTag,disabled:t,form:e})},computedInputHandlers:function(){return{input:this.onInputInput,change:this.onInputChange,keydown:this.onInputKeydown,reset:this.reset}},computedSeparator:function(){return oa(this.separator).filter(me).filter(He).join("")},computedSeparatorRegExp:function(){var t=this.computedSeparator;return t?new RegExp("[".concat(fa(t).replace(Tt,"\\s"),"]+")):null},computedJoiner:function(){var t=this.computedSeparator.charAt(0);return" "!==t?"".concat(t," "):t},computeIgnoreInputFocusSelector:function(){return oa(this.ignoreInputFocusSelector).filter(He).join(",").trim()},disableAddButton:function(){var t=this,e=ha(this.newTag);return""===e||!this.splitTags(e).some((function(e){return!ra(t.tags,e)&&t.validateTag(e)}))},duplicateTags:function(){return this.tagsState.duplicate},hasDuplicateTags:function(){return this.duplicateTags.length>0},invalidTags:function(){return this.tagsState.invalid},hasInvalidTags:function(){return this.invalidTags.length>0},isLimitReached:function(){var t=this.limit;return fe(t)&&t>=0&&this.tags.length>=t}},watch:(Dx={},Lx(Dx,Nx,(function(t){this.tags=Gx(t)})),Lx(Dx,"tags",(function(t,e){dc(t,this[Nx])||this.$emit(Hx,t),dc(t,e)||(t=oa(t).filter(He),e=oa(e).filter(He),this.removedTags=e.filter((function(e){return!ra(t,e)})))})),Lx(Dx,"tagsState",(function(t,e){dc(t,e)||this.$emit("tag-state",t.valid,t.invalid,t.duplicate)})),Dx),created:function(){this.tags=Gx(this[Nx])},mounted:function(){var t=this,e=Ba("form",this.$el);e&&(Tl(e,"reset",this.reset,li),this.$on(ni,(function(){_l(e,"reset",t.reset,li)})))},methods:{addTag:function(t){if(t=me(t)?t:this.newTag,!this.disabled&&""!==ha(t)&&!this.isLimitReached){var e=this.parseTags(t);if(e.valid.length>0||0===e.all.length)if(za(this.getInput(),"select"))this.newTag="";else{var r=[].concat(Bx(e.invalid),Bx(e.duplicate));this.newTag=e.all.filter((function(t){return ra(r,t)})).join(this.computedJoiner).concat(r.length>0?this.computedJoiner.charAt(0):"")}e.valid.length>0&&(this.tags=oa(this.tags,e.valid)),this.tagsState=e,this.focus()}},removeTag:function(t){var e=this;this.disabled||(this.tags=this.tags.filter((function(e){return e!==t})),this.$nextTick((function(){e.focus()})))},reset:function(){var t=this;this.newTag="",this.tags=[],this.$nextTick((function(){t.removedTags=[],t.tagsState={all:[],valid:[],invalid:[],duplicate:[]}}))},onInputInput:function(t){if(!(this.disabled||ye(t)&&t.target.composing)){var e=qx(t),r=this.computedSeparatorRegExp;this.newTag!==e&&(this.newTag=e),e=ba(e).replace(Dt,""),r&&r.test(e.slice(-1))?this.addTag():this.tagsState=""===e?{all:[],valid:[],invalid:[],duplicate:[]}:this.parseTags(e)}},onInputChange:function(t){if(!this.disabled&&this.addOnChange){var e=qx(t);this.newTag!==e&&(this.newTag=e),this.addTag()}},onInputKeydown:function(t){if(!this.disabled&&ye(t)){var e=t.keyCode,r=t.target.value||"";this.noAddOnEnter||e!==nc?!this.removeOnDelete||8!==e&&46!==e||""!==r||($l(t,{propagation:!1}),this.tags=this.tags.slice(0,-1)):($l(t,{propagation:!1}),this.addTag())}},onClick:function(t){var e=this,r=this.computeIgnoreInputFocusSelector,o=t.target;this.disabled||Ta(o)||r&&Ba(r,o,!0)||this.$nextTick((function(){e.focus()}))},onFocusin:function(){this.hasFocus=!0},onFocusout:function(){this.hasFocus=!1},handleAutofocus:function(){var t=this;this.$nextTick((function(){ka((function(){t.autofocus&&!t.disabled&&t.focus()}))}))},focus:function(){this.disabled||Qa(this.getInput())},blur:function(){this.disabled||tl(this.getInput())},splitTags:function(t){t=ba(t);var e=this.computedSeparatorRegExp;return(e?t.split(e):[t]).map(ha).filter(He)},parseTags:function(t){var e=this,r=this.splitTags(t),o={all:r,valid:[],invalid:[],duplicate:[]};return r.forEach((function(t){ra(e.tags,t)||ra(o.valid,t)?ra(o.duplicate,t)||o.duplicate.push(t):e.validateTag(t)?o.valid.push(t):ra(o.invalid,t)||o.invalid.push(t)})),o},validateTag:function(t){var e=this.tagValidator;return!yl(e)||e(t)},getInput:function(){return Ea("#".concat(qg(this.computedInputId)),this.$el)},defaultRender:function(t){var e=t.addButtonText,r=t.addButtonVariant,o=t.addTag,n=t.disableAddButton,i=t.disabled,a=t.duplicateTagText,l=t.inputAttrs,s=t.inputClass,c=t.inputHandlers,d=t.inputType,p=t.invalidTagText,u=t.isDuplicate,m=t.isInvalid,f=t.isLimitReached,b=t.limitTagsText,h=t.noTagRemove,g=t.placeholder,v=t.removeTag,x=t.tagClass,y=t.tagPills,w=t.tagRemoveLabel,k=t.tagVariant,O=t.tags,j=this.$createElement,S=O.map((function(t){return t=ba(t),j(zx,{class:x,props:{disabled:i,noRemove:h,pill:y,removeLabel:w,tag:"li",title:t,variant:k},on:{remove:function(){return v(t)}},key:"tags_".concat(t)},t)})),P=p&&m?this.safeId("__invalid_feedback__"):null,T=a&&u?this.safeId("__duplicate_feedback__"):null,_=b&&f?this.safeId("__limit_feedback__"):null,C=[l["aria-describedby"],P,T,_].filter(He).join(" "),$=j("input",{staticClass:"b-form-tags-input w-100 flex-grow-1 p-0 m-0 bg-transparent border-0",class:s,style:{outline:0,minWidth:"5rem"},attrs:Fx(Fx({},l),{},{"aria-describedby":C||null,type:d,placeholder:g||null}),domProps:{value:l.value},on:c,directives:[{name:"model",value:l.value}],ref:"input"}),D=j(Vc,{staticClass:"b-form-tags-button py-0",class:{invisible:n},style:{fontSize:"90%"},props:{disabled:n||f,variant:r},on:{click:function(){return o()}},ref:"button"},[this.normalizeSlot("add-button-text")||e]),E=this.safeId("__tag_list__"),z=j("li",{staticClass:"b-from-tags-field flex-grow-1",attrs:{role:"none","aria-live":"off","aria-controls":E},key:"tags_field"},[j("div",{staticClass:"d-flex",attrs:{role:"group"}},[$,D])]),B=j("ul",{staticClass:"b-form-tags-list list-unstyled mb-0 d-flex flex-wrap align-items-center",attrs:{id:E},key:"tags_list"},[S,z]),A=j();if(p||a||b){var I=this.computedJoiner,F=j();P&&(F=j(rh,{props:{id:P,forceShow:!0},key:"tags_invalid_feedback"},[this.invalidTagText,": ",this.invalidTags.join(I)]));var L=j();T&&(L=j(th,{props:{id:T},key:"tags_duplicate_feedback"},[this.duplicateTagText,": ",this.duplicateTags.join(I)]));var M=j();_&&(M=j(th,{props:{id:_},key:"tags_limit_feedback"},[b])),A=j("div",{attrs:{"aria-live":"polite","aria-atomic":"true"},key:"tags_feedback"},[F,L,M])}return[B,A]}},render:function(t){var e=this.name,r=this.disabled,o=this.required,n=this.form,i=this.tags,a=this.computedInputId,l=this.hasFocus,s=this.noOuterFocus,c=Fx({tags:i.slice(),inputAttrs:this.computedInputAttrs,inputType:this.computedInputType,inputHandlers:this.computedInputHandlers,removeTag:this.removeTag,addTag:this.addTag,reset:this.reset,inputId:a,isInvalid:this.hasInvalidTags,invalidTags:this.invalidTags.slice(),isDuplicate:this.hasDuplicateTags,duplicateTags:this.duplicateTags.slice(),isLimitReached:this.isLimitReached,disableAddButton:this.disableAddButton},ze(this.$props,["addButtonText","addButtonVariant","disabled","duplicateTagText","form","inputClass","invalidTagText","limit","limitTagsText","noTagRemove","placeholder","required","separator","size","state","tagClass","tagPills","tagRemoveLabel","tagVariant"])),d=this.normalizeSlot(Ii,c)||this.defaultRender(c),p=t("output",{staticClass:"sr-only",attrs:{id:this.safeId("__selected_tags__"),role:"status",for:a,"aria-live":l?"polite":"off","aria-atomic":"true","aria-relevant":"additions text"}},this.tags.join(", ")),u=t("div",{staticClass:"sr-only",attrs:{id:this.safeId("__removed_tags__"),role:"status","aria-live":l?"assertive":"off","aria-atomic":"true"}},this.removedTags.length>0?"(".concat(this.tagRemovedLabel,") ").concat(this.removedTags.join(", ")):""),m=t();if(e&&!r){var f=i.length>0;m=(f?i:[""]).map((function(r){return t("input",{class:{"sr-only":!f},attrs:{type:f?"hidden":"text",value:r,required:o,name:e,form:n},key:"tag_input_".concat(r)})}))}return t("div",{staticClass:"b-form-tags form-control h-auto",class:[{focus:l&&!s&&!r,disabled:r},this.sizeFormClass,this.stateClass],attrs:{id:this.safeId(),role:"group",tabindex:r||s?null:"-1","aria-describedby":this.safeId("__selected_tags__")},on:{click:this.onClick,focusin:this.onFocusin,focusout:this.onFocusout}},[p,u,d,m])}}),Xx=lr({components:{BFormTags:Kx,BTags:Kx,BFormTag:zx,BTag:zx}});function Jx(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Zx(t){for(var e=1;ep?l:"".concat(p,"px")}},render:function(t){return t("textarea",{class:this.computedClass,style:this.computedStyle,directives:[{name:"b-visible",value:this.visibleCallback,modifiers:{640:!0}}],attrs:this.computedAttrs,domProps:{value:this.localValue},on:this.computedListeners,ref:"input"})}}),oy=lr({components:{BFormTextarea:ry,BTextarea:ry}});function ny(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function iy(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,o=new Array(e);r1&&void 0!==arguments[1]&&arguments[1];return ce(e)||ce(r)||n&&ce(o)?"":[e,r,n?o:0].map(by).join(":")}({hours:this.modelHours,minutes:this.modelMinutes,seconds:this.modelSeconds},this.showSeconds)},resolvedOptions:function(){var t=oa(this.locale).filter(He),e={hour:fy,minute:fy,second:fy};de(this.hour12)||(e.hour12=!!this.hour12);var r=new Intl.DateTimeFormat(t,e).resolvedOptions(),o=r.hour12||!1,n=r.hourCycle||(o?"h12":"h23");return{locale:r.locale,hour12:o,hourCycle:n}},computedLocale:function(){return this.resolvedOptions.locale},computedLang:function(){return(this.computedLocale||"").replace(/-u-.*$/,"")},computedRTL:function(){return op(this.computedLang)},computedHourCycle:function(){return this.resolvedOptions.hourCycle},is12Hour:function(){return!!this.resolvedOptions.hour12},context:function(){return{locale:this.computedLocale,isRTL:this.computedRTL,hourCycle:this.computedHourCycle,hour12:this.is12Hour,hours:this.modelHours,minutes:this.modelMinutes,seconds:this.showSeconds?this.modelSeconds:0,value:this.computedHMS,formatted:this.formattedTimeString}},valueId:function(){return this.safeId()||null},computedAriaLabelledby:function(){return[this.ariaLabelledby,this.valueId].filter(He).join(" ")||null},timeFormatter:function(){var t={hour12:this.is12Hour,hourCycle:this.computedHourCycle,hour:fy,minute:fy,timeZone:"UTC"};return this.showSeconds&&(t.second=fy),Ud(this.computedLocale,t)},numberFormatter:function(){return new Intl.NumberFormat(this.computedLocale,{style:"decimal",minimumIntegerDigits:2,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"}).format},formattedTimeString:function(){var t=this.modelHours,e=this.modelMinutes,r=this.showSeconds&&this.modelSeconds||0;return this.computedHMS?this.timeFormatter(Vd(Date.UTC(0,0,1,t,e,r))):this.labelNoTimeSelected||" "},spinScopedSlots:function(){var t=this.$createElement;return{increment:function(e){var r=e.hasFocus;return t(Ls,{props:{scale:r?1.5:1.25},attrs:{"aria-hidden":"true"}})},decrement:function(e){var r=e.hasFocus;return t(Ls,{props:{flipV:!0,scale:r?1.5:1.25},attrs:{"aria-hidden":"true"}})}}}},watch:(ty={},ay(ty,uy,(function(t,e){if(t!==e&&!dc(hy(t),hy(this.computedHMS))){var r=hy(t),o=r.hours,n=r.minutes,i=r.seconds,a=r.ampm;this.modelHours=o,this.modelMinutes=n,this.modelSeconds=i,this.modelAmpm=a}})),ay(ty,"computedHMS",(function(t,e){t!==e&&this.$emit(my,t)})),ay(ty,"context",(function(t,e){dc(t,e)||this.$emit(Cn,t)})),ay(ty,"modelAmpm",(function(t,e){var r=this;if(t!==e){var o=ce(this.modelHours)?0:this.modelHours;this.$nextTick((function(){0===t&&o>11?r.modelHours=o-12:1===t&&o<12&&(r.modelHours=o+12)}))}})),ay(ty,"modelHours",(function(t,e){t!==e&&(this.modelAmpm=t>11?1:0)})),ty),created:function(){var t=this;this.$nextTick((function(){t.$emit(Cn,t.context)}))},mounted:function(){this.setLive(!0)},activated:function(){this.setLive(!0)},deactivated:function(){this.setLive(!1)},beforeDestroy:function(){this.setLive(!1)},methods:{focus:function(){this.disabled||Qa(this.$refs.spinners[0])},blur:function(){if(!this.disabled){var t=Sa();Aa(this.$el,t)&&tl(t)}},formatHours:function(t){var e=this.computedHourCycle;return t=0===(t=this.is12Hour&&t>12?t-12:t)&&"h12"===e?12:0===t&&"h24"===e?24:12===t&&"h11"===e?0:t,this.numberFormatter(t)},formatMinutes:function(t){return this.numberFormatter(t)},formatSeconds:function(t){return this.numberFormatter(t)},formatAmpm:function(t){return 0===t?this.labelAm:1===t?this.labelPm:""},setHours:function(t){this.modelHours=t},setMinutes:function(t){this.modelMinutes=t},setSeconds:function(t){this.modelSeconds=t},setAmpm:function(t){this.modelAmpm=t},onSpinLeftRight:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.type,r=t.keyCode;if(!this.disabled&&"keydown"===e&&(r===ac||r===lc)){$l(t);var o=this.$refs.spinners||[],n=o.map((function(t){return!!t.hasFocus})).indexOf(!0);n=(n+=r===ac?-1:1)>=o.length?0:n<0?o.length-1:n,Qa(o[n])}},setLive:function(t){var e=this;t?this.$nextTick((function(){ka((function(){e.isLive=!0}))})):this.isLive=!1}},render:function(t){var e=this;if(this.hidden)return t();var r=this.valueId,o=this.computedAriaLabelledby,n=[],i=function(o,i,a){var l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},s=e.safeId("_spinbutton_".concat(i,"_"))||null;return n.push(s),t(Px,{class:a,props:iy({id:s,placeholder:"--",vertical:!0,required:!0,disabled:e.disabled,readonly:e.readonly,locale:e.computedLocale,labelIncrement:e.labelIncrement,labelDecrement:e.labelDecrement,wrap:!0,ariaControls:r,min:0},l),scopedSlots:e.spinScopedSlots,on:{change:o},key:i,ref:"spinners",refInFor:!0})},a=function(){return t("div",{staticClass:"d-flex flex-column",class:{"text-muted":e.disabled||e.readonly},attrs:{"aria-hidden":"true"}},[t(Ms,{props:{shiftV:4,scale:.5}}),t(Ms,{props:{shiftV:-4,scale:.5}})])},l=[];l.push(i(this.setHours,"hours","b-time-hours",{value:this.modelHours,max:23,step:1,formatterFn:this.formatHours,ariaLabel:this.labelHours})),l.push(a()),l.push(i(this.setMinutes,"minutes","b-time-minutes",{value:this.modelMinutes,max:59,step:this.minutesStep||1,formatterFn:this.formatMinutes,ariaLabel:this.labelMinutes})),this.showSeconds&&(l.push(a()),l.push(i(this.setSeconds,"seconds","b-time-seconds",{value:this.modelSeconds,max:59,step:this.secondsStep||1,formatterFn:this.formatSeconds,ariaLabel:this.labelSeconds}))),this.is12Hour&&l.push(i(this.setAmpm,"ampm","b-time-ampm",{value:this.modelAmpm,max:1,formatterFn:this.formatAmpm,ariaLabel:this.labelAmpm,required:!1})),l=t("div",{staticClass:"d-flex align-items-center justify-content-center mx-auto",attrs:{role:"group",tabindex:this.disabled||this.readonly?null:"-1","aria-labelledby":o},on:{keydown:this.onSpinLeftRight,click:function(t){t.target===t.currentTarget&&e.focus()}}},l);var s=t("output",{staticClass:"form-control form-control-sm text-center",class:{disabled:this.disabled||this.readonly},attrs:{id:r,role:"status",for:n.filter(He).join(" ")||null,tabindex:this.disabled?null:"-1","aria-live":this.isLive?"polite":"off","aria-atomic":"true"},on:{click:this.focus,focus:this.focus}},[t("bdi",this.formattedTimeString),this.computedHMS?t("span",{staticClass:"sr-only"}," (".concat(this.labelSelected,") ")):""]),c=t("header",{staticClass:"b-time-header",class:{"sr-only":this.hideHeader}},[s]),d=this.normalizeSlot();return d=d?t("footer",{staticClass:"b-time-footer"},d):t(),t("div",{staticClass:"b-time d-inline-flex flex-column text-center",attrs:{role:"group",lang:this.computedLang||null,"aria-labelledby":o||null,"aria-disabled":this.disabled?"true":null,"aria-readonly":this.readonly&&!this.disabled?"true":null}},[c,l,d])}});function xy(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function yy(t){for(var e=1;e0&&a.push(t("span"," "));var s=this.labelResetButton;a.push(t(Vc,{props:{size:"sm",disabled:r||o,variant:this.resetButtonVariant},attrs:{"aria-label":s||null},on:{click:this.onResetButton},key:"reset-btn"},s))}if(!this.noCloseButton){a.length>0&&a.push(t("span"," "));var c=this.labelCloseButton;a.push(t(Vc,{props:{size:"sm",disabled:r,variant:this.closeButtonVariant},attrs:{"aria-label":c||null},on:{click:this.onCloseButton},key:"close-btn"},c))}a.length>0&&(a=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":a.length>1,"justify-content-end":a.length<2}},a)]);var d=t(vy,{staticClass:"b-form-time-control",props:yy(yy({},hl(Ty,n)),{},{value:e,hidden:!this.isVisible}),on:{input:this.onInput,context:this.onContext},ref:"time"},a);return t(hg,{staticClass:"b-form-timepicker",props:yy(yy({},hl(_y,n)),{},{id:this.safeId(),value:e,formattedValue:e?this.formattedValue:"",placeholder:i,rtl:this.isRTL,lang:this.computedLang}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:wy({},Bi,this.$scopedSlots["button-content"]||this.defaultButtonFn),ref:"control"},[d])}}),Dy=lr({components:{BFormTimepicker:$y,BTimepicker:$y}}),Ey=lr({components:{BImg:Mp,BImgLazy:du}}),zy=vl({tag:fl(gi,"div")},Bo),By=o.default.extend({name:Bo,functional:!0,props:zy,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.tag,xr(o,{staticClass:"input-group-text"}),n)}}),Ay=vl({append:fl(pi,!1),id:fl(gi),isText:fl(pi,!1),tag:fl(gi,"div")},Do),Iy=o.default.extend({name:Do,functional:!0,props:Ay,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.append;return t(r.tag,xr(o,{class:{"input-group-append":i,"input-group-prepend":!i},attrs:{id:r.id}}),r.isText?[t(By,n)]:n)}});function Fy(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Ly(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:null;return t&&t.$options._scopeId||e},Tw=o.default.extend({computed:{scopedStyleAttrs:function(){var t,e,r=Pw(this.$parent);return r?("",(e=r)in(t={})?Object.defineProperty(t,e,{value:"",enumerable:!0,configurable:!0,writable:!0}):t[e]="",t):{}}}}),_w=o.default.extend({abstract:!0,name:"BVTransporterTarget",props:{nodes:fl(vi)},data:function(t){return{updatedNodes:t.nodes}},destroyed:function(){var t;(t=this.$el)&&t.parentNode&&t.parentNode.removeChild(t)},render:function(t){var e=this.updatedNodes,r=pe(e)?e({}):e;return(r=oa(r).filter(He))&&r.length>0&&!r[0].text?r[0]:t()}}),Cw={container:fl([oe,gi],"body"),disabled:fl(pi,!1),tag:fl(gi,"div")},$w=o.default.extend({name:"BVTransporter",mixins:[Sl],props:Cw,watch:{disabled:{immediate:!0,handler:function(t){t?this.unmountTarget():this.$nextTick(this.mountTarget)}}},created:function(){this.$_defaultFn=null,this.$_target=null},beforeMount:function(){this.mountTarget()},updated:function(){this.updateTarget()},beforeDestroy:function(){this.unmountTarget(),this.$_defaultFn=null},methods:{getContainer:function(){if(ot){var t=this.container;return me(t)?Ea(t):t}return null},mountTarget:function(){if(!this.$_target){var t=this.getContainer();if(t){var e=document.createElement("div");t.appendChild(e),this.$_target=new _w({el:e,parent:this,propsData:{nodes:oa(this.normalizeSlot())}})}}},updateTarget:function(){if(ot&&this.$_target){var t=this.$scopedSlots.default;this.disabled||(t&&this.$_defaultFn!==t?this.$_target.updatedNodes=t:t||(this.$_target.updatedNodes=this.$slots.default)),this.$_defaultFn=t}},unmountTarget:function(){this.$_target&&this.$_target.$destroy(),this.$_target=null}},render:function(t){if(this.disabled){var e=oa(this.normalizeSlot()).filter(He);if(e.length>0&&!e[0].text)return e[0]}return t()}});function Dw(t){return(Dw="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Ew(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function zw(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:{};return Aw(this,a),e=i.call(this,t,r),Te(Rw(e),{trigger:{enumerable:!0,configurable:!1,writable:!1}}),e}return e=a,r=[{key:"Defaults",get:function(){return zw(zw({},Fw(Vw(a),"Defaults",this)),{},{trigger:null})}}],null&&Iw(e.prototype,null),r&&Iw(e,r),a}(Hf),Hw=new(o.default.extend({data:function(){return{modals:[],baseZIndex:null,scrollbarWidth:null,isBodyOverflowing:!1}},computed:{modalCount:function(){return this.modals.length},modalsAreOpen:function(){return this.modalCount>0}},watch:{modalCount:function(t,e){ot&&(this.getScrollbarWidth(),t>0&&0===e?(this.checkScrollbar(),this.setScrollbar(),Fa(document.body,"modal-open")):0===t&&e>0&&(this.resetScrollbar(),La(document.body,"modal-open")),Ra(document.body,"data-modal-open-count",String(t)))},modals:function(t){var e=this;this.checkScrollbar(),ka((function(){e.updateModals(t||[])}))}},methods:{registerModal:function(t){var e=this;t&&-1===this.modals.indexOf(t)&&(this.modals.push(t),t.$once(ni,(function(){e.unregisterModal(t)})))},unregisterModal:function(t){var e=this.modals.indexOf(t);e>-1&&(this.modals.splice(e,1),t._isBeingDestroyed||t._isDestroyed||this.resetModal(t))},getBaseZIndex:function(){if(ce(this.baseZIndex)&&ot){var t=document.createElement("div");Fa(t,"modal-backdrop"),Fa(t,"d-none"),Ua(t,"display","none"),document.body.appendChild(t),this.baseZIndex=la(Ya(t).zIndex,1040),document.body.removeChild(t)}return this.baseZIndex||1040},getScrollbarWidth:function(){if(ce(this.scrollbarWidth)&&ot){var t=document.createElement("div");Fa(t,"modal-scrollbar-measure"),document.body.appendChild(t),this.scrollbarWidth=qa(t).width-t.clientWidth,document.body.removeChild(t)}return this.scrollbarWidth||0},updateModals:function(t){var e=this,r=this.getBaseZIndex(),o=this.getScrollbarWidth();t.forEach((function(t,n){t.zIndex=r+n,t.scrollbarWidth=o,t.isTop=n===e.modals.length-1,t.isBodyOverflowing=e.isBodyOverflowing}))},resetModal:function(t){t&&(t.zIndex=this.getBaseZIndex(),t.isTop=!0,t.isBodyOverflowing=!1)},checkScrollbar:function(){var t=qa(document.body),e=t.left,r=t.right;this.isBodyOverflowing=e+r0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=ju(this.$refs.content,this.checkModalOverflow.bind(this),ok))},updateModel:function(t){t!==this[Xw]&&this.$emit(Jw,t)},buildEvent:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Nw(t,Ww(Ww({cancelable:!1,target:this.$refs.modal||this.$el||null,relatedTarget:null,trigger:null},e),{},{vueTarget:this,componentId:this.modalId}))},show:function(){if(!this.isVisible&&!this.isOpening)if(this.isClosing)this.$once(Vn,this.show);else{this.isOpening=!0,this.$_returnFocus=this.$_returnFocus||this.getActiveElement();var t=this.buildEvent(ti,{cancelable:!0});if(this.emitEvent(t),t.defaultPrevented||this.isVisible)return this.isOpening=!1,void this.updateModel(!1);this.doShow()}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(this.isVisible&&!this.isClosing){this.isClosing=!0;var e=this.buildEvent(Nn,{cancelable:t!==Zw,trigger:t||null});if(t===ek?this.$emit("ok",e):t===Qw?this.$emit(Sn,e):t===tk&&this.$emit(_n,e),this.emitEvent(e),e.defaultPrevented||!this.isVisible)return this.isClosing=!1,void this.updateModel(!0);this.setObserver(!1),this.isVisible=!1,this.updateModel(!1)}},toggle:function(t){t&&(this.$_returnFocus=t),this.isVisible?this.hide("toggle"):this.show()},getActiveElement:function(){var t=Sa(ot?[document.body]:[]);return t&&t.focus?t:null},doShow:function(){var t=this;Hw.modalsAreOpen&&this.noStacking?this.listenOnRootOnce(El(No,Vn),this.doShow):(Hw.registerModal(this),this.isHidden=!1,this.$nextTick((function(){t.isVisible=!0,t.isOpening=!1,t.updateModel(!0),t.$nextTick((function(){t.setObserver(!0)}))})))},onBeforeEnter:function(){this.isTransitioning=!0,this.setResizeEvent(!0)},onEnter:function(){var t=this;this.isBlock=!0,ka((function(){ka((function(){t.isShow=!0}))}))},onAfterEnter:function(){var t=this;this.checkModalOverflow(),this.isTransitioning=!1,ka((function(){t.emitEvent(t.buildEvent(ei)),t.setEnforceFocus(!0),t.$nextTick((function(){t.focusFirst()}))}))},onBeforeLeave:function(){this.isTransitioning=!0,this.setResizeEvent(!1),this.setEnforceFocus(!1)},onLeave:function(){this.isShow=!1},onAfterLeave:function(){var t=this;this.isBlock=!1,this.isTransitioning=!1,this.isModalOverflowing=!1,this.isHidden=!0,this.$nextTick((function(){t.isClosing=!1,Hw.unregisterModal(t),t.returnFocusTo(),t.emitEvent(t.buildEvent(Vn))}))},emitEvent:function(t){var e=t.type;this.emitOnRoot(El(No,e),t,t.componentId),this.$emit(e,t)},onDialogMousedown:function(){var t=this,e=this.$refs.modal;Tl(e,"mouseup",(function r(o){_l(e,"mouseup",r,si),o.target===e&&(t.ignoreBackdropClick=!0)}),si)},onClickOut:function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:this.isVisible&&!this.noCloseOnBackdrop&&Aa(document.body,t.target)&&(Aa(this.$refs.content,t.target)||this.hide("backdrop"))},onOk:function(){this.hide(ek)},onCancel:function(){this.hide(Qw)},onClose:function(){this.hide(tk)},onEsc:function(t){27===t.keyCode&&this.isVisible&&!this.noCloseOnEsc&&this.hide("esc")},focusHandler:function(t){var e=this.$refs.content,r=t.target;if(!(this.noEnforceFocus||!this.isTop||!this.isVisible||!e||document===r||Aa(e,r)||this.computeIgnoreEnforceFocusSelector&&Ba(this.computeIgnoreEnforceFocusSelector,r,!0))){var o=Za(this.$refs.content),n=this.$refs["bottom-trap"],i=this.$refs["top-trap"];if(n&&r===n){if(Qa(o[0]))return}else if(i&&r===i&&Qa(o[o.length-1]))return;Qa(e,{preventScroll:!0})}},setEnforceFocus:function(t){this.listenDocument(t,"focusin",this.focusHandler)},setResizeEvent:function(t){this.listenWindow(t,"resize",this.checkModalOverflow),this.listenWindow(t,"orientationchange",this.checkModalOverflow)},showHandler:function(t,e){t===this.modalId&&(this.$_returnFocus=e||this.getActiveElement(),this.show())},hideHandler:function(t){t===this.modalId&&this.hide("event")},toggleHandler:function(t,e){t===this.modalId&&this.toggle(e)},modalListener:function(t){this.noStacking&&t.vueTarget!==this&&this.hide()},focusFirst:function(){var t=this;ot&&ka((function(){var e=t.$refs.modal,r=t.$refs.content,o=t.getActiveElement();if(e&&r&&(!o||!Aa(r,o))){var n=t.$refs["ok-button"],i=t.$refs["cancel-button"],a=t.$refs["close-button"],l=t.autoFocusButton,s=l===ek&&n?n.$el||n:l===Qw&&i?i.$el||i:l===tk&&a?a.$el||a:r;Qa(s),s===r&&t.$nextTick((function(){e.scrollTop=0}))}}))},returnFocusTo:function(){var t=this.returnFocus||this.$_returnFocus||null;this.$_returnFocus=null,this.$nextTick((function(){(t=me(t)?Ea(t):t)&&(t=t.$el||t,Qa(t))}))},checkModalOverflow:function(){if(this.isVisible){var t=this.$refs.modal;this.isModalOverflowing=t.scrollHeight>document.documentElement.clientHeight}},makeModal:function(t){var e=t();if(!this.hideHeader){var r=this.normalizeSlot("modal-header",this.slotScope);if(!r){var o=t();this.hideHeaderClose||(o=t(Al,{props:{content:this.headerCloseContent,disabled:this.isTransitioning,ariaLabel:this.headerCloseLabel,textVariant:this.headerCloseVariant||this.headerTextVariant},on:{click:this.onClose},ref:"close-button"},[this.normalizeSlot("modal-header-close")])),r=[t(this.titleTag,{staticClass:"modal-title",class:this.titleClasses,attrs:{id:this.modalTitleId},domProps:this.hasNormalizedSlot(Gi)?{}:ld(this.titleHtml,this.title)},this.normalizeSlot(Gi,this.slotScope)),o]}e=t("header",{staticClass:"modal-header",class:this.headerClasses,attrs:{id:this.modalHeaderId},ref:"header"},[r])}var n=t("div",{staticClass:"modal-body",class:this.bodyClasses,attrs:{id:this.modalBodyId},ref:"body"},this.normalizeSlot(Ii,this.slotScope)),i=t();if(!this.hideFooter){var a=this.normalizeSlot("modal-footer",this.slotScope);if(!a){var l=t();this.okOnly||(l=t(Vc,{props:{variant:this.cancelVariant,size:this.buttonSize,disabled:this.cancelDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(Ui)?{}:ld(this.cancelTitleHtml,this.cancelTitle),on:{click:this.onCancel},ref:"cancel-button"},this.normalizeSlot(Ui))),a=[l,t(Vc,{props:{variant:this.okVariant,size:this.buttonSize,disabled:this.okDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(Wi)?{}:ld(this.okTitleHtml,this.okTitle),on:{click:this.onOk},ref:"ok-button"},this.normalizeSlot(Wi))]}i=t("footer",{staticClass:"modal-footer",class:this.footerClasses,attrs:{id:this.modalFooterId},ref:"footer"},[a])}var s=t("div",{staticClass:"modal-content",class:this.contentClass,attrs:{id:this.modalContentId,tabindex:"-1"},ref:"content"},[e,n,i]),c=t(),d=t();this.isVisible&&!this.noEnforceFocus&&(c=t("span",{attrs:{tabindex:"0"},ref:"top-trap"}),d=t("span",{attrs:{tabindex:"0"},ref:"bottom-trap"}));var p=t("div",{staticClass:"modal-dialog",class:this.dialogClasses,on:{mousedown:this.onDialogMousedown},ref:"dialog"},[c,s,d]),u=t("div",{staticClass:"modal",class:this.modalClasses,style:this.modalStyles,attrs:this.computedModalAttrs,on:{keydown:this.onEsc,click:this.onClickOut},directives:[{name:"show",value:this.isVisible}],ref:"modal"},[p]);u=t("transition",{props:{enterClass:"",enterToClass:"",enterActiveClass:"",leaveClass:"",leaveActiveClass:"",leaveToClass:""},on:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave}},[u]);var m=t();return!this.hideBackdrop&&this.isVisible&&(m=t("div",{staticClass:"modal-backdrop",attrs:{id:this.modalBackdropId}},this.normalizeSlot("modal-backdrop"))),m=t(Hl,{props:{noFade:this.noFade}},[m]),t("div",{style:this.modalOuterStyle,attrs:this.computedAttrs,key:"modal-outer-".concat(this._uid)},[u,m])}},render:function(t){return this.static?this.lazy&&this.isHidden?t():this.makeModal(t):this.isHidden?t():t($w,[this.makeModal(t)])}}),ak=zl(No,ti),lk="__bv_modal_directive__",sk=function(t){var e=t.modifiers,r=void 0===e?{}:e,o=t.arg,n=t.value;return me(n)?n:me(o)?o:$e(r).reverse()[0]},ck=function(t){return t&&za(t,".dropdown-menu > li, li.nav-item")&&Ea("a, button",t)||t},dk=function(t){t&&"BUTTON"!==t.tagName&&(Ha(t,"role")||Ra(t,"role","button"),"A"===t.tagName||Ha(t,"tabindex")||Ra(t,"tabindex","0"))},pk=function(t){var e=t[lk]||{},r=e.trigger,o=e.handler;r&&o&&(_l(r,"click",o,li),_l(r,"keydown",o,li),_l(t,"click",o,li),_l(t,"keydown",o,li)),delete t[lk]},uk=function(t,e,r){var o=t[lk]||{},n=sk(e),i=ck(t);n===o.target&&i===o.trigger||(pk(t),function(t,e,r){var o=sk(e),n=ck(t);if(o&&n){var i=function(t){var e=t.currentTarget;if(!Ca(e)){var n=t.type,i=t.keyCode;"click"!==n&&("keydown"!==n||i!==nc&&i!==sc)||r.context.$root.$emit(ak,o,e)}};t[lk]={handler:i,target:o,trigger:n},dk(n),Tl(n,"click",i,li),"BUTTON"!==n.tagName&&"button"===Na(n,"role")&&Tl(n,"keydown",i,li)}}(t,e,r)),dk(i)},mk={inserted:uk,updated:function(){},componentUpdated:uk,unbind:pk};function fk(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,o=new Array(e);r2&&void 0!==arguments[2]?arguments[2]:kk;if(!Ke(yk)&&!Xe(yk)){var n=new e({parent:t,propsData:hk(hk(hk({},jk(nl(No))),{},{hideHeaderClose:!0,hideHeader:!(r.title||r.titleHtml)},Be(r,$e(Ok))),{},{lazy:!1,busy:!1,visible:!1,noStacking:!1,noEnforceFocus:!1})});return $e(Ok).forEach((function(t){se(r[t])||(n.$slots[Ok[t]]=oa(r[t]))})),new Promise((function(t,e){var r=!1;n.$once(ii,(function(){r||e(new Error("BootstrapVue MsgBox destroyed before resolve"))})),n.$on(Nn,(function(e){if(!e.defaultPrevented){var n=o(e);e.defaultPrevented||(r=!0,t(n))}}));var i=document.createElement("div");document.body.appendChild(i),n.$mount(i)}))}},o=function(t,e){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(e&&!Xe(yk)&&!Ke(yk)&&pe(n))return r(t,hk(hk({},jk(o)),{},{msgBoxContent:e}),n)},n=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),Se(this,{_vm:e,_root:e.$root}),Te(this,{_vm:{enumerable:!0,configurable:!1,writable:!1},_root:{enumerable:!0,configurable:!1,writable:!1}})}var e,r;return e=t,(r=[{key:"show",value:function(t){if(t&&this._root){for(var e,r=arguments.length,o=new Array(r>1?r-1:0),n=1;n1?r-1:0),n=1;n1&&void 0!==arguments[1]?arguments[1]:{},r=hk(hk({},e),{},{okOnly:!0,okDisabled:!1,hideFooter:!1,msgBoxContent:t});return o(this._vm,t,r,(function(){return!0}))}},{key:"msgBoxConfirm",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=hk(hk({},e),{},{okOnly:!1,okDisabled:!1,cancelDisabled:!1,hideFooter:!1});return o(this._vm,t,r,(function(t){var e=t.trigger;return"ok"===e||"cancel"!==e&&null}))}}])&&fk(e.prototype,r),t}();t.mixin({beforeCreate:function(){this._bv__modal=new n(this)}}),De(t.prototype,yk)||_e(t.prototype,yk,{get:function(){return this&&this._bv__modal||Ye('"'.concat(yk,'" must be accessed from a Vue instance "this" context.'),No),this._bv__modal}})}}})}});function Pk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Tk=vl({align:fl(gi),cardHeader:fl(pi,!1),fill:fl(pi,!1),justified:fl(pi,!1),pills:fl(pi,!1),small:fl(pi,!1),tabs:fl(pi,!1),tag:fl(gi,"ul"),vertical:fl(pi,!1)},Ho),_k=o.default.extend({name:Ho,functional:!0,props:Tk,render:function(t,e){var r,o,n=e.props,i=e.data,a=e.children,l=n.tabs,s=n.pills,c=n.vertical,d=n.align,p=n.cardHeader;return t(n.tag,xr(i,{staticClass:"nav",class:(r={"nav-tabs":l,"nav-pills":s&&!l,"card-header-tabs":!c&&p&&l,"card-header-pills":!c&&p&&s&&!l,"flex-column":c,"nav-fill":!c&&n.fill,"nav-justified":!c&&n.justified},Pk(r,(o=d,"justify-content-".concat(o="left"===o?"start":"right"===o?"end":o)),!c&&d),Pk(r,"small",n.small),r)}),a)}});function Ck(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function $k(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,o=new Array(e);r=0&&e<=1})),overlayTag:fl(gi,"div"),rounded:fl(ji,!1),show:fl(pi,!1),spinnerSmall:fl(pi,!1),spinnerType:fl(gi,"border"),spinnerVariant:fl(gi),variant:fl(gi,"light"),wrapTag:fl(gi,"div"),zIndex:fl(Ti,10)},Jo),kO=lr({components:{BOverlay:o.default.extend({name:Jo,mixins:[Sl],props:wO,computed:{computedRounded:function(){var t=this.rounded;return!0===t||""===t?"rounded":t?"rounded-".concat(t):""},computedVariant:function(){var t=this.variant;return t&&!this.bgColor?"bg-".concat(t):""},slotScope:function(){return{spinnerType:this.spinnerType||null,spinnerVariant:this.spinnerVariant||null,spinnerSmall:this.spinnerSmall}}},methods:{defaultOverlayFn:function(t){var e=t.spinnerType,r=t.spinnerVariant,o=t.spinnerSmall;return this.$createElement(bO,{props:{type:e,variant:r,small:o}})}},render:function(t){var e=this,r=this.show,o=this.fixed,n=this.noFade,i=this.noWrap,a=this.slotScope,l=t();if(r){var s=t("div",{staticClass:"position-absolute",class:[this.computedVariant,this.computedRounded],style:gO(gO({},yO),{},{opacity:this.opacity,backgroundColor:this.bgColor||null,backdropFilter:this.blur?"blur(".concat(this.blur,")"):null})}),c=t("div",{staticClass:"position-absolute",style:this.noCenter?gO({},yO):{top:"50%",left:"50%",transform:"translateX(-50%) translateY(-50%)"}},[this.normalizeSlot("overlay",a)||this.defaultOverlayFn(a)]);l=t(this.overlayTag,{staticClass:"b-overlay",class:{"position-absolute":!i||i&&!o,"position-fixed":i&&o},style:gO(gO({},yO),{},{zIndex:this.zIndex||10}),on:{click:function(t){return e.$emit(Tn,t)}},key:"overlay"},[s,c])}return l=t(Hl,{props:{noFade:n,appear:!0},on:{"after-enter":function(){return e.$emit(ei)},"after-leave":function(){return e.$emit(Vn)}}},[l]),i?l:t(this.wrapTag,{staticClass:"b-overlay-wrap position-relative",attrs:{"aria-busy":r?"true":null}},i?[l]:[this.normalizeSlot(),l])}})}});function OO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function jO(t){for(var e=1;ee?e:r<1?1:r},zO=function(t){if(t.keyCode===sc)return $l(t,{immediatePropagation:!0}),t.currentTarget.click(),!1},BO=vl(Ie(jO(jO({},_O),{},{align:fl(gi,"left"),ariaLabel:fl(gi,"Pagination"),disabled:fl(pi,!1),ellipsisClass:fl(yi),ellipsisText:fl(gi,"…"),firstClass:fl(yi),firstNumber:fl(pi,!1),firstText:fl(gi,"«"),hideEllipsis:fl(pi,!1),hideGotoEndButtons:fl(pi,!1),labelFirstPage:fl(gi,"Go to first page"),labelLastPage:fl(gi,"Go to last page"),labelNextPage:fl(gi,"Go to next page"),labelPage:fl(Pi,"Go to page"),labelPrevPage:fl(gi,"Go to previous page"),lastClass:fl(yi),lastNumber:fl(pi,!1),lastText:fl(gi,"»"),limit:fl(Ti,5,(function(t){return!(la(t,0)<1&&(Ye('Prop "limit" must be a number greater than "0"',Zo),1))})),nextClass:fl(yi),nextText:fl(gi,"›"),pageClass:fl(yi),pills:fl(pi,!1),prevClass:fl(yi),prevText:fl(gi,"‹"),size:fl(gi)})),"pagination"),AO=o.default.extend({mixins:[TO,Sl],props:BO,data:function(){var t=la(this[CO],0);return{currentPage:t=t>0?t:-1,localNumberOfPages:1,localLimit:5}},computed:{btnSize:function(){var t=this.size;return t?"pagination-".concat(t):""},alignment:function(){var t=this.align;return"center"===t?"justify-content-center":"end"===t||"right"===t?"justify-content-end":"fill"===t?"text-center":""},styleClass:function(){return this.pills?"b-pagination-pills":""},computedCurrentPage:function(){return EO(this.currentPage,this.localNumberOfPages)},paginationParams:function(){var t=this.localLimit,e=this.localNumberOfPages,r=this.computedCurrentPage,o=this.hideEllipsis,n=this.firstNumber,i=this.lastNumber,a=!1,l=!1,s=t,c=1;e<=t?s=e:r3?(o&&!i||(l=!0,s=t-(n?0:1)),s=rs(s,t)):e-r+23?(o&&!n||(a=!0,s=t-(i?0:1)),c=e-s+1):(t>3&&(s=t-(o?0:2),a=!(o&&!n),l=!(o&&!i)),c=r-as(s/2)),c<1?(c=1,a=!1):c>e-s&&(c=e-s+1,l=!1),a&&n&&c<4&&(s+=2,c=1,a=!1);var d=c+s-1;return l&&i&&d>e-3&&(s+=d===e-2?2:3,l=!1),t<=3&&(n&&1===c?s=rs(s+1,e,t+1):i&&e===c+s-1&&(c=os(c-1,1),s=rs(e-c+1,e,t+1))),{showFirstDots:a,showLastDots:l,numberOfLinks:s=rs(s,e-c+1),startNumber:c}},pageList:function(){var t=this.paginationParams,e=t.numberOfLinks,r=t.startNumber,o=this.computedCurrentPage,n=function(t,e){return na(e,(function(e,r){return{number:t+r,classes:null}}))}(r,e);if(n.length>3){var i=o-r,a="bv-d-xs-down-none";if(0===i)for(var l=3;li+1;d--)n[d].classes=a}}return n}},watch:(xO={},SO(xO,CO,(function(t,e){t!==e&&(this.currentPage=EO(t,this.localNumberOfPages))})),SO(xO,"currentPage",(function(t,e){t!==e&&this.$emit($O,t>0?t:null)})),SO(xO,"limit",(function(t,e){t!==e&&(this.localLimit=DO(t))})),xO),created:function(){var t=this;this.localLimit=DO(this.limit),this.$nextTick((function(){t.currentPage=t.currentPage>t.localNumberOfPages?t.localNumberOfPages:t.currentPage}))},methods:{handleKeyNav:function(t){var e=t.keyCode,r=t.shiftKey;this.isNav||(e===ac||e===cc?($l(t,{propagation:!1}),r?this.focusFirst():this.focusPrev()):e!==lc&&e!==rc||($l(t,{propagation:!1}),r?this.focusLast():this.focusNext()))},getButtons:function(){return Da("button.page-link, a.page-link",this.$el).filter((function(t){return _a(t)}))},focusCurrent:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().find((function(e){return la(Na(e,"aria-posinset"),0)===t.computedCurrentPage}));Qa(e)||t.focusFirst()}))},focusFirst:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().find((function(t){return!Ca(t)}));Qa(e)}))},focusLast:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().reverse().find((function(t){return!Ca(t)}));Qa(e)}))},focusPrev:function(){var t=this;this.$nextTick((function(){var e=t.getButtons(),r=e.indexOf(Sa());r>0&&!Ca(e[r-1])&&Qa(e[r-1])}))},focusNext:function(){var t=this;this.$nextTick((function(){var e=t.getButtons(),r=e.indexOf(Sa());ra,h=o<1?1:o>a?a:o,g={disabled:m,page:h,index:h-1},v=e.normalizeSlot(l,g)||ba(s)||t(),x=t(m?"span":i?Tc:"button",{staticClass:"page-link",class:{"flex-grow-1":!i&&!m&&u},props:m||!i?{}:e.linkProps(o),attrs:{role:i?null:"menuitem",type:i||m?null:"button",tabindex:m||i?null:"-1","aria-label":n,"aria-controls":e.ariaControls||null,"aria-disabled":m?"true":null},on:m?{}:{"!click":function(t){e.onClick(t,o)},keydown:zO}},[v]);return t("li",{key:p,staticClass:"page-item",class:[{disabled:m,"flex-fill":u,"d-flex":u&&!i&&!m},c],attrs:{role:i?null:"presentation","aria-hidden":m?"true":null}},[x])},g=function(r){return t("li",{staticClass:"page-item",class:["disabled","bv-d-xs-down-none",u?"flex-fill":"",e.ellipsisClass],attrs:{role:"separator"},key:"ellipsis-".concat(r?"last":"first")},[t("span",{staticClass:"page-link"},[e.normalizeSlot("ellipsis-text")||ba(e.ellipsisText)||t()])])},v=function(n,l){var s=n.number,c=f(s)&&!b,d=r?null:c||b&&0===l?"0":"-1",p={role:i?null:"menuitemradio",type:i||r?null:"button","aria-disabled":r?"true":null,"aria-controls":e.ariaControls||null,"aria-label":yl(o)?o(s):"".concat(pe(o)?o():o," ").concat(s),"aria-checked":i?null:c?"true":"false","aria-current":i&&c?"page":null,"aria-posinset":i?null:s,"aria-setsize":i?null:a,tabindex:i?null:d},m=ba(e.makePage(s)),h={page:s,index:s-1,content:m,active:c,disabled:r},g=t(r?"span":i?Tc:"button",{props:r||!i?{}:e.linkProps(s),staticClass:"page-link",class:{"flex-grow-1":!i&&!r&&u},attrs:p,on:r?{}:{"!click":function(t){e.onClick(t,s)},keydown:zO}},[e.normalizeSlot("page",h)||m]);return t("li",{staticClass:"page-item",class:[{disabled:r,active:c,"flex-fill":u,"d-flex":u&&!i&&!r},n.classes,e.pageClass],attrs:{role:i?null:"presentation"},key:"page-".concat(s)},[g])},x=t();this.firstNumber||this.hideGotoEndButtons||(x=h(1,this.labelFirstPage,"first-text",this.firstText,this.firstClass,1,"pagination-goto-first")),m.push(x),m.push(h(l-1,this.labelPrevPage,"prev-text",this.prevText,this.prevClass,1,"pagination-goto-prev")),m.push(this.firstNumber&&1!==s[0]?v({number:1},0):t()),m.push(d?g(!1):t()),this.pageList.forEach((function(t,r){var o=d&&e.firstNumber&&1!==s[0]?1:0;m.push(v(t,r+o))})),m.push(p?g(!0):t()),m.push(this.lastNumber&&s[s.length-1]!==a?v({number:a},-1):t()),m.push(h(l+1,this.labelNextPage,"next-text",this.nextText,this.nextClass,a,"pagination-goto-next"));var y=t();this.lastNumber||this.hideGotoEndButtons||(y=h(a,this.labelLastPage,"last-text",this.lastText,this.lastClass,a,"pagination-goto-last")),m.push(y);var w=t("ul",{staticClass:"pagination",class:["b-pagination",this.btnSize,this.alignment,this.styleClass],attrs:{role:i?null:"menubar","aria-disabled":r?"true":"false","aria-label":i?null:n||null},on:i?{}:{keydown:this.handleKeyNav},ref:"ul"},m);return i?t("nav",{attrs:{"aria-disabled":r?"true":null,"aria-hidden":r?"true":"false","aria-label":i&&n||null}},[w]):w}});function IO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function FO(t){for(var e=1;et.numberOfPages)&&(this.currentPage=1),this.localNumberOfPages=t.numberOfPages}},created:function(){var t=this;this.localNumberOfPages=this.numberOfPages;var e=la(this[CO],0);e>0?this.currentPage=e:this.$nextTick((function(){t.currentPage=0}))},methods:{onClick:function(t,e){var r=this;if(e!==this.currentPage){var o=t.target,n=new Hf(Kn,{cancelable:!0,vueTarget:this,target:o});this.$emit(n.type,n,e),n.defaultPrevented||(this.currentPage=e,this.$emit(Pn,this.currentPage),this.$nextTick((function(){_a(o)&&r.$el.contains(o)?Qa(o):r.focusCurrent()})))}},makePage:function(t){return t},linkProps:function(){return{}}}})}});function HO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function UO(t){for(var e=1;e0?this.localNumberOfPages=this.pages.length:this.localNumberOfPages=(t=this.numberOfPages,os(la(t,0),1)),this.$nextTick((function(){e.guessCurrentPage()}))},onClick:function(t,e){var r=this;if(e!==this.currentPage){var o=t.currentTarget||t.target,n=new Hf(Kn,{cancelable:!0,vueTarget:this,target:o});this.$emit(n.type,n,e),n.defaultPrevented||(ka((function(){r.currentPage=e,r.$emit(Pn,e)})),this.$nextTick((function(){tl(o)})))}},getPageInfo:function(t){if(!he(this.pages)||0===this.pages.length||se(this.pages[t-1])){var e="".concat(this.baseUrl).concat(t);return{link:this.useRouter?{path:e}:e,text:ba(t)}}var r=this.pages[t-1];if(ge(r)){var o=r.link;return{link:ge(o)?o:this.useRouter?{path:o}:o,text:ba(r.text||t)}}return{link:ba(r),text:ba(t)}},makePage:function(t){var e=this.pageGen,r=this.getPageInfo(t);return yl(e)?e(t,r):r.text},makeLink:function(t){var e=this.linkGen,r=this.getPageInfo(t);return yl(e)?e(t,r):r.link},linkProps:function(t){var e=hl(GO,this),r=this.makeLink(t);return this.useRouter||ge(r)?e.to=r:e.href=r,e},resolveLink:function(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{(t=document.createElement("a")).href=ws({to:e},"a","/","/"),document.body.appendChild(t);var r=t,o=r.pathname,n=r.hash,i=r.search;return document.body.removeChild(t),{path:o,hash:n,query:vs(i)}}catch(e){try{t&&t.parentNode&&t.parentNode.removeChild(t)}catch(t){}return{}}},resolveRoute:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{var e=this.$router.resolve(t,this.$route).route;return{path:e.path,hash:e.hash,query:e.query}}catch(t){return{}}},guessCurrentPage:function(){var t=this.$router,e=this.$route,r=this.computedValue;if(!this.noPageDetect&&!r&&(ot||!ot&&t))for(var o=t&&e?{path:e.path,hash:e.hash,query:e.query}:{},n=ot?window.location||document.location:null,i=n?{path:n.pathname,hash:n.hash,query:vs(n.search)}:{},a=1;!r&&a<=this.localNumberOfPages;a++){var l=this.makeLink(a);r=t&&(ge(l)||this.useRouter)?dc(this.resolveRoute(l),o)?a:null:ot?dc(this.resolveLink(l),i)?a:null:-1}this.currentPage=r>0?r:0}}})}}),KO={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left",TOPLEFT:"top",TOPRIGHT:"top",RIGHTTOP:"right",RIGHTBOTTOM:"right",BOTTOMLEFT:"bottom",BOTTOMRIGHT:"bottom",LEFTTOP:"left",LEFTBOTTOM:"left"},XO={AUTO:0,TOPLEFT:-1,TOP:0,TOPRIGHT:1,RIGHTTOP:-1,RIGHT:0,RIGHTBOTTOM:1,BOTTOMLEFT:-1,BOTTOM:0,BOTTOMRIGHT:1,LEFTTOP:-1,LEFT:0,LEFTBOTTOM:1},JO={arrowPadding:fl(Ti,6),boundary:fl([oe,gi],"scrollParent"),boundaryPadding:fl(Ti,5),fallbackPlacement:fl(wi,"flip"),offset:fl(Ti,0),placement:fl(gi,"top"),target:fl([oe,ne])},ZO=o.default.extend({name:"BVPopper",props:JO,data:function(){return{noFade:!1,localShow:!0,attachment:this.getAttachment(this.placement)}},computed:{templateType:function(){return"unknown"},popperConfig:function(){var t=this,e=this.placement;return{placement:this.getAttachment(e),modifiers:{offset:{offset:this.getOffset(e)},flip:{behavior:this.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{padding:this.boundaryPadding,boundariesElement:this.boundary}},onCreate:function(e){e.originalPlacement!==e.placement&&t.popperPlacementChange(e)},onUpdate:function(e){t.popperPlacementChange(e)}}}},created:function(){var t=this;this.$_popper=null,this.localShow=!0,this.$on(ti,(function(e){t.popperCreate(e)}));var e=function(){t.$nextTick((function(){ka((function(){t.$destroy()}))}))};this.$parent.$once(ii,e),this.$once(Vn,e)},beforeMount:function(){this.attachment=this.getAttachment(this.placement)},updated:function(){this.updatePopper()},beforeDestroy:function(){this.destroyPopper()},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},methods:{hide:function(){this.localShow=!1},getAttachment:function(t){return KO[String(t).toUpperCase()]||"auto"},getOffset:function(t){if(!this.offset){var e=this.$refs.arrow||Ea(".arrow",this.$el),r=sa(Ya(e).width,0)+sa(this.arrowPadding,0);switch(XO[String(t).toUpperCase()]||0){case 1:return"+50%p - ".concat(r,"px");case-1:return"-50%p + ".concat(r,"px");default:return 0}}return this.offset},popperCreate:function(t){this.destroyPopper(),this.$_popper=new Rf(this.target,t,this.popperConfig)},destroyPopper:function(){this.$_popper&&this.$_popper.destroy(),this.$_popper=null},updatePopper:function(){this.$_popper&&this.$_popper.scheduleUpdate()},popperPlacementChange:function(t){this.attachment=this.getAttachment(t.placement)},renderTemplate:function(t){return t("div")}},render:function(t){var e=this,r=this.noFade;return t(Hl,{props:{appear:!0,noFade:r},on:{beforeEnter:function(t){return e.$emit(ti,t)},afterEnter:function(t){return e.$emit(ei,t)},beforeLeave:function(t){return e.$emit(Nn,t)},afterLeave:function(t){return e.$emit(Vn,t)}}},[this.localShow?this.renderTemplate(t):t()])}});function QO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function tj(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},r=!1;$e(mj).forEach((function(o){se(e[o])||t[o]===e[o]||(t[o]=e[o],"title"===o&&(r=!0))})),r&&this.localShow&&this.fixTitle()},createTemplateAndShow:function(){var t=this.getContainer(),e=this.getTemplate(),r=this.$_tip=new e({parent:this,propsData:{id:this.computedId,html:this.html,placement:this.placement,fallbackPlacement:this.fallbackPlacement,target:this.getPlacementTarget(),boundary:this.getBoundary(),offset:la(this.offset,0),arrowPadding:la(this.arrowPadding,0),boundaryPadding:la(this.boundaryPadding,0)}});this.handleTemplateUpdate(),r.$once(ti,this.onTemplateShow),r.$once(ei,this.onTemplateShown),r.$once(Nn,this.onTemplateHide),r.$once(Vn,this.onTemplateHidden),r.$once(ii,this.destroyTemplate),r.$on(Ln,this.handleEvent),r.$on(Mn,this.handleEvent),r.$on(Wn,this.handleEvent),r.$on(Gn,this.handleEvent),r.$mount(t.appendChild(document.createElement("div")))},hideTemplate:function(){this.$_tip&&this.$_tip.hide(),this.clearActiveTriggers(),this.$_hoverState=""},destroyTemplate:function(){this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.localPlacementTarget=null;try{this.$_tip.$destroy()}catch(t){}this.$_tip=null,this.removeAriaDescribedby(),this.restoreTitle(),this.localShow=!1},getTemplateElement:function(){return this.$_tip?this.$_tip.$el:null},handleTemplateUpdate:function(){var t=this,e=this.$_tip;e&&["title","content","variant","customClass","noFade","interactive"].forEach((function(r){e[r]!==t[r]&&(e[r]=t[r])}))},show:function(){var t=this.getTarget();if(t&&Aa(document.body,t)&&_a(t)&&!this.dropdownOpen()&&(!de(this.title)&&""!==this.title||!de(this.content)&&""!==this.content)&&!this.$_tip&&!this.localShow){this.localShow=!0;var e=this.buildEvent(ti,{cancelable:!0});this.emitEvent(e),e.defaultPrevented?this.destroyTemplate():(this.fixTitle(),this.addAriaDescribedby(),this.createTemplateAndShow())}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=this.getTemplateElement();if(e&&this.localShow){var r=this.buildEvent(Nn,{cancelable:!t});this.emitEvent(r),r.defaultPrevented||this.hideTemplate()}else this.restoreTitle()},forceHide:function(){this.getTemplateElement()&&this.localShow&&(this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.$_tip&&(this.$_tip.noFade=!0),this.hide(!0))},enable:function(){this.$_enabled=!0,this.emitEvent(this.buildEvent(An))},disable:function(){this.$_enabled=!1,this.emitEvent(this.buildEvent(zn))},onTemplateShow:function(){this.setWhileOpenListeners(!0)},onTemplateShown:function(){var t=this.$_hoverState;this.$_hoverState="","out"===t&&this.leave(null),this.emitEvent(this.buildEvent(ei))},onTemplateHide:function(){this.setWhileOpenListeners(!1)},onTemplateHidden:function(){this.destroyTemplate(),this.emitEvent(this.buildEvent(Vn))},getTarget:function(){var t=this.target;return me(t)?t=Ia(t.replace(/^#/,"")):pe(t)?t=t():t&&(t=t.$el||t),ja(t)?t:null},getPlacementTarget:function(){return this.getTarget()},getTargetId:function(){var t=this.getTarget();return t&&t.id?t.id:null},getContainer:function(){var t=!!this.container&&(this.container.$el||this.container),e=document.body,r=this.getTarget();return!1===t?Ba(pj,r)||e:me(t)&&Ia(t.replace(/^#/,""))||e},getBoundary:function(){return this.boundary?this.boundary.$el||this.boundary:"scrollParent"},isInModal:function(){var t=this.getTarget();return t&&Ba(cj,t)},isDropdown:function(){var t=this.getTarget();return t&&Ma(t,"dropdown")},dropdownOpen:function(){var t=this.getTarget();return this.isDropdown()&&t&&Ea(".dropdown-menu.show",t)},clearHoverTimeout:function(){clearTimeout(this.$_hoverTimeout),this.$_hoverTimeout=null},clearVisibilityInterval:function(){clearInterval(this.$_visibleInterval),this.$_visibleInterval=null},clearActiveTriggers:function(){for(var t in this.activeTrigger)this.activeTrigger[t]=!1},addAriaDescribedby:function(){var t=this.getTarget(),e=Na(t,"aria-describedby")||"";e=e.split(/\s+/).concat(this.computedId).join(" ").trim(),Ra(t,"aria-describedby",e)},removeAriaDescribedby:function(){var t=this,e=this.getTarget(),r=Na(e,"aria-describedby")||"";(r=r.split(/\s+/).filter((function(e){return e!==t.computedId})).join(" ").trim())?Ra(e,"aria-describedby",r):Va(e,"aria-describedby")},fixTitle:function(){var t=this.getTarget();if(Ha(t,"title")){var e=Na(t,"title");Ra(t,"title",""),e&&Ra(t,uj,e)}},restoreTitle:function(){var t=this.getTarget();if(Ha(t,uj)){var e=Na(t,uj);Va(t,uj),e&&Ra(t,"title",e)}},buildEvent:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Hf(t,ij({cancelable:!1,target:this.getTarget(),relatedTarget:this.getTemplateElement()||null,componentId:this.computedId,vueTarget:this},e))},emitEvent:function(t){var e=t.type;this.emitOnRoot(El(this.templateType,e),t),this.$emit(e,t)},listen:function(){var t=this,e=this.getTarget();e&&(this.setRootListener(!0),this.computedTriggers.forEach((function(r){"click"===r?Tl(e,"click",t.handleEvent,si):"focus"===r?(Tl(e,"focusin",t.handleEvent,si),Tl(e,"focusout",t.handleEvent,si)):"blur"===r?Tl(e,"focusout",t.handleEvent,si):"hover"===r&&(Tl(e,"mouseenter",t.handleEvent,si),Tl(e,"mouseleave",t.handleEvent,si))}),this))},unListen:function(){var t=this,e=this.getTarget();this.setRootListener(!1),["click","focusin","focusout","mouseenter","mouseleave"].forEach((function(r){e&&_l(e,r,t.handleEvent,si)}),this)},setRootListener:function(t){var e=this.$root;if(e){var r=t?"$on":"$off",o=this.templateType;e[r](zl(o,Nn),this.doHide),e[r](zl(o,ti),this.doShow),e[r](zl(o,En),this.doDisable),e[r](zl(o,Bn),this.doEnable)}},setWhileOpenListeners:function(t){this.setModalListener(t),this.setDropdownListener(t),this.visibleCheck(t),this.setOnTouchStartListener(t)},visibleCheck:function(t){var e=this;this.clearVisibilityInterval();var r=this.getTarget(),o=this.getTemplateElement();t&&(this.$_visibleInterval=setInterval((function(){!o||!e.localShow||r.parentNode&&_a(r)||e.forceHide()}),100))},setModalListener:function(t){this.isInModal()&&this.$root[t?"$on":"$off"](dj,this.forceHide)},setOnTouchStartListener:function(t){var e=this;"ontouchstart"in document.documentElement&&ea(document.body.children).forEach((function(r){Cl(t,r,"mouseover",e.$_noop)}))},setDropdownListener:function(t){var e=this.getTarget();e&&this.$root&&this.isDropdown&&e.__vue__&&e.__vue__[t?"$on":"$off"](ei,this.forceHide)},handleEvent:function(t){var e=this.getTarget();if(e&&!Ca(e)&&this.$_enabled&&!this.dropdownOpen()){var r=t.type,o=this.computedTriggers;if("click"===r&&ra(o,"click"))this.click(t);else if("mouseenter"===r&&ra(o,"hover"))this.enter(t);else if("focusin"===r&&ra(o,"focus"))this.enter(t);else if("focusout"===r&&(ra(o,"focus")||ra(o,"blur"))||"mouseleave"===r&&ra(o,"hover")){var n=this.getTemplateElement(),i=t.target,a=t.relatedTarget;if(n&&Aa(n,i)&&Aa(e,a)||n&&Aa(e,i)&&Aa(n,a)||n&&Aa(n,i)&&Aa(n,a)||Aa(e,i)&&Aa(e,a))return;this.leave(t)}}},doHide:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.forceHide()},doShow:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.show()},doDisable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.disable()},doEnable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.enable()},click:function(t){this.$_enabled&&!this.dropdownOpen()&&(Qa(t.currentTarget),this.activeTrigger.click=!this.activeTrigger.click,this.isWithActiveTrigger?this.enter(null):this.leave(null))},toggle:function(){this.$_enabled&&!this.dropdownOpen()&&(this.localShow?this.leave(null):this.enter(null))},enter:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;e&&(this.activeTrigger["focusin"===e.type?"focus":"hover"]=!0),this.localShow||"in"===this.$_hoverState?this.$_hoverState="in":(this.clearHoverTimeout(),this.$_hoverState="in",this.computedDelay.show?(this.fixTitle(),this.$_hoverTimeout=setTimeout((function(){"in"===t.$_hoverState?t.show():t.localShow||t.restoreTitle()}),this.computedDelay.show)):this.show())},leave:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;e&&(this.activeTrigger["focusout"===e.type?"focus":"hover"]=!1,"focusout"===e.type&&ra(this.computedTriggers,"blur")&&(this.activeTrigger.click=!1,this.activeTrigger.hover=!1)),this.isWithActiveTrigger||(this.clearHoverTimeout(),this.$_hoverState="out",this.computedDelay.hide?this.$_hoverTimeout=setTimeout((function(){"out"===t.$_hoverState&&t.hide()}),this.computedDelay.hide):this.hide())}}});function bj(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function hj(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var gj="disabled",vj="update:disabled",xj="show",yj=vl((hj(lj={boundary:fl([oe,bi,gi],"scrollParent"),boundaryPadding:fl(Ti,50),container:fl([oe,bi,gi]),customClass:fl(gi),delay:fl(_i,50)},gj,fl(pi,!1)),hj(lj,"fallbackPlacement",fl(wi,"flip")),hj(lj,"id",fl(gi)),hj(lj,"noFade",fl(pi,!1)),hj(lj,"noninteractive",fl(pi,!1)),hj(lj,"offset",fl(Ti,0)),hj(lj,"placement",fl(gi,"top")),hj(lj,xj,fl(pi,!1)),hj(lj,"target",fl([oe,ne,mi,bi,gi],void 0,!0)),hj(lj,"title",fl(gi)),hj(lj,"triggers",fl(wi,"hover focus")),hj(lj,"variant",fl(gi)),lj),jn),wj=o.default.extend({name:jn,mixins:[Sl],inheritAttrs:!1,props:yj,data:function(){return{localShow:this.show,localTitle:"",localContent:""}},computed:{templateData:function(){return function(t){for(var e=1;e0&&t[Ej].updateData(e)}))}var i={title:o.title,content:o.content,triggers:o.trigger,placement:o.placement,fallbackPlacement:o.fallbackPlacement,variant:o.variant,customClass:o.customClass,container:o.container,boundary:o.boundary,delay:o.delay,offset:o.offset,noFade:!o.animation,id:o.id,disabled:o.disabled,html:o.html},a=t[Ej].__bv_prev_data__;if(t[Ej].__bv_prev_data__=i,!dc(i,a)){var l={target:t};$e(i).forEach((function(e){i[e]!==a[e]&&(l[e]="title"!==e&&"content"!==e||!pe(i[e])?i[e]:i[e](t))})),t[Ej].updateData(l)}}},Wj=lr({directives:{VBPopover:{bind:function(t,e,r){Uj(t,e,r)},componentUpdated:function(t,e,r){r.context.$nextTick((function(){Uj(t,e,r)}))},unbind:function(t){!function(t){t[Ej]&&(t[Ej].$destroy(),t[Ej]=null),delete t[Ej]}(t)}}}}),Gj=lr({components:{BPopover:_j},plugins:{VBPopoverPlugin:Wj}}),qj=vl({animated:fl(pi,null),label:fl(gi),labelHtml:fl(gi),max:fl(Ti,null),precision:fl(Ti,null),showProgress:fl(pi,null),showValue:fl(pi,null),striped:fl(pi,null),value:fl(Ti,0),variant:fl(gi)},rn),Yj=o.default.extend({name:rn,mixins:[Sl],inject:{bvProgress:{default:function(){return{}}}},props:qj,computed:{progressBarClasses:function(){var t=this.computedAnimated,e=this.computedVariant;return[e?"bg-".concat(e):"",this.computedStriped||t?"progress-bar-striped":"",t?"progress-bar-animated":""]},progressBarStyles:function(){return{width:this.computedValue/this.computedMax*100+"%"}},computedValue:function(){return sa(this.value,0)},computedMax:function(){var t=sa(this.max)||sa(this.bvProgress.max,0);return t>0?t:100},computedPrecision:function(){return os(la(this.precision,la(this.bvProgress.precision,0)),0)},computedProgress:function(){var t=this.computedPrecision,e=ls(10,t);return ca(100*e*this.computedValue/this.computedMax/e,t)},computedVariant:function(){return this.variant||this.bvProgress.variant},computedStriped:function(){return ue(this.striped)?this.striped:this.bvProgress.striped||!1},computedAnimated:function(){return ue(this.animated)?this.animated:this.bvProgress.animated||!1},computedShowProgress:function(){return ue(this.showProgress)?this.showProgress:this.bvProgress.showProgress||!1},computedShowValue:function(){return ue(this.showValue)?this.showValue:this.bvProgress.showValue||!1}},render:function(t){var e,r=this.label,o=this.labelHtml,n=this.computedValue,i=this.computedPrecision,a={};return this.hasNormalizedSlot()?e=this.normalizeSlot():r||o?a=ld(o,r):this.computedShowProgress?e=this.computedProgress:this.computedShowValue&&(e=ca(n,i)),t("div",{staticClass:"progress-bar",class:this.progressBarClasses,style:this.progressBarStyles,attrs:{role:"progressbar","aria-valuemin":"0","aria-valuemax":ba(this.computedMax),"aria-valuenow":ca(n,i)},domProps:a},e)}});function Kj(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Xj(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.noCloseOnRouteChange||t.fullPath===e.fullPath||this.hide()})),Zj),created:function(){this.$_returnFocusEl=null},mounted:function(){var t=this;this.listenOnRoot(lS,this.handleToggle),this.listenOnRoot(aS,this.handleSync),this.$nextTick((function(){t.emitState(t.localShow)}))},activated:function(){this.emitSync()},beforeDestroy:function(){this.localShow=!1,this.$_returnFocusEl=null},methods:{hide:function(){this.localShow=!1},emitState:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(sS,this.safeId(),t)},emitSync:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(cS,this.safeId(),t)},handleToggle:function(t){t&&t===this.safeId()&&(this.localShow=!this.localShow)},handleSync:function(t){var e=this;t&&t===this.safeId()&&this.$nextTick((function(){e.emitSync(e.localShow)}))},onKeydown:function(t){var e=t.keyCode;!this.noCloseOnEsc&&27===e&&this.localShow&&this.hide()},onBackdropClick:function(){this.localShow&&!this.noCloseOnBackdrop&&this.hide()},onTopTrapFocus:function(){var t=Za(this.$refs.content);this.enforceFocus(t.reverse()[0])},onBottomTrapFocus:function(){var t=Za(this.$refs.content);this.enforceFocus(t[0])},onBeforeEnter:function(){this.$_returnFocusEl=Sa(ot?[document.body]:[]),this.isOpen=!0},onAfterEnter:function(t){Aa(t,Sa())||this.enforceFocus(t),this.$emit(ei)},onAfterLeave:function(){this.enforceFocus(this.$_returnFocusEl),this.$_returnFocusEl=null,this.isOpen=!1,this.$emit(Vn)},enforceFocus:function(t){this.noEnforceFocus||Qa(t)}},render:function(t){var e,r=this.bgVariant,o=this.width,n=this.textVariant,i=this.localShow,a=""===this.shadow||this.shadow,l=t(this.tag,{staticClass:iS,class:[(e={shadow:!0===a},nS(e,"shadow-".concat(a),a&&!0!==a),nS(e,"".concat(iS,"-right"),this.right),nS(e,"bg-".concat(r),r),nS(e,"text-".concat(n),n),e),this.sidebarClass],style:{width:o},attrs:this.computedAttrs,directives:[{name:"show",value:i}],ref:"content"},[vS(t,this)]);l=t("transition",{props:this.transitionProps,on:{beforeEnter:this.onBeforeEnter,afterEnter:this.onAfterEnter,afterLeave:this.onAfterLeave}},[l]);var s=t(Hl,{props:{noFade:this.noSlide}},[xS(t,this)]),c=t(),d=t();return this.backdrop&&i&&(c=t("div",{attrs:{tabindex:"0"},on:{focus:this.onTopTrapFocus}}),d=t("div",{attrs:{tabindex:"0"},on:{focus:this.onBottomTrapFocus}})),t("div",{staticClass:"b-sidebar-outer",style:{zIndex:this.zIndex},attrs:{tabindex:"-1"},on:{keydown:this.onKeydown}},[c,l,d,s])}})},plugins:{VBTogglePlugin:Am}});function wS(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var kS=vl({animation:fl(gi,"wave"),height:fl(gi),size:fl(gi),type:fl(gi,"text"),variant:fl(gi),width:fl(gi)},an),OS=o.default.extend({name:an,functional:!0,props:kS,render:function(t,e){var r,o=e.data,n=e.props,i=n.size,a=n.animation,l=n.variant;return t("div",xr(o,{staticClass:"b-skeleton",style:{width:i||n.width,height:i||n.height},class:(r={},wS(r,"b-skeleton-".concat(n.type),!0),wS(r,"b-skeleton-animate-".concat(a),a),wS(r,"bg-".concat(l),l),r)}))}});function jS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function SS(t){for(var e=1;e0}}}),ES={stacked:fl(ji,!1)},zS=o.default.extend({props:ES,computed:{isStacked:function(){var t=this.stacked;return""===t||t},isStackedAlways:function(){return!0===this.isStacked},stackedTableClasses:function(){var t,e,r,o=this.isStackedAlways;return t={"b-table-stacked":o},e="b-table-stacked-".concat(this.stacked),r=!o&&this.isStacked,e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}}});function BS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function AS(t){for(var e=1;e0&&!this.computedBusy,[this.tableClass,{"table-striped":this.striped,"table-hover":t,"table-dark":this.dark,"table-bordered":this.bordered,"table-borderless":this.borderless,"table-sm":this.small,border:this.outlined,"b-table-fixed":this.fixed,"b-table-caption-top":this.captionTop,"b-table-no-border-collapse":this.noBorderCollapse},e?"".concat(this.dark?"bg":"table","-").concat(e):"",this.stackedTableClasses,this.selectableTableClasses]},tableAttrs:function(){var t=this.computedItems,e=this.filteredItems,r=this.computedFields,o=this.selectableTableAttrs,n=this.isTableSimple?{}:{"aria-busy":this.computedBusy?"true":"false","aria-colcount":ba(r.length),"aria-describedby":this.bvAttrs["aria-describedby"]||this.$refs.caption?this.captionId:null};return AS(AS(AS({"aria-rowcount":t&&e&&e.length>t.length?ba(e.length):null},this.bvAttrs),{},{id:this.safeId(),role:"table"},n),o)}},render:function(t){var e=this.wrapperClasses,r=this.renderCaption,o=this.renderColgroup,n=this.renderThead,i=this.renderTbody,a=this.renderTfoot,l=[];this.isTableSimple?l.push(this.normalizeSlot()):(l.push(r?r():null),l.push(o?o():null),l.push(n?n():null),l.push(i?i():null),l.push(a?a():null));var s=t("table",{staticClass:"table b-table",class:this.tableClasses,attrs:this.tableAttrs,key:"b-table"},l.filter(He));return e.length>0?t("div",{class:e,style:this.wrapperStyles,key:"wrap"},[s]):s}});function MS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function RS(t){for(var e=1;e0},YS=vl({animation:fl(gi),columns:fl(fi,5,qS),hideHeader:fl(pi,!1),rows:fl(fi,3,qS),showFooter:fl(pi,!1),tableProps:fl(bi,{})},cn),KS=o.default.extend({name:cn,functional:!0,props:YS,render:function(t,e){var r=e.props,o=r.animation,n=r.columns,i=t("th",[t(OS,{props:{animation:o}})]),a=t("tr",na(n,i)),l=t("td",[t(OS,{props:{width:"75%",animation:o}})]),s=t("tr",na(n,l)),c=t("tbody",na(r.rows,s)),d=r.hideHeader?t():t("thead",[a]),p=r.showFooter?t("tfoot",[a]):t();return t(HS,{props:WS({},r.tableProps)},[d,c,p])}}),XS=vl({loading:fl(pi,!1)},dn),JS=lr({components:{BSkeleton:OS,BSkeletonIcon:_S,BSkeletonImg:$S,BSkeletonTable:KS,BSkeletonWrapper:o.default.extend({name:dn,functional:!0,props:XS,render:function(t,e){var r=e.data,o=e.props,n=e.slots,i=e.scopedSlots,a=n(),l=i||{},s={};return o.loading?t("div",xr(r,{attrs:{role:"alert","aria-live":"polite","aria-busy":!0},staticClass:"b-skeleton-wrapper",key:"loading"}),jl("loading",s,l,a)):jl(Ii,s,l,a)}})}}),ZS=lr({components:{BSpinner:bO}});function QS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function tP(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var eP="light",rP="dark",oP=vl({variant:fl(gi)},"BTr"),nP=o.default.extend({name:"BTr",mixins:[bc,gc,Sl],provide:function(){return{bvTableTr:this}},inject:{bvTableRowGroup:{default:function(){return{}}}},inheritAttrs:!1,props:oP,computed:{inTbody:function(){return this.bvTableRowGroup.isTbody},inThead:function(){return this.bvTableRowGroup.isThead},inTfoot:function(){return this.bvTableRowGroup.isTfoot},isDark:function(){return this.bvTableRowGroup.isDark},isStacked:function(){return this.bvTableRowGroup.isStacked},isResponsive:function(){return this.bvTableRowGroup.isResponsive},isStickyHeader:function(){return this.bvTableRowGroup.isStickyHeader},hasStickyHeader:function(){return!this.isStacked&&this.bvTableRowGroup.hasStickyHeader},tableVariant:function(){return this.bvTableRowGroup.tableVariant},headVariant:function(){return this.inThead?this.bvTableRowGroup.headVariant:null},footVariant:function(){return this.inTfoot?this.bvTableRowGroup.footVariant:null},isRowDark:function(){return this.headVariant!==eP&&this.footVariant!==eP&&(this.headVariant===rP||this.footVariant===rP||this.isDark)},trClasses:function(){var t=this.variant;return[t?"".concat(this.isRowDark?"bg":"table","-").concat(t):null]},trAttrs:function(){return function(t){for(var e=1;e0?t:null},fP=function(t){return de(t)||mP(t)>0},bP=vl({colspan:fl(Ti,null,fP),rowspan:fl(Ti,null,fP),stackedHeading:fl(gi),stickyColumn:fl(pi,!1),variant:fl(gi)},fn),hP=o.default.extend({name:fn,mixins:[bc,gc,Sl],inject:{bvTableTr:{default:function(){return{}}}},inheritAttrs:!1,props:bP,computed:{tag:function(){return"td"},inTbody:function(){return this.bvTableTr.inTbody},inThead:function(){return this.bvTableTr.inThead},inTfoot:function(){return this.bvTableTr.inTfoot},isDark:function(){return this.bvTableTr.isDark},isStacked:function(){return this.bvTableTr.isStacked},isStackedCell:function(){return this.inTbody&&this.isStacked},isResponsive:function(){return this.bvTableTr.isResponsive},isStickyHeader:function(){return this.bvTableTr.isStickyHeader},hasStickyHeader:function(){return this.bvTableTr.hasStickyHeader},isStickyColumn:function(){return!this.isStacked&&(this.isResponsive||this.hasStickyHeader)&&this.stickyColumn},rowVariant:function(){return this.bvTableTr.variant},headVariant:function(){return this.bvTableTr.headVariant},footVariant:function(){return this.bvTableTr.footVariant},tableVariant:function(){return this.bvTableTr.tableVariant},computedColspan:function(){return mP(this.colspan)},computedRowspan:function(){return mP(this.rowspan)},cellClasses:function(){var t=this.variant,e=this.headVariant,r=this.isStickyColumn;return(!t&&this.isStickyHeader&&!e||!t&&r&&this.inTfoot&&!this.footVariant||!t&&r&&this.inThead&&!e||!t&&r&&this.inTbody)&&(t=this.rowVariant||this.tableVariant||"b-table-default"),[t?"".concat(this.isDark?"bg":"table","-").concat(t):null,r?"b-table-sticky-column":null]},cellAttrs:function(){var t=this.stackedHeading,e=this.inThead||this.inTfoot,r=this.computedColspan,o=this.computedRowspan,n="cell",i=null;return e?(n="columnheader",i=r>0?"colspan":"col"):Pa(this.tag,"th")&&(n="rowheader",i=o>0?"rowgroup":"row"),sP(sP({colspan:r,rowspan:o,role:n,scope:i},this.bvAttrs),{},{"data-label":this.isStackedCell&&!de(t)?ba(t):null})}},render:function(t){var e=[this.normalizeSlot()];return t(this.tag,{class:this.cellClasses,attrs:this.cellAttrs,on:this.bvListeners},[this.isStackedCell?t("div",[e]):e])}}),gP=(dP={},pP="busy",uP=fl(pi,!1),pP in dP?Object.defineProperty(dP,pP,{value:uP,enumerable:!0,configurable:!0,writable:!0}):dP.busy=uP,dP),vP=o.default.extend({props:gP,data:function(){return{localBusy:!1}},computed:{computedBusy:function(){return this.busy||this.localBusy}},watch:{localBusy:function(t,e){t!==e&&this.$emit("update:busy",t)}},methods:{stopIfBusy:function(t){return!!this.computedBusy&&($l(t),!0)},renderBusy:function(){var t=this.tbodyTrClass,e=this.tbodyTrAttr,r=this.$createElement;return this.computedBusy&&this.hasNormalizedSlot(Ki)?r(nP,{staticClass:"b-table-busy-slot",class:[pe(t)?t(null,Ki):t],attrs:pe(e)?e(null,Ki):e,key:"table-busy-slot"},[r(hP,{props:{colspan:this.computedFields.length||null}},[this.normalizeSlot(Ki)])]):null}}}),xP={caption:fl(gi),captionHtml:fl(gi)},yP=o.default.extend({props:xP,computed:{captionId:function(){return this.isStacked?this.safeId("_caption_"):null}},methods:{renderCaption:function(){var t=this.caption,e=this.captionHtml,r=this.$createElement,o=r(),n=this.hasNormalizedSlot(Xi);return(n||t||e)&&(o=r("caption",{attrs:{id:this.captionId},domProps:n?{}:ld(e,t),key:"caption",ref:"caption"},this.normalizeSlot(Xi))),o}}}),wP={},kP=o.default.extend({methods:{renderColgroup:function(){var t=this.computedFields,e=this.$createElement,r=e();return this.hasNormalizedSlot(Ji)&&(r=e("colgroup",{key:"colgroup"},[this.normalizeSlot(Ji,{columns:t.length,fields:t})])),r}}}),OP={emptyFilteredHtml:fl(gi),emptyFilteredText:fl(gi,"There are no records matching your request"),emptyHtml:fl(gi),emptyText:fl(gi,"There are no records to show"),showEmpty:fl(pi,!1)},jP=o.default.extend({props:OP,methods:{renderEmpty:function(){var t=this.computedItems,e=this.$createElement,r=e();if(this.showEmpty&&(!t||0===t.length)&&(!this.computedBusy||!this.hasNormalizedSlot(Ki))){var o=this.computedFields,n=this.isFiltered,i=this.emptyText,a=this.emptyHtml,l=this.emptyFilteredText,s=this.emptyFilteredHtml,c=this.tbodyTrClass,d=this.tbodyTrAttr;(r=this.normalizeSlot(n?"emptyfiltered":Fi,{emptyFilteredHtml:s,emptyFilteredText:l,emptyHtml:a,emptyText:i,fields:o,items:t}))||(r=e("div",{class:["text-center","my-2"],domProps:n?ld(s,l):ld(a,i)})),r=e(hP,{props:{colspan:o.length||null}},[e("div",{attrs:{role:"alert","aria-live":"polite"}},[r])]),r=e(nP,{staticClass:"b-table-empty-row",class:[pe(c)?c(null,"row-empty"):c],attrs:pe(d)?d(null,"row-empty"):d,key:n?"b-empty-filtered-row":"b-empty-row"},[r])}return r}}}),SP=function t(e){return de(e)?"":ge(e)&&!xe(e)?$e(e).sort().map((function(r){return t(e[r])})).filter((function(t){return!!t})).join(" "):ba(e)};function PP(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function TP(t){for(var e=1;e3&&void 0!==arguments[3]?arguments[3]:{},n=$e(o).reduce((function(e,r){var n=o[r],i=n.filterByFormatted,a=pe(i)?i:i?n.formatter:null;return pe(a)&&(e[r]=a(t[r],r,t)),e}),Ee(t)),i=$e(n).filter((function(t){return!(EP[t]||he(e)&&e.length>0&&ra(e,t)||he(r)&&r.length>0&&!ra(r,t))}));return ze(n,i)};function AP(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r0&&Ye('Prop "filter-debounce" is deprecated. Use the debounce feature of "" instead.',mn),t},localFiltering:function(){return!this.hasProvider||!!this.noProviderFiltering},filteredCheck:function(){return{filteredItems:this.filteredItems,localItems:this.localItems,localFilter:this.localFilter}},localFilterFn:function(){var t=this.filterFunction;return yl(t)?t:null},filteredItems:function(){var t=this.localItems,e=this.localFilter,r=this.localFiltering?this.filterFnFactory(this.localFilterFn,e)||this.defaultFilterFnFactory(e):null;return r&&t.length>0?t.filter(r):t}},watch:{computedFilterDebounce:function(t){!t&&this.$_filterTimer&&(this.clearFilterTimer(),this.localFilter=this.filterSanitize(this.filter))},filter:{deep:!0,handler:function(t){var e=this,r=this.computedFilterDebounce;this.clearFilterTimer(),r&&r>0?this.$_filterTimer=setTimeout((function(){e.localFilter=e.filterSanitize(t)}),r):this.localFilter=this.filterSanitize(t)}},filteredCheck:function(t){var e=t.filteredItems,r=t.localFilter,o=!1;r?dc(r,[])||dc(r,{})?o=!1:r&&(o=!0):o=!1,o&&this.$emit(In,e,e.length),this.isFiltered=o},isFiltered:function(t,e){if(!1===t&&!0===e){var r=this.localItems;this.$emit(In,r,r.length)}}},created:function(){var t=this;this.$_filterTimer=null,this.$nextTick((function(){t.isFiltered=Boolean(t.localFilter)}))},beforeDestroy:function(){this.clearFilterTimer()},methods:{clearFilterTimer:function(){clearTimeout(this.$_filterTimer),this.$_filterTimer=null},filterSanitize:function(t){return!this.localFiltering||this.localFilterFn||me(t)||we(t)?Ne(t):""},filterFnFactory:function(t,e){return t&&pe(t)&&e&&!dc(e,[])&&!dc(e,{})?function(r){return t(r,e)}:null},defaultFilterFnFactory:function(t){var e=this;if(!t||!me(t)&&!we(t))return null;var r=t;if(me(r)){var o=fa(t).replace(Tt,"\\s+");r=new RegExp(".*".concat(o,".*"),"i")}return function(t){return r.lastIndex=0,r.test((o=t,n=e.computedFilterIgnored,i=e.computedFilterIncluded,a=e.computedFieldsObj,ge(o)?SP(BP(o,n,i,a)):""));var o,n,i,a}}}});function LP(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function MP(t){for(var e=1;e0){var o=e[0];$e(o).forEach((function(t){EP[t]||r.push({key:t,label:ua(t)})}))}var n={};return r.filter((function(t){return!n[t.key]&&(n[t.key]=!0,t.label=me(t.label)?t.label:ua(t.key),!0)}))}(this.fields,this.localItems)},computedFieldsObj:function(){var t=this.$parent;return this.computedFields.reduce((function(e,r){if(e[r.key]=Ee(r),r.formatter){var o=r.formatter;me(o)&&pe(t[o])?o=t[o]:pe(o)||(o=void 0),e[r.key].formatter=o}return e}),{})},computedItems:function(){return(this.paginatedItems||this.sortedItems||this.filteredItems||this.localItems||[]).slice()},context:function(){return{filter:this.localFilter,sortBy:this.localSortBy,sortDesc:this.localSortDesc,perPage:os(la(this.perPage,0),0),currentPage:os(la(this.currentPage,0),1),apiUrl:this.apiUrl}}},watch:{items:function(t){this.localItems=he(t)?t.slice():[]},computedItems:function(t,e){dc(t,e)||this.$emit(WP,t)},context:function(t,e){dc(t,e)||this.$emit($n,t)}},mounted:function(){this.$emit(WP,this.computedItems)},methods:{getFieldFormatter:function(t){var e=this.computedFieldsObj[t];return e?e.formatter:void 0}}}),YP={currentPage:fl(Ti,1),perPage:fl(Ti,0)},KP=o.default.extend({props:YP,computed:{localPaging:function(){return!this.hasProvider||!!this.noProviderPaging},paginatedItems:function(){var t=this.sortedItems||this.filteredItems||this.localItems||[],e=os(la(this.currentPage,1),1),r=os(la(this.perPage,0),0);return this.localPaging&&r&&(t=t.slice((e-1)*r,e*r)),t}}}),XP=El(mn,Jn),JP=zl(mn,"refresh"),ZP={apiUrl:fl(gi),items:fl(vi,[]),noProviderFiltering:fl(pi,!1),noProviderPaging:fl(pi,!1),noProviderSorting:fl(pi,!1)},QP=o.default.extend({mixins:[hc],props:ZP,computed:{hasProvider:function(){return pe(this.items)},providerTriggerContext:function(){var t={apiUrl:this.apiUrl,filter:null,sortBy:null,sortDesc:null,perPage:null,currentPage:null};return this.noProviderFiltering||(t.filter=this.localFilter),this.noProviderSorting||(t.sortBy=this.localSortBy,t.sortDesc=this.localSortDesc),this.noProviderPaging||(t.perPage=this.perPage,t.currentPage=this.currentPage),Ee(t)}},watch:{items:function(t){(this.hasProvider||pe(t))&&this.$nextTick(this._providerUpdate)},providerTriggerContext:function(t,e){dc(t,e)||this.$nextTick(this._providerUpdate)}},mounted:function(){var t=this;!this.hasProvider||this.localItems&&0!==this.localItems.length||this._providerUpdate(),this.listenOnRoot(JP,(function(e){e!==t.id&&e!==t||t.refresh()}))},methods:{refresh:function(){var t=this.items,e=this.refresh;this.$off(Jn,e),this.computedBusy?this.localBusy&&this.hasProvider&&this.$on(Jn,e):(this.clearSelected(),this.hasProvider?this.$nextTick(this._providerUpdate):this.localItems=he(t)?t.slice():[])},_providerSetLocal:function(t){this.localItems=he(t)?t.slice():[],this.localBusy=!1,this.$emit(Jn),this.id&&this.emitOnRoot(XP,this.id)},_providerUpdate:function(){var t=this;this.hasProvider&&(this.computedBusy?this.$nextTick(this.refresh):(this.localBusy=!0,this.$nextTick((function(){try{var e=t.items(t.context,t._providerSetLocal);!function(t){return!de(t)&&pe(t.then)&&pe(t.catch)}(e)?he(e)?t._providerSetLocal(e):2!==t.items.length&&(Ye("Provider function didn't request callback and did not return a promise or data.",mn),t.localBusy=!1):e.then((function(e){t._providerSetLocal(e)}))}catch(e){Ye("Provider function error [".concat(e.name,"] ").concat(e.message,"."),mn),t.localBusy=!1,t.$off(Jn,t.refresh)}}))))}}});function tT(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var eT,rT,oT=["range","multi","single"],nT={noSelectOnClick:fl(pi,!1),selectMode:fl(gi,"multi",(function(t){return ra(oT,t)})),selectable:fl(pi,!1),selectedVariant:fl(gi,"active")},iT=o.default.extend({props:nT,data:function(){return{selectedRows:[],selectedLastRow:-1}},computed:{isSelectable:function(){return this.selectable&&this.selectMode},hasSelectableRowClick:function(){return this.isSelectable&&!this.noSelectOnClick},supportsSelectableRows:function(){return!0},selectableHasSelection:function(){var t=this.selectedRows;return this.isSelectable&&t&&t.length>0&&t.some(He)},selectableIsMultiSelect:function(){return this.isSelectable&&ra(["range","multi"],this.selectMode)},selectableTableClasses:function(){var t,e=this.isSelectable;return tT(t={"b-table-selectable":e},"b-table-select-".concat(this.selectMode),e),tT(t,"b-table-selecting",this.selectableHasSelection),tT(t,"b-table-selectable-no-click",e&&!this.hasSelectableRowClick),t},selectableTableAttrs:function(){return{"aria-multiselectable":this.isSelectable?this.selectableIsMultiSelect?"true":"false":null}}},watch:{computedItems:function(t,e){var r=!1;if(this.isSelectable&&this.selectedRows.length>0){r=he(t)&&he(e)&&t.length===e.length;for(var o=0;r&&o=0&&t0&&(this.selectedLastClicked=-1,this.selectedRows=this.selectableIsMultiSelect?na(t,!0):[!0])},isRowSelected:function(t){return!(!fe(t)||!this.selectedRows[t])},clearSelected:function(){this.selectedLastClicked=-1,this.selectedRows=[]},selectableRowClasses:function(t){if(this.isSelectable&&this.isRowSelected(t)){var e=this.selectedVariant;return tT({"b-table-row-selected":!0},"".concat(this.dark?"bg":"table","-").concat(e),e)}return{}},selectableRowAttrs:function(t){return{"aria-selected":this.isSelectable?this.isRowSelected(t)?"true":"false":null}},setSelectionHandlers:function(t){var e=t&&!this.noSelectOnClick?"$on":"$off";this[e](Zn,this.selectionHandler),this[e](In,this.clearSelected),this[e]($n,this.clearSelected)},selectionHandler:function(t,e,r){if(this.isSelectable&&!this.noSelectOnClick){var o=this.selectMode,n=this.selectedLastRow,i=this.selectedRows.slice(),a=!i[e];if("single"===o)i=[];else if("range"===o)if(n>-1&&r.shiftKey){for(var l=rs(n,e);l<=os(n,e);l++)i[l]=!0;a=!0}else r.ctrlKey||r.metaKey||(i=[],a=!0),this.selectedLastRow=a?e:-1;i[e]=a,this.selectedRows=i}else this.clearSelected()}}}),aT=function(t,e){return t.map((function(t,e){return[e,t]})).sort(function(t,e){return this(t[1],e[1])||t[0]-e[0]}.bind(e)).map((function(t){return t[1]}))},lT=function(t){return de(t)?"":be(t)?sa(t,t):t};function sT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function cT(t){for(var e=1;e2&&void 0!==arguments[2]?arguments[2]:{},o=r.sortBy,n=void 0===o?null:o,i=r.formatter,a=void 0===i?null:i,l=r.locale,s=void 0===l?void 0:l,c=r.localeOptions,d=void 0===c?{}:c,p=r.nullLast,u=void 0!==p&&p,m=We(t,n,null),f=We(e,n,null);return pe(a)&&(m=a(m,n,t),f=a(f,n,e)),m=lT(m),f=lT(f),xe(m)&&xe(f)||fe(m)&&fe(f)?mf?1:0:u&&""===m&&""!==f?1:u&&""!==m&&""===f?-1:SP(m).localeCompare(SP(f),s,d)}(i,a,{sortBy:t,formatter:c,locale:r,localeOptions:l,nullLast:o})),(s||0)*(e?-1:1)}))}return a}},watch:(rT={isSortable:function(t){t?this.isSortable&&this.$on(Rn,this.handleSort):this.$off(Rn,this.handleSort)}},dT(rT,uT,(function(t){t!==this.localSortDesc&&(this.localSortDesc=t||!1)})),dT(rT,pT,(function(t){t!==this.localSortBy&&(this.localSortBy=t||"")})),dT(rT,"localSortDesc",(function(t,e){t!==e&&this.$emit("update:sortDesc",t)})),dT(rT,"localSortBy",(function(t,e){t!==e&&this.$emit("update:sortBy",t)})),rT),created:function(){this.isSortable&&this.$on(Rn,this.handleSort)},methods:{handleSort:function(t,e,r,o){var n=this;if(this.isSortable&&(!o||!this.noFooterSorting)){var i=!1,a=function(){var t=e.sortDirection||n.sortDirection;t===mT?n.localSortDesc=!1:t===fT&&(n.localSortDesc=!0)};if(e.sortable){var l=!this.localSorting&&e.sortKey?e.sortKey:t;this.localSortBy===l?this.localSortDesc=!this.localSortDesc:(this.localSortBy=l,a()),i=!0}else this.localSortBy&&!this.noSortReset&&(this.localSortBy="",a(),i=!0);i&&this.$emit("sort-changed",this.context)}},sortTheadThClasses:function(t,e,r){return{"b-table-sort-icon-left":e.sortable&&this.sortIconLeft&&!(r&&this.noFooterSorting)}},sortTheadThAttrs:function(t,e,r){if(!this.isSortable||r&&this.noFooterSorting)return{};var o=e.sortable;return{"aria-sort":o&&this.localSortBy===t?this.localSortDesc?"descending":"ascending":o?"none":null}},sortTheadThLabel:function(t,e,r){if(!this.isSortable||r&&this.noFooterSorting)return null;var o="";if(e.sortable)if(this.localSortBy===t)o=this.localSortDesc?this.labelSortAsc:this.labelSortDesc;else{o=this.localSortDesc?this.labelSortDesc:this.labelSortAsc;var n=this.sortDirection||e.sortDirection;n===mT?o=this.labelSortAsc:n===fT&&(o=this.labelSortDesc)}else this.noSortReset||(o=this.localSortBy?this.labelSortClear:"");return ha(o)||null}}});function vT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function xT(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:document,e=Ka();return!!(e&&""!==e.toString().trim()&&e.containsNode&&ja(t))&&e.containsNode(t,!0)},PT=vl(bP,"BTh"),TT=o.default.extend({name:"BTh",extends:hP,props:PT,computed:{tag:function(){return"th"}}});function _T(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function CT(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,o=new Array(e);r0&&(g=String((a-1)*l+e+1));var v=ba(We(t,i))||null,x=v||ba(e),y=v?this.safeId("_row_".concat(v)):null,w=this.selectableRowClasses?this.selectableRowClasses(e):{},k=this.selectableRowAttrs?this.selectableRowAttrs(e):{},O=pe(s)?s(t,"row"):s,j=pe(c)?c(t,"row"):c;if(f.push(d(nP,{class:[O,w,u?"b-table-has-details":""],props:{variant:t[$P]||null},attrs:CT(CT({id:y},j),{},{tabindex:m?"0":null,"data-pk":v||null,"aria-details":b,"aria-owns":b,"aria-rowindex":g},k),on:{mouseenter:this.rowHovered,mouseleave:this.rowUnhovered},key:"__b-table-row-".concat(x,"__"),ref:"item-rows",refInFor:!0},h)),u){var S={item:t,index:e,fields:o,toggleDetails:this.toggleDetailsFactory(p,t)};this.supportsSelectableRows&&(S.rowSelected=this.isRowSelected(e),S.selectRow=function(){return r.selectRow(e)},S.unselectRow=function(){return r.unselectRow(e)});var P=d(hP,{props:{colspan:o.length},class:this.detailsTdClass},[this.normalizeSlot(Yi,S)]);n&&f.push(d("tr",{staticClass:"d-none",attrs:{"aria-hidden":"true",role:"presentation"},key:"__b-table-details-stripe__".concat(x)}));var T=pe(this.tbodyTrClass)?this.tbodyTrClass(t,Yi):this.tbodyTrClass,_=pe(this.tbodyTrAttr)?this.tbodyTrAttr(t,Yi):this.tbodyTrAttr;f.push(d(nP,{staticClass:"b-table-details",class:[T],props:{variant:t[$P]||null},attrs:CT(CT({},_),{},{id:b,tabindex:"-1"}),key:"__b-table-details__".concat(x)},[P]))}else p&&(f.push(d()),n&&f.push(d()));return f}}});function BT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function AT(t){for(var e=1;e0&&r&&r.length>0?ea(e.children).filter((function(t){return ra(r,t)})):[]},getTbodyTrIndex:function(t){if(!ja(t))return-1;var e="TR"===t.tagName?t:Ba("tr",t,!0);return e?this.getTbodyTrs().indexOf(e):-1},emitTbodyRowEvent:function(t,e){if(t&&this.hasListener(t)&&e&&e.target){var r=this.getTbodyTrIndex(e.target);if(r>-1){var o=this.computedItems[r];this.$emit(t,o,r,e)}}},tbodyRowEvtStopped:function(t){return this.stopIfBusy&&this.stopIfBusy(t)},onTbodyRowKeydown:function(t){var e=t.target,r=t.keyCode;if(!this.tbodyRowEvtStopped(t)&&"TR"===e.tagName&&Ta(e)&&0===e.tabIndex)if(ra([nc,sc],r))$l(t),this.onTBodyRowClicked(t);else if(ra([cc,rc,ic,oc],r)){var o=this.getTbodyTrIndex(e);if(o>-1){$l(t);var n=this.getTbodyTrs(),i=t.shiftKey;r===ic||i&&r===cc?Qa(n[0]):r===oc||i&&r===rc?Qa(n[n.length-1]):r===cc&&o>0?Qa(n[o-1]):r===rc&&ot.length)&&(e=t.length);for(var r=0,o=new Array(e);r0&&void 0!==arguments[0]&&arguments[0],r=this.computedFields,o=this.isSortable,n=this.isSelectable,i=this.headVariant,a=this.footVariant,l=this.headRowVariant,s=this.footRowVariant,c=this.$createElement;if(this.isStackedAlways||0===r.length)return c();var d=o||this.hasListener(Rn),p=n?this.selectAllRows:yu,u=n?this.clearSelected:yu,m=function(r,n){var i=r.label,a=r.labelHtml,l=r.variant,s=r.stickyColumn,m=r.key,f=null;r.label.trim()||r.headerTitle||(f=ua(r.key));var b={};d&&(b.click=function(o){t.headClicked(o,r,e)},b.keydown=function(o){var n=o.keyCode;n!==nc&&n!==sc||t.headClicked(o,r,e)});var h=o?t.sortTheadThAttrs(m,r,e):{},g=o?t.sortTheadThClasses(m,r,e):null,v=o?t.sortTheadThLabel(m,r,e):null,x={class:[t.fieldClasses(r),g],props:{variant:l,stickyColumn:s},style:r.thStyle||{},attrs:t_(t_({tabindex:d&&r.sortable?"0":null,abbr:r.headerAbbr||null,title:r.headerTitle||null,"aria-colindex":n+1,"aria-label":f},t.getThValues(null,m,r.thAttr,e?"foot":"head",{})),h),on:b,key:m},y=[r_(m),r_(m.toLowerCase()),r_()];e&&(y=[o_(m),o_(m.toLowerCase()),o_()].concat(JT(y)));var w={label:i,column:m,field:r,isFoot:e,selectAllRows:p,clearSelected:u},k=t.normalizeSlot(y,w)||c("div",{domProps:ld(a,i)}),O=v?c("span",{staticClass:"sr-only"}," (".concat(v,")")):null;return c(TT,x,[k,O].filter(He))},f=r.map(m).filter(He),b=[];if(e)b.push(c(nP,{class:this.tfootTrClass,props:{variant:de(s)?l:s}},f));else{var h={columns:r.length,fields:r,selectAllRows:p,clearSelected:u};b.push(this.normalizeSlot(Zi,h)||c()),b.push(c(nP,{class:this.theadTrClass,props:{variant:l}},f))}return c(e?UT:XT,{class:(e?this.tfootClass:this.theadClass)||null,props:e?{footVariant:a||i||null}:{headVariant:i||null},key:e?"bv-tfoot":"bv-thead"},b)}}}),a_=o.default.extend({methods:{renderTopRow:function(){var t=this.computedFields,e=this.stacked,r=this.tbodyTrClass,o=this.tbodyTrAttr,n=this.$createElement;return this.hasNormalizedSlot(ta)&&!0!==e&&""!==e?n(nP,{staticClass:"b-table-top-row",class:[pe(r)?r(null,"row-top"):r],attrs:pe(o)?o(null,"row-top"):o,key:"b-top-row"},[this.normalizeSlot(ta,{columns:t.length,fields:t})]):n()}}});function l_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function s_(t){for(var e=1;e0&&void 0!==arguments[0])||arguments[0];if(this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,e){var r=function(){t.$nextTick((function(){ka((function(){t.updateTabs()}))}))};this.$_observer=ju(this.$refs.content,r,{childList:!0,subtree:!1,attributes:!0,attributeFilter:["id"]})}},getTabs:function(){var t=this.registeredTabs.filter((function(t){return 0===t.$children.filter((function(t){return t._isTab})).length})),e=[];if(ot&&t.length>0){var r=t.map((function(t){return"#".concat(t.safeId())})).join(", ");e=Da(r,this.$el).map((function(t){return t.id})).filter(He)}return aT(t,(function(t,r){return e.indexOf(t.safeId())-e.indexOf(r.safeId())}))},updateTabs:function(){var t=this.getTabs(),e=t.indexOf(t.slice().reverse().find((function(t){return t.localActive&&!t.disabled})));if(e<0){var r=this.currentTab;r>=t.length?e=t.indexOf(t.slice().reverse().find(__)):t[r]&&!t[r].disabled&&(e=r)}e<0&&(e=t.indexOf(t.find(__))),t.forEach((function(t,r){t.localActive=r===e})),this.tabs=t,this.currentTab=e},getButtonForTab:function(t){return(this.$refs.buttons||[]).find((function(e){return e.tab===t}))},updateButton:function(t){var e=this.getButtonForTab(t);e&&e.$forceUpdate&&e.$forceUpdate()},activateTab:function(t){var e=this.currentTab,r=this.tabs,o=!1;if(t){var n=r.indexOf(t);if(n!==e&&n>-1&&!t.disabled){var i=new Hf("activate-tab",{cancelable:!0,vueTarget:this,componentId:this.safeId()});this.$emit(i.type,n,e,i),i.defaultPrevented||(this.currentTab=n,o=!0)}}return o||this[P_]===e||this.$emit(T_,e),o},deactivateTab:function(t){return!!t&&this.activateTab(this.tabs.filter((function(e){return e!==t})).find(__))},focusButton:function(t){var e=this;this.$nextTick((function(){Qa(e.getButtonForTab(t))}))},emitTabClick:function(t,e){ye(e)&&t&&t.$emit&&!t.disabled&&t.$emit(Tn,e)},clickTab:function(t,e){this.activateTab(t),this.emitTabClick(t,e)},firstTab:function(t){var e=this.tabs.find(__);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))},previousTab:function(t){var e=os(this.currentTab,0),r=this.tabs.slice(0,e).reverse().find(__);this.activateTab(r)&&t&&(this.focusButton(r),this.emitTabClick(r,t))},nextTab:function(t){var e=os(this.currentTab,-1),r=this.tabs.slice(e+1).find(__);this.activateTab(r)&&t&&(this.focusButton(r),this.emitTabClick(r,t))},lastTab:function(t){var e=this.tabs.slice().reverse().find(__);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))}},render:function(t){var e=this,r=this.align,o=this.card,n=this.end,i=this.fill,a=this.firstTab,l=this.justified,s=this.lastTab,c=this.nextTab,d=this.noKeyNav,p=this.noNavStyle,u=this.pills,m=this.previousTab,f=this.small,b=this.tabs,h=this.vertical,g=b.find((function(t){return t.localActive&&!t.disabled})),v=b.find((function(t){return!t.disabled})),x=b.map((function(r,o){var n,i=r.safeId,l=null;return d||(l=-1,(r===g||!g&&r===v)&&(l=null)),t(C_,{props:{controls:i?i():null,id:r.controlledBy||(i?i("_BV_tab_button_"):null),noKeyNav:d,posInSet:o+1,setSize:b.length,tab:r,tabIndex:l},on:(n={},y_(n,Tn,(function(t){e.clickTab(r,t)})),y_(n,Fn,a),y_(n,Xn,m),y_(n,qn,c),y_(n,Un,s),n),key:r._uid||o,ref:"buttons",refInFor:!0})})),y=t(_k,{class:this.localNavClass,attrs:{role:"tablist",id:this.safeId("_BV_tab_controls_")},props:{fill:i,justified:l,align:r,tabs:!p&&!u,pills:!p&&u,vertical:h,small:f,cardHeader:o&&!h},ref:"nav"},[this.normalizeSlot("tabs-start")||t(),x,this.normalizeSlot("tabs-end")||t()]);y=t("div",{class:[{"card-header":o&&!h&&!n,"card-footer":o&&!h&&n,"col-auto":h},this.navWrapperClass],key:"bv-tabs-nav"},[y]);var w=this.normalizeSlot()||[],k=t();0===w.length&&(k=t("div",{class:["tab-pane","active",{"card-body":o}],key:"bv-empty-tab"},this.normalizeSlot(Fi)));var O=t("div",{staticClass:"tab-content",class:[{col:h},this.contentClass],attrs:{id:this.safeId("_BV_tab_container_")},key:"bv-content",ref:"content"},[w,k]);return t(this.tag,{staticClass:"tabs",class:{row:h,"no-gutters":h&&o},attrs:{id:this.safeId()}},[n?O:t(),y,n?t():O])}});function z_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function B_(t){for(var e=1;e" with name "'.concat(e,'" already exists in the document.'),On),this.dead=!0):(this.doRender=!0,this.$once(ni,(function(){t.emitOnRoot(El(On,Dn),e)})))},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},render:function(t){var e=t("div",{class:["d-none",{"b-dead-toaster":this.dead}]});if(this.doRender){var r=t(N_.YC,{staticClass:"b-toaster-slot",props:{name:this.staticName,multiple:!0,tag:"div",slim:!1,transition:H_}});e=t("div",{staticClass:"b-toaster",class:[this.staticName],attrs:{id:this.staticName,role:this.role||null,"aria-live":this.ariaLive,"aria-atomic":this.ariaAtomic}},[r])}return e}});function G_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function q_(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:{};return new Hf(t,q_(q_({cancelable:!1,target:this.$el||null,relatedTarget:null},e),{},{vueTarget:this,componentId:this.safeId()}))},emitEvent:function(t){var e=t.type;this.emitOnRoot(El(kn,e),t),this.$emit(e,t)},ensureToaster:function(){if(!this.static){var t=this.computedToaster;if(!N_.Df.hasTarget(t)){var e=document.createElement("div");document.body.appendChild(e),new W_({parent:this.$root,propsData:{name:t}}).$mount(e)}}},startDismissTimer:function(){this.clearDismissTimer(),this.noAutoHide||(this.$_dismissTimer=setTimeout(this.hide,this.resumeDismiss||this.computedDuration),this.dismissStarted=Date.now(),this.resumeDismiss=0)},clearDismissTimer:function(){clearTimeout(this.$_dismissTimer),this.$_dismissTimer=null},setHoverHandler:function(t){var e=this.$refs["b-toast"];Cl(t,e,"mouseenter",this.onPause,si),Cl(t,e,"mouseleave",this.onUnPause,si)},onPause:function(){if(!this.noAutoHide&&!this.noHoverPause&&this.$_dismissTimer&&!this.resumeDismiss){var t=Date.now()-this.dismissStarted;t>0&&(this.clearDismissTimer(),this.resumeDismiss=os(this.computedDuration-t,1e3))}},onUnPause:function(){this.noAutoHide||this.noHoverPause||!this.resumeDismiss?this.resumeDismiss=this.dismissStarted=0:this.startDismissTimer()},onLinkClick:function(){var t=this;this.$nextTick((function(){ka((function(){t.hide()}))}))},onBeforeEnter:function(){this.isTransitioning=!0},onAfterEnter:function(){this.isTransitioning=!1;var t=this.buildEvent(ei);this.emitEvent(t),this.startDismissTimer(),this.setHoverHandler(!0)},onBeforeLeave:function(){this.isTransitioning=!0},onAfterLeave:function(){this.isTransitioning=!1,this.order=0,this.resumeDismiss=this.dismissStarted=0;var t=this.buildEvent(Vn);this.emitEvent(t),this.doRender=!1},makeToast:function(t){var e=this,r=this.title,o=this.slotScope,n=xs(this),i=[],a=this.normalizeSlot("toast-title",o);a?i.push(a):r&&i.push(t("strong",{staticClass:"mr-2"},r)),this.noCloseButton||i.push(t(Al,{staticClass:"ml-auto mb-1",on:{click:function(){e.hide()}}}));var l=t();i.length>0&&(l=t("header",{staticClass:"toast-header",class:this.headerClass},i));var s=t(n?Tc:"div",{staticClass:"toast-body",class:this.bodyClass,props:n?hl(tC,this):{},on:n?{click:this.onLinkClick}:{}},this.normalizeSlot(Ii,o));return t("div",{staticClass:"toast",class:this.toastClass,attrs:this.computedAttrs,key:"toast-".concat(this._uid),ref:"toast"},[l,s])}},render:function(t){if(!this.doRender||!this.isMounted)return t();var e=this.order,r=this.static,o=this.isHiding,n=this.isStatus,i="b-toast-".concat(this._uid),a=t("div",{staticClass:"b-toast",class:this.toastClasses,attrs:q_(q_({},r?{}:this.scopedStyleAttrs),{},{id:this.safeId("_toast_outer"),role:o?null:n?"status":"alert","aria-live":o?null:n?"polite":"assertive","aria-atomic":o?null:"true"}),key:i,ref:"b-toast"},[t(Hl,{props:{noFade:this.noFade},on:this.transitionHandlers},[this.localShow?this.makeToast(t):t()])]);return t(N_.h_,{props:{name:i,to:this.computedToaster,order:e,slim:!0,disabled:r}},[a])}});function oC(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,o=new Array(e);r1&&void 0!==arguments[1]?arguments[1]:{};t&&!Ke(sC)&&r(iC(iC({},pC(e)),{},{toastContent:t}),this._vm)}},{key:"show",value:function(t){t&&this._root.$emit(zl(kn,ti),t)}},{key:"hide",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this._root.$emit(zl(kn,Nn),t)}}])&&oC(e.prototype,o),t}();t.mixin({beforeCreate:function(){this._bv__toast=new o(this)}}),De(t.prototype,sC)||_e(t.prototype,sC,{get:function(){return this&&this._bv__toast||Ye('"'.concat(sC,'" must be accessed from a Vue instance "this" context.'),kn),this._bv__toast}})}}})}});function mC(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function fC(t){for(var e=1;e=r){var o=this.$targets[this.$targets.length-1];this.$activeTarget!==o&&this.activate(o)}else{if(this.$activeTarget&&t0)return this.$activeTarget=null,void this.clear();for(var n=this.$offsets.length;n--;)this.$activeTarget!==this.$targets[n]&&t>=this.$offsets[n]&&(se(this.$offsets[n+1])||t0&&this.$root&&this.$root.$emit(HC,t,r)}},{key:"clear",value:function(){var t=this;Da("".concat(this.$selector,", ").concat(RC),this.$el).filter((function(t){return Ma(t,LC)})).forEach((function(e){return t.setActiveState(e,!1)}))}},{key:"setActiveState",value:function(t,e){t&&(e?Fa(t,LC):La(t,LC))}}])&&FC(e.prototype,r),o&&FC(e,o),t}(),XC="__BV_ScrollSpy__",JC=/^\d+$/,ZC=/^(auto|position|offset)$/,QC=function(t,e,r){if(ot){var o=function(t){var e={};return t.arg&&(e.element="#".concat(t.arg)),$e(t.modifiers).forEach((function(t){JC.test(t)?e.offset=la(t,0):ZC.test(t)&&(e.method=t)})),me(t.value)?e.element=t.value:fe(t.value)?e.offset=ss(t.value):ge(t.value)&&$e(t.value).filter((function(t){return!!KC.DefaultType[t]})).forEach((function(r){e[r]=t.value[r]})),e}(e);t[XC]?t[XC].updateConfig(o,r.context.$root):t[XC]=new KC(t,o,r.context.$root)}};const t$={install:ar({plugins:{componentsPlugin:DC,directivesPlugin:lr({plugins:{VBHoverPlugin:EC,VBModalPlugin:zC,VBPopoverPlugin:Wj,VBScrollspyPlugin:lr({directives:{VBScrollspy:{bind:function(t,e,r){QC(t,e,r)},inserted:function(t,e,r){QC(t,e,r)},update:function(t,e,r){e.value!==e.oldValue&&QC(t,e,r)},componentUpdated:function(t,e,r){e.value!==e.oldValue&&QC(t,e,r)},unbind:function(t){!function(t){t[XC]&&(t[XC].dispose(),t[XC]=null,delete t[XC])}(t)}}}}),VBTogglePlugin:Am,VBTooltipPlugin:$C,VBVisiblePlugin:lr({directives:{VBVisible:ou}})}})}}),NAME:"BootstrapVue"};var e$=r(3379),r$=r.n(e$),o$=r(7795),n$=r.n(o$),i$=r(569),a$=r.n(i$),l$=r(3565),s$=r.n(l$),c$=r(9216),d$=r.n(c$),p$=r(4589),u$=r.n(p$),m$=r(3622),f$={};f$.styleTagTransform=u$(),f$.setAttributes=s$(),f$.insert=a$().bind(null,"head"),f$.domAPI=n$(),f$.insertStyleElement=d$(),r$()(m$.Z,f$),m$.Z&&m$.Z.locals&&m$.Z.locals;var b$=r(401),h$={};h$.styleTagTransform=u$(),h$.setAttributes=s$(),h$.insert=a$().bind(null,"head"),h$.domAPI=n$(),h$.insertStyleElement=d$(),r$()(b$.Z,h$),b$.Z&&b$.Z.locals&&b$.Z.locals;var g$=r(1821),v$={};v$.styleTagTransform=u$(),v$.setAttributes=s$(),v$.insert=a$().bind(null,"head"),v$.domAPI=n$(),v$.insertStyleElement=d$(),r$()(g$.Z,v$),g$.Z&&g$.Z.locals&&g$.Z.locals;var x$=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("div",{attrs:{id:"app"}},[r("b-navbar",{attrs:{toggleable:"lg",type:"dark",variant:"primary"}},[r("b-navbar-brand",{attrs:{href:"#"},on:{click:t.newSecret}},[r("i",{staticClass:"fas fa-user-secret"}),t._v(" OTS - One Time Secrets\n ")]),t._v(" "),r("b-navbar-toggle",{attrs:{target:"nav-collapse"}}),t._v(" "),r("b-collapse",{attrs:{id:"nav-collapse","is-nav":""}},[r("b-navbar-nav",{staticClass:"ml-auto"},[r("b-nav-item",{on:{click:function(e){t.explanationShown=!t.explanationShown}}},[r("i",{staticClass:"fas fa-question"}),t._v(" "+t._s(t.$t("btn-show-explanation"))+"\n ")]),t._v(" "),r("b-nav-item",{on:{click:t.newSecret}},[r("i",{staticClass:"fas fa-plus"}),t._v(" "+t._s(t.$t("btn-new-secret"))+"\n ")])],1)],1)],1),t._v(" "),r("b-container",{staticClass:"mt-4"},[r("b-row",{staticClass:"justify-content-center"},[r("b-col",{attrs:{md:"8"}},[r("b-alert",{attrs:{variant:"danger",dismissible:""},domProps:{innerHTML:t._s(t.error)},model:{value:t.showError,callback:function(e){t.showError=e},expression:"showError"}})],1)],1),t._v(" "),r("b-row",[r("b-col",[t.explanationShown?r("b-card",{staticClass:"mb-3",attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-explanation"))},slot:"header"}),t._v(" "),r("ul",t._l(t.$t("items-explanation"),(function(e){return r("li",[t._v("\n "+t._s(e)+"\n ")])})),0)]):t._e(),t._v(" "),"create"!=t.mode||t.secretId?t._e():r("b-card",{attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-new-secret"))},slot:"header"}),t._v(" "),r("b-form-group",{attrs:{label:t.$t("label-secret-data")}},[r("b-form-textarea",{attrs:{id:"secret","max-rows":"25",rows:"5"},model:{value:t.secret,callback:function(e){t.secret=e},expression:"secret"}})],1),t._v(" "),r("b-button",{attrs:{variant:"success"},on:{click:t.createSecret}},[t._v("\n "+t._s(t.$t("btn-create-secret"))+"\n ")])],1),t._v(" "),"create"==t.mode&&t.secretId?r("b-card",{attrs:{"border-variant":"success","header-bg-variant":"success","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-secret-created"))},slot:"header"}),t._v(" "),r("p",{domProps:{innerHTML:t._s(t.$t("text-pre-url"))}}),t._v(" "),r("b-form-group",[r("b-form-input",{ref:"secretUrl",attrs:{value:t.secretUrl,readonly:""},on:{focus:function(e){return t.$refs.secretUrl.select()}}})],1),t._v(" "),r("p",{domProps:{innerHTML:t._s(t.$t("text-burn-hint"))}})],1):t._e(),t._v(" "),"view"==t.mode?r("b-card",{attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-reading-secret"))},slot:"header"}),t._v(" "),t.secret?[r("b-form-group",[r("b-form-textarea",{attrs:{"max-rows":"25",readonly:"",rows:"5",value:t.secret}})],1),t._v(" "),r("p",{domProps:{innerHTML:t._s(t.$t("text-hint-burned"))}})]:[r("p",{domProps:{innerHTML:t._s(t.$t("text-pre-reveal-hint"))}}),t._v(" "),r("b-button",{attrs:{variant:"success"},on:{click:t.requestSecret}},[t._v("\n "+t._s(t.$t("btn-reveal-secret"))+"\n ")])]],2):t._e()],1)],1),t._v(" "),r("b-row",{staticClass:"mt-5"},[r("b-col",{staticClass:"footer"},[t._v("\n "+t._s(t.$t("text-powered-by"))+" "),r("a",{attrs:{href:"https://github.com/Luzifer/ots"}},[r("i",{staticClass:"fab fa-github"}),t._v(" Luzifer/OTS")]),t._v(" "+t._s(t.$root.version)+"\n ")])],1)],1)],1)};x$._withStripped=!0;var y$=r(9669),w$=r.n(y$),k$=r(5281),O$=r.n(k$);const j$={name:"App",data:function(){return{error:"",explanationShown:!1,mode:"create",secret:"",securePassword:"",secretId:"",showError:!1}},computed:{secretUrl:function(){return[window.location.href,encodeURIComponent([this.secretId,this.securePassword].join("|"))].join("#")}},mounted:function(){window.onhashchange=this.hashLoad,this.hashLoad()},methods:{createSecret:function(){var t=this;this.securePassword=Math.random().toString(36).substring(2);var e=O$().enc(this.secret,this.securePassword);return w$().post("api/create",{secret:e}).then((function(e){t.secretId=e.data.secret_id,t.secret="",window.setTimeout((function(){return t.$refs.secretUrl.focus()}),100)})).catch((function(e){switch(e.response.status){case 404:t.secretId="foobar";break;default:t.error=t.$t("alert-something-went-wrong"),t.showError=!0}})),!1},hashLoad:function(){var t=decodeURIComponent(window.location.hash);if(0!==t.length){var e=t.substring(1).split("|");2===e.length&&(this.securePassword=e[1]),this.secretId=e[0],this.mode="view"}},newSecret:function(){location.href=location.href.split("#")[0]},requestSecret:function(){var t=this;w$().get("api/get/".concat(this.secretId)).then((function(e){var r=e.data.secret;t.securePassword&&(r=O$().dec(r,t.securePassword)),t.secret=r})).catch((function(e){switch(e.response.status){case 404:t.error=t.$t("alert-secret-not-found"),t.showError=!0;break;default:t.error=t.$t("alert-something-went-wrong"),t.showError=!0}}))}}};var S$=r(4503),P$={};P$.styleTagTransform=u$(),P$.setAttributes=s$(),P$.insert=a$().bind(null,"head"),P$.domAPI=n$(),P$.insertStyleElement=d$(),r$()(S$.Z,P$),S$.Z&&S$.Z.locals&&S$.Z.locals;var T$=function(t,e,r,o,n,i,a,l){var s,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=[],c._compiled=!0),s)if(c.functional){c._injectStyles=s;var d=c.render;c.render=function(t,e){return s.call(e),d(t,e)}}else{var p=c.beforeCreate;c.beforeCreate=p?[].concat(p,s):[s]}return{exports:t,options:c}}(j$,x$);T$.options.__file="app.vue";const _$=T$.exports,C$={de:JSON.parse('{"alert-secret-not-found":"Das ist nicht das Secret, was du suchst… - Falls du diesen Link noch nicht selbst geöffnet hast, könnte das Secret kompromittiert sein, da jemand anderes den Link geöffnet haben könnte.","alert-something-went-wrong":"Irgendwas ging schief. Entschuldigung…","btn-create-secret":"Secret erstellen!","btn-new-secret":"Neues Secret","btn-reveal-secret":"Zeig mir das Secret!","btn-show-explanation":"Wie funktioniert das?","items-explanation":["Du gibst ein Secret auf dieser Seite ein","Dein Browser verschlüsselt das Secret mit einem generierten Passwort","Nur das verschlüsselte Secret wird an den Server geschickt (das Passwort oder das Secret im Klartext werden niemals übertragen!)","Der Server speichert das verschlüsselte Secret für eine Weile","Du gibst die angezeigte URL, welche die ID und das Passwort des Secrets enthält, an den Empfänger","Der Empfänger kann das Secret einmalig abrufen: Funktioniert das nicht, könnte jemand anderes es abgerufen haben!","Wenn das verschlüsselte Secret das erste Mal abgerufen wurde, wird es automatisch vom Server gelöscht"],"label-secret-data":"Inhalt des Secrets:","text-burn-hint":"Bitte rufe die URL nicht selbst auf, da das Secret dadurch zerstört würde. Gib sie einfach weiter!","text-hint-burned":"Achtung: Du kannst das nur einmal ansehen! Sobald du die Seite neu lädst, ist das Secret verschwunden, also besser direkt kopieren und sicher abspeichern…","text-powered-by":"Läuft mit","text-pre-reveal-hint":"Um das Secret anzuzeigen klicke diesen Button aber denk dran, dass das Secret nur einmal angezeigt und dabei gelöscht wird.","text-pre-url":"Dein Secret wurde angelegt und unter folgender URL gespeichert:","title-explanation":"So funktioniert es…","title-new-secret":"Erstelle ein neues Secret","title-reading-secret":"Secret auslesen…","title-secret-created":"Secret erstellt!"}'),en:JSON.parse('{"alert-secret-not-found":"This is not the secret you are looking for… - If you expected the secret to be here it might be comprimised as someone else might have opened the link already.","alert-something-went-wrong":"Something went wrong. I\'m very sorry about this…","btn-create-secret":"Create the secret!","btn-new-secret":"New Secret","btn-reveal-secret":"Show me the secret!","btn-show-explanation":"How does this work?","items-explanation":["You enter a secret into the field on this page","Your browser encrypts the secret using a generated password","Only the encrypted secret is sent to the server (neither the plain secret nor the password are ever sent!)","The server stores the encrypted secret for a certain time","You pass the displayed URL containing the ID and the decryption password to the recipient","The recipient can view the secret exactly once: If they can\'t, the secret might have been viewed by someone else!","After the encrypted secret has been retrieved once, it is deleted from the server"],"label-secret-data":"Secret data:","text-burn-hint":"Please remember not to go to this URL yourself as that would destroy the secret. Just pass it to someone else!","text-hint-burned":"Attention: You\'re only seeing this once. As soon as you reload the page the secret will be gone so maybe copy it now…","text-powered-by":"Powered by","text-pre-reveal-hint":"To reveal the secret click this button but be aware doing so will destroy the secret. You can only view it once!","text-pre-url":"Your secret was created and stored using this URL:","title-explanation":"This is how it works…","title-new-secret":"Create a new secret","title-reading-secret":"Reading your secret…","title-secret-created":"Secret created!"}'),fr:JSON.parse('{"alert-secret-not-found":"Ce secret n\'est pas celui que vous cherchez… - Si vous comptiez trouvez ce secret ici, il a pu être compromis car quelqu\'un a probablement déjà ouvert le lien.","alert-something-went-wrong":"Un problème est survenu. Nous en sommes désolés…","btn-create-secret":"Créer le secret!","btn-new-secret":"Nouveau secret","btn-reveal-secret":"Voir le secret!","btn-show-explanation":"Comment ça fonctionne?","items-explanation":["Vous saisissez le secret dans un champ sur cette page","Votre navigateur chiffre le secret en utilisant un mot de passe généré","Seul le secret chiffré est envoyé au serveur (ni le secret en clair, ni le mot de passe ne sont envoyés!)","Le serveur stocke le secret chiffré pendant un certain temps","Vous fournissez l\'URL affichée contenant l\'identifiant et le mot de passe de déchiffrage au destinataire","Le destintaire ne peut voir le secret qu\'une fois: si cela ne fonctionne pas, c\'est que le secret a été consulté par quelqu\'un d\'autre!","Dès que le secret chiffré a été récupéré, il est supprimé du serveur"],"label-secret-data":"Données secrètes:","text-burn-hint":"Attention de ne pas ouvrir cette URL vous-même, cela détruirait le secret. Fournissez-la à quelqu\'un d\'autre!","text-hint-burned":"Attention: Vous ne pouvez consulter ce contenu qu\'une fois. Le secret sera détruit dès que vous rechargez la page, donc copiez le maintenant…","text-powered-by":"Propulsé par","text-pre-reveal-hint":"Pour afficher le secret, cliquez sur ce bouton, mais soyez conscient que cela le détruira. Vous ne pouvez l\'afficher qu\'une fois!","text-pre-url":"Votre secret a été créé et stocké à cette URL:","title-explanation":"Voici comment ça fonctionne…","title-new-secret":"Créer un nouveau secret","title-reading-secret":"Lecture du secret…","title-secret-created":"Secret créé!"}'),lv:JSON.parse('{"alert-secret-not-found":"Ziņa nav atrasta!… - Ja ievadītā saite ir pareiza, tad ir beidzies ziņas glabāšanas laiks, vai arī tā jau vienreiz ir atvērta.","alert-something-went-wrong":"Neparedzēta sistēmas kļūda. Atvainojiet par sagādātajām neērtībām…","btn-create-secret":"Šifrēt ziņu!","btn-new-secret":"Jauna ziņa","btn-reveal-secret":"Atvērt ziņu!","btn-show-explanation":"Kā tas strādā?","items-explanation":["Tu ievadi ziņu ievades laukā","Pārlūks nošifrē ziņu ar uzģenerētu paroli","Tikai šifrētā ziņa tiek nosūtīta serverim (nešifrētā ziņa un parole sūtīta netiek!)","Serveris noteiktu laiku glabā šifrēto ziņu","Tu nodod URL ar ziņas ID un atšifrēšanas paroli saņēmējam","Saņēmējs var atvērt ziņu tikai vienreiz: ja tas neizdodas, iespējams, ziņu jau atvēris kāds cits!","Kad ziņa tiek atvērta pirmo reizi, tā no servera tiek dzēsta"],"label-secret-data":"Ziņa:","text-burn-hint":"Lūdzu atceries neatvērt saiti pats, jo tad ziņa tiks dzēsta. Nodod saiti ziņas saņēmējam!","text-hint-burned":"Uzmanību: Ziņa tiek parādīta tikai vienu reizi. Līdzko lapa tiks pārlādēta, ziņa būs neatgriezeniski zaudēta, tāpēc nepieciešamības gadījumā nokopē to tagad…","text-powered-by":"Darbina","text-pre-reveal-hint":"Lai parādītu ziņu nospied šo pogu, bet rēķinies ar to, ka pēc apskates ziņa vairs nebūs pieejama. To var atvērt tikai vienreiz!","text-pre-url":"Ziņa ir nošifrēta un ir atverama šajā adresē:","title-explanation":"Tā tas strādā…","title-new-secret":"Šifrēt ziņu","title-reading-secret":"Atver ziņu…","title-secret-created":"Ziņa nošifrēta!"}'),nl:JSON.parse('{"alert-secret-not-found":"De gegevens die je zocht bestaan niet (meer)… - Als je hier informatie verwachtte dan is de link mogelijk al door iemand anders bekeken!","alert-something-went-wrong":"Er ging iets verkeerd, sorry…","btn-create-secret":"Nieuwe vertrouwelijke info aanmaken!","btn-new-secret":"Nieuw","btn-reveal-secret":"Toon mij de vertrouwelijke info!","btn-show-explanation":"Hoe werkt dit?","items-explanation":["Je vult vertrouwelijke informatie in op deze pagina.","Je browser versleutelt de ingevulde tekst via een automatisch gegenereerd wachtwoord.","Alleen de versleutelde data wordt naar de server gestuurd. (De leesbare versie of het wachtwoord worden nooit verstuurd!)","De server slaat de versleutelde data gedurende een beperkte periode op.","Je geeft de URL met identificatie en het gegenereerde wachtwoord aan de ontvanger.","De ontvanger kan de vertrouwelijke informatie exact eenmaal bekijken: indien het niet lukt heeft mogelijk iemand anders de info gezien!","De versleutelde data wordt van de server gewist van zodra de ontvanger het bekeken heeft."],"label-secret-data":"Vertrouwelijke info:","text-burn-hint":"Bezoek de URL niet zelf: je kan deze slechts eenmaal gebruiken. Geef de URL aan de ontvanger.","text-hint-burned":"Opgelet: Je ziet deze informatie alleen nu. Je kan het niet meer opnieuw opvragen als je de pagina verlaat.","text-powered-by":"Mogelijk gemaakt door","text-pre-reveal-hint":"Gebruik deze knop om de vertrouwelijke info op te halen. Let op: Je kan dit slechts eenmaal doen!","text-pre-url":"Je vertrouwelijke informatie kan opgevraagd worden via deze URL:","title-explanation":"Dit is hoe het werkt…","title-new-secret":"Nieuwe vertrouwelijke info opslaan","title-reading-secret":"Vertrouwelijke info lezen…","title-secret-created":"Vertrouwelijke info opgeslaan!"}')};o.default.use(t$),o.default.use(J);var $$=new J({locale,fallbackLocale:"en",messages:C$});new o.default({el:"#app",components:{app:_$},data:{version},i18n:$$,render:function(t){return t("app")}})},401:(t,e,r)=>{"use strict";r.d(e,{Z:()=>y});var o=r(3645),n=r.n(o),i=r(1667),a=r.n(i),l=new URL(r(6803),r.b),s=new URL(r(9566),r.b),c=new URL(r(2952),r.b),d=new URL(r(9052),r.b),p=new URL(r(8776),r.b),u=new URL(r(134),r.b),m=n()((function(t){return t[1]})),f=a()(l),b=a()(s),h=a()(c),g=a()(d),v=a()(p),x=a()(u);m.push([t.id,'/*!\n * BootstrapVue Custom CSS (https://bootstrap-vue.org)\n */.bv-no-focus-ring:focus{outline:none}@media (max-width: 575.98px){.bv-d-xs-down-none{display:none !important}}@media (max-width: 767.98px){.bv-d-sm-down-none{display:none !important}}@media (max-width: 991.98px){.bv-d-md-down-none{display:none !important}}@media (max-width: 1199.98px){.bv-d-lg-down-none{display:none !important}}.bv-d-xl-down-none{display:none !important}.form-control.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.form-control.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.form-control.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.b-avatar{display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;width:2.5rem;height:2.5rem;font-size:inherit;font-weight:400;line-height:1;max-width:100%;max-height:auto;text-align:center;overflow:visible;position:relative;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}.b-avatar:focus{outline:0}.b-avatar.btn,.b-avatar[href]{padding:0;border:0}.b-avatar.btn .b-avatar-img img,.b-avatar[href] .b-avatar-img img{transition:-webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}.b-avatar.btn:not(:disabled):not(.disabled),.b-avatar[href]:not(:disabled):not(.disabled){cursor:pointer}.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img,.b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img{-webkit-transform:scale(1.15);transform:scale(1.15)}.b-avatar.disabled,.b-avatar:disabled,.b-avatar[disabled]{opacity:0.65;pointer-events:none}.b-avatar .b-avatar-custom,.b-avatar .b-avatar-text,.b-avatar .b-avatar-img{border-radius:inherit;width:100%;height:100%;overflow:hidden;display:flex;justify-content:center;align-items:center;-webkit-mask-image:radial-gradient(white, black);mask-image:radial-gradient(white, black)}.b-avatar .b-avatar-text{text-transform:uppercase;white-space:nowrap}.b-avatar[href]{text-decoration:none}.b-avatar>.b-icon{width:60%;height:auto;max-width:100%}.b-avatar .b-avatar-img img{width:100%;height:100%;max-height:auto;border-radius:inherit;-o-object-fit:cover;object-fit:cover}.b-avatar .b-avatar-badge{position:absolute;min-height:1.5em;min-width:1.5em;padding:0.25em;line-height:1;border-radius:10em;font-size:70%;font-weight:700;z-index:1}.b-avatar-sm{width:1.5rem;height:1.5rem}.b-avatar-sm .b-avatar-text{font-size:calc(0.6rem)}.b-avatar-sm .b-avatar-badge{font-size:calc(0.42rem)}.b-avatar-lg{width:3.5rem;height:3.5rem}.b-avatar-lg .b-avatar-text{font-size:calc(1.4rem)}.b-avatar-lg .b-avatar-badge{font-size:calc(0.98rem)}.b-avatar-group .b-avatar-group-inner{display:flex;flex-wrap:wrap}.b-avatar-group .b-avatar{border:1px solid #dee2e6}.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled),.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled){z-index:1}.b-calendar{display:inline-flex}.b-calendar .b-calendar-inner{min-width:250px}.b-calendar .b-calendar-header,.b-calendar .b-calendar-nav{margin-bottom:0.25rem}.b-calendar .b-calendar-nav .btn{padding:0.25rem}.b-calendar output{padding:0.25rem;font-size:80%}.b-calendar output.readonly{background-color:#e9ecef;opacity:1}.b-calendar .b-calendar-footer{margin-top:0.5rem}.b-calendar .b-calendar-grid{padding:0;margin:0;overflow:hidden}.b-calendar .b-calendar-grid .row{flex-wrap:nowrap}.b-calendar .b-calendar-grid-caption{padding:0.25rem}.b-calendar .b-calendar-grid-body .col[data-date] .btn{width:32px;height:32px;font-size:14px;line-height:1;margin:3px auto;padding:9px 0}.b-calendar .btn:disabled,.b-calendar .btn.disabled,.b-calendar .btn[aria-disabled=true]{cursor:default;pointer-events:none}.card-img-left{border-top-left-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-img-right{border-top-right-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret::after{display:none !important}.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret::before{display:none !important}.dropdown .dropdown-menu:focus{outline:none}.b-dropdown-form{display:inline-block;padding:0.25rem 1.5rem;width:100%;clear:both;font-weight:400}.b-dropdown-form:focus{outline:1px dotted !important;outline:5px auto -webkit-focus-ring-color !important}.b-dropdown-form.disabled,.b-dropdown-form:disabled{outline:0 !important;color:#6c757d;pointer-events:none}.b-dropdown-text{display:inline-block;padding:0.25rem 1.5rem;margin-bottom:0;width:100%;clear:both;font-weight:lighter}.custom-checkbox.b-custom-control-lg,.input-group-lg .custom-checkbox{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-checkbox.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-checkbox .custom-control-label::before{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:0.3rem}.custom-checkbox.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-checkbox .custom-control-label::after{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background-size:50% 50%}.custom-checkbox.b-custom-control-sm,.input-group-sm .custom-checkbox{font-size:0.875rem;line-height:1.5;padding-left:1.3125rem}.custom-checkbox.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-checkbox .custom-control-label::before{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;border-radius:0.2rem}.custom-checkbox.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-checkbox .custom-control-label::after{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;background-size:50% 50%}.custom-switch.b-custom-control-lg,.input-group-lg .custom-switch{padding-left:2.8125rem}.custom-switch.b-custom-control-lg .custom-control-label,.input-group-lg .custom-switch .custom-control-label{font-size:1.25rem;line-height:1.5}.custom-switch.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-switch .custom-control-label::before{top:0.3125rem;height:1.25rem;left:-2.8125rem;width:2.1875rem;border-radius:0.625rem}.custom-switch.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-switch .custom-control-label::after{top:calc( 0.3125rem + 2px);left:calc( -2.8125rem + 2px);width:calc( 1.25rem - 4px);height:calc( 1.25rem - 4px);border-radius:0.625rem;background-size:50% 50%}.custom-switch.b-custom-control-lg .custom-control-input:checked ~ .custom-control-label::after,.input-group-lg .custom-switch .custom-control-input:checked ~ .custom-control-label::after{-webkit-transform:translateX(0.9375rem);transform:translateX(0.9375rem)}.custom-switch.b-custom-control-sm,.input-group-sm .custom-switch{padding-left:1.96875rem}.custom-switch.b-custom-control-sm .custom-control-label,.input-group-sm .custom-switch .custom-control-label{font-size:0.875rem;line-height:1.5}.custom-switch.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-switch .custom-control-label::before{top:0.21875rem;left:-1.96875rem;width:1.53125rem;height:0.875rem;border-radius:0.4375rem}.custom-switch.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-switch .custom-control-label::after{top:calc( 0.21875rem + 2px);left:calc( -1.96875rem + 2px);width:calc( 0.875rem - 4px);height:calc( 0.875rem - 4px);border-radius:0.4375rem;background-size:50% 50%}.custom-switch.b-custom-control-sm .custom-control-input:checked ~ .custom-control-label::after,.input-group-sm .custom-switch .custom-control-input:checked ~ .custom-control-label::after{-webkit-transform:translateX(0.65625rem);transform:translateX(0.65625rem)}.input-group>.input-group-prepend>.btn-group>.btn,.input-group>.input-group-append:not(:last-child)>.btn-group>.btn,.input-group>.input-group-append:last-child>.btn-group:not(:last-child):not(.dropdown-toggle)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn-group>.btn,.input-group>.input-group-prepend:not(:first-child)>.btn-group>.btn,.input-group>.input-group-prepend:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.b-form-btn-label-control.form-control{display:flex;align-items:stretch;height:auto;padding:0;background-image:none}.input-group .b-form-btn-label-control.form-control{padding:0}[dir=rtl] .b-form-btn-label-control.form-control,.b-form-btn-label-control.form-control[dir=rtl]{flex-direction:row-reverse}[dir=rtl] .b-form-btn-label-control.form-control>label,.b-form-btn-label-control.form-control[dir=rtl]>label{text-align:right}.b-form-btn-label-control.form-control>.btn{line-height:1;font-size:inherit;box-shadow:none !important;border:0}.b-form-btn-label-control.form-control>.btn:disabled{pointer-events:none}.b-form-btn-label-control.form-control.is-valid>.btn{color:#28a745}.b-form-btn-label-control.form-control.is-invalid>.btn{color:#dc3545}.b-form-btn-label-control.form-control>.dropdown-menu{padding:0.5rem}.b-form-btn-label-control.form-control>.form-control{height:auto;min-height:calc(calc(1.5em + 0.75rem + 2px) - 2px);padding-left:0.25rem;margin:0;border:0;outline:0;background:transparent;word-break:break-word;font-size:inherit;white-space:normal;cursor:pointer}.b-form-btn-label-control.form-control>.form-control.form-control-sm{min-height:calc(calc(1.5em + 0.5rem + 2px) - 2px)}.b-form-btn-label-control.form-control>.form-control.form-control-lg{min-height:calc(calc(1.5em + 1rem + 2px) - 2px)}.input-group.input-group-sm .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.5em + 0.5rem + 2px) - 2px);padding-top:0.25rem;padding-bottom:0.25rem}.input-group.input-group-lg .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.5em + 1rem + 2px) - 2px);padding-top:0.5rem;padding-bottom:0.5rem}.b-form-btn-label-control.form-control[aria-disabled=true],.b-form-btn-label-control.form-control[aria-readonly=true]{background-color:#e9ecef;opacity:1}.b-form-btn-label-control.form-control[aria-disabled=true]{pointer-events:none}.b-form-btn-label-control.form-control[aria-disabled=true]>label{cursor:default}.b-form-btn-label-control.btn-group>.dropdown-menu{padding:0.5rem}.custom-file-label{white-space:nowrap;overflow-x:hidden}.b-custom-control-lg.custom-file,.b-custom-control-lg .custom-file-input,.b-custom-control-lg .custom-file-label,.input-group-lg.custom-file,.input-group-lg .custom-file-input,.input-group-lg .custom-file-label{font-size:1.25rem;height:calc(1.5em + 1rem + 2px)}.b-custom-control-lg .custom-file-label,.b-custom-control-lg .custom-file-label:after,.input-group-lg .custom-file-label,.input-group-lg .custom-file-label:after{padding:0.5rem 1rem;line-height:1.5}.b-custom-control-lg .custom-file-label,.input-group-lg .custom-file-label{border-radius:0.3rem}.b-custom-control-lg .custom-file-label::after,.input-group-lg .custom-file-label::after{font-size:inherit;height:calc( 1.5em + 1rem);border-radius:0 0.3rem 0.3rem 0}.b-custom-control-sm.custom-file,.b-custom-control-sm .custom-file-input,.b-custom-control-sm .custom-file-label,.input-group-sm.custom-file,.input-group-sm .custom-file-input,.input-group-sm .custom-file-label{font-size:0.875rem;height:calc(1.5em + 0.5rem + 2px)}.b-custom-control-sm .custom-file-label,.b-custom-control-sm .custom-file-label:after,.input-group-sm .custom-file-label,.input-group-sm .custom-file-label:after{padding:0.25rem 0.5rem;line-height:1.5}.b-custom-control-sm .custom-file-label,.input-group-sm .custom-file-label{border-radius:0.2rem}.b-custom-control-sm .custom-file-label::after,.input-group-sm .custom-file-label::after{font-size:inherit;height:calc( 1.5em + 0.5rem);border-radius:0 0.2rem 0.2rem 0}.was-validated .form-control:invalid,.was-validated .form-control:valid,.form-control.is-invalid,.form-control.is-valid{background-position:right calc(0.375em + 0.1875rem) center}input[type=color].form-control{height:calc(1.5em + 0.75rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control.form-control-sm,.input-group-sm input[type=color].form-control{height:calc(1.5em + 0.5rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control.form-control-lg,.input-group-lg input[type=color].form-control{height:calc(1.5em + 1rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control:disabled{background-color:#adb5bd;opacity:0.65}.input-group>.custom-range{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-range+.form-control,.input-group>.custom-range+.form-control-plaintext,.input-group>.custom-range+.custom-select,.input-group>.custom-range+.custom-range,.input-group>.custom-range+.custom-file{margin-left:-1px}.input-group>.form-control+.custom-range,.input-group>.form-control-plaintext+.custom-range,.input-group>.custom-select+.custom-range,.input-group>.custom-range+.custom-range,.input-group>.custom-file+.custom-range{margin-left:-1px}.input-group>.custom-range:focus{z-index:3}.input-group>.custom-range:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-range:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-range{height:calc(1.5em + 0.75rem + 2px);padding:0 0.75rem;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;height:calc(1.5em + 0.75rem + 2px);border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.input-group>.custom-range{transition:none}}.input-group>.custom-range:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.input-group>.custom-range:disabled,.input-group>.custom-range[readonly]{background-color:#e9ecef}.input-group-lg>.custom-range{height:calc(1.5em + 1rem + 2px);padding:0 1rem;border-radius:0.3rem}.input-group-sm>.custom-range{height:calc(1.5em + 0.5rem + 2px);padding:0 0.5rem;border-radius:0.2rem}.was-validated .input-group .custom-range:valid,.input-group .custom-range.is-valid{border-color:#28a745}.was-validated .input-group .custom-range:valid:focus,.input-group .custom-range.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-range:valid:focus::-webkit-slider-thumb,.custom-range.is-valid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid:focus::-moz-range-thumb,.custom-range.is-valid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid:focus::-ms-thumb,.custom-range.is-valid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid::-webkit-slider-thumb,.custom-range.is-valid::-webkit-slider-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-webkit-slider-thumb:active,.custom-range.is-valid::-webkit-slider-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-webkit-slider-runnable-track,.custom-range.is-valid::-webkit-slider-runnable-track{background-color:rgba(40,167,69,0.35)}.was-validated .custom-range:valid::-moz-range-thumb,.custom-range.is-valid::-moz-range-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-moz-range-thumb:active,.custom-range.is-valid::-moz-range-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-moz-range-track,.custom-range.is-valid::-moz-range-track{background:rgba(40,167,69,0.35)}.was-validated .custom-range:valid ~ .valid-feedback,.was-validated .custom-range:valid ~ .valid-tooltip,.custom-range.is-valid ~ .valid-feedback,.custom-range.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-range:valid::-ms-thumb,.custom-range.is-valid::-ms-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-ms-thumb:active,.custom-range.is-valid::-ms-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-ms-track-lower,.custom-range.is-valid::-ms-track-lower{background:rgba(40,167,69,0.35)}.was-validated .custom-range:valid::-ms-track-upper,.custom-range.is-valid::-ms-track-upper{background:rgba(40,167,69,0.35)}.was-validated .input-group .custom-range:invalid,.input-group .custom-range.is-invalid{border-color:#dc3545}.was-validated .input-group .custom-range:invalid:focus,.input-group .custom-range.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-range:invalid:focus::-webkit-slider-thumb,.custom-range.is-invalid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-moz-range-thumb,.custom-range.is-invalid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-ms-thumb,.custom-range.is-invalid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid::-webkit-slider-thumb,.custom-range.is-invalid::-webkit-slider-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-thumb:active,.custom-range.is-invalid::-webkit-slider-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-runnable-track,.custom-range.is-invalid::-webkit-slider-runnable-track{background-color:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid::-moz-range-thumb,.custom-range.is-invalid::-moz-range-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-moz-range-thumb:active,.custom-range.is-invalid::-moz-range-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-moz-range-track,.custom-range.is-invalid::-moz-range-track{background:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid ~ .invalid-feedback,.was-validated .custom-range:invalid ~ .invalid-tooltip,.custom-range.is-invalid ~ .invalid-feedback,.custom-range.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-range:invalid::-ms-thumb,.custom-range.is-invalid::-ms-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-ms-thumb:active,.custom-range.is-invalid::-ms-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-ms-track-lower,.custom-range.is-invalid::-ms-track-lower{background:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid::-ms-track-upper,.custom-range.is-invalid::-ms-track-upper{background:rgba(220,53,69,0.35)}.custom-radio.b-custom-control-lg,.input-group-lg .custom-radio{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-radio.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-radio .custom-control-label::before{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:50%}.custom-radio.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-radio .custom-control-label::after{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background:no-repeat 50%/50% 50%}.custom-radio.b-custom-control-sm,.input-group-sm .custom-radio{font-size:0.875rem;line-height:1.5;padding-left:1.3125rem}.custom-radio.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-radio .custom-control-label::before{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;border-radius:50%}.custom-radio.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-radio .custom-control-label::after{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;background:no-repeat 50%/50% 50%}.b-rating{text-align:center}.b-rating.d-inline-flex{width:auto}.b-rating .b-rating-star,.b-rating .b-rating-value{padding:0 0.25em}.b-rating .b-rating-value{min-width:2.5em}.b-rating .b-rating-star{display:inline-flex;justify-content:center;outline:0}.b-rating .b-rating-star .b-rating-icon{display:inline-flex;transition:all 0.15s ease-in-out}.b-rating.disabled,.b-rating:disabled{background-color:#e9ecef;color:#6c757d}.b-rating:not(.disabled):not(.readonly) .b-rating-star{cursor:pointer}.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon,.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon{-webkit-transform:scale(1.5);transform:scale(1.5)}.b-rating[dir=rtl] .b-rating-star-half{-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.b-form-spinbutton{text-align:center;overflow:hidden;background-image:none;padding:0}[dir=rtl] .b-form-spinbutton:not(.flex-column),.b-form-spinbutton[dir=rtl]:not(.flex-column){flex-direction:row-reverse}.b-form-spinbutton output{font-size:inherit;outline:0;border:0;background-color:transparent;width:auto;margin:0;padding:0 0.25rem}.b-form-spinbutton output>div,.b-form-spinbutton output>bdi{display:block;min-width:2.25em;height:1.5em}.b-form-spinbutton.flex-column{height:auto;width:auto}.b-form-spinbutton.flex-column output{margin:0 0.25rem;padding:0.25rem 0}.b-form-spinbutton:not(.d-inline-flex):not(.flex-column){output-width:100%}.b-form-spinbutton.d-inline-flex:not(.flex-column){width:auto}.b-form-spinbutton .btn{line-height:1;box-shadow:none !important}.b-form-spinbutton .btn:disabled{pointer-events:none}.b-form-spinbutton .btn:hover:not(:disabled)>div>.b-icon{-webkit-transform:scale(1.25);transform:scale(1.25)}.b-form-spinbutton.disabled,.b-form-spinbutton.readonly{background-color:#e9ecef}.b-form-spinbutton.disabled{pointer-events:none}.b-form-tags .b-form-tags-list{margin-top:-0.25rem}.b-form-tags .b-form-tags-list .b-from-tags-field,.b-form-tags .b-form-tags-list .b-form-tag{margin-top:0.25rem}.b-form-tags.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.b-form-tags.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.b-form-tags.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.b-form-tags.disabled{background-color:#e9ecef}.b-form-tag{font-size:75%;font-weight:normal;line-height:1.5;margin-right:0.25rem}.b-form-tag.disabled{opacity:0.75}.b-form-tag>button.b-form-tag-remove{color:inherit;font-size:125%;line-height:1;float:none;margin-left:0.25rem}.form-control-sm .b-form-tag{line-height:1.5}.form-control-lg .b-form-tag{line-height:1.5}.media-aside{display:flex;margin-right:1rem}.media-aside-right{margin-right:0;margin-left:1rem}.modal-backdrop{opacity:0.5}.b-pagination-pills .page-item .page-link{border-radius:50rem !important;margin-left:0.25rem;line-height:1}.b-pagination-pills .page-item:first-child .page-link{margin-left:0}.popover.b-popover{display:block;opacity:1;outline:0}.popover.b-popover.fade:not(.show){opacity:0}.popover.b-popover.show{opacity:1}.b-popover-primary.popover{background-color:#cce5ff;border-color:#b8daff}.b-popover-primary.bs-popover-top>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#b8daff}.b-popover-primary.bs-popover-top>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#cce5ff}.b-popover-primary.bs-popover-right>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#b8daff}.b-popover-primary.bs-popover-right>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#cce5ff}.b-popover-primary.bs-popover-bottom>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#b8daff}.b-popover-primary.bs-popover-bottom>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#bdddff}.b-popover-primary.bs-popover-bottom .popover-header::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#bdddff}.b-popover-primary.bs-popover-left>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#b8daff}.b-popover-primary.bs-popover-left>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#cce5ff}.b-popover-primary .popover-header{color:#212529;background-color:#bdddff;border-bottom-color:#a3d0ff}.b-popover-primary .popover-body{color:#004085}.b-popover-secondary.popover{background-color:#e2e3e5;border-color:#d6d8db}.b-popover-secondary.bs-popover-top>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#d6d8db}.b-popover-secondary.bs-popover-top>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#e2e3e5}.b-popover-secondary.bs-popover-right>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#d6d8db}.b-popover-secondary.bs-popover-right>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#e2e3e5}.b-popover-secondary.bs-popover-bottom>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#d6d8db}.b-popover-secondary.bs-popover-bottom>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#dadbde}.b-popover-secondary.bs-popover-bottom .popover-header::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#dadbde}.b-popover-secondary.bs-popover-left>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#d6d8db}.b-popover-secondary.bs-popover-left>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#e2e3e5}.b-popover-secondary .popover-header{color:#212529;background-color:#dadbde;border-bottom-color:#ccced2}.b-popover-secondary .popover-body{color:#383d41}.b-popover-success.popover{background-color:#d4edda;border-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d4edda}.b-popover-success.bs-popover-right>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#c3e6cb}.b-popover-success.bs-popover-right>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d4edda}.b-popover-success.bs-popover-bottom>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#c3e6cb}.b-popover-success.bs-popover-bottom>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-bottom .popover-header::before,.b-popover-success.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-left>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#c3e6cb}.b-popover-success.bs-popover-left>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d4edda}.b-popover-success .popover-header{color:#212529;background-color:#c9e8d1;border-bottom-color:#b7e1c1}.b-popover-success .popover-body{color:#155724}.b-popover-info.popover{background-color:#d1ecf1;border-color:#bee5eb}.b-popover-info.bs-popover-top>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#bee5eb}.b-popover-info.bs-popover-top>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d1ecf1}.b-popover-info.bs-popover-right>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#bee5eb}.b-popover-info.bs-popover-right>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d1ecf1}.b-popover-info.bs-popover-bottom>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#bee5eb}.b-popover-info.bs-popover-bottom>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c5e7ed}.b-popover-info.bs-popover-bottom .popover-header::before,.b-popover-info.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c5e7ed}.b-popover-info.bs-popover-left>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#bee5eb}.b-popover-info.bs-popover-left>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d1ecf1}.b-popover-info .popover-header{color:#212529;background-color:#c5e7ed;border-bottom-color:#b2dfe7}.b-popover-info .popover-body{color:#0c5460}.b-popover-warning.popover{background-color:#fff3cd;border-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fff3cd}.b-popover-warning.bs-popover-right>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#ffeeba}.b-popover-warning.bs-popover-right>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fff3cd}.b-popover-warning.bs-popover-bottom>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#ffeeba}.b-popover-warning.bs-popover-bottom>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-bottom .popover-header::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-left>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#ffeeba}.b-popover-warning.bs-popover-left>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fff3cd}.b-popover-warning .popover-header{color:#212529;background-color:#ffefbe;border-bottom-color:#ffe9a4}.b-popover-warning .popover-body{color:#856404}.b-popover-danger.popover{background-color:#f8d7da;border-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#f8d7da}.b-popover-danger.bs-popover-right>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#f5c6cb}.b-popover-danger.bs-popover-right>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#f8d7da}.b-popover-danger.bs-popover-bottom>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#f5c6cb}.b-popover-danger.bs-popover-bottom>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-bottom .popover-header::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-left>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#f5c6cb}.b-popover-danger.bs-popover-left>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#f8d7da}.b-popover-danger .popover-header{color:#212529;background-color:#f6cace;border-bottom-color:#f2b4ba}.b-popover-danger .popover-body{color:#721c24}.b-popover-light.popover{background-color:#fefefe;border-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fefefe}.b-popover-light.bs-popover-right>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#fdfdfe}.b-popover-light.bs-popover-right>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fefefe}.b-popover-light.bs-popover-bottom>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#fdfdfe}.b-popover-light.bs-popover-bottom>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-bottom .popover-header::before,.b-popover-light.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-left>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#fdfdfe}.b-popover-light.bs-popover-left>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fefefe}.b-popover-light .popover-header{color:#212529;background-color:#f6f6f6;border-bottom-color:#eaeaea}.b-popover-light .popover-body{color:#818182}.b-popover-dark.popover{background-color:#d6d8d9;border-color:#c6c8ca}.b-popover-dark.bs-popover-top>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#c6c8ca}.b-popover-dark.bs-popover-top>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d6d8d9}.b-popover-dark.bs-popover-right>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#c6c8ca}.b-popover-dark.bs-popover-right>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d6d8d9}.b-popover-dark.bs-popover-bottom>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#c6c8ca}.b-popover-dark.bs-popover-bottom>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ced0d2}.b-popover-dark.bs-popover-bottom .popover-header::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ced0d2}.b-popover-dark.bs-popover-left>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#c6c8ca}.b-popover-dark.bs-popover-left>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d6d8d9}.b-popover-dark .popover-header{color:#212529;background-color:#ced0d2;border-bottom-color:#c1c4c5}.b-popover-dark .popover-body{color:#1b1e21}.b-sidebar-outer{position:fixed;top:0;left:0;right:0;height:0;overflow:visible;z-index:calc(1030 + 5)}.b-sidebar-backdrop{position:fixed;top:0;left:0;z-index:-1;width:100vw;height:100vh;opacity:0.6}.b-sidebar{display:flex;flex-direction:column;position:fixed;top:0;width:320px;max-width:100%;height:100vh;max-height:100%;margin:0;outline:0;-webkit-transform:translateX(0);transform:translateX(0)}.b-sidebar.slide{transition:-webkit-transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out}@media (prefers-reduced-motion: reduce){.b-sidebar.slide{transition:none}}.b-sidebar:not(.b-sidebar-right){left:0;right:auto}.b-sidebar:not(.b-sidebar-right).slide:not(.show){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.b-sidebar:not(.b-sidebar-right)>.b-sidebar-header .close{margin-left:auto}.b-sidebar.b-sidebar-right{left:auto;right:0}.b-sidebar.b-sidebar-right.slide:not(.show){-webkit-transform:translateX(100%);transform:translateX(100%)}.b-sidebar.b-sidebar-right>.b-sidebar-header .close{margin-right:auto}.b-sidebar>.b-sidebar-header{font-size:1.5rem;padding:0.5rem 1rem;display:flex;flex-direction:row;flex-grow:0;align-items:center}[dir=rtl] .b-sidebar>.b-sidebar-header{flex-direction:row-reverse}.b-sidebar>.b-sidebar-header .close{float:none;font-size:1.5rem}.b-sidebar>.b-sidebar-body{flex-grow:1;height:100%;overflow-y:auto}.b-sidebar>.b-sidebar-footer{flex-grow:0}.b-skeleton-wrapper{cursor:wait}.b-skeleton{position:relative;overflow:hidden;background-color:rgba(0,0,0,0.12);cursor:wait;-webkit-mask-image:radial-gradient(white, black);mask-image:radial-gradient(white, black)}.b-skeleton::before{content:" "}.b-skeleton-text{height:1rem;margin-bottom:0.25rem;border-radius:0.25rem}.b-skeleton-button{width:75px;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem}.b-skeleton-avatar{width:2.5em;height:2.5em;border-radius:50%}.b-skeleton-input{height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;line-height:1.5;border:#ced4da solid 1px;border-radius:0.25rem}.b-skeleton-icon-wrapper svg{color:rgba(0,0,0,0.12)}.b-skeleton-img{height:100%;width:100%}.b-skeleton-animate-wave::after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);-webkit-animation:b-skeleton-animate-wave 1.75s linear infinite;animation:b-skeleton-animate-wave 1.75s linear infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-wave::after{background:none;-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-wave{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes b-skeleton-animate-wave{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}.b-skeleton-animate-fade{-webkit-animation:b-skeleton-animate-fade 0.875s ease-in-out alternate infinite;animation:b-skeleton-animate-fade 0.875s ease-in-out alternate infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-fade{-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-fade{0%{opacity:1}100%{opacity:0.4}}@keyframes b-skeleton-animate-fade{0%{opacity:1}100%{opacity:0.4}}.b-skeleton-animate-throb{-webkit-animation:b-skeleton-animate-throb 0.875s ease-in alternate infinite;animation:b-skeleton-animate-throb 0.875s ease-in alternate infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-throb{-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-throb{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.975);transform:scale(0.975)}}@keyframes b-skeleton-animate-throb{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.975);transform:scale(0.975)}}.table.b-table.b-table-fixed{table-layout:fixed}.table.b-table.b-table-no-border-collapse{border-collapse:separate;border-spacing:0}.table.b-table[aria-busy=true]{opacity:0.55}.table.b-table>tbody>tr.b-table-details>td{border-top:none !important}.table.b-table>caption{caption-side:bottom}.table.b-table.b-table-caption-top>caption{caption-side:top !important}.table.b-table>tbody>.table-active,.table.b-table>tbody>.table-active>th,.table.b-table>tbody>.table-active>td{background-color:rgba(0,0,0,0.075)}.table.b-table.table-hover>tbody>tr.table-active:hover td,.table.b-table.table-hover>tbody>tr.table-active:hover th{color:#212529;background-image:linear-gradient(rgba(0,0,0,0.075), rgba(0,0,0,0.075));background-repeat:no-repeat}.table.b-table>tbody>.bg-active,.table.b-table>tbody>.bg-active>th,.table.b-table>tbody>.bg-active>td{background-color:rgba(255,255,255,0.075) !important}.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover td,.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover th{color:#fff;background-image:linear-gradient(rgba(255,255,255,0.075), rgba(255,255,255,0.075));background-repeat:no-repeat}.b-table-sticky-header,.table-responsive,[class*=table-responsive-]{margin-bottom:1rem}.b-table-sticky-header>.table,.table-responsive>.table,[class*=table-responsive-]>.table{margin-bottom:0}.b-table-sticky-header{overflow-y:auto;max-height:300px}@media print{.b-table-sticky-header{overflow-y:visible !important;max-height:none !important}}@supports (position: -webkit-sticky) or (position: sticky){.b-table-sticky-header>.table.b-table>thead>tr>th{position:-webkit-sticky;position:sticky;top:0;z-index:2}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{position:-webkit-sticky;position:sticky;left:0}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column{z-index:5}.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{z-index:2}.table.b-table>thead>tr>.table-b-table-default,.table.b-table>tbody>tr>.table-b-table-default,.table.b-table>tfoot>tr>.table-b-table-default{color:#212529;background-color:#fff}.table.b-table.table-dark>thead>tr>.bg-b-table-default,.table.b-table.table-dark>tbody>tr>.bg-b-table-default,.table.b-table.table-dark>tfoot>tr>.bg-b-table-default{color:#fff;background-color:#343a40}.table.b-table.table-striped>tbody>tr:nth-of-type(odd)>.table-b-table-default{background-image:linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05));background-repeat:no-repeat}.table.b-table.table-striped.table-dark>tbody>tr:nth-of-type(odd)>.bg-b-table-default{background-image:linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05));background-repeat:no-repeat}.table.b-table.table-hover>tbody>tr:hover>.table-b-table-default{color:#212529;background-image:linear-gradient(rgba(0,0,0,0.075), rgba(0,0,0,0.075));background-repeat:no-repeat}.table.b-table.table-hover.table-dark>tbody>tr:hover>.bg-b-table-default{color:#fff;background-image:linear-gradient(rgba(255,255,255,0.075), rgba(255,255,255,0.075));background-repeat:no-repeat}}.table.b-table>thead>tr>[aria-sort],.table.b-table>tfoot>tr>[aria-sort]{cursor:pointer;background-image:none;background-repeat:no-repeat;background-size:0.65em 1em}.table.b-table>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.75rem / 2) center;padding-right:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.75rem / 2) center;padding-left:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort=none],.table.b-table>tfoot>tr>[aria-sort=none]{background-image:url('+f+")}.table.b-table>thead>tr>[aria-sort=ascending],.table.b-table>tfoot>tr>[aria-sort=ascending]{background-image:url("+b+")}.table.b-table>thead>tr>[aria-sort=descending],.table.b-table>tfoot>tr>[aria-sort=descending]{background-image:url("+h+")}.table.b-table.table-dark>thead>tr>[aria-sort=none],.table.b-table.table-dark>tfoot>tr>[aria-sort=none],.table.b-table>.thead-dark>tr>[aria-sort=none]{background-image:url("+g+")}.table.b-table.table-dark>thead>tr>[aria-sort=ascending],.table.b-table.table-dark>tfoot>tr>[aria-sort=ascending],.table.b-table>.thead-dark>tr>[aria-sort=ascending]{background-image:url("+v+")}.table.b-table.table-dark>thead>tr>[aria-sort=descending],.table.b-table.table-dark>tfoot>tr>[aria-sort=descending],.table.b-table>.thead-dark>tr>[aria-sort=descending]{background-image:url("+x+")}.table.b-table>thead>tr>.table-dark[aria-sort=none],.table.b-table>tfoot>tr>.table-dark[aria-sort=none]{background-image:url("+g+")}.table.b-table>thead>tr>.table-dark[aria-sort=ascending],.table.b-table>tfoot>tr>.table-dark[aria-sort=ascending]{background-image:url("+v+")}.table.b-table>thead>tr>.table-dark[aria-sort=descending],.table.b-table>tfoot>tr>.table-dark[aria-sort=descending]{background-image:url("+x+')}.table.b-table.table-sm>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table.table-sm>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.3rem / 2) center;padding-right:calc(0.3rem + 0.65em)}.table.b-table.table-sm>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table.table-sm>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.3rem / 2) center;padding-left:calc(0.3rem + 0.65em)}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click)>tbody>tr{cursor:pointer}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range>tbody>tr{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media (max-width: 575.98px){.table.b-table.b-table-stacked-sm{display:block;width:100%}.table.b-table.b-table-stacked-sm>caption,.table.b-table.b-table-stacked-sm>tbody,.table.b-table.b-table-stacked-sm>tbody>tr,.table.b-table.b-table-stacked-sm>tbody>tr>td,.table.b-table.b-table-stacked-sm>tbody>tr>th{display:block}.table.b-table.b-table-stacked-sm>thead,.table.b-table.b-table-stacked-sm>tfoot{display:none}.table.b-table.b-table-stacked-sm>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-sm>caption{caption-side:top !important}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-sm>tbody>tr.top-row,.table.b-table.b-table-stacked-sm>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-sm>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 767.98px){.table.b-table.b-table-stacked-md{display:block;width:100%}.table.b-table.b-table-stacked-md>caption,.table.b-table.b-table-stacked-md>tbody,.table.b-table.b-table-stacked-md>tbody>tr,.table.b-table.b-table-stacked-md>tbody>tr>td,.table.b-table.b-table-stacked-md>tbody>tr>th{display:block}.table.b-table.b-table-stacked-md>thead,.table.b-table.b-table-stacked-md>tfoot{display:none}.table.b-table.b-table-stacked-md>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-md>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-md>caption{caption-side:top !important}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-md>tbody>tr.top-row,.table.b-table.b-table-stacked-md>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-md>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 991.98px){.table.b-table.b-table-stacked-lg{display:block;width:100%}.table.b-table.b-table-stacked-lg>caption,.table.b-table.b-table-stacked-lg>tbody,.table.b-table.b-table-stacked-lg>tbody>tr,.table.b-table.b-table-stacked-lg>tbody>tr>td,.table.b-table.b-table-stacked-lg>tbody>tr>th{display:block}.table.b-table.b-table-stacked-lg>thead,.table.b-table.b-table-stacked-lg>tfoot{display:none}.table.b-table.b-table-stacked-lg>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-lg>caption{caption-side:top !important}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-lg>tbody>tr.top-row,.table.b-table.b-table-stacked-lg>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-lg>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 1199.98px){.table.b-table.b-table-stacked-xl{display:block;width:100%}.table.b-table.b-table-stacked-xl>caption,.table.b-table.b-table-stacked-xl>tbody,.table.b-table.b-table-stacked-xl>tbody>tr,.table.b-table.b-table-stacked-xl>tbody>tr>td,.table.b-table.b-table-stacked-xl>tbody>tr>th{display:block}.table.b-table.b-table-stacked-xl>thead,.table.b-table.b-table-stacked-xl>tfoot{display:none}.table.b-table.b-table-stacked-xl>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-xl>caption{caption-side:top !important}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-xl>tbody>tr.top-row,.table.b-table.b-table-stacked-xl>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-xl>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+th{border-top-width:3px}}.table.b-table.b-table-stacked{display:block;width:100%}.table.b-table.b-table-stacked>caption,.table.b-table.b-table-stacked>tbody,.table.b-table.b-table-stacked>tbody>tr,.table.b-table.b-table-stacked>tbody>tr>td,.table.b-table.b-table-stacked>tbody>tr>th{display:block}.table.b-table.b-table-stacked>thead,.table.b-table.b-table-stacked>tfoot{display:none}.table.b-table.b-table-stacked>thead>tr.b-table-top-row,.table.b-table.b-table-stacked>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked>caption{caption-side:top !important}.table.b-table.b-table-stacked>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked>tbody>tr.top-row,.table.b-table.b-table-stacked>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked>tbody>tr>[rowspan]+th{border-top-width:3px}.b-time{min-width:150px}.b-time[aria-disabled=true] output,.b-time[aria-readonly=true] output,.b-time output.disabled{background-color:#e9ecef;opacity:1}.b-time[aria-disabled=true] output{pointer-events:none}[dir=rtl] .b-time>.d-flex:not(.flex-column){flex-direction:row-reverse}.b-time .b-time-header{margin-bottom:0.5rem}.b-time .b-time-header output{padding:0.25rem;font-size:80%}.b-time .b-time-footer{margin-top:0.5rem}.b-time .b-time-ampm{margin-left:0.5rem}.b-toast{display:block;position:relative;max-width:350px;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-clip:padding-box;z-index:1;border-radius:0.25rem}.b-toast .toast{background-color:rgba(255,255,255,0.85)}.b-toast:not(:last-child){margin-bottom:0.75rem}.b-toast.b-toast-solid .toast{background-color:white}.b-toast .toast{opacity:1}.b-toast .toast.fade:not(.show){opacity:0}.b-toast .toast .toast-body{display:block}.b-toast-primary .toast{background-color:rgba(230,242,255,0.85);border-color:rgba(184,218,255,0.85);color:#004085}.b-toast-primary .toast .toast-header{color:#004085;background-color:rgba(204,229,255,0.85);border-bottom-color:rgba(184,218,255,0.85)}.b-toast-primary.b-toast-solid .toast{background-color:#e6f2ff}.b-toast-secondary .toast{background-color:rgba(239,240,241,0.85);border-color:rgba(214,216,219,0.85);color:#383d41}.b-toast-secondary .toast .toast-header{color:#383d41;background-color:rgba(226,227,229,0.85);border-bottom-color:rgba(214,216,219,0.85)}.b-toast-secondary.b-toast-solid .toast{background-color:#eff0f1}.b-toast-success .toast{background-color:rgba(230,245,233,0.85);border-color:rgba(195,230,203,0.85);color:#155724}.b-toast-success .toast .toast-header{color:#155724;background-color:rgba(212,237,218,0.85);border-bottom-color:rgba(195,230,203,0.85)}.b-toast-success.b-toast-solid .toast{background-color:#e6f5e9}.b-toast-info .toast{background-color:rgba(229,244,247,0.85);border-color:rgba(190,229,235,0.85);color:#0c5460}.b-toast-info .toast .toast-header{color:#0c5460;background-color:rgba(209,236,241,0.85);border-bottom-color:rgba(190,229,235,0.85)}.b-toast-info.b-toast-solid .toast{background-color:#e5f4f7}.b-toast-warning .toast{background-color:rgba(255,249,231,0.85);border-color:rgba(255,238,186,0.85);color:#856404}.b-toast-warning .toast .toast-header{color:#856404;background-color:rgba(255,243,205,0.85);border-bottom-color:rgba(255,238,186,0.85)}.b-toast-warning.b-toast-solid .toast{background-color:#fff9e7}.b-toast-danger .toast{background-color:rgba(252,237,238,0.85);border-color:rgba(245,198,203,0.85);color:#721c24}.b-toast-danger .toast .toast-header{color:#721c24;background-color:rgba(248,215,218,0.85);border-bottom-color:rgba(245,198,203,0.85)}.b-toast-danger.b-toast-solid .toast{background-color:#fcedee}.b-toast-light .toast{background-color:rgba(255,255,255,0.85);border-color:rgba(253,253,254,0.85);color:#818182}.b-toast-light .toast .toast-header{color:#818182;background-color:rgba(254,254,254,0.85);border-bottom-color:rgba(253,253,254,0.85)}.b-toast-light.b-toast-solid .toast{background-color:white}.b-toast-dark .toast{background-color:rgba(227,229,229,0.85);border-color:rgba(198,200,202,0.85);color:#1b1e21}.b-toast-dark .toast .toast-header{color:#1b1e21;background-color:rgba(214,216,217,0.85);border-bottom-color:rgba(198,200,202,0.85)}.b-toast-dark.b-toast-solid .toast{background-color:#e3e5e5}.b-toaster{z-index:1100}.b-toaster .b-toaster-slot{position:relative;display:block}.b-toaster .b-toaster-slot:empty{display:none !important}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full,.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{position:fixed;left:0.5rem;right:0.5rem;margin:0;padding:0;height:0;overflow:visible}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{position:absolute;max-width:350px;width:100%;left:0;right:0;padding:0;margin:0}.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{width:100%;max-width:100%}.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-top-full .b-toaster-slot .toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast{width:100%;max-width:100%}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full{top:0}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot{top:0.5rem}.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{bottom:0}.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{bottom:0.5rem}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-left:auto}.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-right:auto}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-move,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move{transition:-webkit-transform 0.175s;transition:transform 0.175s;transition:transform 0.175s, -webkit-transform 0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade{transition-delay:0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active{position:absolute;transition-delay:0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade{transition-delay:0s}.tooltip.b-tooltip{display:block;opacity:0.9;outline:0}.tooltip.b-tooltip.fade:not(.show){opacity:0}.tooltip.b-tooltip.show{opacity:0.9}.tooltip.b-tooltip.noninteractive{pointer-events:none}.tooltip.b-tooltip .arrow{margin:0 0.25rem}.tooltip.b-tooltip.bs-tooltip-right .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.bs-tooltip-left .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow{margin:0.25rem 0}.tooltip.b-tooltip-primary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#007bff}.tooltip.b-tooltip-primary .tooltip-inner{color:#fff;background-color:#007bff}.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#6c757d}.tooltip.b-tooltip-secondary .tooltip-inner{color:#fff;background-color:#6c757d}.tooltip.b-tooltip-success.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#28a745}.tooltip.b-tooltip-success .tooltip-inner{color:#fff;background-color:#28a745}.tooltip.b-tooltip-info.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#17a2b8}.tooltip.b-tooltip-info .tooltip-inner{color:#fff;background-color:#17a2b8}.tooltip.b-tooltip-warning.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#ffc107}.tooltip.b-tooltip-warning .tooltip-inner{color:#212529;background-color:#ffc107}.tooltip.b-tooltip-danger.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#dc3545}.tooltip.b-tooltip-danger .tooltip-inner{color:#fff;background-color:#dc3545}.tooltip.b-tooltip-light.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#f8f9fa}.tooltip.b-tooltip-light .tooltip-inner{color:#212529;background-color:#f8f9fa}.tooltip.b-tooltip-dark.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#343a40}.tooltip.b-tooltip-dark .tooltip-inner{color:#fff;background-color:#343a40}.b-icon.bi{display:inline-block;overflow:visible;vertical-align:-0.15em}.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon;animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical;animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-fade;animation:0.75s infinite ease-in-out alternate b-icon-animation-fade}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:2s infinite linear normal b-icon-animation-spin;animation:2s infinite linear normal b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-transform-origin:center;transform-origin:center;animation:2s infinite linear reverse b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:1s infinite steps(8) normal b-icon-animation-spin;animation:1s infinite steps(8) normal b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-transform-origin:center;transform-origin:center;animation:1s infinite steps(8) reverse b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-throb;animation:0.75s infinite ease-in-out alternate b-icon-animation-throb}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-animation:none;animation:none}}@-webkit-keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}100%{-webkit-transform:translateX(25%);transform:translateX(25%)}}@keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}100%{-webkit-transform:translateX(25%);transform:translateX(25%)}}@-webkit-keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}100%{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}100%{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@-webkit-keyframes b-icon-animation-fade{0%{opacity:0.1}100%{opacity:1}}@keyframes b-icon-animation-fade{0%{opacity:0.1}100%{opacity:1}}@-webkit-keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes b-icon-animation-throb{0%{opacity:0.5;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes b-icon-animation-throb{0%{opacity:0.5;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.btn .b-icon.bi,.nav-link .b-icon.bi,.dropdown-toggle .b-icon.bi,.dropdown-item .b-icon.bi,.input-group-text .b-icon.bi{font-size:125%;vertical-align:text-bottom}\n',""]);const y=m},3622:(t,e,r)=>{"use strict";r.d(e,{Z:()=>_});var o=r(3645),n=r.n(o),i=r(1667),a=r.n(i),l=new URL(r(7211),r.b),s=new URL(r(4576),r.b),c=new URL(r(1024),r.b),d=new URL(r(9653),r.b),p=new URL(r(4231),r.b),u=new URL(r(7263),r.b),m=new URL(r(1380),r.b),f=new URL(r(9242),r.b),b=new URL(r(4104),r.b),h=new URL(r(9700),r.b),g=n()((function(t){return t[1]})),v=a()(l),x=a()(s),y=a()(c),w=a()(d),k=a()(p),O=a()(u),j=a()(m),S=a()(f),P=a()(b),T=a()(h);g.push([t.id,'/*!\n * Bootstrap v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\\2014\\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:0.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*="col-"]>.valid-tooltip{left:5px}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + 0.75rem);background-image:url('+v+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+v+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:0.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*="col-"]>.invalid-tooltip{left:5px}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url('+y+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+y+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 0.2rem rgba(38,143,255,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(38,143,255,0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 0.2rem rgba(130,138,145,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(130,138,145,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 0.2rem rgba(222,170,12,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(222,170,12,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 0.2rem rgba(216,217,219,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(216,217,219,0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 0.2rem rgba(82,88,93,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(82,88,93,0.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:0.25rem}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+w+")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("+k+")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("+O+")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:0.5rem;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("+x+') right 0.75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#80bdff;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-file-input[disabled] ~ .custom-file-label,.custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill>.nav-link,.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:0.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.3125rem;padding-bottom:0.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url('+j+")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.5);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("+S+')}.navbar-dark .navbar-text{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:0.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#0062cc}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#545b62}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#1d2124}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:0.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:0.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.carousel-control-prev-icon{background-image:url('+P+")}.carousel-control-next-icon{background-image:url("+T+')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#007bff !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0.2rem !important}.rounded{border-radius:0.25rem !important}.rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}.rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}.rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-lg{border-radius:0.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#121416 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}\n',""]);const _=g},1821:(t,e,r)=>{"use strict";r.d(e,{Z:()=>_});var o=r(3645),n=r.n(o),i=r(1667),a=r.n(i),l=new URL(r(1387),r.b),s=new URL(r(4576),r.b),c=new URL(r(8624),r.b),d=new URL(r(9653),r.b),p=new URL(r(4231),r.b),u=new URL(r(7263),r.b),m=new URL(r(1380),r.b),f=new URL(r(9859),r.b),b=new URL(r(4104),r.b),h=new URL(r(9700),r.b),g=n()((function(t){return t[1]}));g.push([t.id,"@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap);"]);var v=a()(l),x=a()(s),y=a()(c),w=a()(d),k=a()(p),O=a()(u),j=a()(m),S=a()(f),P=a()(b),T=a()(h);g.push([t.id,'/*!\n * Bootswatch v4.6.0\n * Homepage: https://bootswatch.com\n * Copyright 2012-2021 Thomas Park\n * Licensed under MIT\n * Based on Bootstrap\n*//*!\n * Bootstrap v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--blue: #2c3e50;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #e74c3c;--orange: #fd7e14;--yellow: #f39c12;--green: #18bc9c;--teal: #20c997;--cyan: #3498db;--white: #fff;--gray: #95a5a6;--gray-dark: #343a40;--primary: #2c3e50;--secondary: #95a5a6;--success: #18bc9c;--info: #3498db;--warning: #f39c12;--danger: #e74c3c;--light: #ecf0f1;--dark: #7b8a8b;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-size:0.9375rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#18bc9c;text-decoration:none;background-color:transparent}a:hover{color:#0f7864;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#95a5a6;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:3rem}h2,.h2{font-size:2.5rem}h3,.h3{font-size:2rem}h4,.h4{font-size:1.40625rem}h5,.h5{font-size:1.171875rem}h6,.h6{font-size:0.9375rem}.lead{font-size:1.171875rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.171875rem}.blockquote-footer{display:block;font-size:80%;color:#95a5a6}.blockquote-footer::before{content:"\\2014\\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#95a5a6}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:#ecf0f1}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#c4c9ce}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#919ba4}.table-hover .table-primary:hover{background-color:#b6bcc2}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b6bcc2}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#e1e6e6}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#c8d0d1}.table-hover .table-secondary:hover{background-color:#d3dada}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#d3dada}.table-success,.table-success>th,.table-success>td{background-color:#beece3}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#87dccc}.table-hover .table-success:hover{background-color:#aae6db}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#aae6db}.table-info,.table-info>th,.table-info>td{background-color:#c6e2f5}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#95c9ec}.table-hover .table-info:hover{background-color:#b0d7f1}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0d7f1}.table-warning,.table-warning>th,.table-warning>td{background-color:#fce3bd}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#f9cc84}.table-hover .table-warning:hover{background-color:#fbd9a5}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbd9a5}.table-danger,.table-danger>th,.table-danger>td{background-color:#f8cdc8}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#f3a29a}.table-hover .table-danger:hover{background-color:#f5b8b1}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f5b8b1}.table-light,.table-light>th,.table-light>td{background-color:#fafbfb}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#f5f7f8}.table-hover .table-light:hover{background-color:#ecf0f0}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ecf0f0}.table-dark,.table-dark>th,.table-dark>td{background-color:#dadedf}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#bac2c3}.table-hover .table-dark:hover{background-color:#ccd2d3}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#ccd2d3}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#7b8a8b;background-color:#ecf0f1;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #7b8a8b}.form-control:focus{color:#7b8a8b;background-color:#fff;border-color:#597ea2;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.form-control::-webkit-input-placeholder{color:#95a5a6;opacity:1}.form-control::-moz-placeholder{color:#95a5a6;opacity:1}.form-control:-ms-input-placeholder{color:#95a5a6;opacity:1}.form-control::-ms-input-placeholder{color:#95a5a6;opacity:1}.form-control::placeholder{color:#95a5a6;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#ecf0f1;opacity:1}input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#7b8a8b;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.171875rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.825rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:0.9375rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{color:#95a5a6}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#18bc9c}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(24,188,156,0.9);border-radius:0.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*="col-"]>.valid-tooltip{left:5px}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#18bc9c;padding-right:calc(1.5em + 0.75rem);background-image:url('+v+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#18bc9c;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+v+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#18bc9c}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#18bc9c}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#18bc9c}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#24e3be;background-color:#24e3be}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#18bc9c}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#18bc9c}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#e74c3c}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(231,76,60,0.9);border-radius:0.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*="col-"]>.invalid-tooltip{left:5px}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#e74c3c;padding-right:calc(1.5em + 0.75rem);background-image:url('+y+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#e74c3c;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+y+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#e74c3c}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#e74c3c}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#e74c3c}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#ed7669;background-color:#ed7669}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#e74c3c}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#e74c3c}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:0.9375rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-primary:hover{color:#fff;background-color:#1e2b37;border-color:#1a252f}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#1e2b37;border-color:#1a252f;box-shadow:0 0 0 0.2rem rgba(76,91,106,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#1a252f;border-color:#151e27}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(76,91,106,0.5)}.btn-secondary{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-secondary:hover{color:#fff;background-color:#809395;border-color:#798d8f}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#809395;border-color:#798d8f;box-shadow:0 0 0 0.2rem rgba(165,179,179,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#798d8f;border-color:#738789}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(165,179,179,0.5)}.btn-success{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-success:hover{color:#fff;background-color:#149a80;border-color:#128f76}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#149a80;border-color:#128f76;box-shadow:0 0 0 0.2rem rgba(59,198,171,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#128f76;border-color:#11836d}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(59,198,171,0.5)}.btn-info{color:#fff;background-color:#3498db;border-color:#3498db}.btn-info:hover{color:#fff;background-color:#2384c6;border-color:#217dbb}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#2384c6;border-color:#217dbb;box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#3498db;border-color:#3498db}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#217dbb;border-color:#1f76b0}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}.btn-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-warning:hover{color:#fff;background-color:#d4860b;border-color:#c87f0a}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d4860b;border-color:#c87f0a;box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#c87f0a;border-color:#bc770a}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}.btn-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-danger:hover{color:#fff;background-color:#e12e1c;border-color:#d62c1a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#e12e1c;border-color:#d62c1a;box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#d62c1a;border-color:#ca2a19}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}.btn-light{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-light:hover{color:#212529;background-color:#d6dfe1;border-color:#cfd9db}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#d6dfe1;border-color:#cfd9db;box-shadow:0 0 0 0.2rem rgba(206,210,211,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#cfd9db;border-color:#c7d3d6}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(206,210,211,0.5)}.btn-dark{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-dark:hover{color:#fff;background-color:#697677;border-color:#636f70}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#697677;border-color:#636f70;box-shadow:0 0 0 0.2rem rgba(143,156,156,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#636f70;border-color:#5d696a}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(143,156,156,0.5)}.btn-outline-primary{color:#2c3e50;border-color:#2c3e50}.btn-outline-primary:hover{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#2c3e50;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}.btn-outline-secondary{color:#95a5a6;border-color:#95a5a6}.btn-outline-secondary:hover{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#95a5a6;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}.btn-outline-success{color:#18bc9c;border-color:#18bc9c}.btn-outline-success:hover{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#18bc9c;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}.btn-outline-info{color:#3498db;border-color:#3498db}.btn-outline-info:hover{color:#fff;background-color:#3498db;border-color:#3498db}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#3498db;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#3498db;border-color:#3498db}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.btn-outline-warning{color:#f39c12;border-color:#f39c12}.btn-outline-warning:hover{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#f39c12;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.btn-outline-danger{color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:hover{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#e74c3c;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.btn-outline-light{color:#ecf0f1;border-color:#ecf0f1}.btn-outline-light:hover{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#ecf0f1;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}.btn-outline-dark{color:#7b8a8b;border-color:#7b8a8b}.btn-outline-dark:hover{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#7b8a8b;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}.btn-link{font-weight:400;color:#18bc9c;text-decoration:none}.btn-link:hover{color:#0f7864;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#95a5a6;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:0.9375rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #ecf0f1}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#7b8a8b;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#fff;text-decoration:none;background-color:#2c3e50}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#2c3e50}.dropdown-item.disabled,.dropdown-item:disabled{color:#b4bcc2;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.825rem;color:#95a5a6;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#7b8a8b}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;text-align:center;white-space:nowrap;background-color:#ecf0f1;border:1px solid #ced4da;border-radius:0.25rem}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.40625rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.203125rem;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#2c3e50;background-color:#2c3e50}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#597ea2}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#7997b5;border-color:#7997b5}.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label{color:#95a5a6}.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before{background-color:#ecf0f1}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#b4bcc2 solid 1px}.custom-control-label::after{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+w+")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#2c3e50;background-color:#2c3e50}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("+k+")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("+O+")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.203125rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#b4bcc2;border-radius:0.5rem;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;vertical-align:middle;background:#fff url("+x+') right 0.75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#597ea2;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-select:focus::-ms-value{color:#7b8a8b;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#95a5a6;background-color:#ecf0f1}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #7b8a8b}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.825rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.171875rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#597ea2;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-file-input[disabled] ~ .custom-file-label,.custom-file-input:disabled ~ .custom-file-label{background-color:#ecf0f1}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#7b8a8b;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#7b8a8b;content:"Browse";background-color:#ecf0f1;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#2c3e50;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#7997b5}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#2c3e50;border:0;border-radius:1rem;-moz-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#7997b5}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#2c3e50;border:0;border-radius:1rem;-ms-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#7997b5}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#b4bcc2}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#b4bcc2}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#b4bcc2}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 2rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#95a5a6;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #ecf0f1}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#ecf0f1 #ecf0f1 #ecf0f1}.nav-tabs .nav-link.disabled{color:#95a5a6;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#7b8a8b;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#2c3e50}.nav-fill>.nav-link,.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.324219rem;padding-bottom:0.324219rem;margin-right:1rem;font-size:1.171875rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.171875rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url('+j+")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:#fff}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#18bc9c}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:#fff;border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("+S+')}.navbar-dark .navbar-text{color:#fff}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#ecf0f1;border-radius:0.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:0.5rem;color:#95a5a6;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#95a5a6}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:0;line-height:1.25;color:#fff;background-color:#18bc9c;border:0 solid transparent}.page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:#0f7864;border-color:transparent}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0f7864;border-color:transparent}.page-item.disabled .page-link{color:#ecf0f1;pointer-events:none;cursor:auto;background-color:#3be6c4;border-color:transparent}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.171875rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#2c3e50}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#1a252f}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}.badge-secondary{color:#fff;background-color:#95a5a6}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#798d8f}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}.badge-success{color:#fff;background-color:#18bc9c}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#128f76}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}.badge-info{color:#fff;background-color:#3498db}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#217dbb}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.badge-warning{color:#fff;background-color:#f39c12}a.badge-warning:hover,a.badge-warning:focus{color:#fff;background-color:#c87f0a}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.badge-danger{color:#fff;background-color:#e74c3c}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#d62c1a}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.badge-light{color:#212529;background-color:#ecf0f1}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#cfd9db}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}.badge-dark{color:#fff;background-color:#7b8a8b}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#636f70}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#ecf0f1;border-radius:0.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.90625rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#17202a;background-color:#d5d8dc;border-color:#c4c9ce}.alert-primary hr{border-top-color:#b6bcc2}.alert-primary .alert-link{color:#050709}.alert-secondary{color:#4d5656;background-color:#eaeded;border-color:#e1e6e6}.alert-secondary hr{border-top-color:#d3dada}.alert-secondary .alert-link{color:#353b3b}.alert-success{color:#0c6251;background-color:#d1f2eb;border-color:#beece3}.alert-success hr{border-top-color:#aae6db}.alert-success .alert-link{color:#06352b}.alert-info{color:#1b4f72;background-color:#d6eaf8;border-color:#c6e2f5}.alert-info hr{border-top-color:#b0d7f1}.alert-info .alert-link{color:#113249}.alert-warning{color:#7e5109;background-color:#fdebd0;border-color:#fce3bd}.alert-warning hr{border-top-color:#fbd9a5}.alert-warning .alert-link{color:#4e3206}.alert-danger{color:#78281f;background-color:#fadbd8;border-color:#f8cdc8}.alert-danger hr{border-top-color:#f5b8b1}.alert-danger .alert-link{color:#4f1a15}.alert-light{color:#7b7d7d;background-color:#fbfcfc;border-color:#fafbfb}.alert-light hr{border-top-color:#ecf0f0}.alert-light .alert-link{color:#626363}.alert-dark{color:#404848;background-color:#e5e8e8;border-color:#dadedf}.alert-dark hr{border-top-color:#ccd2d3}.alert-dark .alert-link{color:#282d2d}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.703125rem;background-color:#ecf0f1;border-radius:0.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#2c3e50;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}.list-group-item-action{width:100%;color:#7b8a8b;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#7b8a8b;text-decoration:none;background-color:#ecf0f1}.list-group-item-action:active{color:#212529;background-color:#ecf0f1}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#95a5a6;pointer-events:none;background-color:#ecf0f1}.list-group-item.active{z-index:2;color:#fff;background-color:#2c3e50;border-color:#2c3e50}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#17202a;background-color:#c4c9ce}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#17202a;background-color:#b6bcc2}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#17202a;border-color:#17202a}.list-group-item-secondary{color:#4d5656;background-color:#e1e6e6}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#4d5656;background-color:#d3dada}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#4d5656;border-color:#4d5656}.list-group-item-success{color:#0c6251;background-color:#beece3}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#0c6251;background-color:#aae6db}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0c6251;border-color:#0c6251}.list-group-item-info{color:#1b4f72;background-color:#c6e2f5}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#1b4f72;background-color:#b0d7f1}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1b4f72;border-color:#1b4f72}.list-group-item-warning{color:#7e5109;background-color:#fce3bd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#7e5109;background-color:#fbd9a5}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#7e5109;border-color:#7e5109}.list-group-item-danger{color:#78281f;background-color:#f8cdc8}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#78281f;background-color:#f5b8b1}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#78281f;border-color:#78281f}.list-group-item-light{color:#7b7d7d;background-color:#fafbfb}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#7b7d7d;background-color:#ecf0f0}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#7b7d7d;border-color:#7b7d7d}.list-group-item-dark{color:#404848;background-color:#dadedf}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#404848;background-color:#ccd2d3}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#404848;border-color:#404848}.close{float:right;font-size:1.40625rem;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.5}.close:hover{color:#fff;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#95a5a6;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:0.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:0.9375rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.carousel-control-prev-icon{background-image:url('+P+")}.carousel-control-next-icon{background-image:url("+T+')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#2c3e50 !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#1a252f !important}.bg-secondary{background-color:#95a5a6 !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#798d8f !important}.bg-success{background-color:#18bc9c !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#128f76 !important}.bg-info{background-color:#3498db !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#217dbb !important}.bg-warning{background-color:#f39c12 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#c87f0a !important}.bg-danger{background-color:#e74c3c !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#d62c1a !important}.bg-light{background-color:#ecf0f1 !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#cfd9db !important}.bg-dark{background-color:#7b8a8b !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#636f70 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#2c3e50 !important}.border-secondary{border-color:#95a5a6 !important}.border-success{border-color:#18bc9c !important}.border-info{border-color:#3498db !important}.border-warning{border-color:#f39c12 !important}.border-danger{border-color:#e74c3c !important}.border-light{border-color:#ecf0f1 !important}.border-dark{border-color:#7b8a8b !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0.2rem !important}.rounded{border-radius:0.25rem !important}.rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}.rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}.rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-lg{border-radius:0.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#2c3e50 !important}a.text-primary:hover,a.text-primary:focus{color:#11181f !important}.text-secondary{color:#95a5a6 !important}a.text-secondary:hover,a.text-secondary:focus{color:#6d8082 !important}.text-success{color:#18bc9c !important}a.text-success:hover,a.text-success:focus{color:#0f7864 !important}.text-info{color:#3498db !important}a.text-info:hover,a.text-info:focus{color:#1d6fa5 !important}.text-warning{color:#f39c12 !important}a.text-warning:hover,a.text-warning:focus{color:#b06f09 !important}.text-danger{color:#e74c3c !important}a.text-danger:hover,a.text-danger:focus{color:#bf2718 !important}.text-light{color:#ecf0f1 !important}a.text-light:hover,a.text-light:focus{color:#c0cdd1 !important}.text-dark{color:#7b8a8b !important}a.text-dark:hover,a.text-dark:focus{color:#576263 !important}.text-body{color:#212529 !important}.text-muted{color:#95a5a6 !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #b4bcc2;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.bg-primary .navbar-nav .active>.nav-link{color:#18bc9c !important}.bg-dark.navbar-dark .navbar-nav .nav-link:focus,.bg-dark.navbar-dark .navbar-nav .nav-link:hover,.bg-dark.navbar-dark .navbar-nav .active>.nav-link{color:#2c3e50 !important}.btn-secondary,.btn-secondary:hover,.btn-warning,.btn-warning:hover{color:#fff}.table-primary,.table-secondary,.table-success,.table-info,.table-warning,.table-danger{color:#fff}.table-primary,.table-primary>th,.table-primary>td{background-color:#2c3e50}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#95a5a6}.table-light,.table-light>th,.table-light>td{background-color:#ecf0f1}.table-dark,.table-dark>th,.table-dark>td{background-color:#7b8a8b}.table-success,.table-success>th,.table-success>td{background-color:#18bc9c}.table-info,.table-info>th,.table-info>td{background-color:#3498db}.table-danger,.table-danger>th,.table-danger>td{background-color:#e74c3c}.table-warning,.table-warning>th,.table-warning>td{background-color:#f39c12}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-primary:hover,.table-hover .table-primary:hover>th,.table-hover .table-primary:hover>td{background-color:#233140}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>th,.table-hover .table-secondary:hover>td{background-color:#87999a}.table-hover .table-light:hover,.table-hover .table-light:hover>th,.table-hover .table-light:hover>td{background-color:#dde4e6}.table-hover .table-dark:hover,.table-hover .table-dark:hover>th,.table-hover .table-dark:hover>td{background-color:#6f7d7e}.table-hover .table-success:hover,.table-hover .table-success:hover>th,.table-hover .table-success:hover>td{background-color:#15a589}.table-hover .table-info:hover,.table-hover .table-info:hover>th,.table-hover .table-info:hover>td{background-color:#258cd1}.table-hover .table-danger:hover,.table-hover .table-danger:hover>th,.table-hover .table-danger:hover>td{background-color:#e43725}.table-hover .table-warning:hover,.table-hover .table-warning:hover>th,.table-hover .table-warning:hover>td{background-color:#e08e0b}.table-hover .table-active:hover,.table-hover .table-active:hover>th,.table-hover .table-active:hover>td{background-color:rgba(0,0,0,0.075)}.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover,.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover{color:#2c3e50}.pagination a:hover{text-decoration:none}.close{text-decoration:none;opacity:.4}.close:hover,.close:focus{opacity:1}.badge-secondary,.badge-warning{color:#fff}.alert{border:none;color:#fff}.alert a,.alert .alert-link{color:#fff;text-decoration:underline}.alert-primary{background-color:#2c3e50}.alert-secondary{background-color:#95a5a6}.alert-success{background-color:#18bc9c}.alert-info{background-color:#3498db}.alert-warning{background-color:#f39c12}.alert-danger{background-color:#e74c3c}.alert-light{background-color:#ecf0f1}.alert-dark{background-color:#7b8a8b}.alert-light,.alert-light a,.alert-light .alert-link{color:#212529}.modal .close,.toast .close{color:#000}.modal .close:not(:disabled):not(.disabled):hover,.modal .close:not(:disabled):not(.disabled):focus,.toast .close:not(:disabled):not(.disabled):hover,.toast .close:not(:disabled):not(.disabled):focus{color:#000}\n',""]);const _=g},4503:(t,e,r)=>{"use strict";r.d(e,{Z:()=>i});var o=r(3645),n=r.n(o)()((function(t){return t[1]}));n.push([t.id,"textarea{font-family:monospace}.footer{color:#2f2f2f;font-size:0.9em;text-align:center}\n",""]);const i=n},3645:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r=t(e);return e[2]?"@media ".concat(e[2]," {").concat(r,"}"):r})).join("")},e.i=function(t,r,o){"string"==typeof t&&(t=[[null,t,""]]);var n={};if(o)for(var i=0;i{"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},5281:function(t){t.exports=function(){"use strict";var t,e,r,o,n=14,i=8,a=!1,l=function(t){var e,r,o=[];for(t.length<16&&(o=[e=16-t.length,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e]),r=0;r16)throw"Decryption error: Maybe bad key";if(16===r)return"";for(o=0;o<16-r;o++)n+=String.fromCharCode(t[o])}else for(o=0;o<16;o++)n+=String.fromCharCode(t[o]);return n},c=function(t,e){var r,o=[];for(e||(t=function(t){try{return unescape(encodeURIComponent(t))}catch(t){throw"Error on UTF-8 encode"}}(t)),r=0;r=12?3:2,a=[],l=[],s=t.concat(e);for(a[0]=A(s),l=a[0],r=1;r=0;n--)l[n]=f(a[n],e),l[n]=x(l[n],0===n?r:a[n-1]);for(n=0;n-1;r--)o=h(o),o=b(o),o=v(o,e,r),r>0&&(o=g(o));return o},b=function(t){var e,r=a?T:P,o=[];for(e=0;e<16;e++)o[e]=r[t[e]];return o},h=function(t){var e,r=[],o=a?[0,13,10,7,4,1,14,11,8,5,2,15,12,9,6,3]:[0,5,10,15,4,9,14,3,8,13,2,7,12,1,6,11];for(e=0;e<16;e++)r[e]=t[o[e]];return r},g=function(t){var e,r=[];if(a)for(e=0;e<4;e++)r[4*e]=B[t[4*e]]^E[t[1+4*e]]^z[t[2+4*e]]^D[t[3+4*e]],r[1+4*e]=D[t[4*e]]^B[t[1+4*e]]^E[t[2+4*e]]^z[t[3+4*e]],r[2+4*e]=z[t[4*e]]^D[t[1+4*e]]^B[t[2+4*e]]^E[t[3+4*e]],r[3+4*e]=E[t[4*e]]^z[t[1+4*e]]^D[t[2+4*e]]^B[t[3+4*e]];else for(e=0;e<4;e++)r[4*e]=C[t[4*e]]^$[t[1+4*e]]^t[2+4*e]^t[3+4*e],r[1+4*e]=t[4*e]^C[t[1+4*e]]^$[t[2+4*e]]^t[3+4*e],r[2+4*e]=t[4*e]^t[1+4*e]^C[t[2+4*e]]^$[t[3+4*e]],r[3+4*e]=$[t[4*e]]^t[1+4*e]^t[2+4*e]^C[t[3+4*e]];return r},v=function(t,e,r){var o,n=[];for(o=0;o<16;o++)n[o]=t[o]^e[r][o];return n},x=function(t,e){var r,o=[];for(r=0;r<16;r++)o[r]=t[r]^e[r];return o},y=function(t){var e,r,o,a,l=[],s=[],c=[];for(e=0;e6&&e%i==4&&(s=w(s)),o=0;o<4;o++)l[e][o]=l[e-i][o]^s[o]}for(e=0;e127?283^t<<1:t<<1,e>>>=1;return o},S=function(t){var e,r=[];for(e=0;e<256;e++)r[e]=j(t,e);return r},P=O("637c777bf26b6fc53001672bfed7ab76ca82c97dfa5947f0add4a2af9ca472c0b7fd9326363ff7cc34a5e5f171d8311504c723c31896059a071280e2eb27b27509832c1a1b6e5aa0523bd6b329e32f8453d100ed20fcb15b6acbbe394a4c58cfd0efaafb434d338545f9027f503c9fa851a3408f929d38f5bcb6da2110fff3d2cd0c13ec5f974417c4a77e3d645d197360814fdc222a908846eeb814de5e0bdbe0323a0a4906245cc2d3ac629195e479e7c8376d8dd54ea96c56f4ea657aae08ba78252e1ca6b4c6e8dd741f4bbd8b8a703eb5664803f60e613557b986c11d9ee1f8981169d98e949b1e87e9ce5528df8ca1890dbfe6426841992d0fb054bb16",2),T=function(t){var e,r=[];for(e=0;e>>32-e}function r(t,e){var r,o,n,i,a;return n=2147483648&t,i=2147483648&e,a=(1073741823&t)+(1073741823&e),(r=1073741824&t)&(o=1073741824&e)?2147483648^a^n^i:r|o?1073741824&a?3221225472^a^n^i:1073741824^a^n^i:a^n^i}function o(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return t&e|~t&r}(o,n,i),a),s)),r(e(t,l),o)}function n(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return t&r|e&~r}(o,n,i),a),s)),r(e(t,l),o)}function i(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return t^e^r}(o,n,i),a),s)),r(e(t,l),o)}function a(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return e^(t|~r)}(o,n,i),a),s)),r(e(t,l),o)}function l(t){var e,r,o=[];for(r=0;r<=3;r++)e=t>>>8*r&255,o=o.concat(e);return o}var s,c,d,p,u,m,f,b,h,g,v=O("67452301efcdab8998badcfe10325476d76aa478e8c7b756242070dbc1bdceeef57c0faf4787c62aa8304613fd469501698098d88b44f7afffff5bb1895cd7be6b901122fd987193a679438e49b40821f61e2562c040b340265e5a51e9b6c7aad62f105d02441453d8a1e681e7d3fbc821e1cde6c33707d6f4d50d87455a14eda9e3e905fcefa3f8676f02d98d2a4c8afffa39428771f6816d9d6122fde5380ca4beea444bdecfa9f6bb4b60bebfbc70289b7ec6eaa127fad4ef308504881d05d9d4d039e6db99e51fa27cf8c4ac5665f4292244432aff97ab9423a7fc93a039655b59c38f0ccc92ffeff47d85845dd16fa87e4ffe2ce6e0a30143144e0811a1f7537e82bd3af2352ad7d2bbeb86d391",8);for(g=function(t){for(var e,r=t.length,o=r+8,n=16*((o-o%64)/64+1),i=[],a=0,l=0;l>>29,i}(t),m=v[0],f=v[1],b=v[2],h=v[3],s=0;s>2],a+=e[(3&i[o])<<4|i[o+1]>>4],void 0!==i[o+1]?a+=e[(15&i[o+1])<<2|i[o+2]>>6]:a+="=",void 0!==i[o+2]?a+=e[63&i[o+2]]:a+="=";for(n=a.slice(0,64)+"\n",o=1;o>4,i[1]=(15&n[1])<<4|n[2]>>2,i[2]=(3&n[2])<<6|n[3],o.push(i[0],i[1],i[2]);return o.slice(0,o.length-o.length%16)},"function"==typeof Array.indexOf&&(t=e),{encode:r,decode:o});return{size:function(t){switch(t){case 128:n=10,i=4;break;case 192:n=12,i=6;break;case 256:n=14,i=8;break;default:throw"Invalid Key Size Specified:"+t}},h2a:function(t){var e=[];return t.replace(/(..)/g,(function(t){e.push(parseInt(t,16))})),e},expandKey:y,encryptBlock:m,decryptBlock:f,Decrypt:a,s2a:c,rawEncrypt:p,rawDecrypt:u,dec:function(t,e,r){var o=I.decode(t),n=o.slice(8,16),i=d(c(e,r),n),a=i.key,l=i.iv;return o=o.slice(16,o.length),u(o,a,l,r)},openSSLKey:d,a2h:function(t){var e,r="";for(e=0;e{"use strict";var o,n=(o=r(144))&&"object"==typeof o&&"default"in o?o.default:o;function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var a="undefined"!=typeof window;function l(t,e){return e.reduce((function(e,r){return t.hasOwnProperty(r)&&(e[r]=t[r]),e}),{})}var s={},c={},d={},p=new(n.extend({data:function(){return{transports:s,targets:c,sources:d,trackInstances:a}},methods:{open:function(t){if(a){var e=t.to,r=t.from,o=t.passengers,l=t.order,s=void 0===l?1/0:l;if(e&&r&&o){var c,d={to:e,from:r,passengers:(c=o,Array.isArray(c)||"object"===i(c)?Object.freeze(c):c),order:s};-1===Object.keys(this.transports).indexOf(e)&&n.set(this.transports,e,[]);var p,u=this.$_getTransportIndex(d),m=this.transports[e].slice(0);-1===u?m.push(d):m[u]=d,this.transports[e]=(p=function(t,e){return t.order-e.order},m.map((function(t,e){return[e,t]})).sort((function(t,e){return p(t[1],e[1])||t[0]-e[0]})).map((function(t){return t[1]})))}}},close:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.to,o=t.from;if(r&&(o||!1!==e)&&this.transports[r])if(e)this.transports[r]=[];else{var n=this.$_getTransportIndex(t);if(n>=0){var i=this.transports[r].slice(0);i.splice(n,1),this.transports[r]=i}}},registerTarget:function(t,e,r){a&&(this.trackInstances&&!r&&this.targets[t]&&console.warn("[portal-vue]: Target ".concat(t," already exists")),this.$set(this.targets,t,Object.freeze([e])))},unregisterTarget:function(t){this.$delete(this.targets,t)},registerSource:function(t,e,r){a&&(this.trackInstances&&!r&&this.sources[t]&&console.warn("[portal-vue]: source ".concat(t," already exists")),this.$set(this.sources,t,Object.freeze([e])))},unregisterSource:function(t){this.$delete(this.sources,t)},hasTarget:function(t){return!(!this.targets[t]||!this.targets[t][0])},hasSource:function(t){return!(!this.sources[t]||!this.sources[t][0])},hasContentFor:function(t){return!!this.transports[t]&&!!this.transports[t].length},$_getTransportIndex:function(t){var e=t.to,r=t.from;for(var o in this.transports[e])if(this.transports[e][o].from===r)return+o;return-1}}}))(s),u=1,m=n.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(u++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var t=this;this.$nextTick((function(){p.registerSource(t.name,t)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){p.unregisterSource(this.name),this.clear()},watch:{to:function(t,e){e&&e!==t&&this.clear(e),this.sendUpdate()}},methods:{clear:function(t){var e={from:this.name,to:t||this.to};p.close(e)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(t){return"function"==typeof t?t(this.slotProps):t},sendUpdate:function(){var t,e=this.normalizeSlots();if(e){var r={from:this.name,to:this.to,passengers:(t=e,function(t){if(Array.isArray(t)){for(var e=0,r=new Array(t.length);e0)},name:function(t,e){p.unregisterTarget(e),p.registerTarget(t,this)}},mounted:function(){var t=this;this.transition&&this.$nextTick((function(){t.firstRender=!1}))},beforeDestroy:function(){p.unregisterTarget(this.name)},computed:{ownTransports:function(){var t=this.transports[this.name]||[];return this.multiple?t:0===t.length?[]:[t[t.length-1]]},passengers:function(){return function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.reduce((function(t,r){var o=r.passengers[0],n="function"==typeof o?o(e):r.passengers;return t.concat(n)}),[])}(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var t=this.slim&&!this.transition;return t&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),t}},render:function(t){var e=this.noWrapper(),r=this.children(),o=this.transition||this.tag;return e?r[0]:this.slim&&!o?t():t(o,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},r)}}),b=0,h=["disabled","name","order","slim","slotProps","tag","to"],g=["multiple","transition"];n.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(b++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!=typeof document){var t=document.querySelector(this.mountTo);if(t){var e=this.$props;if(p.targets[e.name])e.bail?console.warn("[portal-vue]: Target ".concat(e.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=p.targets[e.name];else{var r=e.append;if(r){var o="string"==typeof r?r:"DIV",n=document.createElement(o);t.appendChild(n),t=n}var i=l(this.$props,g);i.slim=this.targetSlim,i.tag=this.targetTag,i.slotProps=this.targetSlotProps,i.name=this.to,this.portalTarget=new f({el:t,parent:this.$parent||this,propsData:i})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var t=this.portalTarget;if(this.append){var e=t.$el;e.parentNode.removeChild(e)}t.$destroy()},render:function(t){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),t();if(!this.$scopedSlots.manual){var e=l(this.$props,h);return t(m,{props:e,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var r=this.$scopedSlots.manual({to:this.to});return Array.isArray(r)&&(r=r[0]),r||t()}});e.h_=m,e.YC=f,e.Df=p},3379:t=>{"use strict";var e=[];function r(t){for(var r=-1,o=0;o{"use strict";var e={};t.exports=function(t,r){var o=function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(t){r=null}e[t]=r}return e[t]}(t);if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(r)}},9216:t=>{"use strict";t.exports=function(t){var e=document.createElement("style");return t.setAttributes(e,t.attributes),t.insert(e),e}},3565:(t,e,r)=>{"use strict";t.exports=function(t){var e=r.nc;e&&t.setAttribute("nonce",e)}},7795:t=>{"use strict";t.exports=function(t){var e=t.insertStyleElement(t);return{update:function(r){!function(t,e,r){var o=r.css,n=r.media,i=r.sourceMap;n?t.setAttribute("media",n):t.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleTagTransform(o,t)}(e,t,r)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},4589:t=>{"use strict";t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},144:(t,e,r)=>{"use strict";r.r(e),r.d(e,{default:()=>An});var o=Object.freeze({});function n(t){return null==t}function i(t){return null!=t}function a(t){return!0===t}function l(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function s(t){return null!==t&&"object"==typeof t}var c=Object.prototype.toString;function d(t){return"[object Object]"===c.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function u(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function m(t){return null==t?"":Array.isArray(t)||d(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function f(t){var e=parseFloat(t);return isNaN(e)?t:e}function b(t,e){for(var r=Object.create(null),o=t.split(","),n=0;n-1)return t.splice(r,1)}}var v=Object.prototype.hasOwnProperty;function x(t,e){return v.call(t,e)}function y(t){var e=Object.create(null);return function(r){return e[r]||(e[r]=t(r))}}var w=/-(\w)/g,k=y((function(t){return t.replace(w,(function(t,e){return e?e.toUpperCase():""}))})),O=y((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),j=/\B([A-Z])/g,S=y((function(t){return t.replace(j,"-$1").toLowerCase()})),P=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function r(r){var o=arguments.length;return o?o>1?t.apply(e,arguments):t.call(e,r):t.call(e)}return r._length=t.length,r};function T(t,e){e=e||0;for(var r=t.length-e,o=new Array(r);r--;)o[r]=t[r+e];return o}function _(t,e){for(var r in e)t[r]=e[r];return t}function C(t){for(var e={},r=0;r0,X=q&&q.indexOf("edge/")>0,J=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===G),Z=(q&&/chrome\/\d+/.test(q),q&&/phantomjs/.test(q),q&&q.match(/firefox\/(\d+)/)),Q={}.watch,tt=!1;if(U)try{var et={};Object.defineProperty(et,"passive",{get:function(){tt=!0}}),window.addEventListener("test-passive",null,et)}catch(t){}var rt=function(){return void 0===V&&(V=!U&&!W&&void 0!==r.g&&r.g.process&&"server"===r.g.process.env.VUE_ENV),V},ot=U&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function nt(t){return"function"==typeof t&&/native code/.test(t.toString())}var it,at="undefined"!=typeof Symbol&&nt(Symbol)&&"undefined"!=typeof Reflect&&nt(Reflect.ownKeys);it="undefined"!=typeof Set&&nt(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var lt=$,st=0,ct=function(){this.id=st++,this.subs=[]};ct.prototype.addSub=function(t){this.subs.push(t)},ct.prototype.removeSub=function(t){g(this.subs,t)},ct.prototype.depend=function(){ct.target&&ct.target.addDep(this)},ct.prototype.notify=function(){for(var t=this.subs.slice(),e=0,r=t.length;e-1)if(i&&!x(n,"default"))a=!1;else if(""===a||a===S(t)){var s=Vt(String,n.type);(s<0||l0&&(pe((o=ue(o,(e||"")+"_"+r))[0])&&pe(c)&&(d[s]=ht(c.text+o[0].text),o.shift()),d.push.apply(d,o)):l(o)?pe(c)?d[s]=ht(c.text+o):""!==o&&d.push(ht(o)):pe(o)&&pe(c)?d[s]=ht(c.text+o.text):(a(t._isVList)&&i(o.tag)&&n(o.key)&&i(e)&&(o.key="__vlist"+e+"_"+r+"__"),d.push(o)));return d}function me(t,e){if(t){for(var r=Object.create(null),o=at?Reflect.ownKeys(t):Object.keys(t),n=0;n0,a=t?!!t.$stable:!i,l=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==o&&l===r.$key&&!i&&!r.$hasNormal)return r;for(var s in n={},t)t[s]&&"$"!==s[0]&&(n[s]=ve(e,s,t[s]))}else n={};for(var c in e)c in n||(n[c]=xe(e,c));return t&&Object.isExtensible(t)&&(t._normalized=n),R(n,"$stable",a),R(n,"$key",l),R(n,"$hasNormal",i),n}function ve(t,e,r){var o=function(){var t=arguments.length?r.apply(null,arguments):r({}),e=(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:de(t))&&t[0];return t&&(!e||1===t.length&&e.isComment&&!he(e))?void 0:t};return r.proxy&&Object.defineProperty(t,e,{get:o,enumerable:!0,configurable:!0}),o}function xe(t,e){return function(){return t[e]}}function ye(t,e){var r,o,n,a,l;if(Array.isArray(t)||"string"==typeof t)for(r=new Array(t.length),o=0,n=t.length;odocument.createEvent("Event").timeStamp&&(pr=function(){return ur.now()})}function mr(){var t,e;for(dr=pr(),sr=!0,nr.sort((function(t,e){return t.id-e.id})),cr=0;crcr&&nr[r].id>t.id;)r--;nr.splice(r+1,0,t)}else nr.push(t);lr||(lr=!0,ee(mr))}}(this)},br.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||s(t)||this.deep){var e=this.value;if(this.value=t,this.user){var r='callback for watcher "'+this.expression+'"';Ht(this.cb,this.vm,[t,e],this.vm,r)}else this.cb.call(this.vm,t,e)}}},br.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},br.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},br.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var hr={enumerable:!0,configurable:!0,get:$,set:$};function gr(t,e,r){hr.get=function(){return this[e][r]},hr.set=function(t){this[e][r]=t},Object.defineProperty(t,r,hr)}var vr={lazy:!0};function xr(t,e,r){var o=!rt();"function"==typeof r?(hr.get=o?yr(e):wr(r),hr.set=$):(hr.get=r.get?o&&!1!==r.cache?yr(e):wr(r.get):$,hr.set=r.set||$),Object.defineProperty(t,e,hr)}function yr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ct.target&&e.depend(),e.value}}function wr(t){return function(){return t.call(this,this)}}function kr(t,e,r,o){return d(r)&&(o=r,r=r.handler),"string"==typeof r&&(r=t[r]),t.$watch(e,r,o)}var Or=0;function jr(t){var e=t.options;if(t.super){var r=jr(t.super);if(r!==t.superOptions){t.superOptions=r;var o=function(t){var e,r=t.options,o=t.sealedOptions;for(var n in r)r[n]!==o[n]&&(e||(e={}),e[n]=r[n]);return e}(t);o&&_(t.extendOptions,o),(e=t.options=At(r,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Sr(t){this._init(t)}function Pr(t){return t&&(t.Ctor.options.name||t.tag)}function Tr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(r=t,!("[object RegExp]"!==c.call(r))&&t.test(e));var r}function _r(t,e){var r=t.cache,o=t.keys,n=t._vnode;for(var i in r){var a=r[i];if(a){var l=a.name;l&&!e(l)&&Cr(r,i,o,n)}}}function Cr(t,e,r,o){var n=t[e];!n||o&&n.tag===o.tag||n.componentInstance.$destroy(),t[e]=null,g(r,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=Or++,e._isVue=!0,t&&t._isComponent?function(t,e){var r=t.$options=Object.create(t.constructor.options),o=e._parentVnode;r.parent=e.parent,r._parentVnode=o;var n=o.componentOptions;r.propsData=n.propsData,r._parentListeners=n.listeners,r._renderChildren=n.children,r._componentTag=n.tag,e.render&&(r.render=e.render,r.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=At(jr(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,r=e.parent;if(r&&!e.abstract){for(;r.$options.abstract&&r.$parent;)r=r.$parent;r.$children.push(t)}t.$parent=r,t.$root=r?r.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Je(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,r=t.$vnode=e._parentVnode,n=r&&r.context;t.$slots=fe(e._renderChildren,n),t.$scopedSlots=o,t._c=function(e,r,o,n){return Ne(t,e,r,o,n,!1)},t.$createElement=function(e,r,o,n){return Ne(t,e,r,o,n,!0)};var i=r&&r.data;St(t,"$attrs",i&&i.attrs||o,null,!0),St(t,"$listeners",e._parentListeners||o,null,!0)}(e),or(e,"beforeCreate"),function(t){var e=me(t.$options.inject,t);e&&(kt(!1),Object.keys(e).forEach((function(r){St(t,r,e[r])})),kt(!0))}(e),function(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var r=t.$options.propsData||{},o=t._props={},n=t.$options._propKeys=[];t.$parent&&kt(!1);var i=function(i){n.push(i);var a=Ft(i,e,r,t);St(o,i,a),i in t||gr(t,"_props",i)};for(var a in e)i(a);kt(!0)}(t,e.props),e.methods&&function(t,e){for(var r in t.$options.props,e)t[r]="function"!=typeof e[r]?$:P(e[r],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;d(e=t._data="function"==typeof e?function(t,e){pt();try{return t.call(e,e)}catch(t){return Nt(t,e,"data()"),{}}finally{ut()}}(e,t):e||{})||(e={});for(var r,o=Object.keys(e),n=t.$options.props,i=(t.$options.methods,o.length);i--;){var a=o[i];n&&x(n,a)||(r=void 0,36===(r=(a+"").charCodeAt(0))||95===r)||gr(t,"_data",a)}jt(e,!0)}(t):jt(t._data={},!0),e.computed&&function(t,e){var r=t._computedWatchers=Object.create(null),o=rt();for(var n in e){var i=e[n],a="function"==typeof i?i:i.get;o||(r[n]=new br(t,a||$,$,vr)),n in t||xr(t,n,i)}}(t,e.computed),e.watch&&e.watch!==Q&&function(t,e){for(var r in e){var o=e[r];if(Array.isArray(o))for(var n=0;n1?T(r):r;for(var o=T(arguments,1),n='event handler for "'+t+'"',i=0,a=r.length;iparseInt(this.max)&&Cr(e,r[0],r,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Cr(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){_r(t,(function(t){return Tr(e,t)}))})),this.$watch("exclude",(function(e){_r(t,(function(t){return!Tr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=qe(t),r=e&&e.componentOptions;if(r){var o=Pr(r),n=this.include,i=this.exclude;if(n&&(!o||!Tr(n,o))||i&&o&&Tr(i,o))return e;var a=this.cache,l=this.keys,s=null==e.key?r.Ctor.cid+(r.tag?"::"+r.tag:""):e.key;a[s]?(e.componentInstance=a[s].componentInstance,g(l,s),l.push(s)):(this.vnodeToCache=e,this.keyToCache=s),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return M}};Object.defineProperty(t,"config",e),t.util={warn:lt,extend:_,mergeOptions:At,defineReactive:St},t.set=Pt,t.delete=Tt,t.nextTick=ee,t.observable=function(t){return jt(t),t},t.options=Object.create(null),F.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,_(t.options.components,Dr),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var r=T(arguments,1);return r.unshift(this),"function"==typeof t.install?t.install.apply(t,r):"function"==typeof t&&t.apply(null,r),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=At(this.options,t),this}}(t),function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var r=this,o=r.cid,n=t._Ctor||(t._Ctor={});if(n[o])return n[o];var i=t.name||r.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(r.prototype)).constructor=a,a.cid=e++,a.options=At(r.options,t),a.super=r,a.options.props&&function(t){var e=t.options.props;for(var r in e)gr(t.prototype,"_props",r)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var r in e)xr(t.prototype,r,e[r])}(a),a.extend=r.extend,a.mixin=r.mixin,a.use=r.use,F.forEach((function(t){a[t]=r[t]})),i&&(a.options.components[i]=a),a.superOptions=r.options,a.extendOptions=t,a.sealedOptions=_({},a.options),n[o]=a,a}}(t),function(t){F.forEach((function(e){t[e]=function(t,r){return r?("component"===e&&d(r)&&(r.name=r.name||t,r=this.options._base.extend(r)),"directive"===e&&"function"==typeof r&&(r={bind:r,update:r}),this.options[e+"s"][t]=r,r):this.options[e+"s"][t]}}))}(t)}(Sr),Object.defineProperty(Sr.prototype,"$isServer",{get:rt}),Object.defineProperty(Sr.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Sr,"FunctionalRenderContext",{value:Ae}),Sr.version="2.6.14";var Er=b("style,class"),zr=b("input,textarea,option,select,progress"),Br=b("contenteditable,draggable,spellcheck"),Ar=b("events,caret,typing,plaintext-only"),Ir=b("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Fr="http://www.w3.org/1999/xlink",Lr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Mr=function(t){return Lr(t)?t.slice(6,t.length):""},Rr=function(t){return null==t||!1===t};function Vr(t,e){return{staticClass:Nr(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Nr(t,e){return t?e?t+" "+e:t:e||""}function Hr(t){return Array.isArray(t)?function(t){for(var e,r="",o=0,n=t.length;o-1?mo(t,e,r):Ir(e)?Rr(r)?t.removeAttribute(e):(r="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,r)):Br(e)?t.setAttribute(e,function(t,e){return Rr(e)||"false"===e?"false":"contenteditable"===t&&Ar(e)?e:"true"}(e,r)):Lr(e)?Rr(r)?t.removeAttributeNS(Fr,Mr(e)):t.setAttributeNS(Fr,e,r):mo(t,e,r)}function mo(t,e,r){if(Rr(r))t.removeAttribute(e);else{if(Y&&!K&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==r&&!t.__ieph){var o=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",o)};t.addEventListener("input",o),t.__ieph=!0}t.setAttribute(e,r)}}var fo={create:po,update:po};function bo(t,e){var r=e.elm,o=e.data,a=t.data;if(!(n(o.staticClass)&&n(o.class)&&(n(a)||n(a.staticClass)&&n(a.class)))){var l=function(t){for(var e=t.data,r=t,o=t;i(o.componentInstance);)(o=o.componentInstance._vnode)&&o.data&&(e=Vr(o.data,e));for(;i(r=r.parent);)r&&r.data&&(e=Vr(e,r.data));return n=e.staticClass,a=e.class,i(n)||i(a)?Nr(n,Hr(a)):"";var n,a}(e),s=r._transitionClasses;i(s)&&(l=Nr(l,Hr(s))),l!==r._prevClass&&(r.setAttribute("class",l),r._prevClass=l)}}var ho,go={create:bo,update:bo};function vo(t,e,r){var o=ho;return function n(){var i=e.apply(null,arguments);null!==i&&wo(t,n,r,o)}}var xo=qt&&!(Z&&Number(Z[1])<=53);function yo(t,e,r,o){if(xo){var n=dr,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=n||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}ho.addEventListener(t,e,tt?{capture:r,passive:o}:r)}function wo(t,e,r,o){(o||ho).removeEventListener(t,e._wrapper||e,r)}function ko(t,e){if(!n(t.data.on)||!n(e.data.on)){var r=e.data.on||{},o=t.data.on||{};ho=e.elm,function(t){if(i(t.__r)){var e=Y?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}i(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(r),le(r,o,yo,wo,vo,e.context),ho=void 0}}var Oo,jo={create:ko,update:ko};function So(t,e){if(!n(t.data.domProps)||!n(e.data.domProps)){var r,o,a=e.elm,l=t.data.domProps||{},s=e.data.domProps||{};for(r in i(s.__ob__)&&(s=e.data.domProps=_({},s)),l)r in s||(a[r]="");for(r in s){if(o=s[r],"textContent"===r||"innerHTML"===r){if(e.children&&(e.children.length=0),o===l[r])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===r&&"PROGRESS"!==a.tagName){a._value=o;var c=n(o)?"":String(o);Po(a,c)&&(a.value=c)}else if("innerHTML"===r&&Gr(a.tagName)&&n(a.innerHTML)){(Oo=Oo||document.createElement("div")).innerHTML=""+o+"";for(var d=Oo.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;d.firstChild;)a.appendChild(d.firstChild)}else if(o!==l[r])try{a[r]=o}catch(t){}}}}function Po(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var r=!0;try{r=document.activeElement!==t}catch(t){}return r&&t.value!==e}(t,e)||function(t,e){var r=t.value,o=t._vModifiers;if(i(o)){if(o.number)return f(r)!==f(e);if(o.trim)return r.trim()!==e.trim()}return r!==e}(t,e))}var To={create:So,update:So},_o=y((function(t){var e={},r=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var o=t.split(r);o.length>1&&(e[o[0].trim()]=o[1].trim())}})),e}));function Co(t){var e=$o(t.style);return t.staticStyle?_(t.staticStyle,e):e}function $o(t){return Array.isArray(t)?C(t):"string"==typeof t?_o(t):t}var Do,Eo=/^--/,zo=/\s*!important$/,Bo=function(t,e,r){if(Eo.test(e))t.style.setProperty(e,r);else if(zo.test(r))t.style.setProperty(S(e),r.replace(zo,""),"important");else{var o=Io(e);if(Array.isArray(r))for(var n=0,i=r.length;n-1?e.split(Mo).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var r=" "+(t.getAttribute("class")||"")+" ";r.indexOf(" "+e+" ")<0&&t.setAttribute("class",(r+e).trim())}}function Vo(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Mo).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var r=" "+(t.getAttribute("class")||"")+" ",o=" "+e+" ";r.indexOf(o)>=0;)r=r.replace(o," ");(r=r.trim())?t.setAttribute("class",r):t.removeAttribute("class")}}function No(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&_(e,Ho(t.name||"v")),_(e,t),e}return"string"==typeof t?Ho(t):void 0}}var Ho=y((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Uo=U&&!K,Wo="transition",Go="animation",qo="transition",Yo="transitionend",Ko="animation",Xo="animationend";Uo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(qo="WebkitTransition",Yo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ko="WebkitAnimation",Xo="webkitAnimationEnd"));var Jo=U?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Zo(t){Jo((function(){Jo(t)}))}function Qo(t,e){var r=t._transitionClasses||(t._transitionClasses=[]);r.indexOf(e)<0&&(r.push(e),Ro(t,e))}function tn(t,e){t._transitionClasses&&g(t._transitionClasses,e),Vo(t,e)}function en(t,e,r){var o=on(t,e),n=o.type,i=o.timeout,a=o.propCount;if(!n)return r();var l=n===Wo?Yo:Xo,s=0,c=function(){t.removeEventListener(l,d),r()},d=function(e){e.target===t&&++s>=a&&c()};setTimeout((function(){s0&&(r=Wo,d=a,p=i.length):e===Go?c>0&&(r=Go,d=c,p=s.length):p=(r=(d=Math.max(a,c))>0?a>c?Wo:Go:null)?r===Wo?i.length:s.length:0,{type:r,timeout:d,propCount:p,hasTransform:r===Wo&&rn.test(o[qo+"Property"])}}function nn(t,e){for(;t.length1}function pn(t,e){!0!==e.data.show&&ln(e)}var un=function(t){var e,r,o={},s=t.modules,c=t.nodeOps;for(e=0;ef?x(t,n(r[g+1])?null:r[g+1].elm,r,m,g,o):m>g&&w(e,u,f)}(u,b,g,r,d):i(g)?(i(t.text)&&c.setTextContent(u,""),x(u,null,g,0,g.length-1,r)):i(b)?w(b,0,b.length-1):i(t.text)&&c.setTextContent(u,""):t.text!==e.text&&c.setTextContent(u,e.text),i(f)&&i(m=f.hook)&&i(m=m.postpatch)&&m(t,e)}}}function S(t,e,r){if(a(r)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var o=0;o-1,a.selected!==i&&(a.selected=i);else if(z(gn(a),o))return void(t.selectedIndex!==l&&(t.selectedIndex=l));n||(t.selectedIndex=-1)}}function hn(t,e){return e.every((function(e){return!z(e,t)}))}function gn(t){return"_value"in t?t._value:t.value}function vn(t){t.target.composing=!0}function xn(t){t.target.composing&&(t.target.composing=!1,yn(t.target,"input"))}function yn(t,e){var r=document.createEvent("HTMLEvents");r.initEvent(e,!0,!0),t.dispatchEvent(r)}function wn(t){return!t.componentInstance||t.data&&t.data.transition?t:wn(t.componentInstance._vnode)}var kn={model:mn,show:{bind:function(t,e,r){var o=e.value,n=(r=wn(r)).data&&r.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;o&&n?(r.data.show=!0,ln(r,(function(){t.style.display=i}))):t.style.display=o?i:"none"},update:function(t,e,r){var o=e.value;!o!=!e.oldValue&&((r=wn(r)).data&&r.data.transition?(r.data.show=!0,o?ln(r,(function(){t.style.display=t.__vOriginalDisplay})):sn(r,(function(){t.style.display="none"}))):t.style.display=o?t.__vOriginalDisplay:"none")},unbind:function(t,e,r,o,n){n||(t.style.display=t.__vOriginalDisplay)}}},On={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function jn(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?jn(qe(e.children)):t}function Sn(t){var e={},r=t.$options;for(var o in r.propsData)e[o]=t[o];var n=r._parentListeners;for(var i in n)e[k(i)]=n[i];return e}function Pn(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Tn=function(t){return t.tag||he(t)},_n=function(t){return"show"===t.name},Cn={name:"transition",props:On,abstract:!0,render:function(t){var e=this,r=this.$slots.default;if(r&&(r=r.filter(Tn)).length){var o=this.mode,n=r[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return n;var i=jn(n);if(!i)return n;if(this._leaving)return Pn(t,n);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:l(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var s=(i.data||(i.data={})).transition=Sn(this),c=this._vnode,d=jn(c);if(i.data.directives&&i.data.directives.some(_n)&&(i.data.show=!0),d&&d.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,d)&&!he(d)&&(!d.componentInstance||!d.componentInstance._vnode.isComment)){var p=d.data.transition=_({},s);if("out-in"===o)return this._leaving=!0,se(p,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),Pn(t,n);if("in-out"===o){if(he(i))return c;var u,m=function(){u()};se(s,"afterEnter",m),se(s,"enterCancelled",m),se(p,"delayLeave",(function(t){u=t}))}}return n}}},$n=_({tag:String,moveClass:String},On);function Dn(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function En(t){t.data.newPos=t.elm.getBoundingClientRect()}function zn(t){var e=t.data.pos,r=t.data.newPos,o=e.left-r.left,n=e.top-r.top;if(o||n){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+o+"px,"+n+"px)",i.transitionDuration="0s"}}delete $n.mode;var Bn={Transition:Cn,TransitionGroup:{props:$n,beforeMount:function(){var t=this,e=this._update;this._update=function(r,o){var n=Qe(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,n(),e.call(t,r,o)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",r=Object.create(null),o=this.prevChildren=this.children,n=this.$slots.default||[],i=this.children=[],a=Sn(this),l=0;l-1?Yr[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Yr[t]=/HTMLUnknownElement/.test(e.toString())},_(Sr.options.directives,kn),_(Sr.options.components,Bn),Sr.prototype.__patch__=U?un:$,Sr.prototype.$mount=function(t,e){return function(t,e,r){var o;return t.$el=e,t.$options.render||(t.$options.render=bt),or(t,"beforeMount"),o=function(){t._update(t._render(),r)},new br(t,o,$,{before:function(){t._isMounted&&!t._isDestroyed&&or(t,"beforeUpdate")}},!0),r=!1,null==t.$vnode&&(t._isMounted=!0,or(t,"mounted")),t}(this,t=t&&U?function(t){return"string"==typeof t?document.querySelector(t)||document.createElement("div"):t}(t):void 0,e)},U&&setTimeout((function(){M.devtools&&ot&&ot.emit("init",Sr)}),0);const An=Sr},9700:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z%27/%3e%3c/svg%3e"},4104:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z%27/%3e%3c/svg%3e"},9566:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},2952:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},6803:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},8776:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},134:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},9052:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},1024:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e"},8624:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23e74c3c%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23e74c3c%27 stroke=%27none%27/%3e%3c/svg%3e"},7263:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e"},9859:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},1380:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280, 0, 0, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},9242:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},4231:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%274%27 viewBox=%270 0 4 4%27%3e%3cpath stroke=%27%23fff%27 d=%27M0 2h4%27/%3e%3c/svg%3e"},4576:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e"},1387:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2318bc9c%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},7211:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2328a745%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},9653:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23fff%27 d=%27M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z%27/%3e%3c/svg%3e"},8593:t=>{"use strict";t.exports=JSON.parse('{"name":"axios","version":"0.21.4","description":"Promise based HTTP client for the browser and node.js","main":"index.js","scripts":{"test":"grunt test","start":"node ./sandbox/server.js","build":"NODE_ENV=production grunt build","preversion":"npm test","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","postversion":"git push && git push --tags","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","fix":"eslint --fix lib/**/*.js"},"repository":{"type":"git","url":"https://github.com/axios/axios.git"},"keywords":["xhr","http","ajax","promise","node"],"author":"Matt Zabriskie","license":"MIT","bugs":{"url":"https://github.com/axios/axios/issues"},"homepage":"https://axios-http.com","devDependencies":{"coveralls":"^3.0.0","es6-promise":"^4.2.4","grunt":"^1.3.0","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^23.0.0","grunt-karma":"^4.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^4.0.2","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1","karma":"^6.3.2","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.8","karma-webpack":"^4.0.2","load-grunt-tasks":"^3.5.2","minimist":"^1.2.0","mocha":"^8.2.1","sinon":"^4.5.0","terser-webpack-plugin":"^4.2.3","typescript":"^4.0.5","url-search-params":"^0.10.0","webpack":"^4.44.2","webpack-dev-server":"^3.11.0"},"browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"jsdelivr":"dist/axios.min.js","unpkg":"dist/axios.min.js","typings":"./index.d.ts","dependencies":{"follow-redirects":"^1.14.0"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}]}')}},e={};function r(o){var n=e[o];if(void 0!==n)return n.exports;var i=e[o]={id:o,exports:{}};return t[o].call(i.exports,i,i.exports,r),i.exports}r.m=t,r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.b=document.baseURI||self.location.href,r(6438)})(); \ No newline at end of file +(()=>{var t={9669:(t,o,e)=>{t.exports=e(1609)},5448:(t,o,e)=>{"use strict";var r=e(4867),i=e(6026),n=e(4372),a=e(5327),l=e(4097),d=e(4109),s=e(7985),m=e(5061);t.exports=function(t){return new Promise((function(o,e){var c=t.data,p=t.headers,u=t.responseType;r.isFormData(c)&&delete p["Content-Type"];var f=new XMLHttpRequest;if(t.auth){var b=t.auth.username||"",g=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";p.Authorization="Basic "+btoa(b+":"+g)}var h=l(t.baseURL,t.url);function v(){if(f){var r="getAllResponseHeaders"in f?d(f.getAllResponseHeaders()):null,n={data:u&&"text"!==u&&"json"!==u?f.response:f.responseText,status:f.status,statusText:f.statusText,headers:r,config:t,request:f};i(o,e,n),f=null}}if(f.open(t.method.toUpperCase(),a(h,t.params,t.paramsSerializer),!0),f.timeout=t.timeout,"onloadend"in f?f.onloadend=v:f.onreadystatechange=function(){f&&4===f.readyState&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))&&setTimeout(v)},f.onabort=function(){f&&(e(m("Request aborted",t,"ECONNABORTED",f)),f=null)},f.onerror=function(){e(m("Network Error",t,null,f)),f=null},f.ontimeout=function(){var o="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(o=t.timeoutErrorMessage),e(m(o,t,t.transitional&&t.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",f)),f=null},r.isStandardBrowserEnv()){var x=(t.withCredentials||s(h))&&t.xsrfCookieName?n.read(t.xsrfCookieName):void 0;x&&(p[t.xsrfHeaderName]=x)}"setRequestHeader"in f&&r.forEach(p,(function(t,o){void 0===c&&"content-type"===o.toLowerCase()?delete p[o]:f.setRequestHeader(o,t)})),r.isUndefined(t.withCredentials)||(f.withCredentials=!!t.withCredentials),u&&"json"!==u&&(f.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&f.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then((function(t){f&&(f.abort(),e(t),f=null)})),c||(c=null),f.send(c)}))}},1609:(t,o,e)=>{"use strict";var r=e(4867),i=e(1849),n=e(321),a=e(7185);function l(t){var o=new n(t),e=i(n.prototype.request,o);return r.extend(e,n.prototype,o),r.extend(e,o),e}var d=l(e(5655));d.Axios=n,d.create=function(t){return l(a(d.defaults,t))},d.Cancel=e(5263),d.CancelToken=e(4972),d.isCancel=e(6502),d.all=function(t){return Promise.all(t)},d.spread=e(8713),d.isAxiosError=e(6268),t.exports=d,t.exports.default=d},5263:t=>{"use strict";function o(t){this.message=t}o.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},o.prototype.__CANCEL__=!0,t.exports=o},4972:(t,o,e)=>{"use strict";var r=e(5263);function i(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var o;this.promise=new Promise((function(t){o=t}));var e=this;t((function(t){e.reason||(e.reason=new r(t),o(e.reason))}))}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i((function(o){t=o})),cancel:t}},t.exports=i},6502:t=>{"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},321:(t,o,e)=>{"use strict";var r=e(4867),i=e(5327),n=e(782),a=e(3572),l=e(7185),d=e(4875),s=d.validators;function m(t){this.defaults=t,this.interceptors={request:new n,response:new n}}m.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=l(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var o=t.transitional;void 0!==o&&d.assertOptions(o,{silentJSONParsing:s.transitional(s.boolean,"1.0.0"),forcedJSONParsing:s.transitional(s.boolean,"1.0.0"),clarifyTimeoutError:s.transitional(s.boolean,"1.0.0")},!1);var e=[],r=!0;this.interceptors.request.forEach((function(o){"function"==typeof o.runWhen&&!1===o.runWhen(t)||(r=r&&o.synchronous,e.unshift(o.fulfilled,o.rejected))}));var i,n=[];if(this.interceptors.response.forEach((function(t){n.push(t.fulfilled,t.rejected)})),!r){var m=[a,void 0];for(Array.prototype.unshift.apply(m,e),m=m.concat(n),i=Promise.resolve(t);m.length;)i=i.then(m.shift(),m.shift());return i}for(var c=t;e.length;){var p=e.shift(),u=e.shift();try{c=p(c)}catch(t){u(t);break}}try{i=a(c)}catch(t){return Promise.reject(t)}for(;n.length;)i=i.then(n.shift(),n.shift());return i},m.prototype.getUri=function(t){return t=l(this.defaults,t),i(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){m.prototype[t]=function(o,e){return this.request(l(e||{},{method:t,url:o,data:(e||{}).data}))}})),r.forEach(["post","put","patch"],(function(t){m.prototype[t]=function(o,e,r){return this.request(l(r||{},{method:t,url:o,data:e}))}})),t.exports=m},782:(t,o,e)=>{"use strict";var r=e(4867);function i(){this.handlers=[]}i.prototype.use=function(t,o,e){return this.handlers.push({fulfilled:t,rejected:o,synchronous:!!e&&e.synchronous,runWhen:e?e.runWhen:null}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){r.forEach(this.handlers,(function(o){null!==o&&t(o)}))},t.exports=i},4097:(t,o,e)=>{"use strict";var r=e(1793),i=e(7303);t.exports=function(t,o){return t&&!r(o)?i(t,o):o}},5061:(t,o,e)=>{"use strict";var r=e(481);t.exports=function(t,o,e,i,n){var a=new Error(t);return r(a,o,e,i,n)}},3572:(t,o,e)=>{"use strict";var r=e(4867),i=e(8527),n=e(6502),a=e(5655);function l(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return l(t),t.headers=t.headers||{},t.data=i.call(t,t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(o){delete t.headers[o]})),(t.adapter||a.adapter)(t).then((function(o){return l(t),o.data=i.call(t,o.data,o.headers,t.transformResponse),o}),(function(o){return n(o)||(l(t),o&&o.response&&(o.response.data=i.call(t,o.response.data,o.response.headers,t.transformResponse))),Promise.reject(o)}))}},481:t=>{"use strict";t.exports=function(t,o,e,r,i){return t.config=o,e&&(t.code=e),t.request=r,t.response=i,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},7185:(t,o,e)=>{"use strict";var r=e(4867);t.exports=function(t,o){o=o||{};var e={},i=["url","method","data"],n=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],l=["validateStatus"];function d(t,o){return r.isPlainObject(t)&&r.isPlainObject(o)?r.merge(t,o):r.isPlainObject(o)?r.merge({},o):r.isArray(o)?o.slice():o}function s(i){r.isUndefined(o[i])?r.isUndefined(t[i])||(e[i]=d(void 0,t[i])):e[i]=d(t[i],o[i])}r.forEach(i,(function(t){r.isUndefined(o[t])||(e[t]=d(void 0,o[t]))})),r.forEach(n,s),r.forEach(a,(function(i){r.isUndefined(o[i])?r.isUndefined(t[i])||(e[i]=d(void 0,t[i])):e[i]=d(void 0,o[i])})),r.forEach(l,(function(r){r in o?e[r]=d(t[r],o[r]):r in t&&(e[r]=d(void 0,t[r]))}));var m=i.concat(n).concat(a).concat(l),c=Object.keys(t).concat(Object.keys(o)).filter((function(t){return-1===m.indexOf(t)}));return r.forEach(c,s),e}},6026:(t,o,e)=>{"use strict";var r=e(5061);t.exports=function(t,o,e){var i=e.config.validateStatus;e.status&&i&&!i(e.status)?o(r("Request failed with status code "+e.status,e.config,null,e.request,e)):t(e)}},8527:(t,o,e)=>{"use strict";var r=e(4867),i=e(5655);t.exports=function(t,o,e){var n=this||i;return r.forEach(e,(function(e){t=e.call(n,t,o)})),t}},5655:(t,o,e)=>{"use strict";var r=e(4867),i=e(6016),n=e(481),a={"Content-Type":"application/x-www-form-urlencoded"};function l(t,o){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=o)}var d,s={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process))&&(d=e(5448)),d),transformRequest:[function(t,o){return i(o,"Accept"),i(o,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(l(o,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)||o&&"application/json"===o["Content-Type"]?(l(o,"application/json"),function(t,o,e){if(r.isString(t))try{return(0,JSON.parse)(t),r.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(0,JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var o=this.transitional,e=o&&o.silentJSONParsing,i=o&&o.forcedJSONParsing,a=!e&&"json"===this.responseType;if(a||i&&r.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(a){if("SyntaxError"===t.name)throw n(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],(function(t){s.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){s.headers[t]=r.merge(a)})),t.exports=s},1849:t=>{"use strict";t.exports=function(t,o){return function(){for(var e=new Array(arguments.length),r=0;r{"use strict";var r=e(4867);function i(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,o,e){if(!o)return t;var n;if(e)n=e(o);else if(r.isURLSearchParams(o))n=o.toString();else{var a=[];r.forEach(o,(function(t,o){null!=t&&(r.isArray(t)?o+="[]":t=[t],r.forEach(t,(function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(i(o)+"="+i(t))})))})),n=a.join("&")}if(n){var l=t.indexOf("#");-1!==l&&(t=t.slice(0,l)),t+=(-1===t.indexOf("?")?"?":"&")+n}return t}},7303:t=>{"use strict";t.exports=function(t,o){return o?t.replace(/\/+$/,"")+"/"+o.replace(/^\/+/,""):t}},4372:(t,o,e)=>{"use strict";var r=e(4867);t.exports=r.isStandardBrowserEnv()?{write:function(t,o,e,i,n,a){var l=[];l.push(t+"="+encodeURIComponent(o)),r.isNumber(e)&&l.push("expires="+new Date(e).toGMTString()),r.isString(i)&&l.push("path="+i),r.isString(n)&&l.push("domain="+n),!0===a&&l.push("secure"),document.cookie=l.join("; ")},read:function(t){var o=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return o?decodeURIComponent(o[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},1793:t=>{"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},6268:t=>{"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},7985:(t,o,e)=>{"use strict";var r=e(4867);t.exports=r.isStandardBrowserEnv()?function(){var t,o=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");function i(t){var r=t;return o&&(e.setAttribute("href",r),r=e.href),e.setAttribute("href",r),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:"/"===e.pathname.charAt(0)?e.pathname:"/"+e.pathname}}return t=i(window.location.href),function(o){var e=r.isString(o)?i(o):o;return e.protocol===t.protocol&&e.host===t.host}}():function(){return!0}},6016:(t,o,e)=>{"use strict";var r=e(4867);t.exports=function(t,o){r.forEach(t,(function(e,r){r!==o&&r.toUpperCase()===o.toUpperCase()&&(t[o]=e,delete t[r])}))}},4109:(t,o,e)=>{"use strict";var r=e(4867),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var o,e,n,a={};return t?(r.forEach(t.split("\n"),(function(t){if(n=t.indexOf(":"),o=r.trim(t.substr(0,n)).toLowerCase(),e=r.trim(t.substr(n+1)),o){if(a[o]&&i.indexOf(o)>=0)return;a[o]="set-cookie"===o?(a[o]?a[o]:[]).concat([e]):a[o]?a[o]+", "+e:e}})),a):a}},8713:t=>{"use strict";t.exports=function(t){return function(o){return t.apply(null,o)}}},4875:(t,o,e)=>{"use strict";var r=e(8593),i={};["object","boolean","number","function","string","symbol"].forEach((function(t,o){i[t]=function(e){return typeof e===t||"a"+(o<1?"n ":" ")+t}}));var n={},a=r.version.split(".");function l(t,o){for(var e=o?o.split("."):a,r=t.split("."),i=0;i<3;i++){if(e[i]>r[i])return!0;if(e[i]0;){var n=r[i],a=o[n];if(a){var l=t[n],d=void 0===l||a(l,n,t);if(!0!==d)throw new TypeError("option "+n+" must be "+d)}else if(!0!==e)throw Error("Unknown option "+n)}},validators:i}},4867:(t,o,e)=>{"use strict";var r=e(1849),i=Object.prototype.toString;function n(t){return"[object Array]"===i.call(t)}function a(t){return void 0===t}function l(t){return null!==t&&"object"==typeof t}function d(t){if("[object Object]"!==i.call(t))return!1;var o=Object.getPrototypeOf(t);return null===o||o===Object.prototype}function s(t){return"[object Function]"===i.call(t)}function m(t,o){if(null!=t)if("object"!=typeof t&&(t=[t]),n(t))for(var e=0,r=t.length;e{"use strict";var r=e(144),i=["compactDisplay","currency","currencyDisplay","currencySign","localeMatcher","notation","numberingSystem","signDisplay","style","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits"];function n(t,o){"undefined"!=typeof console&&(console.warn("[vue-i18n] "+t),o&&console.warn(o.stack))}var a=Array.isArray;function l(t){return null!==t&&"object"==typeof t}function d(t){return"string"==typeof t}var s=Object.prototype.toString;function m(t){return"[object Object]"===s.call(t)}function c(t){return null==t}function p(t){return"function"==typeof t}function u(){for(var t=[],o=arguments.length;o--;)t[o]=arguments[o];var e=null,r=null;return 1===t.length?l(t[0])||a(t[0])?r=t[0]:"string"==typeof t[0]&&(e=t[0]):2===t.length&&("string"==typeof t[0]&&(e=t[0]),(l(t[1])||a(t[1]))&&(r=t[1])),{locale:e,params:r}}function f(t){return JSON.parse(JSON.stringify(t))}function b(t,o){return!!~t.indexOf(o)}var g=Object.prototype.hasOwnProperty;function h(t,o){return g.call(t,o)}function v(t){for(var o=arguments,e=Object(t),r=1;r/g,">").replace(/"/g,""").replace(/'/g,"'"))})),t}var w={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof X){if(t.__i18n)try{var o=t.i18n&&t.i18n.messages?t.i18n.messages:{};t.__i18n.forEach((function(t){o=v(o,JSON.parse(t))})),Object.keys(o).forEach((function(e){t.i18n.mergeLocaleMessage(e,o[e])}))}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData()}else if(m(t.i18n)){var e=this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof X?this.$root.$i18n:null;if(e&&(t.i18n.root=this.$root,t.i18n.formatter=e.formatter,t.i18n.fallbackLocale=e.fallbackLocale,t.i18n.formatFallbackMessages=e.formatFallbackMessages,t.i18n.silentTranslationWarn=e.silentTranslationWarn,t.i18n.silentFallbackWarn=e.silentFallbackWarn,t.i18n.pluralizationRules=e.pluralizationRules,t.i18n.preserveDirectiveContent=e.preserveDirectiveContent),t.__i18n)try{var r=t.i18n&&t.i18n.messages?t.i18n.messages:{};t.__i18n.forEach((function(t){r=v(r,JSON.parse(t))})),t.i18n.messages=r}catch(t){}var i=t.i18n.sharedMessages;i&&m(i)&&(t.i18n.messages=v(t.i18n.messages,i)),this._i18n=new X(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale()),e&&e.onComponentInstanceCreated(this._i18n)}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof X?this._i18n=this.$root.$i18n:t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof X&&(this._i18n=t.parent.$i18n)},beforeMount:function(){var t=this.$options;t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n?(t.i18n instanceof X||m(t.i18n))&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0):(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof X||t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof X)&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0)},mounted:function(){this!==this.$root&&this.$options.__INTLIFY_META__&&this.$el&&this.$el.setAttribute("data-intlify",this.$options.__INTLIFY_META__)},beforeDestroy:function(){if(this._i18n){var t=this;this.$nextTick((function(){t._subscribing&&(t._i18n.unsubscribeDataChanging(t),delete t._subscribing),t._i18nWatcher&&(t._i18nWatcher(),t._i18n.destroyVM(),delete t._i18nWatcher),t._localeWatcher&&(t._localeWatcher(),delete t._localeWatcher)}))}}},y={name:"i18n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,o){var e=o.data,r=o.parent,i=o.props,n=o.slots,a=r.$i18n;if(a){var l=i.path,d=i.locale,s=i.places,m=n(),c=a.i(l,d,function(t){var o;for(o in t)if("default"!==o)return!1;return Boolean(o)}(m)||s?function(t,o){var e=o?function(t){return Array.isArray(t)?t.reduce(j,{}):Object.assign({},t)}(o):{};if(!t)return e;var r=(t=t.filter((function(t){return t.tag||""!==t.text.trim()}))).every(S);return t.reduce(r?O:j,e)}(m.default,s):m),p=i.tag&&!0!==i.tag||!1===i.tag?i.tag:"span";return p?t(p,e,c):c}}};function O(t,o){return o.data&&o.data.attrs&&o.data.attrs.place&&(t[o.data.attrs.place]=o),t}function j(t,o,e){return t[e]=o,t}function S(t){return Boolean(t.data&&t.data.attrs&&t.data.attrs.place)}var P,T={name:"i18n-n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},value:{type:Number,required:!0},format:{type:[String,Object]},locale:{type:String}},render:function(t,o){var e=o.props,r=o.parent,n=o.data,a=r.$i18n;if(!a)return null;var s=null,m=null;d(e.format)?s=e.format:l(e.format)&&(e.format.key&&(s=e.format.key),m=Object.keys(e.format).reduce((function(t,o){var r;return b(i,o)?Object.assign({},t,((r={})[o]=e.format[o],r)):t}),null));var c=e.locale||a.locale,p=a._ntp(e.value,c,s,m),u=p.map((function(t,o){var e,r=n.scopedSlots&&n.scopedSlots[t.type];return r?r(((e={})[t.type]=t.value,e.index=o,e.parts=p,e)):t.value})),f=e.tag&&!0!==e.tag||!1===e.tag?e.tag:"span";return f?t(f,{attrs:n.attrs,class:n.class,staticClass:n.staticClass},u):u}};function _(t,o,e){D(0,e)&&z(t,o,e)}function C(t,o,e,r){if(D(0,e)){var i=e.context.$i18n;(function(t,o){var e=o.context;return t._locale===e.$i18n.locale})(t,e)&&x(o.value,o.oldValue)&&x(t._localeMessage,i.getLocaleMessage(i.locale))||z(t,o,e)}}function $(t,o,e,r){if(e.context){var i=e.context.$i18n||{};o.modifiers.preserve||i.preserveDirectiveContent||(t.textContent=""),t._vt=void 0,delete t._vt,t._locale=void 0,delete t._locale,t._localeMessage=void 0,delete t._localeMessage}else n("Vue instance does not exists in VNode context")}function D(t,o){var e=o.context;return e?!!e.$i18n||(n("VueI18n instance does not exists in Vue instance"),!1):(n("Vue instance does not exists in VNode context"),!1)}function z(t,o,e){var r,i,a=function(t){var o,e,r,i;return d(t)?o=t:m(t)&&(o=t.path,e=t.locale,r=t.args,i=t.choice),{path:o,locale:e,args:r,choice:i}}(o.value),l=a.path,s=a.locale,c=a.args,p=a.choice;if(l||s||c)if(l){var u=e.context;t._vt=t.textContent=null!=p?(r=u.$i18n).tc.apply(r,[l,p].concat(E(s,c))):(i=u.$i18n).t.apply(i,[l].concat(E(s,c))),t._locale=u.$i18n.locale,t._localeMessage=u.$i18n.getLocaleMessage(u.$i18n.locale)}else n("`path` is required in v-t directive");else n("value type not supported")}function E(t,o){var e=[];return t&&e.push(t),o&&(Array.isArray(o)||m(o))&&e.push(o),e}function B(t){B.installed=!0,(P=t).version&&Number(P.version.split(".")[0]),function(t){t.prototype.hasOwnProperty("$i18n")||Object.defineProperty(t.prototype,"$i18n",{get:function(){return this._i18n}}),t.prototype.$t=function(t){for(var o=[],e=arguments.length-1;e-- >0;)o[e]=arguments[e+1];var r=this.$i18n;return r._t.apply(r,[t,r.locale,r._getMessages(),this].concat(o))},t.prototype.$tc=function(t,o){for(var e=[],r=arguments.length-2;r-- >0;)e[r]=arguments[r+2];var i=this.$i18n;return i._tc.apply(i,[t,i.locale,i._getMessages(),this,o].concat(e))},t.prototype.$te=function(t,o){var e=this.$i18n;return e._te(t,e.locale,e._getMessages(),o)},t.prototype.$d=function(t){for(var o,e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return(o=this.$i18n).d.apply(o,[t].concat(e))},t.prototype.$n=function(t){for(var o,e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return(o=this.$i18n).n.apply(o,[t].concat(e))}}(P),P.mixin(w),P.directive("t",{bind:_,update:C,unbind:$}),P.component(y.name,y),P.component(T.name,T),P.config.optionMergeStrategies.i18n=function(t,o){return void 0===o?t:o}}var A=function(){this._caches=Object.create(null)};A.prototype.interpolate=function(t,o){if(!o)return[t];var e=this._caches[t];return e||(e=function(t){for(var o=[],e=0,r="";e0)c--,m=4,p[0]();else{if(c=0,void 0===e)return!1;if(!1===(e=function(t){var o,e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(o=e,M.test(o)?function(t){var o=t.charCodeAt(0);return o!==t.charCodeAt(t.length-1)||34!==o&&39!==o?t:t.slice(1,-1)}(e):"*"+e)}(e)))return!1;p[1]()}};null!==m;)if(s++,"\\"!==(o=t[s])||!u()){if(i=R(o),8===(n=(l=L[m])[i]||l.else||8))return;if(m=n[0],(a=p[n[1]])&&(r=void 0===(r=n[2])?o:r,!1===a()))return;if(7===m)return d}}(t))&&(this._cache[t]=o),o||[]},V.prototype.getPathValue=function(t,o){if(!l(t))return null;var e=this.parsePath(o);if(0===e.length)return null;for(var r=e.length,i=t,n=0;n/,U=/(?:@(?:\.[a-z]+)?:(?:[\w\-_|.]+|\([\w\-_|.]+\)))/g,W=/^@(?:\.([a-z]+))?:/,G=/[()]/g,q={upper:function(t){return t.toLocaleUpperCase()},lower:function(t){return t.toLocaleLowerCase()},capitalize:function(t){return""+t.charAt(0).toLocaleUpperCase()+t.substr(1)}},Y=new A,X=function(t){var o=this;void 0===t&&(t={}),!P&&"undefined"!=typeof window&&window.Vue&&B(window.Vue);var e=t.locale||"en-US",r=!1!==t.fallbackLocale&&(t.fallbackLocale||"en-US"),i=t.messages||{},n=t.dateTimeFormats||{},a=t.numberFormats||{};this._vm=null,this._formatter=t.formatter||Y,this._modifiers=t.modifiers||{},this._missing=t.missing||null,this._root=t.root||null,this._sync=void 0===t.sync||!!t.sync,this._fallbackRoot=void 0===t.fallbackRoot||!!t.fallbackRoot,this._formatFallbackMessages=void 0!==t.formatFallbackMessages&&!!t.formatFallbackMessages,this._silentTranslationWarn=void 0!==t.silentTranslationWarn&&t.silentTranslationWarn,this._silentFallbackWarn=void 0!==t.silentFallbackWarn&&!!t.silentFallbackWarn,this._dateTimeFormatters={},this._numberFormatters={},this._path=new V,this._dataListeners=new Set,this._componentInstanceCreatedListener=t.componentInstanceCreatedListener||null,this._preserveDirectiveContent=void 0!==t.preserveDirectiveContent&&!!t.preserveDirectiveContent,this.pluralizationRules=t.pluralizationRules||{},this._warnHtmlInMessage=t.warnHtmlInMessage||"off",this._postTranslation=t.postTranslation||null,this._escapeParameterHtml=t.escapeParameterHtml||!1,this.getChoiceIndex=function(t,e){var r,i,n=Object.getPrototypeOf(o);return n&&n.getChoiceIndex?n.getChoiceIndex.call(o,t,e):o.locale in o.pluralizationRules?o.pluralizationRules[o.locale].apply(o,[t,e]):(r=t,i=e,r=Math.abs(r),2===i?r?r>1?1:0:1:r?Math.min(r,2):0)},this._exist=function(t,e){return!(!t||!e||c(o._path.getPathValue(t,e))&&!t[e])},"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||Object.keys(i).forEach((function(t){o._checkLocaleMessage(t,o._warnHtmlInMessage,i[t])})),this._initVM({locale:e,fallbackLocale:r,messages:i,dateTimeFormats:n,numberFormats:a})},K={vm:{configurable:!0},messages:{configurable:!0},dateTimeFormats:{configurable:!0},numberFormats:{configurable:!0},availableLocales:{configurable:!0},locale:{configurable:!0},fallbackLocale:{configurable:!0},formatFallbackMessages:{configurable:!0},missing:{configurable:!0},formatter:{configurable:!0},silentTranslationWarn:{configurable:!0},silentFallbackWarn:{configurable:!0},preserveDirectiveContent:{configurable:!0},warnHtmlInMessage:{configurable:!0},postTranslation:{configurable:!0}};X.prototype._checkLocaleMessage=function(t,o,e){var r=function(t,o,e,i){if(m(e))Object.keys(e).forEach((function(n){var a=e[n];m(a)?(i.push(n),i.push("."),r(t,o,a,i),i.pop(),i.pop()):(i.push(n),r(t,o,a,i),i.pop())}));else if(a(e))e.forEach((function(e,n){m(e)?(i.push("["+n+"]"),i.push("."),r(t,o,e,i),i.pop(),i.pop()):(i.push("["+n+"]"),r(t,o,e,i),i.pop())}));else if(d(e)&&H.test(e)){var l="Detected HTML in message '"+e+"' of keypath '"+i.join("")+"' at '"+o+"'. Consider component interpolation with '' to avoid XSS. See https://bit.ly/2ZqJzkp";"warn"===t?n(l):"error"===t&&function(t,o){"undefined"!=typeof console&&console.error("[vue-i18n] "+t)}(l)}};r(o,t,e,[])},X.prototype._initVM=function(t){var o=P.config.silent;P.config.silent=!0,this._vm=new P({data:t}),P.config.silent=o},X.prototype.destroyVM=function(){this._vm.$destroy()},X.prototype.subscribeDataChanging=function(t){this._dataListeners.add(t)},X.prototype.unsubscribeDataChanging=function(t){!function(t,o){t.delete(o)}(this._dataListeners,t)},X.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",(function(){for(var o,e,r=(o=t._dataListeners,e=[],o.forEach((function(t){return e.push(t)})),e),i=r.length;i--;)P.nextTick((function(){r[i]&&r[i].$forceUpdate()}))}),{deep:!0})},X.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.$i18n.vm.$watch("locale",(function(o){t.$set(t,"locale",o),t.$forceUpdate()}),{immediate:!0})},X.prototype.onComponentInstanceCreated=function(t){this._componentInstanceCreatedListener&&this._componentInstanceCreatedListener(t,this)},K.vm.get=function(){return this._vm},K.messages.get=function(){return f(this._getMessages())},K.dateTimeFormats.get=function(){return f(this._getDateTimeFormats())},K.numberFormats.get=function(){return f(this._getNumberFormats())},K.availableLocales.get=function(){return Object.keys(this.messages).sort()},K.locale.get=function(){return this._vm.locale},K.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},K.fallbackLocale.get=function(){return this._vm.fallbackLocale},K.fallbackLocale.set=function(t){this._localeChainCache={},this._vm.$set(this._vm,"fallbackLocale",t)},K.formatFallbackMessages.get=function(){return this._formatFallbackMessages},K.formatFallbackMessages.set=function(t){this._formatFallbackMessages=t},K.missing.get=function(){return this._missing},K.missing.set=function(t){this._missing=t},K.formatter.get=function(){return this._formatter},K.formatter.set=function(t){this._formatter=t},K.silentTranslationWarn.get=function(){return this._silentTranslationWarn},K.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},K.silentFallbackWarn.get=function(){return this._silentFallbackWarn},K.silentFallbackWarn.set=function(t){this._silentFallbackWarn=t},K.preserveDirectiveContent.get=function(){return this._preserveDirectiveContent},K.preserveDirectiveContent.set=function(t){this._preserveDirectiveContent=t},K.warnHtmlInMessage.get=function(){return this._warnHtmlInMessage},K.warnHtmlInMessage.set=function(t){var o=this,e=this._warnHtmlInMessage;if(this._warnHtmlInMessage=t,e!==t&&("warn"===t||"error"===t)){var r=this._getMessages();Object.keys(r).forEach((function(t){o._checkLocaleMessage(t,o._warnHtmlInMessage,r[t])}))}},K.postTranslation.get=function(){return this._postTranslation},K.postTranslation.set=function(t){this._postTranslation=t},X.prototype._getMessages=function(){return this._vm.messages},X.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},X.prototype._getNumberFormats=function(){return this._vm.numberFormats},X.prototype._warnDefault=function(t,o,e,r,i,n){if(!c(e))return e;if(this._missing){var a=this._missing.apply(null,[t,o,r,i]);if(d(a))return a}if(this._formatFallbackMessages){var l=u.apply(void 0,i);return this._render(o,n,l.params,o)}return o},X.prototype._isFallbackRoot=function(t){return!t&&!c(this._root)&&this._fallbackRoot},X.prototype._isSilentFallbackWarn=function(t){return this._silentFallbackWarn instanceof RegExp?this._silentFallbackWarn.test(t):this._silentFallbackWarn},X.prototype._isSilentFallback=function(t,o){return this._isSilentFallbackWarn(o)&&(this._isFallbackRoot()||t!==this.fallbackLocale)},X.prototype._isSilentTranslationWarn=function(t){return this._silentTranslationWarn instanceof RegExp?this._silentTranslationWarn.test(t):this._silentTranslationWarn},X.prototype._interpolate=function(t,o,e,r,i,n,l){if(!o)return null;var s,u=this._path.getPathValue(o,e);if(a(u)||m(u))return u;if(c(u)){if(!m(o))return null;if(!d(s=o[e])&&!p(s))return null}else{if(!d(u)&&!p(u))return null;s=u}return d(s)&&(s.indexOf("@:")>=0||s.indexOf("@.")>=0)&&(s=this._link(t,o,s,r,"raw",n,l)),this._render(s,i,n,e)},X.prototype._link=function(t,o,e,r,i,n,l){var d=e,s=d.match(U);for(var m in s)if(s.hasOwnProperty(m)){var c=s[m],p=c.match(W),u=p[0],f=p[1],g=c.replace(u,"").replace(G,"");if(b(l,g))return d;l.push(g);var h=this._interpolate(t,o,g,r,"raw"===i?"string":i,"raw"===i?void 0:n,l);if(this._isFallbackRoot(h)){if(!this._root)throw Error("unexpected error");var v=this._root.$i18n;h=v._translate(v._getMessages(),v.locale,v.fallbackLocale,g,r,i,n)}h=this._warnDefault(t,g,h,r,a(n)?n:[n],i),this._modifiers.hasOwnProperty(f)?h=this._modifiers[f](h):q.hasOwnProperty(f)&&(h=q[f](h)),l.pop(),d=h?d.replace(c,h):d}return d},X.prototype._createMessageContext=function(t,o,e,r){var i=this,n=a(t)?t:[],d=l(t)?t:{},s=this._getMessages(),m=this.locale;return{list:function(t){return n[t]},named:function(t){return d[t]},values:t,formatter:o,path:e,messages:s,locale:m,linked:function(t){return i._interpolate(m,s[m]||{},t,null,r,void 0,[t])}}},X.prototype._render=function(t,o,e,r){if(p(t))return t(this._createMessageContext(e,this._formatter||Y,r,o));var i=this._formatter.interpolate(t,e,r);return i||(i=Y.interpolate(t,e,r)),"string"!==o||d(i)?i:i.join("")},X.prototype._appendItemToChain=function(t,o,e){var r=!1;return b(t,o)||(r=!0,o&&(r="!"!==o[o.length-1],o=o.replace(/!/g,""),t.push(o),e&&e[o]&&(r=e[o]))),r},X.prototype._appendLocaleToChain=function(t,o,e){var r,i=o.split("-");do{var n=i.join("-");r=this._appendItemToChain(t,n,e),i.splice(-1,1)}while(i.length&&!0===r);return r},X.prototype._appendBlockToChain=function(t,o,e){for(var r=!0,i=0;i0;)n[a]=arguments[a+4];if(!t)return"";var l=u.apply(void 0,n);this._escapeParameterHtml&&(l.params=k(l.params));var d=l.locale||o,s=this._translate(e,d,this.fallbackLocale,t,r,"string",l.params);if(this._isFallbackRoot(s)){if(!this._root)throw Error("unexpected error");return(i=this._root).$t.apply(i,[t].concat(n))}return s=this._warnDefault(d,t,s,r,n,"string"),this._postTranslation&&null!=s&&(s=this._postTranslation(s,t)),s},X.prototype.t=function(t){for(var o,e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return(o=this)._t.apply(o,[t,this.locale,this._getMessages(),null].concat(e))},X.prototype._i=function(t,o,e,r,i){var n=this._translate(e,o,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(n)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.i(t,o,i)}return this._warnDefault(o,t,n,r,[i],"raw")},X.prototype.i=function(t,o,e){return t?(d(o)||(o=this.locale),this._i(t,o,this._getMessages(),null,e)):""},X.prototype._tc=function(t,o,e,r,i){for(var n,a=[],l=arguments.length-5;l-- >0;)a[l]=arguments[l+5];if(!t)return"";void 0===i&&(i=1);var d={count:i,n:i},s=u.apply(void 0,a);return s.params=Object.assign(d,s.params),a=null===s.locale?[s.params]:[s.locale,s.params],this.fetchChoice((n=this)._t.apply(n,[t,o,e,r].concat(a)),i)},X.prototype.fetchChoice=function(t,o){if(!t||!d(t))return null;var e=t.split("|");return e[o=this.getChoiceIndex(o,e.length)]?e[o].trim():t},X.prototype.tc=function(t,o){for(var e,r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];return(e=this)._tc.apply(e,[t,this.locale,this._getMessages(),null,o].concat(r))},X.prototype._te=function(t,o,e){for(var r=[],i=arguments.length-3;i-- >0;)r[i]=arguments[i+3];var n=u.apply(void 0,r).locale||o;return this._exist(e[n],t)},X.prototype.te=function(t,o){return this._te(t,this.locale,this._getMessages(),o)},X.prototype.getLocaleMessage=function(t){return f(this._vm.messages[t]||{})},X.prototype.setLocaleMessage=function(t,o){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,o),this._vm.$set(this._vm.messages,t,o)},X.prototype.mergeLocaleMessage=function(t,o){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,o),this._vm.$set(this._vm.messages,t,v(void 0!==this._vm.messages[t]&&Object.keys(this._vm.messages[t]).length?Object.assign({},this._vm.messages[t]):{},o))},X.prototype.getDateTimeFormat=function(t){return f(this._vm.dateTimeFormats[t]||{})},X.prototype.setDateTimeFormat=function(t,o){this._vm.$set(this._vm.dateTimeFormats,t,o),this._clearDateTimeFormat(t,o)},X.prototype.mergeDateTimeFormat=function(t,o){this._vm.$set(this._vm.dateTimeFormats,t,v(this._vm.dateTimeFormats[t]||{},o)),this._clearDateTimeFormat(t,o)},X.prototype._clearDateTimeFormat=function(t,o){for(var e in o){var r=t+"__"+e;this._dateTimeFormatters.hasOwnProperty(r)&&delete this._dateTimeFormatters[r]}},X.prototype._localizeDateTime=function(t,o,e,r,i){for(var n=o,a=r[n],l=this._getLocaleChain(o,e),d=0;d0;)o[e]=arguments[e+1];var r=this.locale,i=null;return 1===o.length?d(o[0])?i=o[0]:l(o[0])&&(o[0].locale&&(r=o[0].locale),o[0].key&&(i=o[0].key)):2===o.length&&(d(o[0])&&(i=o[0]),d(o[1])&&(r=o[1])),this._d(t,r,i)},X.prototype.getNumberFormat=function(t){return f(this._vm.numberFormats[t]||{})},X.prototype.setNumberFormat=function(t,o){this._vm.$set(this._vm.numberFormats,t,o),this._clearNumberFormat(t,o)},X.prototype.mergeNumberFormat=function(t,o){this._vm.$set(this._vm.numberFormats,t,v(this._vm.numberFormats[t]||{},o)),this._clearNumberFormat(t,o)},X.prototype._clearNumberFormat=function(t,o){for(var e in o){var r=t+"__"+e;this._numberFormatters.hasOwnProperty(r)&&delete this._numberFormatters[r]}},X.prototype._getNumberFormatter=function(t,o,e,r,i,n){for(var a=o,l=r[a],d=this._getLocaleChain(o,e),s=0;s0;)o[e]=arguments[e+1];var r=this.locale,n=null,a=null;return 1===o.length?d(o[0])?n=o[0]:l(o[0])&&(o[0].locale&&(r=o[0].locale),o[0].key&&(n=o[0].key),a=Object.keys(o[0]).reduce((function(t,e){var r;return b(i,e)?Object.assign({},t,((r={})[e]=o[0][e],r)):t}),null)):2===o.length&&(d(o[0])&&(n=o[0]),d(o[1])&&(r=o[1])),this._n(t,r,n,a)},X.prototype._ntp=function(t,o,e,r){if(!X.availabilities.numberFormat)return[];if(!e)return(r?new Intl.NumberFormat(o,r):new Intl.NumberFormat(o)).formatToParts(t);var i=this._getNumberFormatter(t,o,this.fallbackLocale,this._getNumberFormats(),e,r),n=i&&i.formatToParts(t);if(this._isFallbackRoot(n)){if(!this._root)throw Error("unexpected error");return this._root.$i18n._ntp(t,o,e,r)}return n||[]},Object.defineProperties(X.prototype,K),Object.defineProperty(X,"availabilities",{get:function(){if(!N){var t="undefined"!=typeof Intl;N={dateTimeFormat:t&&void 0!==Intl.DateTimeFormat,numberFormat:t&&void 0!==Intl.NumberFormat}}return N}}),X.install=B,X.version="8.25.0";const J=X;var Z="undefined"!=typeof window,Q="undefined"!=typeof document,tt="undefined"!=typeof navigator,ot="undefined"!=typeof Promise,et="undefined"!=typeof MutationObserver||"undefined"!=typeof WebKitMutationObserver||"undefined"!=typeof MozMutationObserver,rt=Z&&Q&&tt,it=Z?window:{},nt=Q?document:{},at=tt?navigator:{},lt=(at.userAgent||"").toLowerCase(),dt=lt.indexOf("jsdom")>0,st=(/msie|trident/.test(lt),function(){var t=!1;if(rt)try{var o={get passive(){t=!0}};it.addEventListener("test",o,o),it.removeEventListener("test",o,o)}catch(o){t=!1}return t}()),mt=rt&&("ontouchstart"in nt.documentElement||at.maxTouchPoints>0),ct=rt&&Boolean(it.PointerEvent||it.MSPointerEvent),pt=rt&&"IntersectionObserver"in it&&"IntersectionObserverEntry"in it&&"intersectionRatio"in it.IntersectionObserverEntry.prototype,ut="BvConfig",ft=["xs","sm","md","lg","xl"],bt=/\[(\d+)]/g,gt=/^(BV?)/,ht=/^\d+$/,vt=/^\..+/,xt=/^#/,kt=/^#[A-Za-z]+[\w\-:.]*$/,wt=/(<([^>]+)>)/gi,yt=/\B([A-Z])/g,Ot=/([a-z])([A-Z])/g,jt=/^[0-9]*\.?[0-9]+$/,St=/\+/g,Pt=/[-/\\^$*+?.()|[\]{}]/g,Tt=/[\s\uFEFF\xA0]+/g,_t=/\s+/,Ct=/\/\*$/,$t=/(\s|^)(\w)/g,Dt=/^\s+/,zt=/_/g,Et=/-(\w)/g,Bt=/^\d+-\d\d?-\d\d?(?:\s|T|$)/,At=/-|\s|T/,It=/^([0-1]?[0-9]|2[0-3]):[0-5]?[0-9](:[0-5]?[0-9])?$/,Ft=/^.*(#[^#]+)$/,Lt=/%2C/g,Mt=/[!'()*]/g,Rt=/^(\?|#|&)/,Vt=/^\d+(\.\d*)?[/:]\d+(\.\d*)?$/,Nt=/[/:]/,Ht=/^col-/,Ut=/^BIcon/,Wt=/-u-.+/;function Gt(t){return(Gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function qt(t,o){if(!(t instanceof o))throw new TypeError("Cannot call a class as a function")}function Yt(t,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(o&&o.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),o&&to(t,o)}function Xt(t){var o=Qt();return function(){var e,r=oo(t);if(o){var i=oo(this).constructor;e=Reflect.construct(r,arguments,i)}else e=r.apply(this,arguments);return Kt(this,e)}}function Kt(t,o){return!o||"object"!==Gt(o)&&"function"!=typeof o?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):o}function Jt(t){var o="function"==typeof Map?new Map:void 0;return(Jt=function(t){if(null===t||(e=t,-1===Function.toString.call(e).indexOf("[native code]")))return t;var e;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==o){if(o.has(t))return o.get(t);o.set(t,r)}function r(){return Zt(t,arguments,oo(this).constructor)}return r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),to(r,t)})(t)}function Zt(t,o,e){return(Zt=Qt()?Reflect.construct:function(t,o,e){var r=[null];r.push.apply(r,o);var i=new(Function.bind.apply(t,r));return e&&to(i,e.prototype),i}).apply(null,arguments)}function Qt(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function to(t,o){return(to=Object.setPrototypeOf||function(t,o){return t.__proto__=o,t})(t,o)}function oo(t){return(oo=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var eo=Z?it.Element:function(t){Yt(e,t);var o=Xt(e);function e(){return qt(this,e),o.apply(this,arguments)}return e}(Jt(Object)),ro=Z?it.HTMLElement:function(t){Yt(e,t);var o=Xt(e);function e(){return qt(this,e),o.apply(this,arguments)}return e}(eo),io=Z?it.SVGElement:function(t){Yt(e,t);var o=Xt(e);function e(){return qt(this,e),o.apply(this,arguments)}return e}(eo),no=Z?it.File:function(t){Yt(e,t);var o=Xt(e);function e(){return qt(this,e),o.apply(this,arguments)}return e}(Jt(Object));function ao(t){return(ao="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var lo=function(t){return ao(t)},so=function(t){return void 0===t},mo=function(t){return null===t},co=function(t){return so(t)||mo(t)},po=function(t){return"function"===lo(t)},uo=function(t){return"boolean"===lo(t)},fo=function(t){return"string"===lo(t)},bo=function(t){return"number"===lo(t)},go=function(t){return jt.test(String(t))},ho=function(t){return Array.isArray(t)},vo=function(t){return null!==t&&"object"===ao(t)},xo=function(t){return"[object Object]"===Object.prototype.toString.call(t)},ko=function(t){return t instanceof Date},wo=function(t){return t instanceof Event},yo=function(t){return"RegExp"===function(t){return Object.prototype.toString.call(t).slice(8,-1)}(t)};function Oo(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function jo(t){for(var o=1;ot.length)&&(o=t.length);for(var e=0,r=new Array(o);e1&&void 0!==arguments[1]?arguments[1]:o;return ho(o)?o.reduce((function(o,e){return[].concat(Vo(o),[t(e,e)])}),[]):xo(o)?Do(o).reduce((function(e,r){return Mo(Mo({},e),{},Ro({},r,t(o[r],o[r])))}),{}):e},Uo=function(t){return t},Wo=function(t,o){var e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;if(!(o=ho(o)?o.join("."):o)||!vo(t))return e;if(o in t)return t[o];var r=(o=String(o).replace(bt,".$1")).split(".").filter(Uo);return 0===r.length?e:r.every((function(o){return vo(t)&&o in t&&!co(t=t[o])}))?t:mo(t)?null:e},Go=function(t,o){var e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=Wo(t,o);return co(r)?e:r},qo=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,e="undefined"!=typeof process&&process?{NODE_ENV:"production"}||0:{};return t?e[t]||o:e},Yo=function(){return qo("BOOTSTRAP_VUE_NO_WARN")||"production"===qo("NODE_ENV")},Xo=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Yo()||console.warn("[BootstrapVue warn]: ".concat(o?"".concat(o," - "):"").concat(t))},Ko=function(t){return!rt&&(Xo("".concat(t,": Can not be called during SSR.")),!0)},Jo=function(t){return!ot&&(Xo("".concat(t,": Requires Promise support.")),!0)};function Zo(t,o){for(var e=0;e0&&void 0!==arguments[0]?arguments[0]:{};if(xo(o)){var e=$o(o);e.forEach((function(e){var r=o[e];"breakpoints"===e?!ho(r)||r.length<2||r.some((function(t){return!fo(t)||0===t.length}))?Xo('"breakpoints" must be an array of at least 2 breakpoint names',ut):t.$_config[e]=Ho(r):xo(r)&&(t.$_config[e]=$o(r).reduce((function(t,o){return so(r[o])||(t[o]=Ho(r[o])),t}),t.$_config[e]||{}))}))}}},{key:"resetConfig",value:function(){this.$_config={}}},{key:"getConfig",value:function(){return Ho(this.$_config)}},{key:"getConfigValue",value:function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return Ho(Wo(this.$_config,t,o))}}])&&Zo(o.prototype,e),t}(),te=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r.default;o.prototype.$bvConfig=r.default.prototype.$bvConfig=o.prototype.$bvConfig||r.default.prototype.$bvConfig||new Qo,o.prototype.$bvConfig.setConfig(t)};function oe(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function ee(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:{},o=t.components,e=t.directives,r=t.plugins,i=function t(i){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.installed||(t.installed=!0,ae(i),te(n,i),ce(i,o),ue(i,e),se(i,r))};return i.installed=!1,i},de=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return ee(ee({},o),{},{install:le(t)})},se=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var e in o)e&&o[e]&&t.use(o[e])},me=function(t,o,e){t&&o&&e&&t.component(o,e)},ce=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var e in o)me(t,e,o[e])},pe=function(t,o,e){t&&o&&e&&t.directive(o.replace(/^VB/,"B"),e)},ue=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var e in o)pe(t,e,o[e])},fe=function(){return(fe=Object.assign||function(t){for(var o,e=1,r=arguments.length;e1&&void 0!==arguments[1]?arguments[1]:NaN,e=parseInt(t,10);return isNaN(e)?o:e},da=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,e=parseFloat(t);return isNaN(e)?o:e},sa=function(t,o){return da(t).toFixed(la(o,0))},ma=function(t){return t.replace(yt,"-$1").toLowerCase()},ca=function(t){return(t=ma(t).replace(Et,(function(t,o){return o?o.toUpperCase():""}))).charAt(0).toUpperCase()+t.slice(1)},pa=function(t){return t.replace(zt," ").replace(Ot,(function(t,o,e){return o+" "+e})).replace($t,(function(t,o,e){return o+e.toUpperCase()}))},ua=function(t){return(t=fo(t)?t.trim():String(t)).charAt(0).toUpperCase()+t.slice(1)},fa=function(t){return t.replace(Pt,"\\$&")},ba=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;return co(t)?"":ho(t)||xo(t)&&t.toString===Object.prototype.toString?JSON.stringify(t,null,o):String(t)},ga=function(t){return ba(t).trim()},ha=function(t){return ba(t).toLowerCase()},va=eo.prototype,xa=["button","[href]:not(.disabled)","input","select","textarea","[tabindex]","[contenteditable]"].map((function(t){return"".concat(t,":not(:disabled):not([disabled])")})).join(", "),ka=va.matches||va.msMatchesSelector||va.webkitMatchesSelector,wa=va.closest||function(t){var o=this;do{if(Ea(o,t))return o;o=o.parentElement||o.parentNode}while(!mo(o)&&o.nodeType===Node.ELEMENT_NODE);return null},ya=it.requestAnimationFrame||it.webkitRequestAnimationFrame||it.mozRequestAnimationFrame||it.msRequestAnimationFrame||it.oRequestAnimationFrame||function(t){return setTimeout(t,16)},Oa=it.MutationObserver||it.WebKitMutationObserver||it.MozMutationObserver||null,ja=function(t){return!(!t||t.nodeType!==Node.ELEMENT_NODE)},Sa=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],o=nt.activeElement;return o&&!t.some((function(t){return t===o}))?o:null},Pa=function(t,o){return ba(t).toLowerCase()===ba(o).toLowerCase()},Ta=function(t){return ja(t)&&t===Sa()},_a=function(t){if(!ja(t)||!t.parentNode||!Aa(nt.body,t))return!1;if("none"===Ga(t,"display"))return!1;var o=qa(t);return!!(o&&o.height>0&&o.width>0)},Ca=function(t){return!ja(t)||t.disabled||Ha(t,"disabled")||Ma(t,"disabled")},$a=function(t){return ja(t)&&t.offsetHeight},Da=function(t,o){return oa((ja(o)?o:nt).querySelectorAll(t))},za=function(t,o){return(ja(o)?o:nt).querySelector(t)||null},Ea=function(t,o){return!!ja(t)&&ka.call(t,o)},Ba=function(t,o){var e=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!ja(o))return null;var r=wa.call(o,t);return e?r:r===o?null:r},Aa=function(t,o){return!(!t||!po(t.contains))&&t.contains(o)},Ia=function(t){return nt.getElementById(/^#/.test(t)?t.slice(1):t)||null},Fa=function(t,o){o&&ja(t)&&t.classList&&t.classList.add(o)},La=function(t,o){o&&ja(t)&&t.classList&&t.classList.remove(o)},Ma=function(t,o){return!!(o&&ja(t)&&t.classList)&&t.classList.contains(o)},Ra=function(t,o,e){o&&ja(t)&&t.setAttribute(o,e)},Va=function(t,o){o&&ja(t)&&t.removeAttribute(o)},Na=function(t,o){return o&&ja(t)?t.getAttribute(o):null},Ha=function(t,o){return o&&ja(t)?t.hasAttribute(o):null},Ua=function(t,o,e){o&&ja(t)&&(t.style[o]=e)},Wa=function(t,o){o&&ja(t)&&(t.style[o]="")},Ga=function(t,o){return o&&ja(t)&&t.style[o]||null},qa=function(t){return ja(t)?t.getBoundingClientRect():null},Ya=function(t){var o=it.getComputedStyle;return o&&ja(t)?o(t):{}},Xa=function(){return it.getSelection?it.getSelection():null},Ka=function(t){var o={top:0,left:0};if(!ja(t)||0===t.getClientRects().length)return o;var e=qa(t);if(e){var r=t.ownerDocument.defaultView;o.top=e.top+r.pageYOffset,o.left=e.left+r.pageXOffset}return o},Ja=function(t){var o={top:0,left:0};if(!ja(t))return o;var e={top:0,left:0},r=Ya(t);if("fixed"===r.position)o=qa(t)||o;else{o=Ka(t);for(var i=t.ownerDocument,n=t.offsetParent||i.documentElement;n&&(n===i.body||n===i.documentElement)&&"static"===Ya(n).position;)n=n.parentNode;if(n&&n!==t&&n.nodeType===Node.ELEMENT_NODE){e=Ka(n);var a=Ya(n);e.top+=da(a.borderTopWidth,0),e.left+=da(a.borderLeftWidth,0)}}return{top:o.top-e.top-da(r.marginTop,0),left:o.left-e.left-da(r.marginLeft,0)}},Za=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document;return Da(xa,t).filter(_a).filter((function(t){return t.tabIndex>-1&&!t.disabled}))},Qa=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{t.focus(o)}catch(t){}return Ta(t)},tl=function(t){try{t.blur()}catch(t){}return!Ta(t)},ol=function(t){var o=To(null);return function(){for(var e=arguments.length,r=new Array(e),i=0;i1&&void 0!==arguments[1]?arguments[1]:void 0,e=el.$bvConfig;return e?e.getConfigValue(t,o):Ho(o)},il=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;return o?rl("".concat(t,".").concat(o),e):rl(t,{})},nl=function(){return rl("breakpoints",ft)},al=ol((function(){return nl()})),ll=ol((function(){var t=Ho(al());return t[0]="",t}));function dl(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function sl(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:sn,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:void 0,i=!0===e;return r=i?r:e,sl(sl(sl({},t?{type:t}:{}),i?{required:i}:so(o)?{}:{default:vo(o)?function(){return o}:o}),so(r)?{}:{validator:r})},bl=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Uo;if(ho(t))return t.map(o);var e={};for(var r in t)zo(t,r)&&(e[o(r)]=vo(t[r])?Eo(t[r]):t[r]);return e},gl=function(t,o){var e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Uo;return(ho(t)?t.slice():Do(t)).reduce((function(t,r){return t[e(r)]=o[r],t}),{})},hl=function(t,o,e){return sl(sl({},Ho(t)),{},{default:function(){var r=il(e,o,t.default);return po(r)?r():r}})},vl=function(t,o){return Do(t).reduce((function(e,r){return sl(sl({},e),{},ml({},r,hl(t[r],r,o)))}),{})},xl=hl({},"","").default.name,kl=function(t){return po(t)&&t.name!==xl};function wl(t,o,e){return o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}var yl=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},e=o.type,i=void 0===e?sn:e,n=o.defaultValue,a=void 0===n?void 0:n,l=o.validator,d=void 0===l?void 0:l,s=o.event,m=void 0===s?Ni:s,c=wl({},t,fl(i,a,d)),p=r.default.extend({model:{prop:t,event:m},props:c});return{mixin:p,props:c,prop:t,event:m}},Ol=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return(t=ra(t).filter(Uo)).some((function(t){return o[t]||e[t]}))},jl=function(t){var o,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};t=ra(t).filter(Uo);for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:In,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.$scopedSlots,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$slots;return Ol(t,o,e)},normalizeSlot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:In,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$scopedSlots,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.$slots,i=jl(t,o,e,r);return i?ra(i):i}}}),Pl=function(t){return st?vo(t)?t:{capture:!!t||!1}:!!(vo(t)?t.capture:t)},Tl=function(t,o,e,r){t&&t.addEventListener&&t.addEventListener(o,e,Pl(r))},_l=function(t,o,e,r){t&&t.removeEventListener&&t.removeEventListener(o,e,Pl(r))},Cl=function(t){for(var o=t?Tl:_l,e=arguments.length,r=new Array(e>1?e-1:0),i=1;i1&&void 0!==arguments[1]?arguments[1]:{},e=o.preventDefault,r=void 0===e||e,i=o.propagation,n=void 0===i||i,a=o.immediatePropagation,l=void 0!==a&&a;r&&t.preventDefault(),n&&t.stopPropagation(),l&&t.stopImmediatePropagation()},Dl=function(t){return ma(t.replace(gt,""))},zl=function(t,o){return[an,Dl(t),o].join("::")},El=function(t,o){return[an,o,Dl(t)].join("::")},Bl=vl({ariaLabel:fl(hn,"Close"),content:fl(hn,"×"),disabled:fl(cn,!1),textVariant:fl(hn)},$e),Al=r.default.extend({name:$e,functional:!0,props:Bl,render:function(t,o){var e,r,i,n=o.props,a=o.data,l=o.slots,d=o.scopedSlots,s=l(),m=d||{},c={staticClass:"close",class:(e={},r="text-".concat(n.textVariant),i=n.textVariant,r in e?Object.defineProperty(e,r,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[r]=i,e),attrs:{type:"button",disabled:n.disabled,"aria-label":n.ariaLabel?String(n.ariaLabel):null},on:{click:function(t){n.disabled&&wo(t)&&$l(t)}}};return Ol(In,m,s)||(c.domProps={innerHTML:n.content}),t("button",ke(a,c),jl(In,{},m,s))}});function Il(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Fl(t){for(var o=1;o0?t:0},Ql=function(t){return""===t||!0===t||!(la(t,0)<1)&&!!t},td=vl(Fo(Wl(Wl({},Xl),{},{dismissLabel:fl(hn,"Close"),dismissible:fl(cn,!1),fade:fl(cn,!1),variant:fl(hn,"info")})),we),od=de({components:{BAlert:r.default.extend({name:we,mixins:[Yl,Sl],props:td,data:function(){return{countDown:0,localShow:Ql(this[Kl])}},watch:(Ml={},Gl(Ml,Kl,(function(t){this.countDown=Zl(t),this.localShow=Ql(t)})),Gl(Ml,"countDown",(function(t){var o=this;this.clearCountDownInterval();var e=this[Kl];go(e)&&(this.$emit("dismiss-count-down",t),e!==t&&this.$emit(Jl,t),t>0?(this.localShow=!0,this.$_countDownTimeout=setTimeout((function(){o.countDown--}),1e3)):this.$nextTick((function(){ya((function(){o.localShow=!1}))})))})),Gl(Ml,"localShow",(function(t){var o=this[Kl];t||!this.dismissible&&!go(o)||this.$emit("dismissed"),go(o)||o===t||this.$emit(Jl,t)})),Ml),created:function(){this.$_filterTimer=null;var t=this[Kl];this.countDown=Zl(t),this.localShow=Ql(t)},beforeDestroy:function(){this.clearCountDownInterval()},methods:{dismiss:function(){this.clearCountDownInterval(),this.countDown=0,this.localShow=!1},clearCountDownInterval:function(){clearTimeout(this.$_countDownTimeout),this.$_countDownTimeout=null}},render:function(t){var o=t();if(this.localShow){var e=this.dismissible,r=this.variant,i=t();e&&(i=t(Al,{attrs:{"aria-label":this.dismissLabel},on:{click:this.dismiss}},[this.normalizeSlot("dismiss")])),o=t("div",{staticClass:"alert",class:Gl({"alert-dismissible":e},"alert-".concat(r),r),attrs:{role:"alert","aria-live":"polite","aria-atomic":!0},key:this._uid},[i,this.normalizeSlot()])}return t(Hl,{props:{noFade:!this.fade}},[o])}})}}),ed=Math.min,rd=Math.max,id=Math.abs,nd=Math.ceil,ad=Math.floor,ld=Math.pow,dd=Math.round;function sd(t,o){(null==o||o>t.length)&&(o=t.length);for(var e=0,r=new Array(o);e0&&void 0!==arguments[0]?arguments[0]:{},o=t.href,e=t.to,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"a",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"#",n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"/";if(o)return o;if(kd(r))return null;if(fo(e))return e||n;if(xo(e)&&(e.path||e.query||e.hash)){var a=ba(e.path),l=hd(e.query),d=ba(e.hash);return d=d&&"#"!==d.charAt(0)?"#".concat(d):d,"".concat(a).concat(l).concat(d)||n}return i};function yd(t,o,e){return o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}var Od={viewBox:"0 0 16 16",width:"1em",height:"1em",focusable:"false",role:"img","aria-label":"icon"},jd={width:null,height:null,focusable:null,role:null,"aria-label":null},Sd={animation:fl(hn),content:fl(hn),flipH:fl(cn,!1),flipV:fl(cn,!1),fontScale:fl(Tn,1),rotate:fl(Tn,0),scale:fl(Tn,1),shiftH:fl(Tn,0),shiftV:fl(Tn,0),stacked:fl(cn,!1),title:fl(hn),variant:fl(hn)},Pd=r.default.extend({name:"BIconBase",functional:!0,props:Sd,render:function(t,o){var e,r=o.data,i=o.props,n=o.children,a=i.animation,l=i.content,d=i.flipH,s=i.flipV,m=i.stacked,c=i.title,p=i.variant,u=rd(da(i.fontScale,1),0)||1,f=rd(da(i.scale,1),0)||1,b=da(i.rotate,0),g=da(i.shiftH,0),h=da(i.shiftV,0),v=d||s||1!==f,x=v||b,k=g||h,w=!co(l),y=t("g",{attrs:{transform:[x?"translate(8 8)":null,v?"scale(".concat((d?-1:1)*f," ").concat((s?-1:1)*f,")"):null,b?"rotate(".concat(b,")"):null,x?"translate(-8 -8)":null].filter(Uo).join(" ")||null},domProps:w?{innerHTML:l||""}:{}},n);k&&(y=t("g",{attrs:{transform:"translate(".concat(16*g/16," ").concat(-16*h/16,")")}},[y])),m&&(y=t("g",[y]));var O=[c?t("title",c):null,y].filter(Uo);return t("svg",ke({staticClass:"b-icon bi",class:(e={},yd(e,"text-".concat(p),p),yd(e,"b-icon-animation-".concat(a),a),e),attrs:Od,style:m?{}:{fontSize:1===u?null:"".concat(100*u,"%")}},r,m?{attrs:jd}:{},{attrs:{xmlns:m?null:"http://www.w3.org/2000/svg",fill:"currentColor"}}),O)}});function Td(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function _d(t){for(var o=1;o'),Ed=$d("CalendarFill",''),Bd=$d("ChevronBarLeft",''),Ad=$d("ChevronDoubleLeft",''),Id=$d("ChevronDown",''),Fd=$d("ChevronLeft",''),Ld=$d("ChevronUp",''),Md=$d("CircleFill",''),Rd=$d("Clock",''),Vd=$d("ClockFill",''),Nd=$d("Dash",''),Hd=$d("PersonFill",''),Ud=$d("Plus",''),Wd=$d("Star",''),Gd=$d("StarFill",''),qd=$d("StarHalf",''),Yd=$d("X",'');function Xd(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Kd(t){for(var o=1;o1?e-1:0),i=1;it.length)&&(o=t.length);for(var e=0,r=new Array(o);e0&&void 0!==arguments[0]?arguments[0]:{},o=t.target,e=t.rel;return"_blank"===o&&mo(e)?"noopener":e||null}({target:this.target,rel:this.rel})},computedHref:function(){var t=this.to,o=this.href;return wd({to:t,href:o},this.computedTag)},computedProps:function(){var t=this.prefetch;return this.isRouterLink?ws(ws({},gl(ws(ws({},js),Ss),this)),{},{prefetch:uo(t)?t:void 0,tag:this.routerTag}):{}},computedAttrs:function(){var t=this.bvAttrs,o=this.computedHref,e=this.computedRel,r=this.disabled,i=this.target,n=this.routerTag,a=this.isRouterLink;return ws(ws(ws(ws({},t),o?{href:o}:{}),a&&!Pa(n,"a")?{}:{rel:e,target:i}),{},{tabindex:r?"-1":so(t.tabindex)?null:t.tabindex,"aria-disabled":r?"true":null})},computedListeners:function(){return ws(ws({},this.bvListeners),{},{click:this.onClick})}},methods:{onClick:function(t){var o=arguments,e=wo(t),r=this.isRouterLink,i=this.bvListeners.click;e&&this.disabled?$l(t,{immediatePropagation:!0}):(r&&t.currentTarget.__vue__&&t.currentTarget.__vue__.$emit(Pi,t),ra(i).filter((function(t){return po(t)})).forEach((function(t){t.apply(void 0,vs(o))})),this.emitOnRoot(Os,t),this.emitOnRoot("clicked::link",t)),e&&!r&&"#"===this.computedHref&&$l(t,{propagation:!1})},focus:function(){Qa(this.$el)},blur:function(){tl(this.$el)}},render:function(t){var o=this.active,e=this.disabled;return t(this.computedTag,ys({class:{active:o,disabled:e},attrs:this.computedAttrs,props:this.computedProps},this.isRouterLink?"nativeOn":"on",this.computedListeners),this.normalizeSlot())}});function _s(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Cs(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:"";return String(t).replace(wt,"")},lm=function(t,o){return t?{innerHTML:t}:o?{textContent:o}:{}};function dm(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function sm(t){for(var o=1;o-1&&(o=o.slice(0,e).reverse(),Qa(o[0]))},focusNext:function(t){var o=this.getItems(),e=o.indexOf(t.target);e>-1&&(o=o.slice(e+1),Qa(o[0]))},focusLast:function(){var t=this.getItems().reverse();Qa(t[0])},onFocusin:function(t){var o=this.$el;t.target!==o||Aa(o,t.relatedTarget)||($l(t),this.focusFirst(t))},onKeydown:function(t){var o=t.keyCode,e=t.shiftKey;o===ss||o===as?($l(t),e?this.focusFirst(t):this.focusPrev(t)):o!==es&&o!==ls||($l(t),e?this.focusLast(t):this.focusNext(t))}},render:function(t){var o=this.keyNav;return t("div",{staticClass:"btn-toolbar",class:{"justify-content-between":this.justify},attrs:{role:"toolbar",tabindex:o?"0":null},on:o?{focusin:this.onFocusin,keydown:this.onKeydown}:{}},[this.normalizeSlot()])}}),$m=de({components:{BButtonToolbar:Cm,BBtnToolbar:Cm}}),Dm="gregory",zm="long",Em="short",Bm="2-digit",Am="numeric";function Im(t,o){(null==o||o>t.length)&&(o=t.length);for(var e=0,r=new Array(o);e1&&void 0!==arguments[1]?arguments[1]:null,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return t=Nm(t),o=Nm(o)||t,e=Nm(e)||t,t?te?e:t:null},ec=["ar","az","ckb","fa","he","ks","lrc","mzn","ps","sd","te","ug","ur","yi"].map((function(t){return t.toLowerCase()})),rc=function(t){var o=ba(t).toLowerCase().replace(Wt,"").split("-"),e=o.slice(0,2).join("-"),r=o[0];return ea(ec,e)||ea(ec,r)},ic={id:fl(hn)},nc=r.default.extend({props:ic,data:function(){return{localId_:null}},computed:{safeId:function(){var t=this.id||this.localId_;return function(o){return t?(o=String(o||"").replace(/\s+/g,"_"))?t+"_"+o:t:null}}},mounted:function(){var t=this;this.$nextTick((function(){t.localId_="__BVID__".concat(t._uid)}))}});function ac(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function lc(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:Dm;return t=ra(t).filter(Uo),new Intl.DateTimeFormat(t,{calendar:o}).resolvedOptions().locale}(ra(this.locale).filter(Uo),Dm)},computedDateDisabledFn:function(){var t=this.dateDisabledFn;return kl(t)?t:function(){return!1}},computedDateInfoFn:function(){var t=this.dateInfoFn;return kl(t)?t:function(){return{}}},calendarLocale:function(){var t=new Intl.DateTimeFormat(this.computedLocale,{calendar:Dm}),o=t.resolvedOptions().calendar,e=t.resolvedOptions().locale;return o!==Dm&&(e=e.replace(/-u-.+$/i,"").concat("-u-ca-gregory")),e},calendarYear:function(){return this.activeDate.getFullYear()},calendarMonth:function(){return this.activeDate.getMonth()},calendarFirstDay:function(){return Vm(this.calendarYear,this.calendarMonth,1,12)},calendarDaysInMonth:function(){var t=Vm(this.calendarFirstDay);return t.setMonth(t.getMonth()+1,0),t.getDate()},computedVariant:function(){return"btn-".concat(this.selectedVariant||"primary")},computedTodayVariant:function(){return"btn-outline-".concat(this.todayVariant||this.selectedVariant||"primary")},computedNavButtonVariant:function(){return"btn-outline-".concat(this.navButtonVariant||"primary")},isRTL:function(){var t=ba(this.direction).toLowerCase();return"rtl"===t||"ltr"!==t&&rc(this.computedLocale)},context:function(){var t=this.selectedYMD,o=this.activeYMD,e=Nm(t),r=Nm(o);return{selectedYMD:t,selectedDate:e,selectedFormatted:e?this.formatDateString(e):this.labelNoDateSelected,activeYMD:o,activeDate:r,activeFormatted:r?this.formatDateString(r):"",disabled:this.dateDisabled(r),locale:this.computedLocale,calendarLocale:this.calendarLocale,rtl:this.isRTL}},dateOutOfRange:function(){var t=this.computedMin,o=this.computedMax;return function(e){return e=Nm(e),t&&eo}},dateDisabled:function(){var t=this,o=this.dateOutOfRange;return function(e){e=Nm(e);var r=Hm(e);return!(!o(e)&&!t.computedDateDisabledFn(r,e))}},formatDateString:function(){return Um(this.calendarLocale,lc(lc({year:Am,month:Bm,day:Bm},this.dateFormatOptions),{},{hour:void 0,minute:void 0,second:void 0,calendar:Dm}))},formatYearMonth:function(){return Um(this.calendarLocale,{year:Am,month:zm,calendar:Dm})},formatWeekdayName:function(){return Um(this.calendarLocale,{weekday:zm,calendar:Dm})},formatWeekdayNameShort:function(){return Um(this.calendarLocale,{weekday:this.weekdayHeaderFormat||Em,calendar:Dm})},formatDay:function(){var t=new Intl.NumberFormat([this.computedLocale],{style:"decimal",minimumIntegerDigits:1,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"});return function(o){return t.format(o.getDate())}},prevDecadeDisabled:function(){var t=this.computedMin;return this.disabled||t&&qm(Qm(this.activeDate))t},nextYearDisabled:function(){var t=this.computedMax;return this.disabled||t&&Gm(Zm(this.activeDate))>t},nextDecadeDisabled:function(){var t=this.computedMax;return this.disabled||t&&Gm(tc(this.activeDate))>t},calendar:function(){for(var t=[],o=this.calendarFirstDay,e=o.getFullYear(),r=o.getMonth(),i=this.calendarDaysInMonth,n=o.getDay(),a=0-((this.computedWeekStarts>n?7:0)-this.computedWeekStarts)-n,l=0;l<6&&a'.replace("%{w}",ba(t)).replace("%{h}",ba(o)).replace("%{f}",e));return"data:image/svg+xml;charset=UTF-8,".concat(r)}(m,c,r.blankColor||"transparent"),u=null,f=null),r.left?p="float-left":r.right?p="float-right":r.center&&(p="mx-auto",l=!0),t("img",ke(i,{attrs:{src:a,alt:n,width:m?ba(m):null,height:c?ba(c):null,srcset:u||null,sizes:f||null},class:(e={"img-thumbnail":r.thumbnail,"img-fluid":r.fluid||d,"w-100":d,rounded:""===s||!0===s},Fc(e,"rounded-".concat(s),fo(s)&&""!==s),Fc(e,p,p),Fc(e,"d-block",l),e)}))}});function Rc(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Vc(t){for(var o=1;o0);e!==this.visible&&(this.visible=e,this.callback(e),this.once&&this.visible&&(this.doneOnce=!0,this.stop()))}},{key:"stop",value:function(){this.observer&&this.observer.disconnect(),this.observer=null}}])&&Jc(o.prototype,e),t}(),op=function(t){var o=t[Qc];o&&o.stop&&o.stop(),delete t[Qc]},ep=function(t,o,e){var r=o.value,i=o.modifiers,n={margin:"0px",once:!1,callback:r};Do(i).forEach((function(t){ht.test(t)?n.margin="".concat(t,"px"):"once"===t.toLowerCase()&&(n.once=!0)})),op(t),t[Qc]=new tp(t,n,e),t[Qc]._prevModifiers=Eo(i)},rp={bind:ep,componentUpdated:function(t,o,e){var r=o.value,i=o.oldValue,n=o.modifiers;n=Eo(n),!t||r===i&&t[Qc]&&ms(n,t[Qc]._prevModifiers)||ep(t,{value:r,modifiers:n},e)},unbind:function(t){op(t)}};function ip(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function np(t){for(var o=1;o0||i.removedNodes.length>0))&&(e=!0)}e&&o()}));return r.observe(t,function(t){for(var o=1;o0),touchStartX:0,touchDeltaX:0}},computed:{numSlides:function(){return this.slides.length}},watch:(Op={},Tp(Op,Dp,(function(t,o){t!==o&&this.setSlide(la(t,0))})),Tp(Op,"interval",(function(t,o){t!==o&&(t?(this.pause(!0),this.start(!1)):this.pause(!1))})),Tp(Op,"isPaused",(function(t,o){t!==o&&this.$emit(t?"paused":"unpaused")})),Tp(Op,"index",(function(t,o){t===o||this.isSliding||this.doSlide(t,o)})),Op),created:function(){this.$_interval=null,this.$_animationTimeout=null,this.$_touchTimeout=null,this.$_observer=null,this.isPaused=!(la(this.interval,0)>0)},mounted:function(){this.transitionEndEvent=function(t){for(var o in Ap)if(!so(t.style[o]))return Ap[o];return null}(this.$el)||null,this.updateSlides(),this.setObserver(!0)},beforeDestroy:function(){this.clearInterval(),this.clearAnimationTimeout(),this.clearTouchTimeout(),this.setObserver(!1)},methods:{clearInterval:function(t){function o(){return t.apply(this,arguments)}return o.toString=function(){return t.toString()},o}((function(){clearInterval(this.$_interval),this.$_interval=null})),clearAnimationTimeout:function(){clearTimeout(this.$_animationTimeout),this.$_animationTimeout=null},clearTouchTimeout:function(){clearTimeout(this.$_touchTimeout),this.$_touchTimeout=null},setObserver:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=jp(this.$refs.inner,this.updateSlides.bind(this),{subtree:!1,childList:!0,attributes:!0,attributeFilter:["id"]}))},setSlide:function(t){var o=this,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!(rt&&document.visibilityState&&document.hidden)){var r=this.noWrap,i=this.numSlides;t=ad(t),0!==i&&(this.isSliding?this.$once(on,(function(){ya((function(){return o.setSlide(t,e)}))})):(this.direction=e,this.index=t>=i?r?i-1:0:t<0?r?0:i-1:t,r&&this.index!==t&&this.index!==this[Dp]&&this.$emit(zp,this.index)))}},prev:function(){this.setSlide(this.index-1,"prev")},next:function(){this.setSlide(this.index+1,"next")},pause:function(t){t||(this.isPaused=!0),this.clearInterval()},start:function(t){t||(this.isPaused=!1),this.clearInterval(),this.interval&&this.numSlides>1&&(this.$_interval=setInterval(this.next,rd(1e3,this.interval)))},restart:function(){this.$el.contains(Sa())||this.start()},doSlide:function(t,o){var e=this,r=Boolean(this.interval),i=this.calcDirection(this.direction,o,t),n=i.overlayClass,a=i.dirClass,l=this.slides[o],d=this.slides[t];if(l&&d){if(this.isSliding=!0,r&&this.pause(!1),this.$emit("sliding-start",t),this.$emit(zp,this.index),this.noAnimation)Fa(d,"active"),La(l,"active"),this.isSliding=!1,this.$nextTick((function(){return e.$emit(on,t)}));else{Fa(d,n),$a(d),Fa(l,a),Fa(d,a);var s=!1,m=function o(){s||(s=!0,e.transitionEndEvent&&e.transitionEndEvent.split(/\s+/).forEach((function(t){return _l(d,t,o,dn)})),e.clearAnimationTimeout(),La(d,a),La(d,n),Fa(d,"active"),La(l,"active"),La(l,a),La(l,n),Ra(l,"aria-current","false"),Ra(d,"aria-current","true"),Ra(l,"aria-hidden","true"),Ra(d,"aria-hidden","false"),e.isSliding=!1,e.direction=null,e.$nextTick((function(){return e.$emit(on,t)})))};this.transitionEndEvent&&this.transitionEndEvent.split(/\s+/).forEach((function(t){return Tl(d,t,m,dn)})),this.$_animationTimeout=setTimeout(m,650)}r&&this.start(!1)}},updateSlides:function(){this.pause(!0),this.slides=Da(".carousel-item",this.$refs.inner);var t=this.slides.length,o=rd(0,ed(ad(this.index),t-1));this.slides.forEach((function(e,r){var i=r+1;r===o?(Fa(e,"active"),Ra(e,"aria-current","true")):(La(e,"active"),Ra(e,"aria-current","false")),Ra(e,"aria-posinset",String(i)),Ra(e,"aria-setsize",String(t))})),this.setSlide(o),this.start(this.isPaused)},calcDirection:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return t?Ep[t]:e>o?Ep.next:Ep.prev},handleClick:function(t,o){var e=t.keyCode;"click"!==t.type&&e!==ds&&e!==is||($l(t),o())},handleSwipe:function(){var t=id(this.touchDeltaX);if(!(t<=40)){var o=t/this.touchDeltaX;this.touchDeltaX=0,o>0?this.prev():o<0&&this.next()}},touchStart:function(t){ct&&Bp[t.pointerType.toUpperCase()]?this.touchStartX=t.clientX:ct||(this.touchStartX=t.touches[0].clientX)},touchMove:function(t){t.touches&&t.touches.length>1?this.touchDeltaX=0:this.touchDeltaX=t.touches[0].clientX-this.touchStartX},touchEnd:function(t){ct&&Bp[t.pointerType.toUpperCase()]&&(this.touchDeltaX=t.clientX-this.touchStartX),this.handleSwipe(),this.pause(!1),this.clearTouchTimeout(),this.$_touchTimeout=setTimeout(this.start,500+rd(1e3,this.interval))}},render:function(t){var o=this,e=this.indicators,r=this.background,i=this.noAnimation,n=this.noHoverPause,a=this.noTouch,l=this.index,d=this.isSliding,s=this.pause,m=this.restart,c=this.touchStart,p=this.touchEnd,u=this.safeId("__BV_inner_"),f=t("div",{staticClass:"carousel-inner",attrs:{id:u,role:"list"},ref:"inner"},[this.normalizeSlot()]),b=t();if(this.controls){var g=function(e,r,i){var n=function(t){d?$l(t,{propagation:!1}):o.handleClick(t,i)};return t("a",{staticClass:"carousel-control-".concat(e),attrs:{href:"#",role:"button","aria-controls":u,"aria-disabled":d?"true":null},on:{click:n,keydown:n}},[t("span",{staticClass:"carousel-control-".concat(e,"-icon"),attrs:{"aria-hidden":"true"}}),t("span",{class:"sr-only"},[r])])};b=[g("prev",this.labelPrev,this.prev),g("next",this.labelNext,this.next)]}var h=t("ol",{staticClass:"carousel-indicators",directives:[{name:"show",value:e}],attrs:{id:this.safeId("__BV_indicators_"),"aria-hidden":e?"false":"true","aria-label":this.labelIndicators,"aria-owns":u}},this.slides.map((function(r,i){var n=function(t){o.handleClick(t,(function(){o.setSlide(i)}))};return t("li",{class:{active:i===l},attrs:{role:"button",id:o.safeId("__BV_indicator_".concat(i+1,"_")),tabindex:e?"0":"-1","aria-current":i===l?"true":"false","aria-label":"".concat(o.labelGotoSlide," ").concat(i+1),"aria-describedby":r.id||null,"aria-controls":u},on:{click:n,keydown:n},key:"slide_".concat(i)})}))),v={mouseenter:n?kp:s,mouseleave:n?kp:m,focusin:s,focusout:m,keydown:function(t){if(!/input|textarea/i.test(t.target.tagName)){var e=t.keyCode;e!==as&&e!==ls||($l(t),o[e===as?"prev":"next"]())}}};return mt&&!a&&(ct?(v["&pointerdown"]=c,v["&pointerup"]=p):(v["&touchstart"]=c,v["&touchmove"]=this.touchMove,v["&touchend"]=p)),t("div",{staticClass:"carousel",class:{slide:!i,"carousel-fade":!i&&this.fade,"pointer-event":mt&&ct&&!a},style:{background:r},attrs:{role:"region",id:this.safeId(),"aria-busy":d?"true":"false"},on:v},[f,b,h])}});function Lp(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Mp(t){for(var o=1;o0?(Ra(t,vu,r.join(" ")),Ua(t,yu,"none")):(Va(t,vu),Wa(t,yu)),ya((function(){!function(t,o){if(Cu(t),o.context){var e=function(e){"keydown"===e.type&&!ea(Tu,e.keyCode)||Ca(t)||(t[hu]||[]).forEach((function(t){o.context.$root.$emit(Ou,t)}))};t[bu]=e,Tl(t,"click",e,ln),_u(t)&&Tl(t,"keydown",e,ln)}}(t,e)})),ms(r,t[hu])||(t[hu]=r,r.forEach((function(t){e.context.$root.$emit(Pu,t)})))}},Bu={bind:function(t,o,e){t[gu]=!1,t[hu]=[],function(t,o){if($u(t,o),o.context){var e=function(o,e){ea(t[hu]||[],o)&&(t[gu]=e,Du(t,e))};t[fu]=e,o.context.$root.$on([ju,Su],e)}}(t,e),Eu(t,o,e)},componentUpdated:Eu,updated:Eu,unbind:function(t,o,e){Cu(t),$u(t,e),zu(t,fu),zu(t,bu),zu(t,gu),zu(t,hu),La(t,cu),La(t,pu),Va(t,xu),Va(t,vu),Va(t,ku),Wa(t,yu)}},Au=de({directives:{VBToggle:Bu}}),Iu=de({components:{BCollapse:mu},plugins:{VBTogglePlugin:Au}}),Fu="undefined"!=typeof window&&"undefined"!=typeof document&&"undefined"!=typeof navigator,Lu=function(){for(var t=["Edge","Trident","Firefox"],o=0;o=0)return 1;return 0}(),Mu=Fu&&window.Promise?function(t){var o=!1;return function(){o||(o=!0,window.Promise.resolve().then((function(){o=!1,t()})))}}:function(t){var o=!1;return function(){o||(o=!0,setTimeout((function(){o=!1,t()}),Lu))}};function Ru(t){return t&&"[object Function]"==={}.toString.call(t)}function Vu(t,o){if(1!==t.nodeType)return[];var e=t.ownerDocument.defaultView.getComputedStyle(t,null);return o?e[o]:e}function Nu(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function Hu(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var o=Vu(t),e=o.overflow,r=o.overflowX,i=o.overflowY;return/(auto|scroll|overlay)/.test(e+i+r)?t:Hu(Nu(t))}function Uu(t){return t&&t.referenceNode?t.referenceNode:t}var Wu=Fu&&!(!window.MSInputMethodContext||!document.documentMode),Gu=Fu&&/MSIE 10/.test(navigator.userAgent);function qu(t){return 11===t?Wu:10===t?Gu:Wu||Gu}function Yu(t){if(!t)return document.documentElement;for(var o=qu(10)?document.body:null,e=t.offsetParent||null;e===o&&t.nextElementSibling;)e=(t=t.nextElementSibling).offsetParent;var r=e&&e.nodeName;return r&&"BODY"!==r&&"HTML"!==r?-1!==["TH","TD","TABLE"].indexOf(e.nodeName)&&"static"===Vu(e,"position")?Yu(e):e:t?t.ownerDocument.documentElement:document.documentElement}function Xu(t){return null!==t.parentNode?Xu(t.parentNode):t}function Ku(t,o){if(!(t&&t.nodeType&&o&&o.nodeType))return document.documentElement;var e=t.compareDocumentPosition(o)&Node.DOCUMENT_POSITION_FOLLOWING,r=e?t:o,i=e?o:t,n=document.createRange();n.setStart(r,0),n.setEnd(i,0);var a,l,d=n.commonAncestorContainer;if(t!==d&&o!==d||r.contains(i))return"BODY"===(l=(a=d).nodeName)||"HTML"!==l&&Yu(a.firstElementChild)!==a?Yu(d):d;var s=Xu(t);return s.host?Ku(s.host,o):Ku(t,Xu(o).host)}function Ju(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top",e="top"===o?"scrollTop":"scrollLeft",r=t.nodeName;if("BODY"===r||"HTML"===r){var i=t.ownerDocument.documentElement,n=t.ownerDocument.scrollingElement||i;return n[e]}return t[e]}function Zu(t,o){var e=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=Ju(o,"top"),i=Ju(o,"left"),n=e?-1:1;return t.top+=r*n,t.bottom+=r*n,t.left+=i*n,t.right+=i*n,t}function Qu(t,o){var e="x"===o?"Left":"Top",r="Left"===e?"Right":"Bottom";return parseFloat(t["border"+e+"Width"])+parseFloat(t["border"+r+"Width"])}function tf(t,o,e,r){return Math.max(o["offset"+t],o["scroll"+t],e["client"+t],e["offset"+t],e["scroll"+t],qu(10)?parseInt(e["offset"+t])+parseInt(r["margin"+("Height"===t?"Top":"Left")])+parseInt(r["margin"+("Height"===t?"Bottom":"Right")]):0)}function of(t){var o=t.body,e=t.documentElement,r=qu(10)&&getComputedStyle(e);return{height:tf("Height",o,e,r),width:tf("Width",o,e,r)}}var ef=function(t,o){if(!(t instanceof o))throw new TypeError("Cannot call a class as a function")},rf=function(){function t(t,o){for(var e=0;e2&&void 0!==arguments[2]&&arguments[2],r=qu(10),i="HTML"===o.nodeName,n=df(t),a=df(o),l=Hu(t),d=Vu(o),s=parseFloat(d.borderTopWidth),m=parseFloat(d.borderLeftWidth);e&&i&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var c=lf({top:n.top-a.top-s,left:n.left-a.left-m,width:n.width,height:n.height});if(c.marginTop=0,c.marginLeft=0,!r&&i){var p=parseFloat(d.marginTop),u=parseFloat(d.marginLeft);c.top-=s-p,c.bottom-=s-p,c.left-=m-u,c.right-=m-u,c.marginTop=p,c.marginLeft=u}return(r&&!e?o.contains(l):o===l&&"BODY"!==l.nodeName)&&(c=Zu(c,o)),c}function mf(t){var o=arguments.length>1&&void 0!==arguments[1]&&arguments[1],e=t.ownerDocument.documentElement,r=sf(t,e),i=Math.max(e.clientWidth,window.innerWidth||0),n=Math.max(e.clientHeight,window.innerHeight||0),a=o?0:Ju(e),l=o?0:Ju(e,"left"),d={top:a-r.top+r.marginTop,left:l-r.left+r.marginLeft,width:i,height:n};return lf(d)}function cf(t){var o=t.nodeName;if("BODY"===o||"HTML"===o)return!1;if("fixed"===Vu(t,"position"))return!0;var e=Nu(t);return!!e&&cf(e)}function pf(t){if(!t||!t.parentElement||qu())return document.documentElement;for(var o=t.parentElement;o&&"none"===Vu(o,"transform");)o=o.parentElement;return o||document.documentElement}function uf(t,o,e,r){var i=arguments.length>4&&void 0!==arguments[4]&&arguments[4],n={top:0,left:0},a=i?pf(t):Ku(t,Uu(o));if("viewport"===r)n=mf(a,i);else{var l=void 0;"scrollParent"===r?"BODY"===(l=Hu(Nu(o))).nodeName&&(l=t.ownerDocument.documentElement):l="window"===r?t.ownerDocument.documentElement:r;var d=sf(l,a,i);if("HTML"!==l.nodeName||cf(a))n=d;else{var s=of(t.ownerDocument),m=s.height,c=s.width;n.top+=d.top-d.marginTop,n.bottom=m+d.top,n.left+=d.left-d.marginLeft,n.right=c+d.left}}var p="number"==typeof(e=e||0);return n.left+=p?e:e.left||0,n.top+=p?e:e.top||0,n.right-=p?e:e.right||0,n.bottom-=p?e:e.bottom||0,n}function ff(t){return t.width*t.height}function bf(t,o,e,r,i){var n=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var a=uf(e,r,n,i),l={top:{width:a.width,height:o.top-a.top},right:{width:a.right-o.right,height:a.height},bottom:{width:a.width,height:a.bottom-o.bottom},left:{width:o.left-a.left,height:a.height}},d=Object.keys(l).map((function(t){return af({key:t},l[t],{area:ff(l[t])})})).sort((function(t,o){return o.area-t.area})),s=d.filter((function(t){var o=t.width,r=t.height;return o>=e.clientWidth&&r>=e.clientHeight})),m=s.length>0?s[0].key:d[0].key,c=t.split("-")[1];return m+(c?"-"+c:"")}function gf(t,o,e){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,i=r?pf(o):Ku(o,Uu(e));return sf(e,i,r)}function hf(t){var o=t.ownerDocument.defaultView.getComputedStyle(t),e=parseFloat(o.marginTop||0)+parseFloat(o.marginBottom||0),r=parseFloat(o.marginLeft||0)+parseFloat(o.marginRight||0);return{width:t.offsetWidth+r,height:t.offsetHeight+e}}function vf(t){var o={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,(function(t){return o[t]}))}function xf(t,o,e){e=e.split("-")[0];var r=hf(t),i={width:r.width,height:r.height},n=-1!==["right","left"].indexOf(e),a=n?"top":"left",l=n?"left":"top",d=n?"height":"width",s=n?"width":"height";return i[a]=o[a]+o[d]/2-r[d]/2,i[l]=e===l?o[l]-r[s]:o[vf(l)],i}function kf(t,o){return Array.prototype.find?t.find(o):t.filter(o)[0]}function wf(t,o,e){return(void 0===e?t:t.slice(0,function(t,o,e){if(Array.prototype.findIndex)return t.findIndex((function(t){return t.name===e}));var r=kf(t,(function(t){return t.name===e}));return t.indexOf(r)}(t,0,e))).forEach((function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var e=t.function||t.fn;t.enabled&&Ru(e)&&(o.offsets.popper=lf(o.offsets.popper),o.offsets.reference=lf(o.offsets.reference),o=e(o,t))})),o}function yf(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=gf(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=bf(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=xf(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=wf(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}function Of(t,o){return t.some((function(t){var e=t.name;return t.enabled&&e===o}))}function jf(t){for(var o=[!1,"ms","Webkit","Moz","O"],e=t.charAt(0).toUpperCase()+t.slice(1),r=0;r1&&void 0!==arguments[1]&&arguments[1],e=If.indexOf(t),r=If.slice(e+1).concat(If.slice(0,e));return o?r.reverse():r}var Lf={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var o=t.placement,e=o.split("-")[0],r=o.split("-")[1];if(r){var i=t.offsets,n=i.reference,a=i.popper,l=-1!==["bottom","top"].indexOf(e),d=l?"left":"top",s=l?"width":"height",m={start:nf({},d,n[d]),end:nf({},d,n[d]+n[s]-a[s])};t.offsets.popper=af({},a,m[r])}return t}},offset:{order:200,enabled:!0,fn:function(t,o){var e,r=o.offset,i=t.placement,n=t.offsets,a=n.popper,l=n.reference,d=i.split("-")[0];return e=Df(+r)?[+r,0]:function(t,o,e,r){var i=[0,0],n=-1!==["right","left"].indexOf(r),a=t.split(/(\+|\-)/).map((function(t){return t.trim()})),l=a.indexOf(kf(a,(function(t){return-1!==t.search(/,|\s/)})));a[l]&&-1===a[l].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var d=/\s*,\s*|\s+/,s=-1!==l?[a.slice(0,l).concat([a[l].split(d)[0]]),[a[l].split(d)[1]].concat(a.slice(l+1))]:[a];return(s=s.map((function(t,r){var i=(1===r?!n:n)?"height":"width",a=!1;return t.reduce((function(t,o){return""===t[t.length-1]&&-1!==["+","-"].indexOf(o)?(t[t.length-1]=o,a=!0,t):a?(t[t.length-1]+=o,a=!1,t):t.concat(o)}),[]).map((function(t){return function(t,o,e,r){var i=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),n=+i[1],a=i[2];if(!n)return t;if(0===a.indexOf("%")){var l=void 0;switch(a){case"%p":l=e;break;case"%":case"%r":default:l=r}return lf(l)[o]/100*n}return"vh"===a||"vw"===a?("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*n:n}(t,i,o,e)}))}))).forEach((function(t,o){t.forEach((function(e,r){Df(e)&&(i[o]+=e*("-"===t[r-1]?-1:1))}))})),i}(r,a,l,d),"left"===d?(a.top+=e[0],a.left-=e[1]):"right"===d?(a.top+=e[0],a.left+=e[1]):"top"===d?(a.left+=e[0],a.top-=e[1]):"bottom"===d&&(a.left+=e[0],a.top+=e[1]),t.popper=a,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,o){var e=o.boundariesElement||Yu(t.instance.popper);t.instance.reference===e&&(e=Yu(e));var r=jf("transform"),i=t.instance.popper.style,n=i.top,a=i.left,l=i[r];i.top="",i.left="",i[r]="";var d=uf(t.instance.popper,t.instance.reference,o.padding,e,t.positionFixed);i.top=n,i.left=a,i[r]=l,o.boundaries=d;var s=o.priority,m=t.offsets.popper,c={primary:function(t){var e=m[t];return m[t]d[t]&&!o.escapeWithReference&&(r=Math.min(m[e],d[t]-("right"===t?m.width:m.height))),nf({},e,r)}};return s.forEach((function(t){var o=-1!==["left","top"].indexOf(t)?"primary":"secondary";m=af({},m,c[o](t))})),t.offsets.popper=m,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var o=t.offsets,e=o.popper,r=o.reference,i=t.placement.split("-")[0],n=Math.floor,a=-1!==["top","bottom"].indexOf(i),l=a?"right":"bottom",d=a?"left":"top",s=a?"width":"height";return e[l]n(r[l])&&(t.offsets.popper[d]=n(r[l])),t}},arrow:{order:500,enabled:!0,fn:function(t,o){var e;if(!Bf(t.instance.modifiers,"arrow","keepTogether"))return t;var r=o.element;if("string"==typeof r){if(!(r=t.instance.popper.querySelector(r)))return t}else if(!t.instance.popper.contains(r))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var i=t.placement.split("-")[0],n=t.offsets,a=n.popper,l=n.reference,d=-1!==["left","right"].indexOf(i),s=d?"height":"width",m=d?"Top":"Left",c=m.toLowerCase(),p=d?"left":"top",u=d?"bottom":"right",f=hf(r)[s];l[u]-fa[u]&&(t.offsets.popper[c]+=l[c]+f-a[u]),t.offsets.popper=lf(t.offsets.popper);var b=l[c]+l[s]/2-f/2,g=Vu(t.instance.popper),h=parseFloat(g["margin"+m]),v=parseFloat(g["border"+m+"Width"]),x=b-t.offsets.popper[c]-h-v;return x=Math.max(Math.min(a[s]-f,x),0),t.arrowElement=r,t.offsets.arrow=(nf(e={},c,Math.round(x)),nf(e,p,""),e),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,o){if(Of(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var e=uf(t.instance.popper,t.instance.reference,o.padding,o.boundariesElement,t.positionFixed),r=t.placement.split("-")[0],i=vf(r),n=t.placement.split("-")[1]||"",a=[];switch(o.behavior){case"flip":a=[r,i];break;case"clockwise":a=Ff(r);break;case"counterclockwise":a=Ff(r,!0);break;default:a=o.behavior}return a.forEach((function(l,d){if(r!==l||a.length===d+1)return t;r=t.placement.split("-")[0],i=vf(r);var s=t.offsets.popper,m=t.offsets.reference,c=Math.floor,p="left"===r&&c(s.right)>c(m.left)||"right"===r&&c(s.left)c(m.top)||"bottom"===r&&c(s.top)c(e.right),b=c(s.top)c(e.bottom),h="left"===r&&u||"right"===r&&f||"top"===r&&b||"bottom"===r&&g,v=-1!==["top","bottom"].indexOf(r),x=!!o.flipVariations&&(v&&"start"===n&&u||v&&"end"===n&&f||!v&&"start"===n&&b||!v&&"end"===n&&g),k=!!o.flipVariationsByContent&&(v&&"start"===n&&f||v&&"end"===n&&u||!v&&"start"===n&&g||!v&&"end"===n&&b),w=x||k;(p||h||w)&&(t.flipped=!0,(p||h)&&(r=a[d+1]),w&&(n=function(t){return"end"===t?"start":"start"===t?"end":t}(n)),t.placement=r+(n?"-"+n:""),t.offsets.popper=af({},t.offsets.popper,xf(t.instance.popper,t.offsets.reference,t.placement)),t=wf(t.instance.modifiers,t,"flip"))})),t},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(t){var o=t.placement,e=o.split("-")[0],r=t.offsets,i=r.popper,n=r.reference,a=-1!==["left","right"].indexOf(e),l=-1===["top","left"].indexOf(e);return i[a?"left":"top"]=n[e]-(l?i[a?"width":"height"]:0),t.placement=vf(o),t.offsets.popper=lf(i),t}},hide:{order:800,enabled:!0,fn:function(t){if(!Bf(t.instance.modifiers,"hide","preventOverflow"))return t;var o=t.offsets.reference,e=kf(t.instance.modifiers,(function(t){return"preventOverflow"===t.name})).boundaries;if(o.bottome.right||o.top>e.bottom||o.right2&&void 0!==arguments[2]?arguments[2]:{};ef(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=Mu(this.update.bind(this)),this.options=af({},t.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=o&&o.jquery?o[0]:o,this.popper=e&&e.jquery?e[0]:e,this.options.modifiers={},Object.keys(af({},t.Defaults.modifiers,i.modifiers)).forEach((function(o){r.options.modifiers[o]=af({},t.Defaults.modifiers[o]||{},i.modifiers?i.modifiers[o]:{})})),this.modifiers=Object.keys(this.options.modifiers).map((function(t){return af({name:t},r.options.modifiers[t])})).sort((function(t,o){return t.order-o.order})),this.modifiers.forEach((function(t){t.enabled&&Ru(t.onLoad)&&t.onLoad(r.reference,r.popper,r.options,t,r.state)})),this.update();var n=this.options.eventsEnabled;n&&this.enableEventListeners(),this.state.eventsEnabled=n}return rf(t,[{key:"update",value:function(){return yf.call(this)}},{key:"destroy",value:function(){return Sf.call(this)}},{key:"enableEventListeners",value:function(){return Cf.call(this)}},{key:"disableEventListeners",value:function(){return $f.call(this)}}]),t}();Mf.Utils=("undefined"!=typeof window?window:e.g).PopperUtils,Mf.placements=Af,Mf.Defaults=Lf;const Rf=Mf;function Vf(t,o){if(!(t instanceof o))throw new TypeError("Cannot call a class as a function")}function Nf(t,o){for(var e=0;e1&&void 0!==arguments[1]?arguments[1]:{};if(Vf(this,t),!o)throw new TypeError("Failed to construct '".concat(this.constructor.name,"'. 1 argument required, ").concat(arguments.length," given."));Po(this,t.Defaults,this.constructor.Defaults,e,{type:o}),_o(this,{type:{enumerable:!0,configurable:!1,writable:!1},cancelable:{enumerable:!0,configurable:!1,writable:!1},nativeEvent:{enumerable:!0,configurable:!1,writable:!1},target:{enumerable:!0,configurable:!1,writable:!1},relatedTarget:{enumerable:!0,configurable:!1,writable:!1},vueTarget:{enumerable:!0,configurable:!1,writable:!1},componentId:{enumerable:!0,configurable:!1,writable:!1}});var r=!1;this.preventDefault=function(){this.cancelable&&(r=!0)},Co(this,"defaultPrevented",{enumerable:!0,get:function(){return r}})}var o,e;return o=t,e=[{key:"Defaults",get:function(){return{type:"",cancelable:!0,nativeEvent:null,target:null,relatedTarget:null,vueTarget:null,componentId:null}}}],null&&Nf(o.prototype,null),e&&Nf(o,e),t}(),Uf=r.default.extend({data:function(){return{listenForClickOut:!1}},watch:{listenForClickOut:function(t,o){t!==o&&(_l(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,dn),t&&Tl(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,dn))}},beforeCreate:function(){this.clickOutElement=null,this.clickOutEventName=null},mounted:function(){this.clickOutElement||(this.clickOutElement=document),this.clickOutEventName||(this.clickOutEventName="click"),this.listenForClickOut&&Tl(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,dn)},beforeDestroy:function(){_l(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,dn)},methods:{isClickOut:function(t){return!Aa(this.$el,t.target)},_clickOutHandler:function(t){this.clickOutHandler&&this.isClickOut(t)&&this.clickOutHandler(t)}}}),Wf=r.default.extend({data:function(){return{listenForFocusIn:!1}},watch:{listenForFocusIn:function(t,o){t!==o&&(_l(this.focusInElement,"focusin",this._focusInHandler,dn),t&&Tl(this.focusInElement,"focusin",this._focusInHandler,dn))}},beforeCreate:function(){this.focusInElement=null},mounted:function(){this.focusInElement||(this.focusInElement=document),this.listenForFocusIn&&Tl(this.focusInElement,"focusin",this._focusInHandler,dn)},beforeDestroy:function(){_l(this.focusInElement,"focusin",this._focusInHandler,dn)},methods:{_focusInHandler:function(t){this.focusInHandler&&this.focusInHandler(t)}}});function Gf(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function qf(t){for(var o=1;o0&&void 0!==arguments[0]&&arguments[0];this.disabled||(this.visible=!1,t&&this.$once(Ri,this.focusToggler))},toggle:function(t){var o=t=t||{},e=o.type,r=o.keyCode;("click"===e||"keydown"===e&&-1!==[is,ds,es].indexOf(r))&&(this.disabled?this.visible=!1:(this.$emit(en,t),$l(t),this.visible?this.hide(!0):this.show()))},onMousedown:function(t){$l(t,{propagation:!1})},onKeydown:function(t){var o=t.keyCode;27===o?this.onEsc(t):o===es?this.focusNext(t,!1):o===ss&&this.focusNext(t,!0)},onEsc:function(t){this.visible&&(this.visible=!1,$l(t),this.$once(Ri,this.focusToggler))},onSplitClick:function(t){this.disabled?this.visible=!1:this.$emit(Pi,t)},hideHandler:function(t){var o=this,e=t.target;!this.visible||Aa(this.$refs.menu,e)||Aa(this.toggler,e)||(this.clearHideTimeout(),this.$_hideTimeout=setTimeout((function(){return o.hide()}),this.inNavbar?300:0))},clickOutHandler:function(t){this.hideHandler(t)},focusInHandler:function(t){this.hideHandler(t)},focusNext:function(t,o){var e=this,r=t.target;!this.visible||t&&Ba(".dropdown form",r)||($l(t),this.$nextTick((function(){var t=e.getItems();if(!(t.length<1)){var i=t.indexOf(r);o&&i>0?i--:!o&&i1&&void 0!==arguments[1]?arguments[1]:null;if(xo(t)){var e=Go(t,this.valueField),r=Go(t,this.textField);return{value:so(e)?o||r:e,text:am(String(so(r)?o:r)),html:Go(t,this.htmlField),disabled:Boolean(Go(t,this.disabledField))}}return{value:o||t,text:am(String(t)),disabled:!1}},normalizeOptions:function(t){var o=this;return ho(t)?t.map((function(t){return o.normalizeOption(t)})):xo(t)?(Xo('Setting prop "options" to an object is deprecated. Use the array format instead.',this.$options.name),Do(t).map((function(e){return o.normalizeOption(t[e]||{},e)}))):[]}}});function Gb(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function qb(t){for(var o=1;o-1:ms(o,t)},isRadio:function(){return!1}},watch:Dg({},zg,(function(t,o){ms(t,o)||this.setIndeterminate(t)})),mounted:function(){this.setIndeterminate(this.indeterminate)},methods:{computedLocalCheckedWatcher:function(t,o){if(!ms(t,o)){this.$emit(Pg,t);var e=this.$refs.input;e&&this.$emit(Eg,e.indeterminate)}},handleChange:function(t){var o=this,e=t.target,r=e.checked,i=e.indeterminate,n=this.value,a=this.uncheckedValue,l=this.computedLocalChecked;if(ho(l)){var d=dg(l,n);r&&d<0?l=l.concat(n):!r&&d>-1&&(l=l.slice(0,d).concat(l.slice(d+1)))}else l=r?n:a;this.computedLocalChecked=l,this.$nextTick((function(){o.$emit(Si,l),o.isGroup&&o.bvGroup.$emit(Si,l),o.$emit(Eg,i)}))},setIndeterminate:function(t){ho(this.computedLocalChecked)&&(t=!1);var o=this.$refs.input;o&&(o.indeterminate=t,this.$emit(Eg,t))}}});function Ig(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Fg(t){for(var o=1;o0&&(d=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":d.length>1,"justify-content-end":d.length<2}},d)]);var p=t(bc,{staticClass:"b-form-date-calendar w-100",props:vh(vh({},gl(Ph,n)),{},{hidden:!this.isVisible,value:o,valueAsDate:!1,width:this.calendarWidth}),on:{selected:this.onSelected,input:this.onInput,context:this.onContext},scopedSlots:Bo(a,["nav-prev-decade","nav-prev-year","nav-prev-month","nav-this-month","nav-next-month","nav-next-year","nav-next-decade"]),key:"calendar",ref:"calendar"},d);return t(gh,{staticClass:"b-form-datepicker",props:vh(vh({},gl(Th,n)),{},{formattedValue:o?this.formattedValue:"",id:this.safeId(),lang:this.computedLang,menuClass:[{"bg-dark":i,"text-light":i},this.menuClass],placeholder:l,rtl:this.isRTL,value:o}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:xh({},Bn,a["button-content"]||this.defaultButtonFn),ref:"control"},[p])}}),$h=de({components:{BFormDatepicker:Ch,BDatepicker:Ch}});function Dh(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function zh(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:"";return new Promise((function(r){var i=[];!function n(){o.readEntries((function(o){0===o.length?r(Promise.all(i).then((function(t){return na(t)}))):(i.push(Promise.all(o.map((function(o){if(o){if(o.isDirectory)return t(o.createReader(),"".concat(e).concat(o.name,"/"));if(o.isFile)return new Promise((function(t){o.file((function(o){o.$path="".concat(e).concat(o.name),t(o)}))}))}return null})).filter(Uo))),n())}))}()}))},Hh=vl(Fo(zh(zh(zh(zh(zh(zh(zh({},ic),Ih),mg),pg),gg),fg),{},{accept:fl(hn,""),browseText:fl(hn,"Browse"),capture:fl(cn,!1),directory:fl(cn,!1),dropPlaceholder:fl(hn,"Drop files here"),fileNameFormatter:fl(un),multiple:fl(cn,!1),noDrop:fl(cn,!1),noDropPlaceholder:fl(hn,"Not allowed"),noTraverse:fl(cn,!1),placeholder:fl(hn,"No file chosen")})),sr),Uh=r.default.extend({name:sr,mixins:[bs,nc,Ah,Sl,cg,hg,ug,Sl],inheritAttrs:!1,props:Hh,data:function(){return{files:[],dragging:!1,dropAllowed:!this.noDrop,hasFocus:!1}},computed:{computedAccept:function(){var t=this.accept;return 0===(t=(t||"").trim().split(/[,\s]+/).filter(Uo)).length?null:t.map((function(t){var o="name",e="^",r="$";return vt.test(t)?e="":(o="type",Ct.test(t)&&(r=".+$",t=t.slice(0,-1))),t=fa(t),{rx:new RegExp("".concat(e).concat(t).concat(r)),prop:o}}))},computedCapture:function(){var t=this.capture;return!0===t||""===t||t||null},computedAttrs:function(){var t=this.name,o=this.disabled,e=this.required,r=this.form,i=this.computedCapture,n=this.accept,a=this.multiple,l=this.directory;return zh(zh({},this.bvAttrs),{},{type:"file",id:this.safeId(),name:t,disabled:o,required:e,form:r||null,capture:i,accept:n||null,multiple:a,directory:l,webkitdirectory:l,"aria-required":e?"true":null})},computedFileNameFormatter:function(){var t=this.fileNameFormatter;return kl(t)?t:this.defaultFileNameFormatter},clonedFiles:function(){return Ho(this.files)},flattenedFiles:function(){return aa(this.files)},fileNames:function(){return this.flattenedFiles.map((function(t){return t.name}))},labelContent:function(){if(this.dragging&&!this.noDrop)return this.normalizeSlot("drop-placeholder",{allowed:this.dropAllowed})||(this.dropAllowed?this.dropPlaceholder:this.$createElement("span",{staticClass:"text-danger"},this.noDropPlaceholder));if(0===this.files.length)return this.normalizeSlot("placeholder")||this.placeholder;var t=this.flattenedFiles,o=this.clonedFiles,e=this.fileNames,r=this.computedFileNameFormatter;return this.hasNormalizedSlot(Ln)?this.normalizeSlot(Ln,{files:t,filesTraversed:o,names:e}):r(t,o,e)}},watch:(kh={},Eh(kh,Fh,(function(t){(!t||ho(t)&&0===t.length)&&this.reset()})),Eh(kh,"files",(function(t,o){if(!ms(t,o)){var e=this.multiple,r=this.noTraverse,i=!e||r?aa(t):t;this.$emit(Lh,e?i:i[0]||null)}})),kh),created:function(){this.$_form=null},mounted:function(){var t=Ba("form",this.$el);t&&(Tl(t,"reset",this.reset,ln),this.$_form=t)},beforeDestroy:function(){var t=this.$_form;t&&_l(t,"reset",this.reset,ln)},methods:{isFileValid:function(t){if(!t)return!1;var o=this.computedAccept;return!o||o.some((function(o){return o.rx.test(t[o.prop])}))},isFilesArrayValid:function(t){var o=this;return ho(t)?t.every((function(t){return o.isFileValid(t)})):this.isFileValid(t)},defaultFileNameFormatter:function(t,o,e){return e.join(", ")},setFiles:function(t){this.dropAllowed=!this.noDrop,this.dragging=!1,this.files=this.multiple?this.directory?t:aa(t):aa(t).slice(0,1)},setInputFiles:function(t){try{var o=new ClipboardEvent("").clipboardData||new DataTransfer;aa(Ho(t)).forEach((function(t){delete t.$path,o.items.add(t)})),this.$refs.input.files=o.files}catch(t){}},reset:function(){try{var t=this.$refs.input;t.value="",t.type="",t.type="file"}catch(t){}this.files=[]},handleFiles:function(t){var o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(o){var e=t.filter(this.isFilesArrayValid);e.length>0&&(this.setFiles(e),this.setInputFiles(e))}else this.setFiles(t)},focusHandler:function(t){this.plain||"focusout"===t.type?this.hasFocus=!1:this.hasFocus=!0},onChange:function(t){var o=this,e=t.type,r=t.target,i=t.dataTransfer,n=void 0===i?{}:i,a="drop"===e;this.$emit(Si,t);var l=oa(n.items||[]);if(ot&&l.length>0&&!mo(Vh(l[0])))(function(t){var o=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return Promise.all(oa(t).filter((function(t){return"file"===t.kind})).map((function(t){var e=Vh(t);if(e){if(e.isDirectory&&o)return Nh(e.createReader(),"".concat(e.name,"/"));if(e.isFile)return new Promise((function(t){e.file((function(o){o.$path="",t(o)}))}))}return null})).filter(Uo))})(l,this.directory).then((function(t){return o.handleFiles(t,a)}));else{var d=oa(r.files||n.files||[]).map((function(t){return t.$path=t.webkitRelativePath||"",t}));this.handleFiles(d,a)}},onDragenter:function(t){$l(t),this.dragging=!0;var o=t.dataTransfer,e=void 0===o?{}:o;if(this.noDrop||this.disabled||!this.dropAllowed)return e.dropEffect="none",void(this.dropAllowed=!1);e.dropEffect="copy"},onDragover:function(t){$l(t),this.dragging=!0;var o=t.dataTransfer,e=void 0===o?{}:o;if(this.noDrop||this.disabled||!this.dropAllowed)return e.dropEffect="none",void(this.dropAllowed=!1);e.dropEffect="copy"},onDragleave:function(t){var o=this;$l(t),this.$nextTick((function(){o.dragging=!1,o.dropAllowed=!o.noDrop}))},onDrop:function(t){var o=this;$l(t),this.dragging=!1,this.noDrop||this.disabled||!this.dropAllowed?this.$nextTick((function(){o.dropAllowed=!o.noDrop})):this.onChange(t)}},render:function(t){var o=this.custom,e=this.plain,r=this.size,i=this.dragging,n=this.stateClass,a=this.bvAttrs,l=t("input",{class:[{"form-control-file":e,"custom-file-input":o,focus:o&&this.hasFocus},n],style:o?{zIndex:-5}:{},attrs:this.computedAttrs,on:{change:this.onChange,focusin:this.focusHandler,focusout:this.focusHandler,reset:this.reset},ref:"input"});if(e)return l;var d=t("label",{staticClass:"custom-file-label",class:{dragging:i},attrs:{for:this.safeId(),"data-browse":this.browseText||null}},[t("span",{staticClass:"d-block form-file-text",style:{pointerEvents:"none"}},[this.labelContent])]);return t("div",{staticClass:"custom-file b-form-file",class:[Eh({},"b-custom-control-".concat(r),r),n,a.class],style:a.style,attrs:{id:this.safeId("_BV_file_outer_")},on:{dragenter:this.onDragenter,dragover:this.onDragover,dragleave:this.onDragleave,drop:this.onDrop}},[l,d])}}),Wh=de({components:{BFormFile:Uh,BFile:Uh}}),Gh=function(t){return"\\"+t},qh=function(t){var o=(t=ba(t)).length,e=t.charCodeAt(0);return t.split("").reduce((function(r,i,n){var a=t.charCodeAt(n);return 0===a?r+"�":127===a||a>=1&&a<=31||0===n&&a>=48&&a<=57||1===n&&a>=48&&a<=57&&45===e?r+Gh("".concat(a.toString(16)," ")):0===n&&45===a&&1===o?r+Gh(i):a>=128||45===a||95===a||a>=48&&a<=57||a>=65&&a<=90||a>=97&&a<=122?r+i:r+Gh(i)}),"")};function Yh(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Xh(t){for(var o=1;o0||Do(this.labelColProps).length>0}},watch:{ariaDescribedby:function(t,o){t!==o&&this.updateAriaDescribedby(t,o)}},mounted:function(){var t=this;this.$nextTick((function(){t.updateAriaDescribedby(t.ariaDescribedby)}))},methods:{getAlignClasses:function(t,o){return ll().reduce((function(e,r){var i=t[ul(r,"".concat(o,"Align"))]||null;return i&&e.push(["text",r,i].filter(Uo).join("-")),e}),[])},getColProps:function(t,o){return ll().reduce((function(e,r){var i=t[ul(r,"".concat(o,"Cols"))];return uo(i=""===i||i||!1)||"auto"===i||(i=(i=la(i,0))>0&&i),i&&(e[r||(uo(i)?"col":"cols")]=i),e}),{})},updateAriaDescribedby:function(t,o){var e=this.labelFor;if(rt&&e){var r=za("#".concat(qh(e)),this.$refs.content);if(r){var i="aria-describedby",n=(t||"").split(_t),a=(o||"").split(_t),l=(Na(r,i)||"").split(_t).filter((function(t){return!ea(a,t)})).concat(n).filter((function(t,o,e){return e.indexOf(t)===o})).filter(Uo).join(" ").trim();l?Ra(r,i,l):Va(r,i)}}},onLegendClick:function(t){if(!this.labelFor){var o=t.target,e=o?o.tagName:"";if(-1===av.indexOf(e)){var r=Da(nv,this.$refs.content).filter(_a);1===r.length&&Qa(r[0])}}}},render:function(t){var o=this.computedState,e=this.feedbackAriaLive,r=this.isHorizontal,i=this.labelFor,n=this.normalizeSlot,a=this.safeId,l=this.tooltip,d=a(),s=!i,m=t(),c=n(Nn)||this.label,p=c?a("_BV_label_"):null;if(c||r){var u=this.labelSize,f=this.labelColProps,b=s?"legend":"label";this.labelSrOnly?(c&&(m=t(b,{class:"sr-only",attrs:{id:p,for:i||null}},[c])),m=t(r?tv:"div",{props:r?f:{}},[m])):m=t(r?tv:b,{on:s?{click:this.onLegendClick}:{},props:r?ev(ev({},f),{},{tag:b}):{},attrs:{id:p,for:i||null,tabindex:s?"-1":null},class:[s?"bv-no-focus-ring":"",r||s?"col-form-label":"",!r&&s?"pt-0":"",r||s?"":"d-block",u?"col-form-label-".concat(u):"",this.labelAlignClasses,this.labelClass]},[c])}var g=t(),h=n("invalid-feedback")||this.invalidFeedback,v=h?a("_BV_feedback_invalid_"):null;h&&(g=t(eg,{props:{ariaLive:e,id:v,role:e?"alert":null,state:o,tooltip:l},attrs:{tabindex:h?"-1":null}},[h]));var x=t(),k=n("valid-feedback")||this.validFeedback,w=k?a("_BV_feedback_valid_"):null;k&&(x=t(ig,{props:{ariaLive:e,id:w,role:e?"alert":null,state:o,tooltip:l},attrs:{tabindex:k?"-1":null}},[k]));var y=t(),O=n("description")||this.description,j=O?a("_BV_description_"):null;O&&(y=t(tg,{attrs:{id:j,tabindex:"-1"}},[O]));var S=this.ariaDescribedby=[j,!1===o?v:null,!0===o?w:null].filter(Uo).join(" ")||null,P=t(r?tv:"div",{props:r?this.contentColProps:{},ref:"content"},[n(In,{ariaDescribedby:S,descriptionId:j,id:d,labelId:p})||t(),g,x,y]);return t(s?"fieldset":r?ag:"div",{staticClass:"form-group",class:[{"was-validated":this.validated},this.stateClass],attrs:{id:d,disabled:s?this.disabled:null,role:s?null:"group","aria-invalid":this.computedAriaInvalid,"aria-labelledby":s&&r?p:null}},r&&s?[t(ag,[m,P])]:[m,P])}},dv=de({components:{BFormGroup:lv,BFormFieldset:lv}}),sv=r.default.extend({computed:{selectionStart:{cache:!1,get:function(){return this.$refs.input.selectionStart},set:function(t){this.$refs.input.selectionStart=t}},selectionEnd:{cache:!1,get:function(){return this.$refs.input.selectionEnd},set:function(t){this.$refs.input.selectionEnd=t}},selectionDirection:{cache:!1,get:function(){return this.$refs.input.selectionDirection},set:function(t){this.$refs.input.selectionDirection=t}}},methods:{select:function(){var t;(t=this.$refs.input).select.apply(t,arguments)},setSelectionRange:function(){var t;(t=this.$refs.input).setSelectionRange.apply(t,arguments)},setRangeText:function(){var t;(t=this.$refs.input).setRangeText.apply(t,arguments)}}});function mv(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function cv(t){for(var o=1;o2&&void 0!==arguments[2]&&arguments[2];return t=ba(t),!this.hasFormatter||this.lazyFormatter&&!e||(t=this.formatter(t,o)),t},modifyValue:function(t){return t=ba(t),this.trim&&(t=t.trim()),this.number&&(t=da(t,t)),t},updateValue:function(t){var o=this,e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this.lazy;if(!r||e){this.clearDebounce();var i=function(){if((t=o.modifyValue(t))!==o.vModelValue)o.vModelValue=t,o.$emit(hv,t);else if(o.hasFormatter){var e=o.$refs.input;e&&t!==e.value&&(e.value=t)}},n=this.computedDebounce;n>0&&!r&&!e?this.$_inputDebounceTimer=setTimeout(i,n):i()}},onInput:function(t){if(!t.target.composing){var o=t.target.value,e=this.formatValue(o,t);!1===e||t.defaultPrevented?$l(t,{propagation:!1}):(this.localValue=e,this.updateValue(e),this.$emit(Ni,e))}},onChange:function(t){var o=t.target.value,e=this.formatValue(o,t);!1===e||t.defaultPrevented?$l(t,{propagation:!1}):(this.localValue=e,this.updateValue(e,!0),this.$emit(Si,e))},onBlur:function(t){var o=t.target.value,e=this.formatValue(o,t,!0);!1!==e&&(this.localValue=ba(this.modifyValue(e)),this.updateValue(e,!0)),this.$emit("blur",t)},focus:function(){this.disabled||Qa(this.$el)},blur:function(){this.disabled||tl(this.$el)}}}),kv=r.default.extend({computed:{validity:{cache:!1,get:function(){return this.$refs.input.validity}},validationMessage:{cache:!1,get:function(){return this.$refs.input.validationMessage}},willValidate:{cache:!1,get:function(){return this.$refs.input.willValidate}}},methods:{setCustomValidity:function(){var t;return(t=this.$refs.input).setCustomValidity.apply(t,arguments)},checkValidity:function(){var t;return(t=this.$refs.input).checkValidity.apply(t,arguments)},reportValidity:function(){var t;return(t=this.$refs.input).reportValidity.apply(t,arguments)}}});function wv(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function yv(t){for(var o=1;o=e?"full":o>=e-.5?"half":"empty",m={variant:n,disabled:a,readonly:l};return t("span",{staticClass:"b-rating-star",class:{focused:r&&o===e||!la(o)&&e===d,"b-rating-star-empty":"empty"===s,"b-rating-star-half":"half"===s,"b-rating-star-full":"full"===s},attrs:{tabindex:a||l?null:"-1"},on:{click:this.onClick}},[t("span",{staticClass:"b-rating-icon"},[this.normalizeSlot(s,m)])])}}),Hv=vl(Fo(Ev(Ev(Ev(Ev(Ev({},ic),Fv),Ao(mg,["required","autofocus"])),fg),{},{color:fl(hn),iconClear:fl(hn,"x"),iconEmpty:fl(hn,"star"),iconFull:fl(hn,"star-fill"),iconHalf:fl(hn,"star-half"),inline:fl(cn,!1),locale:fl(wn),noBorder:fl(cn,!1),precision:fl(Tn),readonly:fl(cn,!1),showClear:fl(cn,!1),showValue:fl(cn,!1),showValueMax:fl(cn,!1),stars:fl(Tn,5,(function(t){return la(t)>=3})),variant:fl(hn)})),br),Uv=r.default.extend({name:br,components:{BIconStar:Wd,BIconStarHalf:qd,BIconStarFill:Gd,BIconX:Yd},mixins:[nc,Iv,bg],props:Hv,data:function(){var t=da(this[Lv],null),o=Rv(this.stars);return{localValue:mo(t)?null:Vv(t,0,o),hasFocus:!1}},computed:{computedStars:function(){return Rv(this.stars)},computedRating:function(){var t=da(this.localValue,0),o=la(this.precision,3);return Vv(da(t.toFixed(o)),0,this.computedStars)},computedLocale:function(){var t=ra(this.locale).filter(Uo);return new Intl.NumberFormat(t).resolvedOptions().locale},isInteractive:function(){return!this.disabled&&!this.readonly},isRTL:function(){return rc(this.computedLocale)},formattedRating:function(){var t=la(this.precision),o=this.showValueMax,e=this.computedLocale,r={notation:"standard",minimumFractionDigits:isNaN(t)?0:t,maximumFractionDigits:isNaN(t)?3:t},i=this.computedStars.toLocaleString(e),n=this.localValue;return n=mo(n)?o?"-":"":n.toLocaleString(e,r),o?"".concat(n,"/").concat(i):n}},watch:(jv={},Bv(jv,Lv,(function(t,o){if(t!==o){var e=da(t,null);this.localValue=mo(e)?null:Vv(e,0,this.computedStars)}})),Bv(jv,"localValue",(function(t,o){t!==o&&t!==(this.value||0)&&this.$emit(Mv,t||null)})),Bv(jv,"disabled",(function(t){t&&(this.hasFocus=!1,this.blur())})),jv),methods:{focus:function(){this.disabled||Qa(this.$el)},blur:function(){this.disabled||tl(this.$el)},onKeydown:function(t){var o=t.keyCode;if(this.isInteractive&&ea([as,es,ls,ss],o)){$l(t,{propagation:!1});var e=la(this.localValue,0),r=this.showClear?0:1,i=this.computedStars,n=this.isRTL?-1:1;o===as?this.localValue=Vv(e-n,r,i)||null:o===ls?this.localValue=Vv(e+n,r,i):o===es?this.localValue=Vv(e-1,r,i)||null:o===ss&&(this.localValue=Vv(e+1,r,i))}},onSelected:function(t){this.isInteractive&&(this.localValue=t)},onFocus:function(t){this.hasFocus=!!this.isInteractive&&"focus"===t.type},renderIcon:function(t){return this.$createElement(os,{props:{icon:t,variant:this.disabled||this.color?null:this.variant||null}})},iconEmptyFn:function(){return this.renderIcon(this.iconEmpty)},iconHalfFn:function(){return this.renderIcon(this.iconHalf)},iconFullFn:function(){return this.renderIcon(this.iconFull)},iconClearFn:function(){return this.$createElement(os,{props:{icon:this.iconClear}})}},render:function(t){var o=this,e=this.disabled,r=this.readonly,i=this.name,n=this.form,a=this.inline,l=this.variant,d=this.color,s=this.noBorder,m=this.hasFocus,c=this.computedRating,p=this.computedStars,u=this.formattedRating,f=this.showClear,b=this.isRTL,g=this.isInteractive,h=this.$scopedSlots,v=[];if(f&&!e&&!r){var x=t("span",{staticClass:"b-rating-icon"},[(h["icon-clear"]||this.iconClearFn)()]);v.push(t("span",{staticClass:"b-rating-star b-rating-star-clear flex-grow-1",class:{focused:m&&0===c},attrs:{tabindex:g?"-1":null},on:{click:function(){return o.onSelected(null)}},key:"clear"},[x]))}for(var k=0;k1&&void 0!==arguments[1]?arguments[1]:null;if(xo(t)){var e=Go(t,this.valueField),r=Go(t,this.textField),i=Go(t,this.optionsField,null);return mo(i)?{value:so(e)?o||r:e,text:String(so(r)?o:r),html:Go(t,this.htmlField),disabled:Boolean(Go(t,this.disabledField))}:{label:String(Go(t,this.labelField)||r),options:this.normalizeOptions(i)}}return{value:o||t,text:String(t),disabled:!1}}}}),ex=vl({disabled:fl(cn,!1),value:fl(sn,void 0,!0)},vr),rx=r.default.extend({name:vr,functional:!0,props:ex,render:function(t,o){var e=o.props,r=o.data,i=o.children,n=e.value;return t("option",ke(r,{attrs:{disabled:e.disabled},domProps:{value:n}}),i)}});function ix(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function nx(t){for(var o=1;o0?t:500},computedInterval:function(){var t=la(this.repeatInterval,0);return t>0?t:100},computedThreshold:function(){return rd(la(this.repeatThreshold,10),1)},computedStepMultiplier:function(){return rd(la(this.repeatStepMultiplier,4),1)},computedPrecision:function(){var t=this.computedStep;return ad(t)===t?0:(t.toString().split(".")[1]||"").length},computedMultiplier:function(){return ld(10,this.computedPrecision||0)},valueAsFixed:function(){var t=this.localValue;return mo(t)?"":t.toFixed(this.computedPrecision)},computedLocale:function(){var t=ra(this.locale).filter(Uo);return new Intl.NumberFormat(t).resolvedOptions().locale},computedRTL:function(){return rc(this.computedLocale)},defaultFormatter:function(){var t=this.computedPrecision;return new Intl.NumberFormat(this.computedLocale,{style:"decimal",useGrouping:!1,minimumIntegerDigits:1,minimumFractionDigits:t,maximumFractionDigits:t,notation:"standard"}).format},computedFormatter:function(){var t=this.formatterFn;return kl(t)?t:this.defaultFormatter},computedAttrs:function(){return hx(hx({},this.bvAttrs),{},{role:"group",lang:this.computedLocale,tabindex:this.disabled?null:"-1",title:this.ariaLabel})},computedSpinAttrs:function(){var t=this.spinId,o=this.localValue,e=this.computedRequired,r=this.disabled,i=this.state,n=this.computedFormatter,a=!mo(o);return hx(hx({dir:this.computedRTL?"rtl":"ltr"},this.bvAttrs),{},{id:t,role:"spinbutton",tabindex:r?null:"0","aria-live":"off","aria-label":this.ariaLabel||null,"aria-controls":this.ariaControls||null,"aria-invalid":!1===i||!a&&e?"true":null,"aria-required":e?"true":null,"aria-valuemin":ba(this.computedMin),"aria-valuemax":ba(this.computedMax),"aria-valuenow":a?o:null,"aria-valuetext":a?n(o):null})}},watch:(px={},vx(px,yx,(function(t){this.localValue=da(t,null)})),vx(px,"localValue",(function(t){this.$emit(Ox,t)})),vx(px,"disabled",(function(t){t&&this.clearRepeat()})),vx(px,"readonly",(function(t){t&&this.clearRepeat()})),px),created:function(){this.$_autoDelayTimer=null,this.$_autoRepeatTimer=null,this.$_keyIsDown=!1},beforeDestroy:function(){this.clearRepeat()},deactivated:function(){this.clearRepeat()},methods:{focus:function(){this.disabled||Qa(this.$refs.spinner)},blur:function(){this.disabled||tl(this.$refs.spinner)},emitChange:function(){this.$emit(Si,this.localValue)},stepValue:function(t){var o=this.localValue;if(!this.disabled&&!mo(o)){var e=this.computedStep*t,r=this.computedMin,i=this.computedMax,n=this.computedMultiplier,a=this.wrap;o=dd((o-r)/e)*e+r+e,o=dd(o*n)/n,this.localValue=o>i?a?r:i:o0&&void 0!==arguments[0]?arguments[0]:1,o=this.localValue;mo(o)?this.localValue=this.computedMin:this.stepValue(1*t)},stepDown:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,o=this.localValue;mo(o)?this.localValue=this.wrap?this.computedMax:this.computedMin:this.stepValue(-1*t)},onKeydown:function(t){var o=t.keyCode,e=t.altKey,r=t.ctrlKey,i=t.metaKey;if(!(this.disabled||this.readonly||e||r||i)&&ea(jx,o)){if($l(t,{propagation:!1}),this.$_keyIsDown)return;this.resetTimers(),ea([ss,es],o)?(this.$_keyIsDown=!0,o===ss?this.handleStepRepeat(t,this.stepUp):o===es&&this.handleStepRepeat(t,this.stepDown)):33===o?this.stepUp(this.computedStepMultiplier):34===o?this.stepDown(this.computedStepMultiplier):o===ns?this.localValue=this.computedMin:o===rs&&(this.localValue=this.computedMax)}},onKeyup:function(t){var o=t.keyCode,e=t.altKey,r=t.ctrlKey,i=t.metaKey;this.disabled||this.readonly||e||r||i||ea(jx,o)&&($l(t,{propagation:!1}),this.resetTimers(),this.$_keyIsDown=!1,this.emitChange())},handleStepRepeat:function(t,o){var e=this,r=t||{},i=r.type,n=r.button;if(!this.disabled&&!this.readonly){if("mousedown"===i&&n)return;this.resetTimers(),o(1);var a=this.computedThreshold,l=this.computedStepMultiplier,d=this.computedDelay,s=this.computedInterval;this.$_autoDelayTimer=setTimeout((function(){var t=0;e.$_autoRepeatTimer=setInterval((function(){o(tt.length)&&(o=t.length);for(var e=0,r=new Array(o);e0&&e.indexOf(t)===o}))},qx=function(t){return fo(t)?t:wo(t)&&t.target.value||""},Yx=vl(Fo(Fx(Fx(Fx(Fx(Fx(Fx({},ic),Vx),mg),fg),gg),{},{addButtonText:fl(hn,"Add"),addButtonVariant:fl(hn,"outline-secondary"),addOnChange:fl(cn,!1),duplicateTagText:fl(hn,"Duplicate tag(s)"),ignoreInputFocusSelector:fl(wn,Wx),inputAttrs:fl(bn,{}),inputClass:fl(kn),inputId:fl(hn),inputType:fl(hn,"text",(function(t){return ea(Ux,t)})),invalidTagText:fl(hn,"Invalid tag(s)"),limit:fl(fn),limitTagsText:fl(hn,"Tag limit reached"),noAddOnEnter:fl(cn,!1),noOuterFocus:fl(cn,!1),noTagRemove:fl(cn,!1),placeholder:fl(hn,"Add tag..."),removeOnDelete:fl(cn,!1),separator:fl(wn),tagClass:fl(kn),tagPills:fl(cn,!1),tagRemoveLabel:fl(hn,"Remove tag"),tagRemovedLabel:fl(hn,"Tag removed"),tagValidator:fl(un),tagVariant:fl(hn,"secondary")})),yr),Xx=r.default.extend({name:yr,mixins:[nc,Rx,cg,bg,hg,Sl],props:Yx,data:function(){return{hasFocus:!1,newTag:"",tags:[],removedTags:[],tagsState:{all:[],valid:[],invalid:[],duplicate:[]}}},computed:{computedInputId:function(){return this.inputId||this.safeId("__input__")},computedInputType:function(){return ea(Ux,this.inputType)?this.inputType:"text"},computedInputAttrs:function(){var t=this.disabled,o=this.form;return Fx(Fx({},this.inputAttrs),{},{id:this.computedInputId,value:this.newTag,disabled:t,form:o})},computedInputHandlers:function(){return{input:this.onInputInput,change:this.onInputChange,keydown:this.onInputKeydown,reset:this.reset}},computedSeparator:function(){return ra(this.separator).filter(fo).filter(Uo).join("")},computedSeparatorRegExp:function(){var t=this.computedSeparator;return t?new RegExp("[".concat(fa(t).replace(Tt,"\\s"),"]+")):null},computedJoiner:function(){var t=this.computedSeparator.charAt(0);return" "!==t?"".concat(t," "):t},computeIgnoreInputFocusSelector:function(){return ra(this.ignoreInputFocusSelector).filter(Uo).join(",").trim()},disableAddButton:function(){var t=this,o=ga(this.newTag);return""===o||!this.splitTags(o).some((function(o){return!ea(t.tags,o)&&t.validateTag(o)}))},duplicateTags:function(){return this.tagsState.duplicate},hasDuplicateTags:function(){return this.duplicateTags.length>0},invalidTags:function(){return this.tagsState.invalid},hasInvalidTags:function(){return this.invalidTags.length>0},isLimitReached:function(){var t=this.limit;return bo(t)&&t>=0&&this.tags.length>=t}},watch:(Dx={},Lx(Dx,Nx,(function(t){this.tags=Gx(t)})),Lx(Dx,"tags",(function(t,o){ms(t,this[Nx])||this.$emit(Hx,t),ms(t,o)||(t=ra(t).filter(Uo),o=ra(o).filter(Uo),this.removedTags=o.filter((function(o){return!ea(t,o)})))})),Lx(Dx,"tagsState",(function(t,o){ms(t,o)||this.$emit("tag-state",t.valid,t.invalid,t.duplicate)})),Dx),created:function(){this.tags=Gx(this[Nx])},mounted:function(){var t=this,o=Ba("form",this.$el);o&&(Tl(o,"reset",this.reset,ln),this.$on(rn,(function(){_l(o,"reset",t.reset,ln)})))},methods:{addTag:function(t){if(t=fo(t)?t:this.newTag,!this.disabled&&""!==ga(t)&&!this.isLimitReached){var o=this.parseTags(t);if(o.valid.length>0||0===o.all.length)if(Ea(this.getInput(),"select"))this.newTag="";else{var e=[].concat(Bx(o.invalid),Bx(o.duplicate));this.newTag=o.all.filter((function(t){return ea(e,t)})).join(this.computedJoiner).concat(e.length>0?this.computedJoiner.charAt(0):"")}o.valid.length>0&&(this.tags=ra(this.tags,o.valid)),this.tagsState=o,this.focus()}},removeTag:function(t){var o=this;this.disabled||(this.tags=this.tags.filter((function(o){return o!==t})),this.$nextTick((function(){o.focus()})))},reset:function(){var t=this;this.newTag="",this.tags=[],this.$nextTick((function(){t.removedTags=[],t.tagsState={all:[],valid:[],invalid:[],duplicate:[]}}))},onInputInput:function(t){if(!(this.disabled||wo(t)&&t.target.composing)){var o=qx(t),e=this.computedSeparatorRegExp;this.newTag!==o&&(this.newTag=o),o=ba(o).replace(Dt,""),e&&e.test(o.slice(-1))?this.addTag():this.tagsState=""===o?{all:[],valid:[],invalid:[],duplicate:[]}:this.parseTags(o)}},onInputChange:function(t){if(!this.disabled&&this.addOnChange){var o=qx(t);this.newTag!==o&&(this.newTag=o),this.addTag()}},onInputKeydown:function(t){if(!this.disabled&&wo(t)){var o=t.keyCode,e=t.target.value||"";this.noAddOnEnter||o!==is?!this.removeOnDelete||8!==o&&46!==o||""!==e||($l(t,{propagation:!1}),this.tags=this.tags.slice(0,-1)):($l(t,{propagation:!1}),this.addTag())}},onClick:function(t){var o=this,e=this.computeIgnoreInputFocusSelector,r=t.target;this.disabled||Ta(r)||e&&Ba(e,r,!0)||this.$nextTick((function(){o.focus()}))},onFocusin:function(){this.hasFocus=!0},onFocusout:function(){this.hasFocus=!1},handleAutofocus:function(){var t=this;this.$nextTick((function(){ya((function(){t.autofocus&&!t.disabled&&t.focus()}))}))},focus:function(){this.disabled||Qa(this.getInput())},blur:function(){this.disabled||tl(this.getInput())},splitTags:function(t){t=ba(t);var o=this.computedSeparatorRegExp;return(o?t.split(o):[t]).map(ga).filter(Uo)},parseTags:function(t){var o=this,e=this.splitTags(t),r={all:e,valid:[],invalid:[],duplicate:[]};return e.forEach((function(t){ea(o.tags,t)||ea(r.valid,t)?ea(r.duplicate,t)||r.duplicate.push(t):o.validateTag(t)?r.valid.push(t):ea(r.invalid,t)||r.invalid.push(t)})),r},validateTag:function(t){var o=this.tagValidator;return!kl(o)||o(t)},getInput:function(){return za("#".concat(qh(this.computedInputId)),this.$el)},defaultRender:function(t){var o=t.addButtonText,e=t.addButtonVariant,r=t.addTag,i=t.disableAddButton,n=t.disabled,a=t.duplicateTagText,l=t.inputAttrs,d=t.inputClass,s=t.inputHandlers,m=t.inputType,c=t.invalidTagText,p=t.isDuplicate,u=t.isInvalid,f=t.isLimitReached,b=t.limitTagsText,g=t.noTagRemove,h=t.placeholder,v=t.removeTag,x=t.tagClass,k=t.tagPills,w=t.tagRemoveLabel,y=t.tagVariant,O=t.tags,j=this.$createElement,S=O.map((function(t){return t=ba(t),j(Ex,{class:x,props:{disabled:n,noRemove:g,pill:k,removeLabel:w,tag:"li",title:t,variant:y},on:{remove:function(){return v(t)}},key:"tags_".concat(t)},t)})),P=c&&u?this.safeId("__invalid_feedback__"):null,T=a&&p?this.safeId("__duplicate_feedback__"):null,_=b&&f?this.safeId("__limit_feedback__"):null,C=[l["aria-describedby"],P,T,_].filter(Uo).join(" "),$=j("input",{staticClass:"b-form-tags-input w-100 flex-grow-1 p-0 m-0 bg-transparent border-0",class:d,style:{outline:0,minWidth:"5rem"},attrs:Fx(Fx({},l),{},{"aria-describedby":C||null,type:m,placeholder:h||null}),domProps:{value:l.value},on:s,directives:[{name:"model",value:l.value}],ref:"input"}),D=j(Vs,{staticClass:"b-form-tags-button py-0",class:{invisible:i},style:{fontSize:"90%"},props:{disabled:i||f,variant:e},on:{click:function(){return r()}},ref:"button"},[this.normalizeSlot("add-button-text")||o]),z=this.safeId("__tag_list__"),E=j("li",{staticClass:"b-from-tags-field flex-grow-1",attrs:{role:"none","aria-live":"off","aria-controls":z},key:"tags_field"},[j("div",{staticClass:"d-flex",attrs:{role:"group"}},[$,D])]),B=j("ul",{staticClass:"b-form-tags-list list-unstyled mb-0 d-flex flex-wrap align-items-center",attrs:{id:z},key:"tags_list"},[S,E]),A=j();if(c||a||b){var I=this.computedJoiner,F=j();P&&(F=j(eg,{props:{id:P,forceShow:!0},key:"tags_invalid_feedback"},[this.invalidTagText,": ",this.invalidTags.join(I)]));var L=j();T&&(L=j(tg,{props:{id:T},key:"tags_duplicate_feedback"},[this.duplicateTagText,": ",this.duplicateTags.join(I)]));var M=j();_&&(M=j(tg,{props:{id:_},key:"tags_limit_feedback"},[b])),A=j("div",{attrs:{"aria-live":"polite","aria-atomic":"true"},key:"tags_feedback"},[F,L,M])}return[B,A]}},render:function(t){var o=this.name,e=this.disabled,r=this.required,i=this.form,n=this.tags,a=this.computedInputId,l=this.hasFocus,d=this.noOuterFocus,s=Fx({tags:n.slice(),inputAttrs:this.computedInputAttrs,inputType:this.computedInputType,inputHandlers:this.computedInputHandlers,removeTag:this.removeTag,addTag:this.addTag,reset:this.reset,inputId:a,isInvalid:this.hasInvalidTags,invalidTags:this.invalidTags.slice(),isDuplicate:this.hasDuplicateTags,duplicateTags:this.duplicateTags.slice(),isLimitReached:this.isLimitReached,disableAddButton:this.disableAddButton},Bo(this.$props,["addButtonText","addButtonVariant","disabled","duplicateTagText","form","inputClass","invalidTagText","limit","limitTagsText","noTagRemove","placeholder","required","separator","size","state","tagClass","tagPills","tagRemoveLabel","tagVariant"])),m=this.normalizeSlot(In,s)||this.defaultRender(s),c=t("output",{staticClass:"sr-only",attrs:{id:this.safeId("__selected_tags__"),role:"status",for:a,"aria-live":l?"polite":"off","aria-atomic":"true","aria-relevant":"additions text"}},this.tags.join(", ")),p=t("div",{staticClass:"sr-only",attrs:{id:this.safeId("__removed_tags__"),role:"status","aria-live":l?"assertive":"off","aria-atomic":"true"}},this.removedTags.length>0?"(".concat(this.tagRemovedLabel,") ").concat(this.removedTags.join(", ")):""),u=t();if(o&&!e){var f=n.length>0;u=(f?n:[""]).map((function(e){return t("input",{class:{"sr-only":!f},attrs:{type:f?"hidden":"text",value:e,required:r,name:o,form:i},key:"tag_input_".concat(e)})}))}return t("div",{staticClass:"b-form-tags form-control h-auto",class:[{focus:l&&!d&&!e,disabled:e},this.sizeFormClass,this.stateClass],attrs:{id:this.safeId(),role:"group",tabindex:e||d?null:"-1","aria-describedby":this.safeId("__selected_tags__")},on:{click:this.onClick,focusin:this.onFocusin,focusout:this.onFocusout}},[c,p,m,u])}}),Kx=de({components:{BFormTags:Xx,BTags:Xx,BFormTag:Ex,BTag:Ex}});function Jx(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Zx(t){for(var o=1;oc?l:"".concat(c,"px")}},render:function(t){return t("textarea",{class:this.computedClass,style:this.computedStyle,directives:[{name:"b-visible",value:this.visibleCallback,modifiers:{640:!0}}],attrs:this.computedAttrs,domProps:{value:this.localValue},on:this.computedListeners,ref:"input"})}}),rk=de({components:{BFormTextarea:ek,BTextarea:ek}});function ik(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function nk(t){for(var o=1;ot.length)&&(o=t.length);for(var e=0,r=new Array(o);e1&&void 0!==arguments[1]&&arguments[1];return mo(o)||mo(e)||i&&mo(r)?"":[o,e,i?r:0].map(bk).join(":")}({hours:this.modelHours,minutes:this.modelMinutes,seconds:this.modelSeconds},this.showSeconds)},resolvedOptions:function(){var t=ra(this.locale).filter(Uo),o={hour:fk,minute:fk,second:fk};co(this.hour12)||(o.hour12=!!this.hour12);var e=new Intl.DateTimeFormat(t,o).resolvedOptions(),r=e.hour12||!1,i=e.hourCycle||(r?"h12":"h23");return{locale:e.locale,hour12:r,hourCycle:i}},computedLocale:function(){return this.resolvedOptions.locale},computedLang:function(){return(this.computedLocale||"").replace(/-u-.*$/,"")},computedRTL:function(){return rc(this.computedLang)},computedHourCycle:function(){return this.resolvedOptions.hourCycle},is12Hour:function(){return!!this.resolvedOptions.hour12},context:function(){return{locale:this.computedLocale,isRTL:this.computedRTL,hourCycle:this.computedHourCycle,hour12:this.is12Hour,hours:this.modelHours,minutes:this.modelMinutes,seconds:this.showSeconds?this.modelSeconds:0,value:this.computedHMS,formatted:this.formattedTimeString}},valueId:function(){return this.safeId()||null},computedAriaLabelledby:function(){return[this.ariaLabelledby,this.valueId].filter(Uo).join(" ")||null},timeFormatter:function(){var t={hour12:this.is12Hour,hourCycle:this.computedHourCycle,hour:fk,minute:fk,timeZone:"UTC"};return this.showSeconds&&(t.second=fk),Um(this.computedLocale,t)},numberFormatter:function(){return new Intl.NumberFormat(this.computedLocale,{style:"decimal",minimumIntegerDigits:2,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"}).format},formattedTimeString:function(){var t=this.modelHours,o=this.modelMinutes,e=this.showSeconds&&this.modelSeconds||0;return this.computedHMS?this.timeFormatter(Vm(Date.UTC(0,0,1,t,o,e))):this.labelNoTimeSelected||" "},spinScopedSlots:function(){var t=this.$createElement;return{increment:function(o){var e=o.hasFocus;return t(Ld,{props:{scale:e?1.5:1.25},attrs:{"aria-hidden":"true"}})},decrement:function(o){var e=o.hasFocus;return t(Ld,{props:{flipV:!0,scale:e?1.5:1.25},attrs:{"aria-hidden":"true"}})}}}},watch:(tk={},ak(tk,pk,(function(t,o){if(t!==o&&!ms(gk(t),gk(this.computedHMS))){var e=gk(t),r=e.hours,i=e.minutes,n=e.seconds,a=e.ampm;this.modelHours=r,this.modelMinutes=i,this.modelSeconds=n,this.modelAmpm=a}})),ak(tk,"computedHMS",(function(t,o){t!==o&&this.$emit(uk,t)})),ak(tk,"context",(function(t,o){ms(t,o)||this.$emit(_i,t)})),ak(tk,"modelAmpm",(function(t,o){var e=this;if(t!==o){var r=mo(this.modelHours)?0:this.modelHours;this.$nextTick((function(){0===t&&r>11?e.modelHours=r-12:1===t&&r<12&&(e.modelHours=r+12)}))}})),ak(tk,"modelHours",(function(t,o){t!==o&&(this.modelAmpm=t>11?1:0)})),tk),created:function(){var t=this;this.$nextTick((function(){t.$emit(_i,t.context)}))},mounted:function(){this.setLive(!0)},activated:function(){this.setLive(!0)},deactivated:function(){this.setLive(!1)},beforeDestroy:function(){this.setLive(!1)},methods:{focus:function(){this.disabled||Qa(this.$refs.spinners[0])},blur:function(){if(!this.disabled){var t=Sa();Aa(this.$el,t)&&tl(t)}},formatHours:function(t){var o=this.computedHourCycle;return t=0===(t=this.is12Hour&&t>12?t-12:t)&&"h12"===o?12:0===t&&"h24"===o?24:12===t&&"h11"===o?0:t,this.numberFormatter(t)},formatMinutes:function(t){return this.numberFormatter(t)},formatSeconds:function(t){return this.numberFormatter(t)},formatAmpm:function(t){return 0===t?this.labelAm:1===t?this.labelPm:""},setHours:function(t){this.modelHours=t},setMinutes:function(t){this.modelMinutes=t},setSeconds:function(t){this.modelSeconds=t},setAmpm:function(t){this.modelAmpm=t},onSpinLeftRight:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=t.type,e=t.keyCode;if(!this.disabled&&"keydown"===o&&(e===as||e===ls)){$l(t);var r=this.$refs.spinners||[],i=r.map((function(t){return!!t.hasFocus})).indexOf(!0);i=(i+=e===as?-1:1)>=r.length?0:i<0?r.length-1:i,Qa(r[i])}},setLive:function(t){var o=this;t?this.$nextTick((function(){ya((function(){o.isLive=!0}))})):this.isLive=!1}},render:function(t){var o=this;if(this.hidden)return t();var e=this.valueId,r=this.computedAriaLabelledby,i=[],n=function(r,n,a){var l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},d=o.safeId("_spinbutton_".concat(n,"_"))||null;return i.push(d),t(Px,{class:a,props:nk({id:d,placeholder:"--",vertical:!0,required:!0,disabled:o.disabled,readonly:o.readonly,locale:o.computedLocale,labelIncrement:o.labelIncrement,labelDecrement:o.labelDecrement,wrap:!0,ariaControls:e,min:0},l),scopedSlots:o.spinScopedSlots,on:{change:r},key:n,ref:"spinners",refInFor:!0})},a=function(){return t("div",{staticClass:"d-flex flex-column",class:{"text-muted":o.disabled||o.readonly},attrs:{"aria-hidden":"true"}},[t(Md,{props:{shiftV:4,scale:.5}}),t(Md,{props:{shiftV:-4,scale:.5}})])},l=[];l.push(n(this.setHours,"hours","b-time-hours",{value:this.modelHours,max:23,step:1,formatterFn:this.formatHours,ariaLabel:this.labelHours})),l.push(a()),l.push(n(this.setMinutes,"minutes","b-time-minutes",{value:this.modelMinutes,max:59,step:this.minutesStep||1,formatterFn:this.formatMinutes,ariaLabel:this.labelMinutes})),this.showSeconds&&(l.push(a()),l.push(n(this.setSeconds,"seconds","b-time-seconds",{value:this.modelSeconds,max:59,step:this.secondsStep||1,formatterFn:this.formatSeconds,ariaLabel:this.labelSeconds}))),this.is12Hour&&l.push(n(this.setAmpm,"ampm","b-time-ampm",{value:this.modelAmpm,max:1,formatterFn:this.formatAmpm,ariaLabel:this.labelAmpm,required:!1})),l=t("div",{staticClass:"d-flex align-items-center justify-content-center mx-auto",attrs:{role:"group",tabindex:this.disabled||this.readonly?null:"-1","aria-labelledby":r},on:{keydown:this.onSpinLeftRight,click:function(t){t.target===t.currentTarget&&o.focus()}}},l);var d=t("output",{staticClass:"form-control form-control-sm text-center",class:{disabled:this.disabled||this.readonly},attrs:{id:e,role:"status",for:i.filter(Uo).join(" ")||null,tabindex:this.disabled?null:"-1","aria-live":this.isLive?"polite":"off","aria-atomic":"true"},on:{click:this.focus,focus:this.focus}},[t("bdi",this.formattedTimeString),this.computedHMS?t("span",{staticClass:"sr-only"}," (".concat(this.labelSelected,") ")):""]),s=t("header",{staticClass:"b-time-header",class:{"sr-only":this.hideHeader}},[d]),m=this.normalizeSlot();return m=m?t("footer",{staticClass:"b-time-footer"},m):t(),t("div",{staticClass:"b-time d-inline-flex flex-column text-center",attrs:{role:"group",lang:this.computedLang||null,"aria-labelledby":r||null,"aria-disabled":this.disabled?"true":null,"aria-readonly":this.readonly&&!this.disabled?"true":null}},[s,l,m])}});function xk(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function kk(t){for(var o=1;o0&&a.push(t("span"," "));var d=this.labelResetButton;a.push(t(Vs,{props:{size:"sm",disabled:e||r,variant:this.resetButtonVariant},attrs:{"aria-label":d||null},on:{click:this.onResetButton},key:"reset-btn"},d))}if(!this.noCloseButton){a.length>0&&a.push(t("span"," "));var s=this.labelCloseButton;a.push(t(Vs,{props:{size:"sm",disabled:e,variant:this.closeButtonVariant},attrs:{"aria-label":s||null},on:{click:this.onCloseButton},key:"close-btn"},s))}a.length>0&&(a=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":a.length>1,"justify-content-end":a.length<2}},a)]);var m=t(vk,{staticClass:"b-form-time-control",props:kk(kk({},gl(Tk,i)),{},{value:o,hidden:!this.isVisible}),on:{input:this.onInput,context:this.onContext},ref:"time"},a);return t(gh,{staticClass:"b-form-timepicker",props:kk(kk({},gl(_k,i)),{},{id:this.safeId(),value:o,formattedValue:o?this.formattedValue:"",placeholder:n,rtl:this.isRTL,lang:this.computedLang}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:wk({},Bn,this.$scopedSlots["button-content"]||this.defaultButtonFn),ref:"control"},[m])}}),Dk=de({components:{BFormTimepicker:$k,BTimepicker:$k}}),zk=de({components:{BImg:Mc,BImgLazy:mp}}),Ek=vl({tag:fl(hn,"div")},Br),Bk=r.default.extend({name:Br,functional:!0,props:Ek,render:function(t,o){var e=o.props,r=o.data,i=o.children;return t(e.tag,ke(r,{staticClass:"input-group-text"}),i)}}),Ak=vl({append:fl(cn,!1),id:fl(hn),isText:fl(cn,!1),tag:fl(hn,"div")},Dr),Ik=r.default.extend({name:Dr,functional:!0,props:Ak,render:function(t,o){var e=o.props,r=o.data,i=o.children,n=e.append;return t(e.tag,ke(r,{class:{"input-group-append":n,"input-group-prepend":!n},attrs:{id:e.id}}),e.isText?[t(Bk,i)]:i)}});function Fk(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Lk(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:null;return t&&t.$options._scopeId||o},Tw=r.default.extend({computed:{scopedStyleAttrs:function(){var t,o,e=Pw(this.$parent);return e?("",(o=e)in(t={})?Object.defineProperty(t,o,{value:"",enumerable:!0,configurable:!0,writable:!0}):t[o]="",t):{}}}}),_w=r.default.extend({abstract:!0,name:"BVTransporterTarget",props:{nodes:fl(vn)},data:function(t){return{updatedNodes:t.nodes}},destroyed:function(){var t;(t=this.$el)&&t.parentNode&&t.parentNode.removeChild(t)},render:function(t){var o=this.updatedNodes,e=po(o)?o({}):o;return(e=ra(e).filter(Uo))&&e.length>0&&!e[0].text?e[0]:t()}}),Cw={container:fl([ro,hn],"body"),disabled:fl(cn,!1),tag:fl(hn,"div")},$w=r.default.extend({name:"BVTransporter",mixins:[Sl],props:Cw,watch:{disabled:{immediate:!0,handler:function(t){t?this.unmountTarget():this.$nextTick(this.mountTarget)}}},created:function(){this.$_defaultFn=null,this.$_target=null},beforeMount:function(){this.mountTarget()},updated:function(){this.updateTarget()},beforeDestroy:function(){this.unmountTarget(),this.$_defaultFn=null},methods:{getContainer:function(){if(rt){var t=this.container;return fo(t)?za(t):t}return null},mountTarget:function(){if(!this.$_target){var t=this.getContainer();if(t){var o=document.createElement("div");t.appendChild(o),this.$_target=new _w({el:o,parent:this,propsData:{nodes:ra(this.normalizeSlot())}})}}},updateTarget:function(){if(rt&&this.$_target){var t=this.$scopedSlots.default;this.disabled||(t&&this.$_defaultFn!==t?this.$_target.updatedNodes=t:t||(this.$_target.updatedNodes=this.$slots.default)),this.$_defaultFn=t}},unmountTarget:function(){this.$_target&&this.$_target.$destroy(),this.$_target=null}},render:function(t){if(this.disabled){var o=ra(this.normalizeSlot()).filter(Uo);if(o.length>0&&!o[0].text)return o[0]}return t()}});function Dw(t){return(Dw="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function zw(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Ew(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:{};return Aw(this,a),o=n.call(this,t,e),_o(Rw(o),{trigger:{enumerable:!0,configurable:!1,writable:!1}}),o}return o=a,e=[{key:"Defaults",get:function(){return Ew(Ew({},Fw(Vw(a),"Defaults",this)),{},{trigger:null})}}],null&&Iw(o.prototype,null),e&&Iw(o,e),a}(Hf),Hw=new(r.default.extend({data:function(){return{modals:[],baseZIndex:null,scrollbarWidth:null,isBodyOverflowing:!1}},computed:{modalCount:function(){return this.modals.length},modalsAreOpen:function(){return this.modalCount>0}},watch:{modalCount:function(t,o){rt&&(this.getScrollbarWidth(),t>0&&0===o?(this.checkScrollbar(),this.setScrollbar(),Fa(document.body,"modal-open")):0===t&&o>0&&(this.resetScrollbar(),La(document.body,"modal-open")),Ra(document.body,"data-modal-open-count",String(t)))},modals:function(t){var o=this;this.checkScrollbar(),ya((function(){o.updateModals(t||[])}))}},methods:{registerModal:function(t){var o=this;t&&-1===this.modals.indexOf(t)&&(this.modals.push(t),t.$once(rn,(function(){o.unregisterModal(t)})))},unregisterModal:function(t){var o=this.modals.indexOf(t);o>-1&&(this.modals.splice(o,1),t._isBeingDestroyed||t._isDestroyed||this.resetModal(t))},getBaseZIndex:function(){if(mo(this.baseZIndex)&&rt){var t=document.createElement("div");Fa(t,"modal-backdrop"),Fa(t,"d-none"),Ua(t,"display","none"),document.body.appendChild(t),this.baseZIndex=la(Ya(t).zIndex,1040),document.body.removeChild(t)}return this.baseZIndex||1040},getScrollbarWidth:function(){if(mo(this.scrollbarWidth)&&rt){var t=document.createElement("div");Fa(t,"modal-scrollbar-measure"),document.body.appendChild(t),this.scrollbarWidth=qa(t).width-t.clientWidth,document.body.removeChild(t)}return this.scrollbarWidth||0},updateModals:function(t){var o=this,e=this.getBaseZIndex(),r=this.getScrollbarWidth();t.forEach((function(t,i){t.zIndex=e+i,t.scrollbarWidth=r,t.isTop=i===o.modals.length-1,t.isBodyOverflowing=o.isBodyOverflowing}))},resetModal:function(t){t&&(t.zIndex=this.getBaseZIndex(),t.isTop=!0,t.isBodyOverflowing=!1)},checkScrollbar:function(){var t=qa(document.body),o=t.left,e=t.right;this.isBodyOverflowing=o+e0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=jp(this.$refs.content,this.checkModalOverflow.bind(this),ry))},updateModel:function(t){t!==this[Kw]&&this.$emit(Jw,t)},buildEvent:function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Nw(t,Ww(Ww({cancelable:!1,target:this.$refs.modal||this.$el||null,relatedTarget:null,trigger:null},o),{},{vueTarget:this,componentId:this.modalId}))},show:function(){if(!this.isVisible&&!this.isOpening)if(this.isClosing)this.$once(Ri,this.show);else{this.isOpening=!0,this.$_returnFocus=this.$_returnFocus||this.getActiveElement();var t=this.buildEvent(Qi,{cancelable:!0});if(this.emitEvent(t),t.defaultPrevented||this.isVisible)return this.isOpening=!1,void this.updateModel(!1);this.doShow()}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(this.isVisible&&!this.isClosing){this.isClosing=!0;var o=this.buildEvent(Vi,{cancelable:t!==Zw,trigger:t||null});if(t===oy?this.$emit("ok",o):t===Qw?this.$emit(ji,o):t===ty&&this.$emit(Ti,o),this.emitEvent(o),o.defaultPrevented||!this.isVisible)return this.isClosing=!1,void this.updateModel(!0);this.setObserver(!1),this.isVisible=!1,this.updateModel(!1)}},toggle:function(t){t&&(this.$_returnFocus=t),this.isVisible?this.hide("toggle"):this.show()},getActiveElement:function(){var t=Sa(rt?[document.body]:[]);return t&&t.focus?t:null},doShow:function(){var t=this;Hw.modalsAreOpen&&this.noStacking?this.listenOnRootOnce(zl(Nr,Ri),this.doShow):(Hw.registerModal(this),this.isHidden=!1,this.$nextTick((function(){t.isVisible=!0,t.isOpening=!1,t.updateModel(!0),t.$nextTick((function(){t.setObserver(!0)}))})))},onBeforeEnter:function(){this.isTransitioning=!0,this.setResizeEvent(!0)},onEnter:function(){var t=this;this.isBlock=!0,ya((function(){ya((function(){t.isShow=!0}))}))},onAfterEnter:function(){var t=this;this.checkModalOverflow(),this.isTransitioning=!1,ya((function(){t.emitEvent(t.buildEvent(tn)),t.setEnforceFocus(!0),t.$nextTick((function(){t.focusFirst()}))}))},onBeforeLeave:function(){this.isTransitioning=!0,this.setResizeEvent(!1),this.setEnforceFocus(!1)},onLeave:function(){this.isShow=!1},onAfterLeave:function(){var t=this;this.isBlock=!1,this.isTransitioning=!1,this.isModalOverflowing=!1,this.isHidden=!0,this.$nextTick((function(){t.isClosing=!1,Hw.unregisterModal(t),t.returnFocusTo(),t.emitEvent(t.buildEvent(Ri))}))},emitEvent:function(t){var o=t.type;this.emitOnRoot(zl(Nr,o),t,t.componentId),this.$emit(o,t)},onDialogMousedown:function(){var t=this,o=this.$refs.modal;Tl(o,"mouseup",(function e(r){_l(o,"mouseup",e,dn),r.target===o&&(t.ignoreBackdropClick=!0)}),dn)},onClickOut:function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:this.isVisible&&!this.noCloseOnBackdrop&&Aa(document.body,t.target)&&(Aa(this.$refs.content,t.target)||this.hide("backdrop"))},onOk:function(){this.hide(oy)},onCancel:function(){this.hide(Qw)},onClose:function(){this.hide(ty)},onEsc:function(t){27===t.keyCode&&this.isVisible&&!this.noCloseOnEsc&&this.hide("esc")},focusHandler:function(t){var o=this.$refs.content,e=t.target;if(!(this.noEnforceFocus||!this.isTop||!this.isVisible||!o||document===e||Aa(o,e)||this.computeIgnoreEnforceFocusSelector&&Ba(this.computeIgnoreEnforceFocusSelector,e,!0))){var r=Za(this.$refs.content),i=this.$refs["bottom-trap"],n=this.$refs["top-trap"];if(i&&e===i){if(Qa(r[0]))return}else if(n&&e===n&&Qa(r[r.length-1]))return;Qa(o,{preventScroll:!0})}},setEnforceFocus:function(t){this.listenDocument(t,"focusin",this.focusHandler)},setResizeEvent:function(t){this.listenWindow(t,"resize",this.checkModalOverflow),this.listenWindow(t,"orientationchange",this.checkModalOverflow)},showHandler:function(t,o){t===this.modalId&&(this.$_returnFocus=o||this.getActiveElement(),this.show())},hideHandler:function(t){t===this.modalId&&this.hide("event")},toggleHandler:function(t,o){t===this.modalId&&this.toggle(o)},modalListener:function(t){this.noStacking&&t.vueTarget!==this&&this.hide()},focusFirst:function(){var t=this;rt&&ya((function(){var o=t.$refs.modal,e=t.$refs.content,r=t.getActiveElement();if(o&&e&&(!r||!Aa(e,r))){var i=t.$refs["ok-button"],n=t.$refs["cancel-button"],a=t.$refs["close-button"],l=t.autoFocusButton,d=l===oy&&i?i.$el||i:l===Qw&&n?n.$el||n:l===ty&&a?a.$el||a:e;Qa(d),d===e&&t.$nextTick((function(){o.scrollTop=0}))}}))},returnFocusTo:function(){var t=this.returnFocus||this.$_returnFocus||null;this.$_returnFocus=null,this.$nextTick((function(){(t=fo(t)?za(t):t)&&(t=t.$el||t,Qa(t))}))},checkModalOverflow:function(){if(this.isVisible){var t=this.$refs.modal;this.isModalOverflowing=t.scrollHeight>document.documentElement.clientHeight}},makeModal:function(t){var o=t();if(!this.hideHeader){var e=this.normalizeSlot("modal-header",this.slotScope);if(!e){var r=t();this.hideHeaderClose||(r=t(Al,{props:{content:this.headerCloseContent,disabled:this.isTransitioning,ariaLabel:this.headerCloseLabel,textVariant:this.headerCloseVariant||this.headerTextVariant},on:{click:this.onClose},ref:"close-button"},[this.normalizeSlot("modal-header-close")])),e=[t(this.titleTag,{staticClass:"modal-title",class:this.titleClasses,attrs:{id:this.modalTitleId},domProps:this.hasNormalizedSlot(Gn)?{}:lm(this.titleHtml,this.title)},this.normalizeSlot(Gn,this.slotScope)),r]}o=t("header",{staticClass:"modal-header",class:this.headerClasses,attrs:{id:this.modalHeaderId},ref:"header"},[e])}var i=t("div",{staticClass:"modal-body",class:this.bodyClasses,attrs:{id:this.modalBodyId},ref:"body"},this.normalizeSlot(In,this.slotScope)),n=t();if(!this.hideFooter){var a=this.normalizeSlot("modal-footer",this.slotScope);if(!a){var l=t();this.okOnly||(l=t(Vs,{props:{variant:this.cancelVariant,size:this.buttonSize,disabled:this.cancelDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(Un)?{}:lm(this.cancelTitleHtml,this.cancelTitle),on:{click:this.onCancel},ref:"cancel-button"},this.normalizeSlot(Un))),a=[l,t(Vs,{props:{variant:this.okVariant,size:this.buttonSize,disabled:this.okDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(Wn)?{}:lm(this.okTitleHtml,this.okTitle),on:{click:this.onOk},ref:"ok-button"},this.normalizeSlot(Wn))]}n=t("footer",{staticClass:"modal-footer",class:this.footerClasses,attrs:{id:this.modalFooterId},ref:"footer"},[a])}var d=t("div",{staticClass:"modal-content",class:this.contentClass,attrs:{id:this.modalContentId,tabindex:"-1"},ref:"content"},[o,i,n]),s=t(),m=t();this.isVisible&&!this.noEnforceFocus&&(s=t("span",{attrs:{tabindex:"0"},ref:"top-trap"}),m=t("span",{attrs:{tabindex:"0"},ref:"bottom-trap"}));var c=t("div",{staticClass:"modal-dialog",class:this.dialogClasses,on:{mousedown:this.onDialogMousedown},ref:"dialog"},[s,d,m]),p=t("div",{staticClass:"modal",class:this.modalClasses,style:this.modalStyles,attrs:this.computedModalAttrs,on:{keydown:this.onEsc,click:this.onClickOut},directives:[{name:"show",value:this.isVisible}],ref:"modal"},[c]);p=t("transition",{props:{enterClass:"",enterToClass:"",enterActiveClass:"",leaveClass:"",leaveActiveClass:"",leaveToClass:""},on:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave}},[p]);var u=t();return!this.hideBackdrop&&this.isVisible&&(u=t("div",{staticClass:"modal-backdrop",attrs:{id:this.modalBackdropId}},this.normalizeSlot("modal-backdrop"))),u=t(Hl,{props:{noFade:this.noFade}},[u]),t("div",{style:this.modalOuterStyle,attrs:this.computedAttrs,key:"modal-outer-".concat(this._uid)},[p,u])}},render:function(t){return this.static?this.lazy&&this.isHidden?t():this.makeModal(t):this.isHidden?t():t($w,[this.makeModal(t)])}}),ay=El(Nr,Qi),ly="__bv_modal_directive__",dy=function(t){var o=t.modifiers,e=void 0===o?{}:o,r=t.arg,i=t.value;return fo(i)?i:fo(r)?r:Do(e).reverse()[0]},sy=function(t){return t&&Ea(t,".dropdown-menu > li, li.nav-item")&&za("a, button",t)||t},my=function(t){t&&"BUTTON"!==t.tagName&&(Ha(t,"role")||Ra(t,"role","button"),"A"===t.tagName||Ha(t,"tabindex")||Ra(t,"tabindex","0"))},cy=function(t){var o=t[ly]||{},e=o.trigger,r=o.handler;e&&r&&(_l(e,"click",r,ln),_l(e,"keydown",r,ln),_l(t,"click",r,ln),_l(t,"keydown",r,ln)),delete t[ly]},py=function(t,o,e){var r=t[ly]||{},i=dy(o),n=sy(t);i===r.target&&n===r.trigger||(cy(t),function(t,o,e){var r=dy(o),i=sy(t);if(r&&i){var n=function(t){var o=t.currentTarget;if(!Ca(o)){var i=t.type,n=t.keyCode;"click"!==i&&("keydown"!==i||n!==is&&n!==ds)||e.context.$root.$emit(ay,r,o)}};t[ly]={handler:n,target:r,trigger:i},my(i),Tl(i,"click",n,ln),"BUTTON"!==i.tagName&&"button"===Na(i,"role")&&Tl(i,"keydown",n,ln)}}(t,o,e)),my(n)},uy={inserted:py,updated:function(){},componentUpdated:py,unbind:cy};function fy(t,o){for(var e=0;et.length)&&(o=t.length);for(var e=0,r=new Array(o);e2&&void 0!==arguments[2]?arguments[2]:yy;if(!Ko(ky)&&!Jo(ky)){var i=new o({parent:t,propsData:gy(gy(gy({},jy(il(Nr))),{},{hideHeaderClose:!0,hideHeader:!(e.title||e.titleHtml)},Ao(e,Do(Oy))),{},{lazy:!1,busy:!1,visible:!1,noStacking:!1,noEnforceFocus:!1})});return Do(Oy).forEach((function(t){so(e[t])||(i.$slots[Oy[t]]=ra(e[t]))})),new Promise((function(t,o){var e=!1;i.$once(nn,(function(){e||o(new Error("BootstrapVue MsgBox destroyed before resolve"))})),i.$on(Vi,(function(o){if(!o.defaultPrevented){var i=r(o);o.defaultPrevented||(e=!0,t(i))}}));var n=document.createElement("div");document.body.appendChild(n),i.$mount(n)}))}},r=function(t,o){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(o&&!Jo(ky)&&!Ko(ky)&&po(i))return e(t,gy(gy({},jy(r)),{},{msgBoxContent:o}),i)},i=function(){function t(o){!function(t,o){if(!(t instanceof o))throw new TypeError("Cannot call a class as a function")}(this,t),Po(this,{_vm:o,_root:o.$root}),_o(this,{_vm:{enumerable:!0,configurable:!1,writable:!1},_root:{enumerable:!0,configurable:!1,writable:!1}})}var o,e;return o=t,(e=[{key:"show",value:function(t){if(t&&this._root){for(var o,e=arguments.length,r=new Array(e>1?e-1:0),i=1;i1?e-1:0),i=1;i1&&void 0!==arguments[1]?arguments[1]:{},e=gy(gy({},o),{},{okOnly:!0,okDisabled:!1,hideFooter:!1,msgBoxContent:t});return r(this._vm,t,e,(function(){return!0}))}},{key:"msgBoxConfirm",value:function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},e=gy(gy({},o),{},{okOnly:!1,okDisabled:!1,cancelDisabled:!1,hideFooter:!1});return r(this._vm,t,e,(function(t){var o=t.trigger;return"ok"===o||"cancel"!==o&&null}))}}])&&fy(o.prototype,e),t}();t.mixin({beforeCreate:function(){this._bv__modal=new i(this)}}),zo(t.prototype,ky)||Co(t.prototype,ky,{get:function(){return this&&this._bv__modal||Xo('"'.concat(ky,'" must be accessed from a Vue instance "this" context.'),Nr),this._bv__modal}})}}})}});function Py(t,o,e){return o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}var Ty=vl({align:fl(hn),cardHeader:fl(cn,!1),fill:fl(cn,!1),justified:fl(cn,!1),pills:fl(cn,!1),small:fl(cn,!1),tabs:fl(cn,!1),tag:fl(hn,"ul"),vertical:fl(cn,!1)},Hr),_y=r.default.extend({name:Hr,functional:!0,props:Ty,render:function(t,o){var e,r,i=o.props,n=o.data,a=o.children,l=i.tabs,d=i.pills,s=i.vertical,m=i.align,c=i.cardHeader;return t(i.tag,ke(n,{staticClass:"nav",class:(e={"nav-tabs":l,"nav-pills":d&&!l,"card-header-tabs":!s&&c&&l,"card-header-pills":!s&&c&&d&&!l,"flex-column":s,"nav-fill":!s&&i.fill,"nav-justified":!s&&i.justified},Py(e,(r=m,"justify-content-".concat(r="left"===r?"start":"right"===r?"end":r)),!s&&m),Py(e,"small",i.small),e)}),a)}});function Cy(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function $y(t){for(var o=1;ot.length)&&(o=t.length);for(var e=0,r=new Array(o);e=0&&o<=1})),overlayTag:fl(hn,"div"),rounded:fl(jn,!1),show:fl(cn,!1),spinnerSmall:fl(cn,!1),spinnerType:fl(hn,"border"),spinnerVariant:fl(hn),variant:fl(hn,"light"),wrapTag:fl(hn,"div"),zIndex:fl(Tn,10)},Jr),yO=de({components:{BOverlay:r.default.extend({name:Jr,mixins:[Sl],props:wO,computed:{computedRounded:function(){var t=this.rounded;return!0===t||""===t?"rounded":t?"rounded-".concat(t):""},computedVariant:function(){var t=this.variant;return t&&!this.bgColor?"bg-".concat(t):""},slotScope:function(){return{spinnerType:this.spinnerType||null,spinnerVariant:this.spinnerVariant||null,spinnerSmall:this.spinnerSmall}}},methods:{defaultOverlayFn:function(t){var o=t.spinnerType,e=t.spinnerVariant,r=t.spinnerSmall;return this.$createElement(bO,{props:{type:o,variant:e,small:r}})}},render:function(t){var o=this,e=this.show,r=this.fixed,i=this.noFade,n=this.noWrap,a=this.slotScope,l=t();if(e){var d=t("div",{staticClass:"position-absolute",class:[this.computedVariant,this.computedRounded],style:hO(hO({},kO),{},{opacity:this.opacity,backgroundColor:this.bgColor||null,backdropFilter:this.blur?"blur(".concat(this.blur,")"):null})}),s=t("div",{staticClass:"position-absolute",style:this.noCenter?hO({},kO):{top:"50%",left:"50%",transform:"translateX(-50%) translateY(-50%)"}},[this.normalizeSlot("overlay",a)||this.defaultOverlayFn(a)]);l=t(this.overlayTag,{staticClass:"b-overlay",class:{"position-absolute":!n||n&&!r,"position-fixed":n&&r},style:hO(hO({},kO),{},{zIndex:this.zIndex||10}),on:{click:function(t){return o.$emit(Pi,t)}},key:"overlay"},[d,s])}return l=t(Hl,{props:{noFade:i,appear:!0},on:{"after-enter":function(){return o.$emit(tn)},"after-leave":function(){return o.$emit(Ri)}}},[l]),n?l:t(this.wrapTag,{staticClass:"b-overlay-wrap position-relative",attrs:{"aria-busy":e?"true":null}},n?[l]:[this.normalizeSlot(),l])}})}});function OO(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function jO(t){for(var o=1;oo?o:e<1?1:e},EO=function(t){if(t.keyCode===ds)return $l(t,{immediatePropagation:!0}),t.currentTarget.click(),!1},BO=vl(Fo(jO(jO({},_O),{},{align:fl(hn,"left"),ariaLabel:fl(hn,"Pagination"),disabled:fl(cn,!1),ellipsisClass:fl(kn),ellipsisText:fl(hn,"…"),firstClass:fl(kn),firstNumber:fl(cn,!1),firstText:fl(hn,"«"),hideEllipsis:fl(cn,!1),hideGotoEndButtons:fl(cn,!1),labelFirstPage:fl(hn,"Go to first page"),labelLastPage:fl(hn,"Go to last page"),labelNextPage:fl(hn,"Go to next page"),labelPage:fl(Pn,"Go to page"),labelPrevPage:fl(hn,"Go to previous page"),lastClass:fl(kn),lastNumber:fl(cn,!1),lastText:fl(hn,"»"),limit:fl(Tn,5,(function(t){return!(la(t,0)<1&&(Xo('Prop "limit" must be a number greater than "0"',Zr),1))})),nextClass:fl(kn),nextText:fl(hn,"›"),pageClass:fl(kn),pills:fl(cn,!1),prevClass:fl(kn),prevText:fl(hn,"‹"),size:fl(hn)})),"pagination"),AO=r.default.extend({mixins:[TO,Sl],props:BO,data:function(){var t=la(this[CO],0);return{currentPage:t=t>0?t:-1,localNumberOfPages:1,localLimit:5}},computed:{btnSize:function(){var t=this.size;return t?"pagination-".concat(t):""},alignment:function(){var t=this.align;return"center"===t?"justify-content-center":"end"===t||"right"===t?"justify-content-end":"fill"===t?"text-center":""},styleClass:function(){return this.pills?"b-pagination-pills":""},computedCurrentPage:function(){return zO(this.currentPage,this.localNumberOfPages)},paginationParams:function(){var t=this.localLimit,o=this.localNumberOfPages,e=this.computedCurrentPage,r=this.hideEllipsis,i=this.firstNumber,n=this.lastNumber,a=!1,l=!1,d=t,s=1;o<=t?d=o:e3?(r&&!n||(l=!0,d=t-(i?0:1)),d=ed(d,t)):o-e+23?(r&&!i||(a=!0,d=t-(n?0:1)),s=o-d+1):(t>3&&(d=t-(r?0:2),a=!(r&&!i),l=!(r&&!n)),s=e-ad(d/2)),s<1?(s=1,a=!1):s>o-d&&(s=o-d+1,l=!1),a&&i&&s<4&&(d+=2,s=1,a=!1);var m=s+d-1;return l&&n&&m>o-3&&(d+=m===o-2?2:3,l=!1),t<=3&&(i&&1===s?d=ed(d+1,o,t+1):n&&o===s+d-1&&(s=rd(s-1,1),d=ed(o-s+1,o,t+1))),{showFirstDots:a,showLastDots:l,numberOfLinks:d=ed(d,o-s+1),startNumber:s}},pageList:function(){var t=this.paginationParams,o=t.numberOfLinks,e=t.startNumber,r=this.computedCurrentPage,i=function(t,o){return ia(o,(function(o,e){return{number:t+e,classes:null}}))}(e,o);if(i.length>3){var n=r-e,a="bv-d-xs-down-none";if(0===n)for(var l=3;ln+1;m--)i[m].classes=a}}return i}},watch:(xO={},SO(xO,CO,(function(t,o){t!==o&&(this.currentPage=zO(t,this.localNumberOfPages))})),SO(xO,"currentPage",(function(t,o){t!==o&&this.$emit($O,t>0?t:null)})),SO(xO,"limit",(function(t,o){t!==o&&(this.localLimit=DO(t))})),xO),created:function(){var t=this;this.localLimit=DO(this.limit),this.$nextTick((function(){t.currentPage=t.currentPage>t.localNumberOfPages?t.localNumberOfPages:t.currentPage}))},methods:{handleKeyNav:function(t){var o=t.keyCode,e=t.shiftKey;this.isNav||(o===as||o===ss?($l(t,{propagation:!1}),e?this.focusFirst():this.focusPrev()):o!==ls&&o!==es||($l(t,{propagation:!1}),e?this.focusLast():this.focusNext()))},getButtons:function(){return Da("button.page-link, a.page-link",this.$el).filter((function(t){return _a(t)}))},focusCurrent:function(){var t=this;this.$nextTick((function(){var o=t.getButtons().find((function(o){return la(Na(o,"aria-posinset"),0)===t.computedCurrentPage}));Qa(o)||t.focusFirst()}))},focusFirst:function(){var t=this;this.$nextTick((function(){var o=t.getButtons().find((function(t){return!Ca(t)}));Qa(o)}))},focusLast:function(){var t=this;this.$nextTick((function(){var o=t.getButtons().reverse().find((function(t){return!Ca(t)}));Qa(o)}))},focusPrev:function(){var t=this;this.$nextTick((function(){var o=t.getButtons(),e=o.indexOf(Sa());e>0&&!Ca(o[e-1])&&Qa(o[e-1])}))},focusNext:function(){var t=this;this.$nextTick((function(){var o=t.getButtons(),e=o.indexOf(Sa());ea,g=r<1?1:r>a?a:r,h={disabled:u,page:g,index:g-1},v=o.normalizeSlot(l,h)||ba(d)||t(),x=t(u?"span":n?Ts:"button",{staticClass:"page-link",class:{"flex-grow-1":!n&&!u&&p},props:u||!n?{}:o.linkProps(r),attrs:{role:n?null:"menuitem",type:n||u?null:"button",tabindex:u||n?null:"-1","aria-label":i,"aria-controls":o.ariaControls||null,"aria-disabled":u?"true":null},on:u?{}:{"!click":function(t){o.onClick(t,r)},keydown:EO}},[v]);return t("li",{key:c,staticClass:"page-item",class:[{disabled:u,"flex-fill":p,"d-flex":p&&!n&&!u},s],attrs:{role:n?null:"presentation","aria-hidden":u?"true":null}},[x])},h=function(e){return t("li",{staticClass:"page-item",class:["disabled","bv-d-xs-down-none",p?"flex-fill":"",o.ellipsisClass],attrs:{role:"separator"},key:"ellipsis-".concat(e?"last":"first")},[t("span",{staticClass:"page-link"},[o.normalizeSlot("ellipsis-text")||ba(o.ellipsisText)||t()])])},v=function(i,l){var d=i.number,s=f(d)&&!b,m=e?null:s||b&&0===l?"0":"-1",c={role:n?null:"menuitemradio",type:n||e?null:"button","aria-disabled":e?"true":null,"aria-controls":o.ariaControls||null,"aria-label":kl(r)?r(d):"".concat(po(r)?r():r," ").concat(d),"aria-checked":n?null:s?"true":"false","aria-current":n&&s?"page":null,"aria-posinset":n?null:d,"aria-setsize":n?null:a,tabindex:n?null:m},u=ba(o.makePage(d)),g={page:d,index:d-1,content:u,active:s,disabled:e},h=t(e?"span":n?Ts:"button",{props:e||!n?{}:o.linkProps(d),staticClass:"page-link",class:{"flex-grow-1":!n&&!e&&p},attrs:c,on:e?{}:{"!click":function(t){o.onClick(t,d)},keydown:EO}},[o.normalizeSlot("page",g)||u]);return t("li",{staticClass:"page-item",class:[{disabled:e,active:s,"flex-fill":p,"d-flex":p&&!n&&!e},i.classes,o.pageClass],attrs:{role:n?null:"presentation"},key:"page-".concat(d)},[h])},x=t();this.firstNumber||this.hideGotoEndButtons||(x=g(1,this.labelFirstPage,"first-text",this.firstText,this.firstClass,1,"pagination-goto-first")),u.push(x),u.push(g(l-1,this.labelPrevPage,"prev-text",this.prevText,this.prevClass,1,"pagination-goto-prev")),u.push(this.firstNumber&&1!==d[0]?v({number:1},0):t()),u.push(m?h(!1):t()),this.pageList.forEach((function(t,e){var r=m&&o.firstNumber&&1!==d[0]?1:0;u.push(v(t,e+r))})),u.push(c?h(!0):t()),u.push(this.lastNumber&&d[d.length-1]!==a?v({number:a},-1):t()),u.push(g(l+1,this.labelNextPage,"next-text",this.nextText,this.nextClass,a,"pagination-goto-next"));var k=t();this.lastNumber||this.hideGotoEndButtons||(k=g(a,this.labelLastPage,"last-text",this.lastText,this.lastClass,a,"pagination-goto-last")),u.push(k);var w=t("ul",{staticClass:"pagination",class:["b-pagination",this.btnSize,this.alignment,this.styleClass],attrs:{role:n?null:"menubar","aria-disabled":e?"true":"false","aria-label":n?null:i||null},on:n?{}:{keydown:this.handleKeyNav},ref:"ul"},u);return n?t("nav",{attrs:{"aria-disabled":e?"true":null,"aria-hidden":e?"true":"false","aria-label":n&&i||null}},[w]):w}});function IO(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function FO(t){for(var o=1;ot.numberOfPages)&&(this.currentPage=1),this.localNumberOfPages=t.numberOfPages}},created:function(){var t=this;this.localNumberOfPages=this.numberOfPages;var o=la(this[CO],0);o>0?this.currentPage=o:this.$nextTick((function(){t.currentPage=0}))},methods:{onClick:function(t,o){var e=this;if(o!==this.currentPage){var r=t.target,i=new Hf(Yi,{cancelable:!0,vueTarget:this,target:r});this.$emit(i.type,i,o),i.defaultPrevented||(this.currentPage=o,this.$emit(Si,this.currentPage),this.$nextTick((function(){_a(r)&&e.$el.contains(r)?Qa(r):e.focusCurrent()})))}},makePage:function(t){return t},linkProps:function(){return{}}}})}});function HO(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function UO(t){for(var o=1;o0?this.localNumberOfPages=this.pages.length:this.localNumberOfPages=(t=this.numberOfPages,rd(la(t,0),1)),this.$nextTick((function(){o.guessCurrentPage()}))},onClick:function(t,o){var e=this;if(o!==this.currentPage){var r=t.currentTarget||t.target,i=new Hf(Yi,{cancelable:!0,vueTarget:this,target:r});this.$emit(i.type,i,o),i.defaultPrevented||(ya((function(){e.currentPage=o,e.$emit(Si,o)})),this.$nextTick((function(){tl(r)})))}},getPageInfo:function(t){if(!ho(this.pages)||0===this.pages.length||so(this.pages[t-1])){var o="".concat(this.baseUrl).concat(t);return{link:this.useRouter?{path:o}:o,text:ba(t)}}var e=this.pages[t-1];if(vo(e)){var r=e.link;return{link:vo(r)?r:this.useRouter?{path:r}:r,text:ba(e.text||t)}}return{link:ba(e),text:ba(t)}},makePage:function(t){var o=this.pageGen,e=this.getPageInfo(t);return kl(o)?o(t,e):e.text},makeLink:function(t){var o=this.linkGen,e=this.getPageInfo(t);return kl(o)?o(t,e):e.link},linkProps:function(t){var o=gl(GO,this),e=this.makeLink(t);return this.useRouter||vo(e)?o.to=e:o.href=e,o},resolveLink:function(){var t,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{(t=document.createElement("a")).href=wd({to:o},"a","/","/"),document.body.appendChild(t);var e=t,r=e.pathname,i=e.hash,n=e.search;return document.body.removeChild(t),{path:r,hash:i,query:vd(n)}}catch(o){try{t&&t.parentNode&&t.parentNode.removeChild(t)}catch(t){}return{}}},resolveRoute:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{var o=this.$router.resolve(t,this.$route).route;return{path:o.path,hash:o.hash,query:o.query}}catch(t){return{}}},guessCurrentPage:function(){var t=this.$router,o=this.$route,e=this.computedValue;if(!this.noPageDetect&&!e&&(rt||!rt&&t))for(var r=t&&o?{path:o.path,hash:o.hash,query:o.query}:{},i=rt?window.location||document.location:null,n=i?{path:i.pathname,hash:i.hash,query:vd(i.search)}:{},a=1;!e&&a<=this.localNumberOfPages;a++){var l=this.makeLink(a);e=t&&(vo(l)||this.useRouter)?ms(this.resolveRoute(l),r)?a:null:rt?ms(this.resolveLink(l),n)?a:null:-1}this.currentPage=e>0?e:0}}})}}),XO={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left",TOPLEFT:"top",TOPRIGHT:"top",RIGHTTOP:"right",RIGHTBOTTOM:"right",BOTTOMLEFT:"bottom",BOTTOMRIGHT:"bottom",LEFTTOP:"left",LEFTBOTTOM:"left"},KO={AUTO:0,TOPLEFT:-1,TOP:0,TOPRIGHT:1,RIGHTTOP:-1,RIGHT:0,RIGHTBOTTOM:1,BOTTOMLEFT:-1,BOTTOM:0,BOTTOMRIGHT:1,LEFTTOP:-1,LEFT:0,LEFTBOTTOM:1},JO={arrowPadding:fl(Tn,6),boundary:fl([ro,hn],"scrollParent"),boundaryPadding:fl(Tn,5),fallbackPlacement:fl(wn,"flip"),offset:fl(Tn,0),placement:fl(hn,"top"),target:fl([ro,io])},ZO=r.default.extend({name:"BVPopper",props:JO,data:function(){return{noFade:!1,localShow:!0,attachment:this.getAttachment(this.placement)}},computed:{templateType:function(){return"unknown"},popperConfig:function(){var t=this,o=this.placement;return{placement:this.getAttachment(o),modifiers:{offset:{offset:this.getOffset(o)},flip:{behavior:this.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{padding:this.boundaryPadding,boundariesElement:this.boundary}},onCreate:function(o){o.originalPlacement!==o.placement&&t.popperPlacementChange(o)},onUpdate:function(o){t.popperPlacementChange(o)}}}},created:function(){var t=this;this.$_popper=null,this.localShow=!0,this.$on(Qi,(function(o){t.popperCreate(o)}));var o=function(){t.$nextTick((function(){ya((function(){t.$destroy()}))}))};this.$parent.$once(nn,o),this.$once(Ri,o)},beforeMount:function(){this.attachment=this.getAttachment(this.placement)},updated:function(){this.updatePopper()},beforeDestroy:function(){this.destroyPopper()},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},methods:{hide:function(){this.localShow=!1},getAttachment:function(t){return XO[String(t).toUpperCase()]||"auto"},getOffset:function(t){if(!this.offset){var o=this.$refs.arrow||za(".arrow",this.$el),e=da(Ya(o).width,0)+da(this.arrowPadding,0);switch(KO[String(t).toUpperCase()]||0){case 1:return"+50%p - ".concat(e,"px");case-1:return"-50%p + ".concat(e,"px");default:return 0}}return this.offset},popperCreate:function(t){this.destroyPopper(),this.$_popper=new Rf(this.target,t,this.popperConfig)},destroyPopper:function(){this.$_popper&&this.$_popper.destroy(),this.$_popper=null},updatePopper:function(){this.$_popper&&this.$_popper.scheduleUpdate()},popperPlacementChange:function(t){this.attachment=this.getAttachment(t.placement)},renderTemplate:function(t){return t("div")}},render:function(t){var o=this,e=this.noFade;return t(Hl,{props:{appear:!0,noFade:e},on:{beforeEnter:function(t){return o.$emit(Qi,t)},afterEnter:function(t){return o.$emit(tn,t)},beforeLeave:function(t){return o.$emit(Vi,t)},afterLeave:function(t){return o.$emit(Ri,t)}}},[this.localShow?this.renderTemplate(t):t()])}});function QO(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function tj(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:{},e=!1;Do(uj).forEach((function(r){so(o[r])||t[r]===o[r]||(t[r]=o[r],"title"===r&&(e=!0))})),e&&this.localShow&&this.fixTitle()},createTemplateAndShow:function(){var t=this.getContainer(),o=this.getTemplate(),e=this.$_tip=new o({parent:this,propsData:{id:this.computedId,html:this.html,placement:this.placement,fallbackPlacement:this.fallbackPlacement,target:this.getPlacementTarget(),boundary:this.getBoundary(),offset:la(this.offset,0),arrowPadding:la(this.arrowPadding,0),boundaryPadding:la(this.boundaryPadding,0)}});this.handleTemplateUpdate(),e.$once(Qi,this.onTemplateShow),e.$once(tn,this.onTemplateShown),e.$once(Vi,this.onTemplateHide),e.$once(Ri,this.onTemplateHidden),e.$once(nn,this.destroyTemplate),e.$on(Fi,this.handleEvent),e.$on(Li,this.handleEvent),e.$on(Ui,this.handleEvent),e.$on(Wi,this.handleEvent),e.$mount(t.appendChild(document.createElement("div")))},hideTemplate:function(){this.$_tip&&this.$_tip.hide(),this.clearActiveTriggers(),this.$_hoverState=""},destroyTemplate:function(){this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.localPlacementTarget=null;try{this.$_tip.$destroy()}catch(t){}this.$_tip=null,this.removeAriaDescribedby(),this.restoreTitle(),this.localShow=!1},getTemplateElement:function(){return this.$_tip?this.$_tip.$el:null},handleTemplateUpdate:function(){var t=this,o=this.$_tip;o&&["title","content","variant","customClass","noFade","interactive"].forEach((function(e){o[e]!==t[e]&&(o[e]=t[e])}))},show:function(){var t=this.getTarget();if(t&&Aa(document.body,t)&&_a(t)&&!this.dropdownOpen()&&(!co(this.title)&&""!==this.title||!co(this.content)&&""!==this.content)&&!this.$_tip&&!this.localShow){this.localShow=!0;var o=this.buildEvent(Qi,{cancelable:!0});this.emitEvent(o),o.defaultPrevented?this.destroyTemplate():(this.fixTitle(),this.addAriaDescribedby(),this.createTemplateAndShow())}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],o=this.getTemplateElement();if(o&&this.localShow){var e=this.buildEvent(Vi,{cancelable:!t});this.emitEvent(e),e.defaultPrevented||this.hideTemplate()}else this.restoreTitle()},forceHide:function(){this.getTemplateElement()&&this.localShow&&(this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.$_tip&&(this.$_tip.noFade=!0),this.hide(!0))},enable:function(){this.$_enabled=!0,this.emitEvent(this.buildEvent(Bi))},disable:function(){this.$_enabled=!1,this.emitEvent(this.buildEvent(zi))},onTemplateShow:function(){this.setWhileOpenListeners(!0)},onTemplateShown:function(){var t=this.$_hoverState;this.$_hoverState="","out"===t&&this.leave(null),this.emitEvent(this.buildEvent(tn))},onTemplateHide:function(){this.setWhileOpenListeners(!1)},onTemplateHidden:function(){this.destroyTemplate(),this.emitEvent(this.buildEvent(Ri))},getTarget:function(){var t=this.target;return fo(t)?t=Ia(t.replace(/^#/,"")):po(t)?t=t():t&&(t=t.$el||t),ja(t)?t:null},getPlacementTarget:function(){return this.getTarget()},getTargetId:function(){var t=this.getTarget();return t&&t.id?t.id:null},getContainer:function(){var t=!!this.container&&(this.container.$el||this.container),o=document.body,e=this.getTarget();return!1===t?Ba(cj,e)||o:fo(t)&&Ia(t.replace(/^#/,""))||o},getBoundary:function(){return this.boundary?this.boundary.$el||this.boundary:"scrollParent"},isInModal:function(){var t=this.getTarget();return t&&Ba(sj,t)},isDropdown:function(){var t=this.getTarget();return t&&Ma(t,"dropdown")},dropdownOpen:function(){var t=this.getTarget();return this.isDropdown()&&t&&za(".dropdown-menu.show",t)},clearHoverTimeout:function(){clearTimeout(this.$_hoverTimeout),this.$_hoverTimeout=null},clearVisibilityInterval:function(){clearInterval(this.$_visibleInterval),this.$_visibleInterval=null},clearActiveTriggers:function(){for(var t in this.activeTrigger)this.activeTrigger[t]=!1},addAriaDescribedby:function(){var t=this.getTarget(),o=Na(t,"aria-describedby")||"";o=o.split(/\s+/).concat(this.computedId).join(" ").trim(),Ra(t,"aria-describedby",o)},removeAriaDescribedby:function(){var t=this,o=this.getTarget(),e=Na(o,"aria-describedby")||"";(e=e.split(/\s+/).filter((function(o){return o!==t.computedId})).join(" ").trim())?Ra(o,"aria-describedby",e):Va(o,"aria-describedby")},fixTitle:function(){var t=this.getTarget();if(Ha(t,"title")){var o=Na(t,"title");Ra(t,"title",""),o&&Ra(t,pj,o)}},restoreTitle:function(){var t=this.getTarget();if(Ha(t,pj)){var o=Na(t,pj);Va(t,pj),o&&Ra(t,"title",o)}},buildEvent:function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Hf(t,nj({cancelable:!1,target:this.getTarget(),relatedTarget:this.getTemplateElement()||null,componentId:this.computedId,vueTarget:this},o))},emitEvent:function(t){var o=t.type;this.emitOnRoot(zl(this.templateType,o),t),this.$emit(o,t)},listen:function(){var t=this,o=this.getTarget();o&&(this.setRootListener(!0),this.computedTriggers.forEach((function(e){"click"===e?Tl(o,"click",t.handleEvent,dn):"focus"===e?(Tl(o,"focusin",t.handleEvent,dn),Tl(o,"focusout",t.handleEvent,dn)):"blur"===e?Tl(o,"focusout",t.handleEvent,dn):"hover"===e&&(Tl(o,"mouseenter",t.handleEvent,dn),Tl(o,"mouseleave",t.handleEvent,dn))}),this))},unListen:function(){var t=this,o=this.getTarget();this.setRootListener(!1),["click","focusin","focusout","mouseenter","mouseleave"].forEach((function(e){o&&_l(o,e,t.handleEvent,dn)}),this)},setRootListener:function(t){var o=this.$root;if(o){var e=t?"$on":"$off",r=this.templateType;o[e](El(r,Vi),this.doHide),o[e](El(r,Qi),this.doShow),o[e](El(r,Di),this.doDisable),o[e](El(r,Ei),this.doEnable)}},setWhileOpenListeners:function(t){this.setModalListener(t),this.setDropdownListener(t),this.visibleCheck(t),this.setOnTouchStartListener(t)},visibleCheck:function(t){var o=this;this.clearVisibilityInterval();var e=this.getTarget(),r=this.getTemplateElement();t&&(this.$_visibleInterval=setInterval((function(){!r||!o.localShow||e.parentNode&&_a(e)||o.forceHide()}),100))},setModalListener:function(t){this.isInModal()&&this.$root[t?"$on":"$off"](mj,this.forceHide)},setOnTouchStartListener:function(t){var o=this;"ontouchstart"in document.documentElement&&oa(document.body.children).forEach((function(e){Cl(t,e,"mouseover",o.$_noop)}))},setDropdownListener:function(t){var o=this.getTarget();o&&this.$root&&this.isDropdown&&o.__vue__&&o.__vue__[t?"$on":"$off"](tn,this.forceHide)},handleEvent:function(t){var o=this.getTarget();if(o&&!Ca(o)&&this.$_enabled&&!this.dropdownOpen()){var e=t.type,r=this.computedTriggers;if("click"===e&&ea(r,"click"))this.click(t);else if("mouseenter"===e&&ea(r,"hover"))this.enter(t);else if("focusin"===e&&ea(r,"focus"))this.enter(t);else if("focusout"===e&&(ea(r,"focus")||ea(r,"blur"))||"mouseleave"===e&&ea(r,"hover")){var i=this.getTemplateElement(),n=t.target,a=t.relatedTarget;if(i&&Aa(i,n)&&Aa(o,a)||i&&Aa(o,n)&&Aa(i,a)||i&&Aa(i,n)&&Aa(i,a)||Aa(o,n)&&Aa(o,a))return;this.leave(t)}}},doHide:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.forceHide()},doShow:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.show()},doDisable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.disable()},doEnable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.enable()},click:function(t){this.$_enabled&&!this.dropdownOpen()&&(Qa(t.currentTarget),this.activeTrigger.click=!this.activeTrigger.click,this.isWithActiveTrigger?this.enter(null):this.leave(null))},toggle:function(){this.$_enabled&&!this.dropdownOpen()&&(this.localShow?this.leave(null):this.enter(null))},enter:function(){var t=this,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;o&&(this.activeTrigger["focusin"===o.type?"focus":"hover"]=!0),this.localShow||"in"===this.$_hoverState?this.$_hoverState="in":(this.clearHoverTimeout(),this.$_hoverState="in",this.computedDelay.show?(this.fixTitle(),this.$_hoverTimeout=setTimeout((function(){"in"===t.$_hoverState?t.show():t.localShow||t.restoreTitle()}),this.computedDelay.show)):this.show())},leave:function(){var t=this,o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;o&&(this.activeTrigger["focusout"===o.type?"focus":"hover"]=!1,"focusout"===o.type&&ea(this.computedTriggers,"blur")&&(this.activeTrigger.click=!1,this.activeTrigger.hover=!1)),this.isWithActiveTrigger||(this.clearHoverTimeout(),this.$_hoverState="out",this.computedDelay.hide?this.$_hoverTimeout=setTimeout((function(){"out"===t.$_hoverState&&t.hide()}),this.computedDelay.hide):this.hide())}}});function bj(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function gj(t,o,e){return o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}var hj="disabled",vj="update:disabled",xj="show",kj=vl((gj(lj={boundary:fl([ro,bn,hn],"scrollParent"),boundaryPadding:fl(Tn,50),container:fl([ro,bn,hn]),customClass:fl(hn),delay:fl(_n,50)},hj,fl(cn,!1)),gj(lj,"fallbackPlacement",fl(wn,"flip")),gj(lj,"id",fl(hn)),gj(lj,"noFade",fl(cn,!1)),gj(lj,"noninteractive",fl(cn,!1)),gj(lj,"offset",fl(Tn,0)),gj(lj,"placement",fl(hn,"top")),gj(lj,xj,fl(cn,!1)),gj(lj,"target",fl([ro,io,un,bn,hn],void 0,!0)),gj(lj,"title",fl(hn)),gj(lj,"triggers",fl(wn,"hover focus")),gj(lj,"variant",fl(hn)),lj),Oi),wj=r.default.extend({name:Oi,mixins:[Sl],inheritAttrs:!1,props:kj,data:function(){return{localShow:this.show,localTitle:"",localContent:""}},computed:{templateData:function(){return function(t){for(var o=1;o0&&t[zj].updateData(o)}))}var n={title:r.title,content:r.content,triggers:r.trigger,placement:r.placement,fallbackPlacement:r.fallbackPlacement,variant:r.variant,customClass:r.customClass,container:r.container,boundary:r.boundary,delay:r.delay,offset:r.offset,noFade:!r.animation,id:r.id,disabled:r.disabled,html:r.html},a=t[zj].__bv_prev_data__;if(t[zj].__bv_prev_data__=n,!ms(n,a)){var l={target:t};Do(n).forEach((function(o){n[o]!==a[o]&&(l[o]="title"!==o&&"content"!==o||!po(n[o])?n[o]:n[o](t))})),t[zj].updateData(l)}}},Wj=de({directives:{VBPopover:{bind:function(t,o,e){Uj(t,o,e)},componentUpdated:function(t,o,e){e.context.$nextTick((function(){Uj(t,o,e)}))},unbind:function(t){!function(t){t[zj]&&(t[zj].$destroy(),t[zj]=null),delete t[zj]}(t)}}}}),Gj=de({components:{BPopover:_j},plugins:{VBPopoverPlugin:Wj}}),qj=vl({animated:fl(cn,null),label:fl(hn),labelHtml:fl(hn),max:fl(Tn,null),precision:fl(Tn,null),showProgress:fl(cn,null),showValue:fl(cn,null),striped:fl(cn,null),value:fl(Tn,0),variant:fl(hn)},ei),Yj=r.default.extend({name:ei,mixins:[Sl],inject:{bvProgress:{default:function(){return{}}}},props:qj,computed:{progressBarClasses:function(){var t=this.computedAnimated,o=this.computedVariant;return[o?"bg-".concat(o):"",this.computedStriped||t?"progress-bar-striped":"",t?"progress-bar-animated":""]},progressBarStyles:function(){return{width:this.computedValue/this.computedMax*100+"%"}},computedValue:function(){return da(this.value,0)},computedMax:function(){var t=da(this.max)||da(this.bvProgress.max,0);return t>0?t:100},computedPrecision:function(){return rd(la(this.precision,la(this.bvProgress.precision,0)),0)},computedProgress:function(){var t=this.computedPrecision,o=ld(10,t);return sa(100*o*this.computedValue/this.computedMax/o,t)},computedVariant:function(){return this.variant||this.bvProgress.variant},computedStriped:function(){return uo(this.striped)?this.striped:this.bvProgress.striped||!1},computedAnimated:function(){return uo(this.animated)?this.animated:this.bvProgress.animated||!1},computedShowProgress:function(){return uo(this.showProgress)?this.showProgress:this.bvProgress.showProgress||!1},computedShowValue:function(){return uo(this.showValue)?this.showValue:this.bvProgress.showValue||!1}},render:function(t){var o,e=this.label,r=this.labelHtml,i=this.computedValue,n=this.computedPrecision,a={};return this.hasNormalizedSlot()?o=this.normalizeSlot():e||r?a=lm(r,e):this.computedShowProgress?o=this.computedProgress:this.computedShowValue&&(o=sa(i,n)),t("div",{staticClass:"progress-bar",class:this.progressBarClasses,style:this.progressBarStyles,attrs:{role:"progressbar","aria-valuemin":"0","aria-valuemax":ba(this.computedMax),"aria-valuenow":sa(i,n)},domProps:a},o)}});function Xj(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function Kj(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.noCloseOnRouteChange||t.fullPath===o.fullPath||this.hide()})),Zj),created:function(){this.$_returnFocusEl=null},mounted:function(){var t=this;this.listenOnRoot(lS,this.handleToggle),this.listenOnRoot(aS,this.handleSync),this.$nextTick((function(){t.emitState(t.localShow)}))},activated:function(){this.emitSync()},beforeDestroy:function(){this.localShow=!1,this.$_returnFocusEl=null},methods:{hide:function(){this.localShow=!1},emitState:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(dS,this.safeId(),t)},emitSync:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(sS,this.safeId(),t)},handleToggle:function(t){t&&t===this.safeId()&&(this.localShow=!this.localShow)},handleSync:function(t){var o=this;t&&t===this.safeId()&&this.$nextTick((function(){o.emitSync(o.localShow)}))},onKeydown:function(t){var o=t.keyCode;!this.noCloseOnEsc&&27===o&&this.localShow&&this.hide()},onBackdropClick:function(){this.localShow&&!this.noCloseOnBackdrop&&this.hide()},onTopTrapFocus:function(){var t=Za(this.$refs.content);this.enforceFocus(t.reverse()[0])},onBottomTrapFocus:function(){var t=Za(this.$refs.content);this.enforceFocus(t[0])},onBeforeEnter:function(){this.$_returnFocusEl=Sa(rt?[document.body]:[]),this.isOpen=!0},onAfterEnter:function(t){Aa(t,Sa())||this.enforceFocus(t),this.$emit(tn)},onAfterLeave:function(){this.enforceFocus(this.$_returnFocusEl),this.$_returnFocusEl=null,this.isOpen=!1,this.$emit(Ri)},enforceFocus:function(t){this.noEnforceFocus||Qa(t)}},render:function(t){var o,e=this.bgVariant,r=this.width,i=this.textVariant,n=this.localShow,a=""===this.shadow||this.shadow,l=t(this.tag,{staticClass:nS,class:[(o={shadow:!0===a},iS(o,"shadow-".concat(a),a&&!0!==a),iS(o,"".concat(nS,"-right"),this.right),iS(o,"bg-".concat(e),e),iS(o,"text-".concat(i),i),o),this.sidebarClass],style:{width:r},attrs:this.computedAttrs,directives:[{name:"show",value:n}],ref:"content"},[vS(t,this)]);l=t("transition",{props:this.transitionProps,on:{beforeEnter:this.onBeforeEnter,afterEnter:this.onAfterEnter,afterLeave:this.onAfterLeave}},[l]);var d=t(Hl,{props:{noFade:this.noSlide}},[xS(t,this)]),s=t(),m=t();return this.backdrop&&n&&(s=t("div",{attrs:{tabindex:"0"},on:{focus:this.onTopTrapFocus}}),m=t("div",{attrs:{tabindex:"0"},on:{focus:this.onBottomTrapFocus}})),t("div",{staticClass:"b-sidebar-outer",style:{zIndex:this.zIndex},attrs:{tabindex:"-1"},on:{keydown:this.onKeydown}},[s,l,m,d])}})},plugins:{VBTogglePlugin:Au}});function wS(t,o,e){return o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}var yS=vl({animation:fl(hn,"wave"),height:fl(hn),size:fl(hn),type:fl(hn,"text"),variant:fl(hn),width:fl(hn)},ni),OS=r.default.extend({name:ni,functional:!0,props:yS,render:function(t,o){var e,r=o.data,i=o.props,n=i.size,a=i.animation,l=i.variant;return t("div",ke(r,{staticClass:"b-skeleton",style:{width:n||i.width,height:n||i.height},class:(e={},wS(e,"b-skeleton-".concat(i.type),!0),wS(e,"b-skeleton-animate-".concat(a),a),wS(e,"bg-".concat(l),l),e)}))}});function jS(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function SS(t){for(var o=1;o0}}}),zS={stacked:fl(jn,!1)},ES=r.default.extend({props:zS,computed:{isStacked:function(){var t=this.stacked;return""===t||t},isStackedAlways:function(){return!0===this.isStacked},stackedTableClasses:function(){var t,o,e,r=this.isStackedAlways;return t={"b-table-stacked":r},o="b-table-stacked-".concat(this.stacked),e=!r&&this.isStacked,o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}}});function BS(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function AS(t){for(var o=1;o0&&!this.computedBusy,[this.tableClass,{"table-striped":this.striped,"table-hover":t,"table-dark":this.dark,"table-bordered":this.bordered,"table-borderless":this.borderless,"table-sm":this.small,border:this.outlined,"b-table-fixed":this.fixed,"b-table-caption-top":this.captionTop,"b-table-no-border-collapse":this.noBorderCollapse},o?"".concat(this.dark?"bg":"table","-").concat(o):"",this.stackedTableClasses,this.selectableTableClasses]},tableAttrs:function(){var t=this.computedItems,o=this.filteredItems,e=this.computedFields,r=this.selectableTableAttrs,i=this.isTableSimple?{}:{"aria-busy":this.computedBusy?"true":"false","aria-colcount":ba(e.length),"aria-describedby":this.bvAttrs["aria-describedby"]||this.$refs.caption?this.captionId:null};return AS(AS(AS({"aria-rowcount":t&&o&&o.length>t.length?ba(o.length):null},this.bvAttrs),{},{id:this.safeId(),role:"table"},i),r)}},render:function(t){var o=this.wrapperClasses,e=this.renderCaption,r=this.renderColgroup,i=this.renderThead,n=this.renderTbody,a=this.renderTfoot,l=[];this.isTableSimple?l.push(this.normalizeSlot()):(l.push(e?e():null),l.push(r?r():null),l.push(i?i():null),l.push(n?n():null),l.push(a?a():null));var d=t("table",{staticClass:"table b-table",class:this.tableClasses,attrs:this.tableAttrs,key:"b-table"},l.filter(Uo));return o.length>0?t("div",{class:o,style:this.wrapperStyles,key:"wrap"},[d]):d}});function MS(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function RS(t){for(var o=1;o0},YS=vl({animation:fl(hn),columns:fl(fn,5,qS),hideHeader:fl(cn,!1),rows:fl(fn,3,qS),showFooter:fl(cn,!1),tableProps:fl(bn,{})},di),XS=r.default.extend({name:di,functional:!0,props:YS,render:function(t,o){var e=o.props,r=e.animation,i=e.columns,n=t("th",[t(OS,{props:{animation:r}})]),a=t("tr",ia(i,n)),l=t("td",[t(OS,{props:{width:"75%",animation:r}})]),d=t("tr",ia(i,l)),s=t("tbody",ia(e.rows,d)),m=e.hideHeader?t():t("thead",[a]),c=e.showFooter?t("tfoot",[a]):t();return t(HS,{props:WS({},e.tableProps)},[m,s,c])}}),KS=vl({loading:fl(cn,!1)},si),JS=de({components:{BSkeleton:OS,BSkeletonIcon:_S,BSkeletonImg:$S,BSkeletonTable:XS,BSkeletonWrapper:r.default.extend({name:si,functional:!0,props:KS,render:function(t,o){var e=o.data,r=o.props,i=o.slots,n=o.scopedSlots,a=i(),l=n||{},d={};return r.loading?t("div",ke(e,{attrs:{role:"alert","aria-live":"polite","aria-busy":!0},staticClass:"b-skeleton-wrapper",key:"loading"}),jl("loading",d,l,a)):jl(In,d,l,a)}})}}),ZS=de({components:{BSpinner:bO}});function QS(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function tP(t,o,e){return o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}var oP="light",eP="dark",rP=vl({variant:fl(hn)},"BTr"),iP=r.default.extend({name:"BTr",mixins:[bs,hs,Sl],provide:function(){return{bvTableTr:this}},inject:{bvTableRowGroup:{default:function(){return{}}}},inheritAttrs:!1,props:rP,computed:{inTbody:function(){return this.bvTableRowGroup.isTbody},inThead:function(){return this.bvTableRowGroup.isThead},inTfoot:function(){return this.bvTableRowGroup.isTfoot},isDark:function(){return this.bvTableRowGroup.isDark},isStacked:function(){return this.bvTableRowGroup.isStacked},isResponsive:function(){return this.bvTableRowGroup.isResponsive},isStickyHeader:function(){return this.bvTableRowGroup.isStickyHeader},hasStickyHeader:function(){return!this.isStacked&&this.bvTableRowGroup.hasStickyHeader},tableVariant:function(){return this.bvTableRowGroup.tableVariant},headVariant:function(){return this.inThead?this.bvTableRowGroup.headVariant:null},footVariant:function(){return this.inTfoot?this.bvTableRowGroup.footVariant:null},isRowDark:function(){return this.headVariant!==oP&&this.footVariant!==oP&&(this.headVariant===eP||this.footVariant===eP||this.isDark)},trClasses:function(){var t=this.variant;return[t?"".concat(this.isRowDark?"bg":"table","-").concat(t):null]},trAttrs:function(){return function(t){for(var o=1;o0?t:null},fP=function(t){return co(t)||uP(t)>0},bP=vl({colspan:fl(Tn,null,fP),rowspan:fl(Tn,null,fP),stackedHeading:fl(hn),stickyColumn:fl(cn,!1),variant:fl(hn)},ui),gP=r.default.extend({name:ui,mixins:[bs,hs,Sl],inject:{bvTableTr:{default:function(){return{}}}},inheritAttrs:!1,props:bP,computed:{tag:function(){return"td"},inTbody:function(){return this.bvTableTr.inTbody},inThead:function(){return this.bvTableTr.inThead},inTfoot:function(){return this.bvTableTr.inTfoot},isDark:function(){return this.bvTableTr.isDark},isStacked:function(){return this.bvTableTr.isStacked},isStackedCell:function(){return this.inTbody&&this.isStacked},isResponsive:function(){return this.bvTableTr.isResponsive},isStickyHeader:function(){return this.bvTableTr.isStickyHeader},hasStickyHeader:function(){return this.bvTableTr.hasStickyHeader},isStickyColumn:function(){return!this.isStacked&&(this.isResponsive||this.hasStickyHeader)&&this.stickyColumn},rowVariant:function(){return this.bvTableTr.variant},headVariant:function(){return this.bvTableTr.headVariant},footVariant:function(){return this.bvTableTr.footVariant},tableVariant:function(){return this.bvTableTr.tableVariant},computedColspan:function(){return uP(this.colspan)},computedRowspan:function(){return uP(this.rowspan)},cellClasses:function(){var t=this.variant,o=this.headVariant,e=this.isStickyColumn;return(!t&&this.isStickyHeader&&!o||!t&&e&&this.inTfoot&&!this.footVariant||!t&&e&&this.inThead&&!o||!t&&e&&this.inTbody)&&(t=this.rowVariant||this.tableVariant||"b-table-default"),[t?"".concat(this.isDark?"bg":"table","-").concat(t):null,e?"b-table-sticky-column":null]},cellAttrs:function(){var t=this.stackedHeading,o=this.inThead||this.inTfoot,e=this.computedColspan,r=this.computedRowspan,i="cell",n=null;return o?(i="columnheader",n=e>0?"colspan":"col"):Pa(this.tag,"th")&&(i="rowheader",n=r>0?"rowgroup":"row"),dP(dP({colspan:e,rowspan:r,role:i,scope:n},this.bvAttrs),{},{"data-label":this.isStackedCell&&!co(t)?ba(t):null})}},render:function(t){var o=[this.normalizeSlot()];return t(this.tag,{class:this.cellClasses,attrs:this.cellAttrs,on:this.bvListeners},[this.isStackedCell?t("div",[o]):o])}}),hP=(mP={},cP="busy",pP=fl(cn,!1),cP in mP?Object.defineProperty(mP,cP,{value:pP,enumerable:!0,configurable:!0,writable:!0}):mP.busy=pP,mP),vP=r.default.extend({props:hP,data:function(){return{localBusy:!1}},computed:{computedBusy:function(){return this.busy||this.localBusy}},watch:{localBusy:function(t,o){t!==o&&this.$emit("update:busy",t)}},methods:{stopIfBusy:function(t){return!!this.computedBusy&&($l(t),!0)},renderBusy:function(){var t=this.tbodyTrClass,o=this.tbodyTrAttr,e=this.$createElement;return this.computedBusy&&this.hasNormalizedSlot(Xn)?e(iP,{staticClass:"b-table-busy-slot",class:[po(t)?t(null,Xn):t],attrs:po(o)?o(null,Xn):o,key:"table-busy-slot"},[e(gP,{props:{colspan:this.computedFields.length||null}},[this.normalizeSlot(Xn)])]):null}}}),xP={caption:fl(hn),captionHtml:fl(hn)},kP=r.default.extend({props:xP,computed:{captionId:function(){return this.isStacked?this.safeId("_caption_"):null}},methods:{renderCaption:function(){var t=this.caption,o=this.captionHtml,e=this.$createElement,r=e(),i=this.hasNormalizedSlot(Kn);return(i||t||o)&&(r=e("caption",{attrs:{id:this.captionId},domProps:i?{}:lm(o,t),key:"caption",ref:"caption"},this.normalizeSlot(Kn))),r}}}),wP={},yP=r.default.extend({methods:{renderColgroup:function(){var t=this.computedFields,o=this.$createElement,e=o();return this.hasNormalizedSlot(Jn)&&(e=o("colgroup",{key:"colgroup"},[this.normalizeSlot(Jn,{columns:t.length,fields:t})])),e}}}),OP={emptyFilteredHtml:fl(hn),emptyFilteredText:fl(hn,"There are no records matching your request"),emptyHtml:fl(hn),emptyText:fl(hn,"There are no records to show"),showEmpty:fl(cn,!1)},jP=r.default.extend({props:OP,methods:{renderEmpty:function(){var t=this.computedItems,o=this.$createElement,e=o();if(this.showEmpty&&(!t||0===t.length)&&(!this.computedBusy||!this.hasNormalizedSlot(Xn))){var r=this.computedFields,i=this.isFiltered,n=this.emptyText,a=this.emptyHtml,l=this.emptyFilteredText,d=this.emptyFilteredHtml,s=this.tbodyTrClass,m=this.tbodyTrAttr;(e=this.normalizeSlot(i?"emptyfiltered":Fn,{emptyFilteredHtml:d,emptyFilteredText:l,emptyHtml:a,emptyText:n,fields:r,items:t}))||(e=o("div",{class:["text-center","my-2"],domProps:i?lm(d,l):lm(a,n)})),e=o(gP,{props:{colspan:r.length||null}},[o("div",{attrs:{role:"alert","aria-live":"polite"}},[e])]),e=o(iP,{staticClass:"b-table-empty-row",class:[po(s)?s(null,"row-empty"):s],attrs:po(m)?m(null,"row-empty"):m,key:i?"b-empty-filtered-row":"b-empty-row"},[e])}return e}}}),SP=function t(o){return co(o)?"":vo(o)&&!ko(o)?Do(o).sort().map((function(e){return t(o[e])})).filter((function(t){return!!t})).join(" "):ba(o)};function PP(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function TP(t){for(var o=1;o3&&void 0!==arguments[3]?arguments[3]:{},i=Do(r).reduce((function(o,e){var i=r[e],n=i.filterByFormatted,a=po(n)?n:n?i.formatter:null;return po(a)&&(o[e]=a(t[e],e,t)),o}),Eo(t)),n=Do(i).filter((function(t){return!(zP[t]||ho(o)&&o.length>0&&ea(o,t)||ho(e)&&e.length>0&&!ea(e,t))}));return Bo(i,n)};function AP(t,o){(null==o||o>t.length)&&(o=t.length);for(var e=0,r=new Array(o);e0&&Xo('Prop "filter-debounce" is deprecated. Use the debounce feature of "" instead.',pi),t},localFiltering:function(){return!this.hasProvider||!!this.noProviderFiltering},filteredCheck:function(){return{filteredItems:this.filteredItems,localItems:this.localItems,localFilter:this.localFilter}},localFilterFn:function(){var t=this.filterFunction;return kl(t)?t:null},filteredItems:function(){var t=this.localItems,o=this.localFilter,e=this.localFiltering?this.filterFnFactory(this.localFilterFn,o)||this.defaultFilterFnFactory(o):null;return e&&t.length>0?t.filter(e):t}},watch:{computedFilterDebounce:function(t){!t&&this.$_filterTimer&&(this.clearFilterTimer(),this.localFilter=this.filterSanitize(this.filter))},filter:{deep:!0,handler:function(t){var o=this,e=this.computedFilterDebounce;this.clearFilterTimer(),e&&e>0?this.$_filterTimer=setTimeout((function(){o.localFilter=o.filterSanitize(t)}),e):this.localFilter=this.filterSanitize(t)}},filteredCheck:function(t){var o=t.filteredItems,e=t.localFilter,r=!1;e?ms(e,[])||ms(e,{})?r=!1:e&&(r=!0):r=!1,r&&this.$emit(Ai,o,o.length),this.isFiltered=r},isFiltered:function(t,o){if(!1===t&&!0===o){var e=this.localItems;this.$emit(Ai,e,e.length)}}},created:function(){var t=this;this.$_filterTimer=null,this.$nextTick((function(){t.isFiltered=Boolean(t.localFilter)}))},beforeDestroy:function(){this.clearFilterTimer()},methods:{clearFilterTimer:function(){clearTimeout(this.$_filterTimer),this.$_filterTimer=null},filterSanitize:function(t){return!this.localFiltering||this.localFilterFn||fo(t)||yo(t)?Ho(t):""},filterFnFactory:function(t,o){return t&&po(t)&&o&&!ms(o,[])&&!ms(o,{})?function(e){return t(e,o)}:null},defaultFilterFnFactory:function(t){var o=this;if(!t||!fo(t)&&!yo(t))return null;var e=t;if(fo(e)){var r=fa(t).replace(Tt,"\\s+");e=new RegExp(".*".concat(r,".*"),"i")}return function(t){return e.lastIndex=0,e.test((r=t,i=o.computedFilterIgnored,n=o.computedFilterIncluded,a=o.computedFieldsObj,vo(r)?SP(BP(r,i,n,a)):""));var r,i,n,a}}}});function LP(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function MP(t){for(var o=1;o0){var r=o[0];Do(r).forEach((function(t){zP[t]||e.push({key:t,label:pa(t)})}))}var i={};return e.filter((function(t){return!i[t.key]&&(i[t.key]=!0,t.label=fo(t.label)?t.label:pa(t.key),!0)}))}(this.fields,this.localItems)},computedFieldsObj:function(){var t=this.$parent;return this.computedFields.reduce((function(o,e){if(o[e.key]=Eo(e),e.formatter){var r=e.formatter;fo(r)&&po(t[r])?r=t[r]:po(r)||(r=void 0),o[e.key].formatter=r}return o}),{})},computedItems:function(){return(this.paginatedItems||this.sortedItems||this.filteredItems||this.localItems||[]).slice()},context:function(){return{filter:this.localFilter,sortBy:this.localSortBy,sortDesc:this.localSortDesc,perPage:rd(la(this.perPage,0),0),currentPage:rd(la(this.currentPage,0),1),apiUrl:this.apiUrl}}},watch:{items:function(t){this.localItems=ho(t)?t.slice():[]},computedItems:function(t,o){ms(t,o)||this.$emit(WP,t)},context:function(t,o){ms(t,o)||this.$emit(Ci,t)}},mounted:function(){this.$emit(WP,this.computedItems)},methods:{getFieldFormatter:function(t){var o=this.computedFieldsObj[t];return o?o.formatter:void 0}}}),YP={currentPage:fl(Tn,1),perPage:fl(Tn,0)},XP=r.default.extend({props:YP,computed:{localPaging:function(){return!this.hasProvider||!!this.noProviderPaging},paginatedItems:function(){var t=this.sortedItems||this.filteredItems||this.localItems||[],o=rd(la(this.currentPage,1),1),e=rd(la(this.perPage,0),0);return this.localPaging&&e&&(t=t.slice((o-1)*e,o*e)),t}}}),KP=zl(pi,Ki),JP=El(pi,"refresh"),ZP={apiUrl:fl(hn),items:fl(vn,[]),noProviderFiltering:fl(cn,!1),noProviderPaging:fl(cn,!1),noProviderSorting:fl(cn,!1)},QP=r.default.extend({mixins:[gs],props:ZP,computed:{hasProvider:function(){return po(this.items)},providerTriggerContext:function(){var t={apiUrl:this.apiUrl,filter:null,sortBy:null,sortDesc:null,perPage:null,currentPage:null};return this.noProviderFiltering||(t.filter=this.localFilter),this.noProviderSorting||(t.sortBy=this.localSortBy,t.sortDesc=this.localSortDesc),this.noProviderPaging||(t.perPage=this.perPage,t.currentPage=this.currentPage),Eo(t)}},watch:{items:function(t){(this.hasProvider||po(t))&&this.$nextTick(this._providerUpdate)},providerTriggerContext:function(t,o){ms(t,o)||this.$nextTick(this._providerUpdate)}},mounted:function(){var t=this;!this.hasProvider||this.localItems&&0!==this.localItems.length||this._providerUpdate(),this.listenOnRoot(JP,(function(o){o!==t.id&&o!==t||t.refresh()}))},methods:{refresh:function(){var t=this.items,o=this.refresh;this.$off(Ki,o),this.computedBusy?this.localBusy&&this.hasProvider&&this.$on(Ki,o):(this.clearSelected(),this.hasProvider?this.$nextTick(this._providerUpdate):this.localItems=ho(t)?t.slice():[])},_providerSetLocal:function(t){this.localItems=ho(t)?t.slice():[],this.localBusy=!1,this.$emit(Ki),this.id&&this.emitOnRoot(KP,this.id)},_providerUpdate:function(){var t=this;this.hasProvider&&(this.computedBusy?this.$nextTick(this.refresh):(this.localBusy=!0,this.$nextTick((function(){try{var o=t.items(t.context,t._providerSetLocal);!function(t){return!co(t)&&po(t.then)&&po(t.catch)}(o)?ho(o)?t._providerSetLocal(o):2!==t.items.length&&(Xo("Provider function didn't request callback and did not return a promise or data.",pi),t.localBusy=!1):o.then((function(o){t._providerSetLocal(o)}))}catch(o){Xo("Provider function error [".concat(o.name,"] ").concat(o.message,"."),pi),t.localBusy=!1,t.$off(Ki,t.refresh)}}))))}}});function tT(t,o,e){return o in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}var oT,eT,rT=["range","multi","single"],iT={noSelectOnClick:fl(cn,!1),selectMode:fl(hn,"multi",(function(t){return ea(rT,t)})),selectable:fl(cn,!1),selectedVariant:fl(hn,"active")},nT=r.default.extend({props:iT,data:function(){return{selectedRows:[],selectedLastRow:-1}},computed:{isSelectable:function(){return this.selectable&&this.selectMode},hasSelectableRowClick:function(){return this.isSelectable&&!this.noSelectOnClick},supportsSelectableRows:function(){return!0},selectableHasSelection:function(){var t=this.selectedRows;return this.isSelectable&&t&&t.length>0&&t.some(Uo)},selectableIsMultiSelect:function(){return this.isSelectable&&ea(["range","multi"],this.selectMode)},selectableTableClasses:function(){var t,o=this.isSelectable;return tT(t={"b-table-selectable":o},"b-table-select-".concat(this.selectMode),o),tT(t,"b-table-selecting",this.selectableHasSelection),tT(t,"b-table-selectable-no-click",o&&!this.hasSelectableRowClick),t},selectableTableAttrs:function(){return{"aria-multiselectable":this.isSelectable?this.selectableIsMultiSelect?"true":"false":null}}},watch:{computedItems:function(t,o){var e=!1;if(this.isSelectable&&this.selectedRows.length>0){e=ho(t)&&ho(o)&&t.length===o.length;for(var r=0;e&&r=0&&t0&&(this.selectedLastClicked=-1,this.selectedRows=this.selectableIsMultiSelect?ia(t,!0):[!0])},isRowSelected:function(t){return!(!bo(t)||!this.selectedRows[t])},clearSelected:function(){this.selectedLastClicked=-1,this.selectedRows=[]},selectableRowClasses:function(t){if(this.isSelectable&&this.isRowSelected(t)){var o=this.selectedVariant;return tT({"b-table-row-selected":!0},"".concat(this.dark?"bg":"table","-").concat(o),o)}return{}},selectableRowAttrs:function(t){return{"aria-selected":this.isSelectable?this.isRowSelected(t)?"true":"false":null}},setSelectionHandlers:function(t){var o=t&&!this.noSelectOnClick?"$on":"$off";this[o](Ji,this.selectionHandler),this[o](Ai,this.clearSelected),this[o](Ci,this.clearSelected)},selectionHandler:function(t,o,e){if(this.isSelectable&&!this.noSelectOnClick){var r=this.selectMode,i=this.selectedLastRow,n=this.selectedRows.slice(),a=!n[o];if("single"===r)n=[];else if("range"===r)if(i>-1&&e.shiftKey){for(var l=ed(i,o);l<=rd(i,o);l++)n[l]=!0;a=!0}else e.ctrlKey||e.metaKey||(n=[],a=!0),this.selectedLastRow=a?o:-1;n[o]=a,this.selectedRows=n}else this.clearSelected()}}}),aT=function(t,o){return t.map((function(t,o){return[o,t]})).sort(function(t,o){return this(t[1],o[1])||t[0]-o[0]}.bind(o)).map((function(t){return t[1]}))},lT=function(t){return co(t)?"":go(t)?da(t,t):t};function dT(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function sT(t){for(var o=1;o2&&void 0!==arguments[2]?arguments[2]:{},r=e.sortBy,i=void 0===r?null:r,n=e.formatter,a=void 0===n?null:n,l=e.locale,d=void 0===l?void 0:l,s=e.localeOptions,m=void 0===s?{}:s,c=e.nullLast,p=void 0!==c&&c,u=Go(t,i,null),f=Go(o,i,null);return po(a)&&(u=a(u,i,t),f=a(f,i,o)),u=lT(u),f=lT(f),ko(u)&&ko(f)||bo(u)&&bo(f)?uf?1:0:p&&""===u&&""!==f?1:p&&""!==u&&""===f?-1:SP(u).localeCompare(SP(f),d,m)}(n,a,{sortBy:t,formatter:s,locale:e,localeOptions:l,nullLast:r})),(d||0)*(o?-1:1)}))}return a}},watch:(eT={isSortable:function(t){t?this.isSortable&&this.$on(Mi,this.handleSort):this.$off(Mi,this.handleSort)}},mT(eT,pT,(function(t){t!==this.localSortDesc&&(this.localSortDesc=t||!1)})),mT(eT,cT,(function(t){t!==this.localSortBy&&(this.localSortBy=t||"")})),mT(eT,"localSortDesc",(function(t,o){t!==o&&this.$emit("update:sortDesc",t)})),mT(eT,"localSortBy",(function(t,o){t!==o&&this.$emit("update:sortBy",t)})),eT),created:function(){this.isSortable&&this.$on(Mi,this.handleSort)},methods:{handleSort:function(t,o,e,r){var i=this;if(this.isSortable&&(!r||!this.noFooterSorting)){var n=!1,a=function(){var t=o.sortDirection||i.sortDirection;t===uT?i.localSortDesc=!1:t===fT&&(i.localSortDesc=!0)};if(o.sortable){var l=!this.localSorting&&o.sortKey?o.sortKey:t;this.localSortBy===l?this.localSortDesc=!this.localSortDesc:(this.localSortBy=l,a()),n=!0}else this.localSortBy&&!this.noSortReset&&(this.localSortBy="",a(),n=!0);n&&this.$emit("sort-changed",this.context)}},sortTheadThClasses:function(t,o,e){return{"b-table-sort-icon-left":o.sortable&&this.sortIconLeft&&!(e&&this.noFooterSorting)}},sortTheadThAttrs:function(t,o,e){if(!this.isSortable||e&&this.noFooterSorting)return{};var r=o.sortable;return{"aria-sort":r&&this.localSortBy===t?this.localSortDesc?"descending":"ascending":r?"none":null}},sortTheadThLabel:function(t,o,e){if(!this.isSortable||e&&this.noFooterSorting)return null;var r="";if(o.sortable)if(this.localSortBy===t)r=this.localSortDesc?this.labelSortAsc:this.labelSortDesc;else{r=this.localSortDesc?this.labelSortDesc:this.labelSortAsc;var i=this.sortDirection||o.sortDirection;i===uT?r=this.labelSortAsc:i===fT&&(r=this.labelSortDesc)}else this.noSortReset||(r=this.localSortBy?this.labelSortClear:"");return ga(r)||null}}});function vT(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function xT(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:document,o=Xa();return!!(o&&""!==o.toString().trim()&&o.containsNode&&ja(t))&&o.containsNode(t,!0)},PT=vl(bP,"BTh"),TT=r.default.extend({name:"BTh",extends:gP,props:PT,computed:{tag:function(){return"th"}}});function _T(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function CT(t){for(var o=1;ot.length)&&(o=t.length);for(var e=0,r=new Array(o);e0&&(h=String((a-1)*l+o+1));var v=ba(Go(t,n))||null,x=v||ba(o),k=v?this.safeId("_row_".concat(v)):null,w=this.selectableRowClasses?this.selectableRowClasses(o):{},y=this.selectableRowAttrs?this.selectableRowAttrs(o):{},O=po(d)?d(t,"row"):d,j=po(s)?s(t,"row"):s;if(f.push(m(iP,{class:[O,w,p?"b-table-has-details":""],props:{variant:t[$P]||null},attrs:CT(CT({id:k},j),{},{tabindex:u?"0":null,"data-pk":v||null,"aria-details":b,"aria-owns":b,"aria-rowindex":h},y),on:{mouseenter:this.rowHovered,mouseleave:this.rowUnhovered},key:"__b-table-row-".concat(x,"__"),ref:"item-rows",refInFor:!0},g)),p){var S={item:t,index:o,fields:r,toggleDetails:this.toggleDetailsFactory(c,t)};this.supportsSelectableRows&&(S.rowSelected=this.isRowSelected(o),S.selectRow=function(){return e.selectRow(o)},S.unselectRow=function(){return e.unselectRow(o)});var P=m(gP,{props:{colspan:r.length},class:this.detailsTdClass},[this.normalizeSlot(Yn,S)]);i&&f.push(m("tr",{staticClass:"d-none",attrs:{"aria-hidden":"true",role:"presentation"},key:"__b-table-details-stripe__".concat(x)}));var T=po(this.tbodyTrClass)?this.tbodyTrClass(t,Yn):this.tbodyTrClass,_=po(this.tbodyTrAttr)?this.tbodyTrAttr(t,Yn):this.tbodyTrAttr;f.push(m(iP,{staticClass:"b-table-details",class:[T],props:{variant:t[$P]||null},attrs:CT(CT({},_),{},{id:b,tabindex:"-1"}),key:"__b-table-details__".concat(x)},[P]))}else c&&(f.push(m()),i&&f.push(m()));return f}}});function BT(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function AT(t){for(var o=1;o0&&e&&e.length>0?oa(o.children).filter((function(t){return ea(e,t)})):[]},getTbodyTrIndex:function(t){if(!ja(t))return-1;var o="TR"===t.tagName?t:Ba("tr",t,!0);return o?this.getTbodyTrs().indexOf(o):-1},emitTbodyRowEvent:function(t,o){if(t&&this.hasListener(t)&&o&&o.target){var e=this.getTbodyTrIndex(o.target);if(e>-1){var r=this.computedItems[e];this.$emit(t,r,e,o)}}},tbodyRowEvtStopped:function(t){return this.stopIfBusy&&this.stopIfBusy(t)},onTbodyRowKeydown:function(t){var o=t.target,e=t.keyCode;if(!this.tbodyRowEvtStopped(t)&&"TR"===o.tagName&&Ta(o)&&0===o.tabIndex)if(ea([is,ds],e))$l(t),this.onTBodyRowClicked(t);else if(ea([ss,es,ns,rs],e)){var r=this.getTbodyTrIndex(o);if(r>-1){$l(t);var i=this.getTbodyTrs(),n=t.shiftKey;e===ns||n&&e===ss?Qa(i[0]):e===rs||n&&e===es?Qa(i[i.length-1]):e===ss&&r>0?Qa(i[r-1]):e===es&&rt.length)&&(o=t.length);for(var e=0,r=new Array(o);e0&&void 0!==arguments[0]&&arguments[0],e=this.computedFields,r=this.isSortable,i=this.isSelectable,n=this.headVariant,a=this.footVariant,l=this.headRowVariant,d=this.footRowVariant,s=this.$createElement;if(this.isStackedAlways||0===e.length)return s();var m=r||this.hasListener(Mi),c=i?this.selectAllRows:kp,p=i?this.clearSelected:kp,u=function(e,i){var n=e.label,a=e.labelHtml,l=e.variant,d=e.stickyColumn,u=e.key,f=null;e.label.trim()||e.headerTitle||(f=pa(e.key));var b={};m&&(b.click=function(r){t.headClicked(r,e,o)},b.keydown=function(r){var i=r.keyCode;i!==is&&i!==ds||t.headClicked(r,e,o)});var g=r?t.sortTheadThAttrs(u,e,o):{},h=r?t.sortTheadThClasses(u,e,o):null,v=r?t.sortTheadThLabel(u,e,o):null,x={class:[t.fieldClasses(e),h],props:{variant:l,stickyColumn:d},style:e.thStyle||{},attrs:t_(t_({tabindex:m&&e.sortable?"0":null,abbr:e.headerAbbr||null,title:e.headerTitle||null,"aria-colindex":i+1,"aria-label":f},t.getThValues(null,u,e.thAttr,o?"foot":"head",{})),g),on:b,key:u},k=[e_(u),e_(u.toLowerCase()),e_()];o&&(k=[r_(u),r_(u.toLowerCase()),r_()].concat(JT(k)));var w={label:n,column:u,field:e,isFoot:o,selectAllRows:c,clearSelected:p},y=t.normalizeSlot(k,w)||s("div",{domProps:lm(a,n)}),O=v?s("span",{staticClass:"sr-only"}," (".concat(v,")")):null;return s(TT,x,[y,O].filter(Uo))},f=e.map(u).filter(Uo),b=[];if(o)b.push(s(iP,{class:this.tfootTrClass,props:{variant:co(d)?l:d}},f));else{var g={columns:e.length,fields:e,selectAllRows:c,clearSelected:p};b.push(this.normalizeSlot(Zn,g)||s()),b.push(s(iP,{class:this.theadTrClass,props:{variant:l}},f))}return s(o?UT:KT,{class:(o?this.tfootClass:this.theadClass)||null,props:o?{footVariant:a||n||null}:{headVariant:n||null},key:o?"bv-tfoot":"bv-thead"},b)}}}),a_=r.default.extend({methods:{renderTopRow:function(){var t=this.computedFields,o=this.stacked,e=this.tbodyTrClass,r=this.tbodyTrAttr,i=this.$createElement;return this.hasNormalizedSlot(ta)&&!0!==o&&""!==o?i(iP,{staticClass:"b-table-top-row",class:[po(e)?e(null,"row-top"):e],attrs:po(r)?r(null,"row-top"):r,key:"b-top-row"},[this.normalizeSlot(ta,{columns:t.length,fields:t})]):i()}}});function l_(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function d_(t){for(var o=1;o0&&void 0!==arguments[0])||arguments[0];if(this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,o){var e=function(){t.$nextTick((function(){ya((function(){t.updateTabs()}))}))};this.$_observer=jp(this.$refs.content,e,{childList:!0,subtree:!1,attributes:!0,attributeFilter:["id"]})}},getTabs:function(){var t=this.registeredTabs.filter((function(t){return 0===t.$children.filter((function(t){return t._isTab})).length})),o=[];if(rt&&t.length>0){var e=t.map((function(t){return"#".concat(t.safeId())})).join(", ");o=Da(e,this.$el).map((function(t){return t.id})).filter(Uo)}return aT(t,(function(t,e){return o.indexOf(t.safeId())-o.indexOf(e.safeId())}))},updateTabs:function(){var t=this.getTabs(),o=t.indexOf(t.slice().reverse().find((function(t){return t.localActive&&!t.disabled})));if(o<0){var e=this.currentTab;e>=t.length?o=t.indexOf(t.slice().reverse().find(__)):t[e]&&!t[e].disabled&&(o=e)}o<0&&(o=t.indexOf(t.find(__))),t.forEach((function(t,e){t.localActive=e===o})),this.tabs=t,this.currentTab=o},getButtonForTab:function(t){return(this.$refs.buttons||[]).find((function(o){return o.tab===t}))},updateButton:function(t){var o=this.getButtonForTab(t);o&&o.$forceUpdate&&o.$forceUpdate()},activateTab:function(t){var o=this.currentTab,e=this.tabs,r=!1;if(t){var i=e.indexOf(t);if(i!==o&&i>-1&&!t.disabled){var n=new Hf("activate-tab",{cancelable:!0,vueTarget:this,componentId:this.safeId()});this.$emit(n.type,i,o,n),n.defaultPrevented||(this.currentTab=i,r=!0)}}return r||this[P_]===o||this.$emit(T_,o),r},deactivateTab:function(t){return!!t&&this.activateTab(this.tabs.filter((function(o){return o!==t})).find(__))},focusButton:function(t){var o=this;this.$nextTick((function(){Qa(o.getButtonForTab(t))}))},emitTabClick:function(t,o){wo(o)&&t&&t.$emit&&!t.disabled&&t.$emit(Pi,o)},clickTab:function(t,o){this.activateTab(t),this.emitTabClick(t,o)},firstTab:function(t){var o=this.tabs.find(__);this.activateTab(o)&&t&&(this.focusButton(o),this.emitTabClick(o,t))},previousTab:function(t){var o=rd(this.currentTab,0),e=this.tabs.slice(0,o).reverse().find(__);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))},nextTab:function(t){var o=rd(this.currentTab,-1),e=this.tabs.slice(o+1).find(__);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))},lastTab:function(t){var o=this.tabs.slice().reverse().find(__);this.activateTab(o)&&t&&(this.focusButton(o),this.emitTabClick(o,t))}},render:function(t){var o=this,e=this.align,r=this.card,i=this.end,n=this.fill,a=this.firstTab,l=this.justified,d=this.lastTab,s=this.nextTab,m=this.noKeyNav,c=this.noNavStyle,p=this.pills,u=this.previousTab,f=this.small,b=this.tabs,g=this.vertical,h=b.find((function(t){return t.localActive&&!t.disabled})),v=b.find((function(t){return!t.disabled})),x=b.map((function(e,r){var i,n=e.safeId,l=null;return m||(l=-1,(e===h||!h&&e===v)&&(l=null)),t(C_,{props:{controls:n?n():null,id:e.controlledBy||(n?n("_BV_tab_button_"):null),noKeyNav:m,posInSet:r+1,setSize:b.length,tab:e,tabIndex:l},on:(i={},k_(i,Pi,(function(t){o.clickTab(e,t)})),k_(i,Ii,a),k_(i,Xi,u),k_(i,Gi,s),k_(i,Hi,d),i),key:e._uid||r,ref:"buttons",refInFor:!0})})),k=t(_y,{class:this.localNavClass,attrs:{role:"tablist",id:this.safeId("_BV_tab_controls_")},props:{fill:n,justified:l,align:e,tabs:!c&&!p,pills:!c&&p,vertical:g,small:f,cardHeader:r&&!g},ref:"nav"},[this.normalizeSlot("tabs-start")||t(),x,this.normalizeSlot("tabs-end")||t()]);k=t("div",{class:[{"card-header":r&&!g&&!i,"card-footer":r&&!g&&i,"col-auto":g},this.navWrapperClass],key:"bv-tabs-nav"},[k]);var w=this.normalizeSlot()||[],y=t();0===w.length&&(y=t("div",{class:["tab-pane","active",{"card-body":r}],key:"bv-empty-tab"},this.normalizeSlot(Fn)));var O=t("div",{staticClass:"tab-content",class:[{col:g},this.contentClass],attrs:{id:this.safeId("_BV_tab_container_")},key:"bv-content",ref:"content"},[w,y]);return t(this.tag,{staticClass:"tabs",class:{row:g,"no-gutters":g&&r},attrs:{id:this.safeId()}},[i?O:t(),k,i?t():O])}});function E_(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function B_(t){for(var o=1;o" with name "'.concat(o,'" already exists in the document.'),yi),this.dead=!0):(this.doRender=!0,this.$once(rn,(function(){t.emitOnRoot(zl(yi,$i),o)})))},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},render:function(t){var o=t("div",{class:["d-none",{"b-dead-toaster":this.dead}]});if(this.doRender){var e=t(N_.YC,{staticClass:"b-toaster-slot",props:{name:this.staticName,multiple:!0,tag:"div",slim:!1,transition:H_}});o=t("div",{staticClass:"b-toaster",class:[this.staticName],attrs:{id:this.staticName,role:this.role||null,"aria-live":this.ariaLive,"aria-atomic":this.ariaAtomic}},[e])}return o}});function G_(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function q_(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:{};return new Hf(t,q_(q_({cancelable:!1,target:this.$el||null,relatedTarget:null},o),{},{vueTarget:this,componentId:this.safeId()}))},emitEvent:function(t){var o=t.type;this.emitOnRoot(zl(wi,o),t),this.$emit(o,t)},ensureToaster:function(){if(!this.static){var t=this.computedToaster;if(!N_.Df.hasTarget(t)){var o=document.createElement("div");document.body.appendChild(o),new W_({parent:this.$root,propsData:{name:t}}).$mount(o)}}},startDismissTimer:function(){this.clearDismissTimer(),this.noAutoHide||(this.$_dismissTimer=setTimeout(this.hide,this.resumeDismiss||this.computedDuration),this.dismissStarted=Date.now(),this.resumeDismiss=0)},clearDismissTimer:function(){clearTimeout(this.$_dismissTimer),this.$_dismissTimer=null},setHoverHandler:function(t){var o=this.$refs["b-toast"];Cl(t,o,"mouseenter",this.onPause,dn),Cl(t,o,"mouseleave",this.onUnPause,dn)},onPause:function(){if(!this.noAutoHide&&!this.noHoverPause&&this.$_dismissTimer&&!this.resumeDismiss){var t=Date.now()-this.dismissStarted;t>0&&(this.clearDismissTimer(),this.resumeDismiss=rd(this.computedDuration-t,1e3))}},onUnPause:function(){this.noAutoHide||this.noHoverPause||!this.resumeDismiss?this.resumeDismiss=this.dismissStarted=0:this.startDismissTimer()},onLinkClick:function(){var t=this;this.$nextTick((function(){ya((function(){t.hide()}))}))},onBeforeEnter:function(){this.isTransitioning=!0},onAfterEnter:function(){this.isTransitioning=!1;var t=this.buildEvent(tn);this.emitEvent(t),this.startDismissTimer(),this.setHoverHandler(!0)},onBeforeLeave:function(){this.isTransitioning=!0},onAfterLeave:function(){this.isTransitioning=!1,this.order=0,this.resumeDismiss=this.dismissStarted=0;var t=this.buildEvent(Ri);this.emitEvent(t),this.doRender=!1},makeToast:function(t){var o=this,e=this.title,r=this.slotScope,i=xd(this),n=[],a=this.normalizeSlot("toast-title",r);a?n.push(a):e&&n.push(t("strong",{staticClass:"mr-2"},e)),this.noCloseButton||n.push(t(Al,{staticClass:"ml-auto mb-1",on:{click:function(){o.hide()}}}));var l=t();n.length>0&&(l=t("header",{staticClass:"toast-header",class:this.headerClass},n));var d=t(i?Ts:"div",{staticClass:"toast-body",class:this.bodyClass,props:i?gl(tC,this):{},on:i?{click:this.onLinkClick}:{}},this.normalizeSlot(In,r));return t("div",{staticClass:"toast",class:this.toastClass,attrs:this.computedAttrs,key:"toast-".concat(this._uid),ref:"toast"},[l,d])}},render:function(t){if(!this.doRender||!this.isMounted)return t();var o=this.order,e=this.static,r=this.isHiding,i=this.isStatus,n="b-toast-".concat(this._uid),a=t("div",{staticClass:"b-toast",class:this.toastClasses,attrs:q_(q_({},e?{}:this.scopedStyleAttrs),{},{id:this.safeId("_toast_outer"),role:r?null:i?"status":"alert","aria-live":r?null:i?"polite":"assertive","aria-atomic":r?null:"true"}),key:n,ref:"b-toast"},[t(Hl,{props:{noFade:this.noFade},on:this.transitionHandlers},[this.localShow?this.makeToast(t):t()])]);return t(N_.h_,{props:{name:n,to:this.computedToaster,order:o,slim:!0,disabled:e}},[a])}});function rC(t,o){for(var e=0;et.length)&&(o=t.length);for(var e=0,r=new Array(o);e1&&void 0!==arguments[1]?arguments[1]:{};t&&!Ko(dC)&&e(nC(nC({},cC(o)),{},{toastContent:t}),this._vm)}},{key:"show",value:function(t){t&&this._root.$emit(El(wi,Qi),t)}},{key:"hide",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this._root.$emit(El(wi,Vi),t)}}])&&rC(o.prototype,r),t}();t.mixin({beforeCreate:function(){this._bv__toast=new r(this)}}),zo(t.prototype,dC)||Co(t.prototype,dC,{get:function(){return this&&this._bv__toast||Xo('"'.concat(dC,'" must be accessed from a Vue instance "this" context.'),wi),this._bv__toast}})}}})}});function uC(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function fC(t){for(var o=1;o=e){var r=this.$targets[this.$targets.length-1];this.$activeTarget!==r&&this.activate(r)}else{if(this.$activeTarget&&t0)return this.$activeTarget=null,void this.clear();for(var i=this.$offsets.length;i--;)this.$activeTarget!==this.$targets[i]&&t>=this.$offsets[i]&&(so(this.$offsets[i+1])||t0&&this.$root&&this.$root.$emit(HC,t,e)}},{key:"clear",value:function(){var t=this;Da("".concat(this.$selector,", ").concat(RC),this.$el).filter((function(t){return Ma(t,LC)})).forEach((function(o){return t.setActiveState(o,!1)}))}},{key:"setActiveState",value:function(t,o){t&&(o?Fa(t,LC):La(t,LC))}}])&&FC(o.prototype,e),r&&FC(o,r),t}(),KC="__BV_ScrollSpy__",JC=/^\d+$/,ZC=/^(auto|position|offset)$/,QC=function(t,o,e){if(rt){var r=function(t){var o={};return t.arg&&(o.element="#".concat(t.arg)),Do(t.modifiers).forEach((function(t){JC.test(t)?o.offset=la(t,0):ZC.test(t)&&(o.method=t)})),fo(t.value)?o.element=t.value:bo(t.value)?o.offset=dd(t.value):vo(t.value)&&Do(t.value).filter((function(t){return!!XC.DefaultType[t]})).forEach((function(e){o[e]=t.value[e]})),o}(o);t[KC]?t[KC].updateConfig(r,e.context.$root):t[KC]=new XC(t,r,e.context.$root)}};const t$={install:le({plugins:{componentsPlugin:DC,directivesPlugin:de({plugins:{VBHoverPlugin:zC,VBModalPlugin:EC,VBPopoverPlugin:Wj,VBScrollspyPlugin:de({directives:{VBScrollspy:{bind:function(t,o,e){QC(t,o,e)},inserted:function(t,o,e){QC(t,o,e)},update:function(t,o,e){o.value!==o.oldValue&&QC(t,o,e)},componentUpdated:function(t,o,e){o.value!==o.oldValue&&QC(t,o,e)},unbind:function(t){!function(t){t[KC]&&(t[KC].dispose(),t[KC]=null,delete t[KC])}(t)}}}}),VBTogglePlugin:Au,VBTooltipPlugin:$C,VBVisiblePlugin:de({directives:{VBVisible:rp}})}})}}),NAME:"BootstrapVue"};var o$=e(3379),e$=e.n(o$),r$=e(7795),i$=e.n(r$),n$=e(569),a$=e.n(n$),l$=e(3565),d$=e.n(l$),s$=e(9216),m$=e.n(s$),c$=e(4589),p$=e.n(c$),u$=e(3622),f$={};f$.styleTagTransform=p$(),f$.setAttributes=d$(),f$.insert=a$().bind(null,"head"),f$.domAPI=i$(),f$.insertStyleElement=m$(),e$()(u$.Z,f$),u$.Z&&u$.Z.locals&&u$.Z.locals;var b$=e(401),g$={};g$.styleTagTransform=p$(),g$.setAttributes=d$(),g$.insert=a$().bind(null,"head"),g$.domAPI=i$(),g$.insertStyleElement=m$(),e$()(b$.Z,g$),b$.Z&&b$.Z.locals&&b$.Z.locals;var h$=e(1759),v$={};v$.styleTagTransform=p$(),v$.setAttributes=d$(),v$.insert=a$().bind(null,"head"),v$.domAPI=i$(),v$.insertStyleElement=m$(),e$()(h$.Z,v$),h$.Z&&h$.Z.locals&&h$.Z.locals;var x$=function(){var t=this,o=t.$createElement,e=t._self._c||o;return e("div",{attrs:{id:"app"}},[e("b-navbar",{attrs:{toggleable:"lg",type:"dark",variant:"primary"}},[e("b-navbar-brand",{attrs:{href:"#"},on:{click:t.newSecret}},[e("i",{staticClass:"fas fa-user-secret"}),t._v(" OTS - One Time Secrets\n ")]),t._v(" "),e("b-navbar-toggle",{attrs:{target:"nav-collapse"}}),t._v(" "),e("b-collapse",{attrs:{id:"nav-collapse","is-nav":""}},[e("b-navbar-nav",{staticClass:"ml-auto"},[e("b-nav-item",{on:{click:function(o){t.explanationShown=!t.explanationShown}}},[e("i",{staticClass:"fas fa-question"}),t._v(" "+t._s(t.$t("btn-show-explanation"))+"\n ")]),t._v(" "),e("b-nav-item",{on:{click:t.newSecret}},[e("i",{staticClass:"fas fa-plus"}),t._v(" "+t._s(t.$t("btn-new-secret"))+"\n ")]),t._v(" "),e("b-nav-form",{staticClass:"ml-2"},[e("b-form-checkbox",{attrs:{switch:""},model:{value:t.darkTheme,callback:function(o){t.darkTheme=o},expression:"darkTheme"}},[e("i",{staticClass:"fas fa-moon"}),t._v("​\n ")])],1)],1)],1)],1),t._v(" "),e("b-container",{staticClass:"mt-4"},[e("b-row",{staticClass:"justify-content-center"},[e("b-col",{attrs:{md:"8"}},[e("b-alert",{attrs:{variant:"danger",dismissible:""},domProps:{innerHTML:t._s(t.error)},model:{value:t.showError,callback:function(o){t.showError=o},expression:"showError"}})],1)],1),t._v(" "),e("b-row",[e("b-col",[t.explanationShown?e("b-card",{staticClass:"mb-3",attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[e("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-explanation"))},slot:"header"}),t._v(" "),e("ul",t._l(t.$t("items-explanation"),(function(o){return e("li",[t._v("\n "+t._s(o)+"\n ")])})),0)]):t._e(),t._v(" "),"create"!=t.mode||t.secretId?t._e():e("b-card",{attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[e("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-new-secret"))},slot:"header"}),t._v(" "),e("b-form-group",{attrs:{label:t.$t("label-secret-data")}},[e("b-form-textarea",{attrs:{id:"secret","max-rows":"25",rows:"5"},model:{value:t.secret,callback:function(o){t.secret=o},expression:"secret"}})],1),t._v(" "),e("b-button",{attrs:{variant:"success"},on:{click:t.createSecret}},[t._v("\n "+t._s(t.$t("btn-create-secret"))+"\n ")])],1),t._v(" "),"create"==t.mode&&t.secretId?e("b-card",{attrs:{"border-variant":"success","header-bg-variant":"success","header-text-variant":"white"}},[e("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-secret-created"))},slot:"header"}),t._v(" "),e("p",{domProps:{innerHTML:t._s(t.$t("text-pre-url"))}}),t._v(" "),e("b-form-group",[e("b-form-input",{ref:"secretUrl",attrs:{value:t.secretUrl,readonly:""},on:{focus:function(o){return t.$refs.secretUrl.select()}}})],1),t._v(" "),e("p",{domProps:{innerHTML:t._s(t.$t("text-burn-hint"))}})],1):t._e(),t._v(" "),"view"==t.mode?e("b-card",{attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[e("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-reading-secret"))},slot:"header"}),t._v(" "),t.secret?[e("b-form-group",[e("b-form-textarea",{attrs:{"max-rows":"25",readonly:"",rows:"5",value:t.secret}})],1),t._v(" "),e("p",{domProps:{innerHTML:t._s(t.$t("text-hint-burned"))}})]:[e("p",{domProps:{innerHTML:t._s(t.$t("text-pre-reveal-hint"))}}),t._v(" "),e("b-button",{attrs:{variant:"success"},on:{click:t.requestSecret}},[t._v("\n "+t._s(t.$t("btn-reveal-secret"))+"\n ")])]],2):t._e()],1)],1),t._v(" "),e("b-row",{staticClass:"mt-5"},[e("b-col",{staticClass:"footer"},[t._v("\n "+t._s(t.$t("text-powered-by"))+" "),e("a",{attrs:{href:"https://github.com/Luzifer/ots"}},[e("i",{staticClass:"fab fa-github"}),t._v(" Luzifer/OTS")]),t._v(" "+t._s(t.$root.version)+"\n ")])],1)],1)],1)};x$._withStripped=!0;var k$=e(9669),w$=e.n(k$),y$=e(5281),O$=e.n(y$),j$=function(t,o,e,r,i,n,a,l){var d,s="function"==typeof t?t.options:t;if(o&&(s.render=o,s.staticRenderFns=[],s._compiled=!0),d)if(s.functional){s._injectStyles=d;var m=s.render;s.render=function(t,o){return d.call(o),m(t,o)}}else{var c=s.beforeCreate;s.beforeCreate=c?[].concat(c,d):[d]}return{exports:t,options:s}}({name:"App",data:function(){return{error:"",explanationShown:!1,mode:"create",secret:"",securePassword:"",secretId:"",showError:!1,darkTheme:!1}},computed:{secretUrl:function(){return[window.location.href,encodeURIComponent([this.secretId,this.securePassword].join("|"))].join("#")}},watch:{darkTheme:function(t){window.setTheme(t?"dark":"light")}},mounted:function(){this.darkTheme="dark"===window.getTheme(),window.onhashchange=this.hashLoad,this.hashLoad()},methods:{createSecret:function(){var t=this;this.securePassword=Math.random().toString(36).substring(2);var o=O$().enc(this.secret,this.securePassword);return w$().post("api/create",{secret:o}).then((function(o){t.secretId=o.data.secret_id,t.secret="",window.setTimeout((function(){return t.$refs.secretUrl.focus()}),100)})).catch((function(o){switch(o.response.status){case 404:t.secretId="foobar";break;default:t.error=t.$t("alert-something-went-wrong"),t.showError=!0}})),!1},hashLoad:function(){var t=decodeURIComponent(window.location.hash);if(0!==t.length){var o=t.substring(1).split("|");2===o.length&&(this.securePassword=o[1]),this.secretId=o[0],this.mode="view"}},newSecret:function(){location.href=location.href.split("#")[0]},requestSecret:function(){var t=this;w$().get("api/get/".concat(this.secretId)).then((function(o){var e=o.data.secret;t.securePassword&&(e=O$().dec(e,t.securePassword)),t.secret=e})).catch((function(o){switch(o.response.status){case 404:t.error=t.$t("alert-secret-not-found"),t.showError=!0;break;default:t.error=t.$t("alert-something-went-wrong"),t.showError=!0}}))}}},x$);j$.options.__file="app.vue";const S$=j$.exports,P$={de:JSON.parse('{"alert-secret-not-found":"Das ist nicht das Secret, was du suchst… - Falls du diesen Link noch nicht selbst geöffnet hast, könnte das Secret kompromittiert sein, da jemand anderes den Link geöffnet haben könnte.","alert-something-went-wrong":"Irgendwas ging schief. Entschuldigung…","btn-create-secret":"Secret erstellen!","btn-new-secret":"Neues Secret","btn-reveal-secret":"Zeig mir das Secret!","btn-show-explanation":"Wie funktioniert das?","items-explanation":["Du gibst ein Secret auf dieser Seite ein","Dein Browser verschlüsselt das Secret mit einem generierten Passwort","Nur das verschlüsselte Secret wird an den Server geschickt (das Passwort oder das Secret im Klartext werden niemals übertragen!)","Der Server speichert das verschlüsselte Secret für eine Weile","Du gibst die angezeigte URL, welche die ID und das Passwort des Secrets enthält, an den Empfänger","Der Empfänger kann das Secret einmalig abrufen: Funktioniert das nicht, könnte jemand anderes es abgerufen haben!","Wenn das verschlüsselte Secret das erste Mal abgerufen wurde, wird es automatisch vom Server gelöscht"],"label-secret-data":"Inhalt des Secrets:","text-burn-hint":"Bitte rufe die URL nicht selbst auf, da das Secret dadurch zerstört würde. Gib sie einfach weiter!","text-hint-burned":"Achtung: Du kannst das nur einmal ansehen! Sobald du die Seite neu lädst, ist das Secret verschwunden, also besser direkt kopieren und sicher abspeichern…","text-powered-by":"Läuft mit","text-pre-reveal-hint":"Um das Secret anzuzeigen klicke diesen Button aber denk dran, dass das Secret nur einmal angezeigt und dabei gelöscht wird.","text-pre-url":"Dein Secret wurde angelegt und unter folgender URL gespeichert:","title-explanation":"So funktioniert es…","title-new-secret":"Erstelle ein neues Secret","title-reading-secret":"Secret auslesen…","title-secret-created":"Secret erstellt!"}'),en:JSON.parse('{"alert-secret-not-found":"This is not the secret you are looking for… - If you expected the secret to be here it might be comprimised as someone else might have opened the link already.","alert-something-went-wrong":"Something went wrong. I\'m very sorry about this…","btn-create-secret":"Create the secret!","btn-new-secret":"New Secret","btn-reveal-secret":"Show me the secret!","btn-show-explanation":"How does this work?","items-explanation":["You enter a secret into the field on this page","Your browser encrypts the secret using a generated password","Only the encrypted secret is sent to the server (neither the plain secret nor the password are ever sent!)","The server stores the encrypted secret for a certain time","You pass the displayed URL containing the ID and the decryption password to the recipient","The recipient can view the secret exactly once: If they can\'t, the secret might have been viewed by someone else!","After the encrypted secret has been retrieved once, it is deleted from the server"],"label-secret-data":"Secret data:","text-burn-hint":"Please remember not to go to this URL yourself as that would destroy the secret. Just pass it to someone else!","text-hint-burned":"Attention: You\'re only seeing this once. As soon as you reload the page the secret will be gone so maybe copy it now…","text-powered-by":"Powered by","text-pre-reveal-hint":"To reveal the secret click this button but be aware doing so will destroy the secret. You can only view it once!","text-pre-url":"Your secret was created and stored using this URL:","title-explanation":"This is how it works…","title-new-secret":"Create a new secret","title-reading-secret":"Reading your secret…","title-secret-created":"Secret created!"}'),fr:JSON.parse('{"alert-secret-not-found":"Ce secret n\'est pas celui que vous cherchez… - Si vous comptiez trouvez ce secret ici, il a pu être compromis car quelqu\'un a probablement déjà ouvert le lien.","alert-something-went-wrong":"Un problème est survenu. Nous en sommes désolés…","btn-create-secret":"Créer le secret!","btn-new-secret":"Nouveau secret","btn-reveal-secret":"Voir le secret!","btn-show-explanation":"Comment ça fonctionne?","items-explanation":["Vous saisissez le secret dans un champ sur cette page","Votre navigateur chiffre le secret en utilisant un mot de passe généré","Seul le secret chiffré est envoyé au serveur (ni le secret en clair, ni le mot de passe ne sont envoyés!)","Le serveur stocke le secret chiffré pendant un certain temps","Vous fournissez l\'URL affichée contenant l\'identifiant et le mot de passe de déchiffrage au destinataire","Le destintaire ne peut voir le secret qu\'une fois: si cela ne fonctionne pas, c\'est que le secret a été consulté par quelqu\'un d\'autre!","Dès que le secret chiffré a été récupéré, il est supprimé du serveur"],"label-secret-data":"Données secrètes:","text-burn-hint":"Attention de ne pas ouvrir cette URL vous-même, cela détruirait le secret. Fournissez-la à quelqu\'un d\'autre!","text-hint-burned":"Attention: Vous ne pouvez consulter ce contenu qu\'une fois. Le secret sera détruit dès que vous rechargez la page, donc copiez le maintenant…","text-powered-by":"Propulsé par","text-pre-reveal-hint":"Pour afficher le secret, cliquez sur ce bouton, mais soyez conscient que cela le détruira. Vous ne pouvez l\'afficher qu\'une fois!","text-pre-url":"Votre secret a été créé et stocké à cette URL:","title-explanation":"Voici comment ça fonctionne…","title-new-secret":"Créer un nouveau secret","title-reading-secret":"Lecture du secret…","title-secret-created":"Secret créé!"}'),lv:JSON.parse('{"alert-secret-not-found":"Ziņa nav atrasta!… - Ja ievadītā saite ir pareiza, tad ir beidzies ziņas glabāšanas laiks, vai arī tā jau vienreiz ir atvērta.","alert-something-went-wrong":"Neparedzēta sistēmas kļūda. Atvainojiet par sagādātajām neērtībām…","btn-create-secret":"Šifrēt ziņu!","btn-new-secret":"Jauna ziņa","btn-reveal-secret":"Atvērt ziņu!","btn-show-explanation":"Kā tas strādā?","items-explanation":["Tu ievadi ziņu ievades laukā","Pārlūks nošifrē ziņu ar uzģenerētu paroli","Tikai šifrētā ziņa tiek nosūtīta serverim (nešifrētā ziņa un parole sūtīta netiek!)","Serveris noteiktu laiku glabā šifrēto ziņu","Tu nodod URL ar ziņas ID un atšifrēšanas paroli saņēmējam","Saņēmējs var atvērt ziņu tikai vienreiz: ja tas neizdodas, iespējams, ziņu jau atvēris kāds cits!","Kad ziņa tiek atvērta pirmo reizi, tā no servera tiek dzēsta"],"label-secret-data":"Ziņa:","text-burn-hint":"Lūdzu atceries neatvērt saiti pats, jo tad ziņa tiks dzēsta. Nodod saiti ziņas saņēmējam!","text-hint-burned":"Uzmanību: Ziņa tiek parādīta tikai vienu reizi. Līdzko lapa tiks pārlādēta, ziņa būs neatgriezeniski zaudēta, tāpēc nepieciešamības gadījumā nokopē to tagad…","text-powered-by":"Darbina","text-pre-reveal-hint":"Lai parādītu ziņu nospied šo pogu, bet rēķinies ar to, ka pēc apskates ziņa vairs nebūs pieejama. To var atvērt tikai vienreiz!","text-pre-url":"Ziņa ir nošifrēta un ir atverama šajā adresē:","title-explanation":"Tā tas strādā…","title-new-secret":"Šifrēt ziņu","title-reading-secret":"Atver ziņu…","title-secret-created":"Ziņa nošifrēta!"}'),nl:JSON.parse('{"alert-secret-not-found":"De gegevens die je zocht bestaan niet (meer)… - Als je hier informatie verwachtte dan is de link mogelijk al door iemand anders bekeken!","alert-something-went-wrong":"Er ging iets verkeerd, sorry…","btn-create-secret":"Nieuwe vertrouwelijke info aanmaken!","btn-new-secret":"Nieuw","btn-reveal-secret":"Toon mij de vertrouwelijke info!","btn-show-explanation":"Hoe werkt dit?","items-explanation":["Je vult vertrouwelijke informatie in op deze pagina.","Je browser versleutelt de ingevulde tekst via een automatisch gegenereerd wachtwoord.","Alleen de versleutelde data wordt naar de server gestuurd. (De leesbare versie of het wachtwoord worden nooit verstuurd!)","De server slaat de versleutelde data gedurende een beperkte periode op.","Je geeft de URL met identificatie en het gegenereerde wachtwoord aan de ontvanger.","De ontvanger kan de vertrouwelijke informatie exact eenmaal bekijken: indien het niet lukt heeft mogelijk iemand anders de info gezien!","De versleutelde data wordt van de server gewist van zodra de ontvanger het bekeken heeft."],"label-secret-data":"Vertrouwelijke info:","text-burn-hint":"Bezoek de URL niet zelf: je kan deze slechts eenmaal gebruiken. Geef de URL aan de ontvanger.","text-hint-burned":"Opgelet: Je ziet deze informatie alleen nu. Je kan het niet meer opnieuw opvragen als je de pagina verlaat.","text-powered-by":"Mogelijk gemaakt door","text-pre-reveal-hint":"Gebruik deze knop om de vertrouwelijke info op te halen. Let op: Je kan dit slechts eenmaal doen!","text-pre-url":"Je vertrouwelijke informatie kan opgevraagd worden via deze URL:","title-explanation":"Dit is hoe het werkt…","title-new-secret":"Nieuwe vertrouwelijke info opslaan","title-reading-secret":"Vertrouwelijke info lezen…","title-secret-created":"Vertrouwelijke info opgeslaan!"}')};r.default.use(t$),r.default.use(J);var T$=new J({locale,fallbackLocale:"en",messages:P$});new r.default({el:"#app",components:{app:S$},data:{version},i18n:T$,render:function(t){return t("app")}})},401:(t,o,e)=>{"use strict";e.d(o,{Z:()=>k});var r=e(3645),i=e.n(r),n=e(1667),a=e.n(n),l=new URL(e(6803),e.b),d=new URL(e(9566),e.b),s=new URL(e(2952),e.b),m=new URL(e(9052),e.b),c=new URL(e(8776),e.b),p=new URL(e(134),e.b),u=i()((function(t){return t[1]})),f=a()(l),b=a()(d),g=a()(s),h=a()(m),v=a()(c),x=a()(p);u.push([t.id,'/*!\n * BootstrapVue Custom CSS (https://bootstrap-vue.org)\n */.bv-no-focus-ring:focus{outline:none}@media (max-width: 575.98px){.bv-d-xs-down-none{display:none !important}}@media (max-width: 767.98px){.bv-d-sm-down-none{display:none !important}}@media (max-width: 991.98px){.bv-d-md-down-none{display:none !important}}@media (max-width: 1199.98px){.bv-d-lg-down-none{display:none !important}}.bv-d-xl-down-none{display:none !important}.form-control.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.form-control.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.form-control.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.b-avatar{display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;width:2.5rem;height:2.5rem;font-size:inherit;font-weight:400;line-height:1;max-width:100%;max-height:auto;text-align:center;overflow:visible;position:relative;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}.b-avatar:focus{outline:0}.b-avatar.btn,.b-avatar[href]{padding:0;border:0}.b-avatar.btn .b-avatar-img img,.b-avatar[href] .b-avatar-img img{transition:-webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}.b-avatar.btn:not(:disabled):not(.disabled),.b-avatar[href]:not(:disabled):not(.disabled){cursor:pointer}.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img,.b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img{-webkit-transform:scale(1.15);transform:scale(1.15)}.b-avatar.disabled,.b-avatar:disabled,.b-avatar[disabled]{opacity:0.65;pointer-events:none}.b-avatar .b-avatar-custom,.b-avatar .b-avatar-text,.b-avatar .b-avatar-img{border-radius:inherit;width:100%;height:100%;overflow:hidden;display:flex;justify-content:center;align-items:center;-webkit-mask-image:radial-gradient(white, black);mask-image:radial-gradient(white, black)}.b-avatar .b-avatar-text{text-transform:uppercase;white-space:nowrap}.b-avatar[href]{text-decoration:none}.b-avatar>.b-icon{width:60%;height:auto;max-width:100%}.b-avatar .b-avatar-img img{width:100%;height:100%;max-height:auto;border-radius:inherit;-o-object-fit:cover;object-fit:cover}.b-avatar .b-avatar-badge{position:absolute;min-height:1.5em;min-width:1.5em;padding:0.25em;line-height:1;border-radius:10em;font-size:70%;font-weight:700;z-index:1}.b-avatar-sm{width:1.5rem;height:1.5rem}.b-avatar-sm .b-avatar-text{font-size:calc(0.6rem)}.b-avatar-sm .b-avatar-badge{font-size:calc(0.42rem)}.b-avatar-lg{width:3.5rem;height:3.5rem}.b-avatar-lg .b-avatar-text{font-size:calc(1.4rem)}.b-avatar-lg .b-avatar-badge{font-size:calc(0.98rem)}.b-avatar-group .b-avatar-group-inner{display:flex;flex-wrap:wrap}.b-avatar-group .b-avatar{border:1px solid #dee2e6}.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled),.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled){z-index:1}.b-calendar{display:inline-flex}.b-calendar .b-calendar-inner{min-width:250px}.b-calendar .b-calendar-header,.b-calendar .b-calendar-nav{margin-bottom:0.25rem}.b-calendar .b-calendar-nav .btn{padding:0.25rem}.b-calendar output{padding:0.25rem;font-size:80%}.b-calendar output.readonly{background-color:#e9ecef;opacity:1}.b-calendar .b-calendar-footer{margin-top:0.5rem}.b-calendar .b-calendar-grid{padding:0;margin:0;overflow:hidden}.b-calendar .b-calendar-grid .row{flex-wrap:nowrap}.b-calendar .b-calendar-grid-caption{padding:0.25rem}.b-calendar .b-calendar-grid-body .col[data-date] .btn{width:32px;height:32px;font-size:14px;line-height:1;margin:3px auto;padding:9px 0}.b-calendar .btn:disabled,.b-calendar .btn.disabled,.b-calendar .btn[aria-disabled=true]{cursor:default;pointer-events:none}.card-img-left{border-top-left-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-img-right{border-top-right-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret::after{display:none !important}.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret::before{display:none !important}.dropdown .dropdown-menu:focus{outline:none}.b-dropdown-form{display:inline-block;padding:0.25rem 1.5rem;width:100%;clear:both;font-weight:400}.b-dropdown-form:focus{outline:1px dotted !important;outline:5px auto -webkit-focus-ring-color !important}.b-dropdown-form.disabled,.b-dropdown-form:disabled{outline:0 !important;color:#6c757d;pointer-events:none}.b-dropdown-text{display:inline-block;padding:0.25rem 1.5rem;margin-bottom:0;width:100%;clear:both;font-weight:lighter}.custom-checkbox.b-custom-control-lg,.input-group-lg .custom-checkbox{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-checkbox.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-checkbox .custom-control-label::before{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:0.3rem}.custom-checkbox.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-checkbox .custom-control-label::after{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background-size:50% 50%}.custom-checkbox.b-custom-control-sm,.input-group-sm .custom-checkbox{font-size:0.875rem;line-height:1.5;padding-left:1.3125rem}.custom-checkbox.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-checkbox .custom-control-label::before{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;border-radius:0.2rem}.custom-checkbox.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-checkbox .custom-control-label::after{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;background-size:50% 50%}.custom-switch.b-custom-control-lg,.input-group-lg .custom-switch{padding-left:2.8125rem}.custom-switch.b-custom-control-lg .custom-control-label,.input-group-lg .custom-switch .custom-control-label{font-size:1.25rem;line-height:1.5}.custom-switch.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-switch .custom-control-label::before{top:0.3125rem;height:1.25rem;left:-2.8125rem;width:2.1875rem;border-radius:0.625rem}.custom-switch.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-switch .custom-control-label::after{top:calc( 0.3125rem + 2px);left:calc( -2.8125rem + 2px);width:calc( 1.25rem - 4px);height:calc( 1.25rem - 4px);border-radius:0.625rem;background-size:50% 50%}.custom-switch.b-custom-control-lg .custom-control-input:checked ~ .custom-control-label::after,.input-group-lg .custom-switch .custom-control-input:checked ~ .custom-control-label::after{-webkit-transform:translateX(0.9375rem);transform:translateX(0.9375rem)}.custom-switch.b-custom-control-sm,.input-group-sm .custom-switch{padding-left:1.96875rem}.custom-switch.b-custom-control-sm .custom-control-label,.input-group-sm .custom-switch .custom-control-label{font-size:0.875rem;line-height:1.5}.custom-switch.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-switch .custom-control-label::before{top:0.21875rem;left:-1.96875rem;width:1.53125rem;height:0.875rem;border-radius:0.4375rem}.custom-switch.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-switch .custom-control-label::after{top:calc( 0.21875rem + 2px);left:calc( -1.96875rem + 2px);width:calc( 0.875rem - 4px);height:calc( 0.875rem - 4px);border-radius:0.4375rem;background-size:50% 50%}.custom-switch.b-custom-control-sm .custom-control-input:checked ~ .custom-control-label::after,.input-group-sm .custom-switch .custom-control-input:checked ~ .custom-control-label::after{-webkit-transform:translateX(0.65625rem);transform:translateX(0.65625rem)}.input-group>.input-group-prepend>.btn-group>.btn,.input-group>.input-group-append:not(:last-child)>.btn-group>.btn,.input-group>.input-group-append:last-child>.btn-group:not(:last-child):not(.dropdown-toggle)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn-group>.btn,.input-group>.input-group-prepend:not(:first-child)>.btn-group>.btn,.input-group>.input-group-prepend:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.b-form-btn-label-control.form-control{display:flex;align-items:stretch;height:auto;padding:0;background-image:none}.input-group .b-form-btn-label-control.form-control{padding:0}[dir=rtl] .b-form-btn-label-control.form-control,.b-form-btn-label-control.form-control[dir=rtl]{flex-direction:row-reverse}[dir=rtl] .b-form-btn-label-control.form-control>label,.b-form-btn-label-control.form-control[dir=rtl]>label{text-align:right}.b-form-btn-label-control.form-control>.btn{line-height:1;font-size:inherit;box-shadow:none !important;border:0}.b-form-btn-label-control.form-control>.btn:disabled{pointer-events:none}.b-form-btn-label-control.form-control.is-valid>.btn{color:#28a745}.b-form-btn-label-control.form-control.is-invalid>.btn{color:#dc3545}.b-form-btn-label-control.form-control>.dropdown-menu{padding:0.5rem}.b-form-btn-label-control.form-control>.form-control{height:auto;min-height:calc(calc(1.5em + 0.75rem + 2px) - 2px);padding-left:0.25rem;margin:0;border:0;outline:0;background:transparent;word-break:break-word;font-size:inherit;white-space:normal;cursor:pointer}.b-form-btn-label-control.form-control>.form-control.form-control-sm{min-height:calc(calc(1.5em + 0.5rem + 2px) - 2px)}.b-form-btn-label-control.form-control>.form-control.form-control-lg{min-height:calc(calc(1.5em + 1rem + 2px) - 2px)}.input-group.input-group-sm .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.5em + 0.5rem + 2px) - 2px);padding-top:0.25rem;padding-bottom:0.25rem}.input-group.input-group-lg .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.5em + 1rem + 2px) - 2px);padding-top:0.5rem;padding-bottom:0.5rem}.b-form-btn-label-control.form-control[aria-disabled=true],.b-form-btn-label-control.form-control[aria-readonly=true]{background-color:#e9ecef;opacity:1}.b-form-btn-label-control.form-control[aria-disabled=true]{pointer-events:none}.b-form-btn-label-control.form-control[aria-disabled=true]>label{cursor:default}.b-form-btn-label-control.btn-group>.dropdown-menu{padding:0.5rem}.custom-file-label{white-space:nowrap;overflow-x:hidden}.b-custom-control-lg.custom-file,.b-custom-control-lg .custom-file-input,.b-custom-control-lg .custom-file-label,.input-group-lg.custom-file,.input-group-lg .custom-file-input,.input-group-lg .custom-file-label{font-size:1.25rem;height:calc(1.5em + 1rem + 2px)}.b-custom-control-lg .custom-file-label,.b-custom-control-lg .custom-file-label:after,.input-group-lg .custom-file-label,.input-group-lg .custom-file-label:after{padding:0.5rem 1rem;line-height:1.5}.b-custom-control-lg .custom-file-label,.input-group-lg .custom-file-label{border-radius:0.3rem}.b-custom-control-lg .custom-file-label::after,.input-group-lg .custom-file-label::after{font-size:inherit;height:calc( 1.5em + 1rem);border-radius:0 0.3rem 0.3rem 0}.b-custom-control-sm.custom-file,.b-custom-control-sm .custom-file-input,.b-custom-control-sm .custom-file-label,.input-group-sm.custom-file,.input-group-sm .custom-file-input,.input-group-sm .custom-file-label{font-size:0.875rem;height:calc(1.5em + 0.5rem + 2px)}.b-custom-control-sm .custom-file-label,.b-custom-control-sm .custom-file-label:after,.input-group-sm .custom-file-label,.input-group-sm .custom-file-label:after{padding:0.25rem 0.5rem;line-height:1.5}.b-custom-control-sm .custom-file-label,.input-group-sm .custom-file-label{border-radius:0.2rem}.b-custom-control-sm .custom-file-label::after,.input-group-sm .custom-file-label::after{font-size:inherit;height:calc( 1.5em + 0.5rem);border-radius:0 0.2rem 0.2rem 0}.was-validated .form-control:invalid,.was-validated .form-control:valid,.form-control.is-invalid,.form-control.is-valid{background-position:right calc(0.375em + 0.1875rem) center}input[type=color].form-control{height:calc(1.5em + 0.75rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control.form-control-sm,.input-group-sm input[type=color].form-control{height:calc(1.5em + 0.5rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control.form-control-lg,.input-group-lg input[type=color].form-control{height:calc(1.5em + 1rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control:disabled{background-color:#adb5bd;opacity:0.65}.input-group>.custom-range{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-range+.form-control,.input-group>.custom-range+.form-control-plaintext,.input-group>.custom-range+.custom-select,.input-group>.custom-range+.custom-range,.input-group>.custom-range+.custom-file{margin-left:-1px}.input-group>.form-control+.custom-range,.input-group>.form-control-plaintext+.custom-range,.input-group>.custom-select+.custom-range,.input-group>.custom-range+.custom-range,.input-group>.custom-file+.custom-range{margin-left:-1px}.input-group>.custom-range:focus{z-index:3}.input-group>.custom-range:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-range:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-range{height:calc(1.5em + 0.75rem + 2px);padding:0 0.75rem;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;height:calc(1.5em + 0.75rem + 2px);border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.input-group>.custom-range{transition:none}}.input-group>.custom-range:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.input-group>.custom-range:disabled,.input-group>.custom-range[readonly]{background-color:#e9ecef}.input-group-lg>.custom-range{height:calc(1.5em + 1rem + 2px);padding:0 1rem;border-radius:0.3rem}.input-group-sm>.custom-range{height:calc(1.5em + 0.5rem + 2px);padding:0 0.5rem;border-radius:0.2rem}.was-validated .input-group .custom-range:valid,.input-group .custom-range.is-valid{border-color:#28a745}.was-validated .input-group .custom-range:valid:focus,.input-group .custom-range.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-range:valid:focus::-webkit-slider-thumb,.custom-range.is-valid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid:focus::-moz-range-thumb,.custom-range.is-valid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid:focus::-ms-thumb,.custom-range.is-valid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid::-webkit-slider-thumb,.custom-range.is-valid::-webkit-slider-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-webkit-slider-thumb:active,.custom-range.is-valid::-webkit-slider-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-webkit-slider-runnable-track,.custom-range.is-valid::-webkit-slider-runnable-track{background-color:rgba(40,167,69,0.35)}.was-validated .custom-range:valid::-moz-range-thumb,.custom-range.is-valid::-moz-range-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-moz-range-thumb:active,.custom-range.is-valid::-moz-range-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-moz-range-track,.custom-range.is-valid::-moz-range-track{background:rgba(40,167,69,0.35)}.was-validated .custom-range:valid ~ .valid-feedback,.was-validated .custom-range:valid ~ .valid-tooltip,.custom-range.is-valid ~ .valid-feedback,.custom-range.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-range:valid::-ms-thumb,.custom-range.is-valid::-ms-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-ms-thumb:active,.custom-range.is-valid::-ms-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-ms-track-lower,.custom-range.is-valid::-ms-track-lower{background:rgba(40,167,69,0.35)}.was-validated .custom-range:valid::-ms-track-upper,.custom-range.is-valid::-ms-track-upper{background:rgba(40,167,69,0.35)}.was-validated .input-group .custom-range:invalid,.input-group .custom-range.is-invalid{border-color:#dc3545}.was-validated .input-group .custom-range:invalid:focus,.input-group .custom-range.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-range:invalid:focus::-webkit-slider-thumb,.custom-range.is-invalid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-moz-range-thumb,.custom-range.is-invalid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-ms-thumb,.custom-range.is-invalid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid::-webkit-slider-thumb,.custom-range.is-invalid::-webkit-slider-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-thumb:active,.custom-range.is-invalid::-webkit-slider-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-runnable-track,.custom-range.is-invalid::-webkit-slider-runnable-track{background-color:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid::-moz-range-thumb,.custom-range.is-invalid::-moz-range-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-moz-range-thumb:active,.custom-range.is-invalid::-moz-range-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-moz-range-track,.custom-range.is-invalid::-moz-range-track{background:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid ~ .invalid-feedback,.was-validated .custom-range:invalid ~ .invalid-tooltip,.custom-range.is-invalid ~ .invalid-feedback,.custom-range.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-range:invalid::-ms-thumb,.custom-range.is-invalid::-ms-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-ms-thumb:active,.custom-range.is-invalid::-ms-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-ms-track-lower,.custom-range.is-invalid::-ms-track-lower{background:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid::-ms-track-upper,.custom-range.is-invalid::-ms-track-upper{background:rgba(220,53,69,0.35)}.custom-radio.b-custom-control-lg,.input-group-lg .custom-radio{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-radio.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-radio .custom-control-label::before{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:50%}.custom-radio.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-radio .custom-control-label::after{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background:no-repeat 50%/50% 50%}.custom-radio.b-custom-control-sm,.input-group-sm .custom-radio{font-size:0.875rem;line-height:1.5;padding-left:1.3125rem}.custom-radio.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-radio .custom-control-label::before{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;border-radius:50%}.custom-radio.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-radio .custom-control-label::after{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;background:no-repeat 50%/50% 50%}.b-rating{text-align:center}.b-rating.d-inline-flex{width:auto}.b-rating .b-rating-star,.b-rating .b-rating-value{padding:0 0.25em}.b-rating .b-rating-value{min-width:2.5em}.b-rating .b-rating-star{display:inline-flex;justify-content:center;outline:0}.b-rating .b-rating-star .b-rating-icon{display:inline-flex;transition:all 0.15s ease-in-out}.b-rating.disabled,.b-rating:disabled{background-color:#e9ecef;color:#6c757d}.b-rating:not(.disabled):not(.readonly) .b-rating-star{cursor:pointer}.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon,.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon{-webkit-transform:scale(1.5);transform:scale(1.5)}.b-rating[dir=rtl] .b-rating-star-half{-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.b-form-spinbutton{text-align:center;overflow:hidden;background-image:none;padding:0}[dir=rtl] .b-form-spinbutton:not(.flex-column),.b-form-spinbutton[dir=rtl]:not(.flex-column){flex-direction:row-reverse}.b-form-spinbutton output{font-size:inherit;outline:0;border:0;background-color:transparent;width:auto;margin:0;padding:0 0.25rem}.b-form-spinbutton output>div,.b-form-spinbutton output>bdi{display:block;min-width:2.25em;height:1.5em}.b-form-spinbutton.flex-column{height:auto;width:auto}.b-form-spinbutton.flex-column output{margin:0 0.25rem;padding:0.25rem 0}.b-form-spinbutton:not(.d-inline-flex):not(.flex-column){output-width:100%}.b-form-spinbutton.d-inline-flex:not(.flex-column){width:auto}.b-form-spinbutton .btn{line-height:1;box-shadow:none !important}.b-form-spinbutton .btn:disabled{pointer-events:none}.b-form-spinbutton .btn:hover:not(:disabled)>div>.b-icon{-webkit-transform:scale(1.25);transform:scale(1.25)}.b-form-spinbutton.disabled,.b-form-spinbutton.readonly{background-color:#e9ecef}.b-form-spinbutton.disabled{pointer-events:none}.b-form-tags .b-form-tags-list{margin-top:-0.25rem}.b-form-tags .b-form-tags-list .b-from-tags-field,.b-form-tags .b-form-tags-list .b-form-tag{margin-top:0.25rem}.b-form-tags.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.b-form-tags.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.b-form-tags.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.b-form-tags.disabled{background-color:#e9ecef}.b-form-tag{font-size:75%;font-weight:normal;line-height:1.5;margin-right:0.25rem}.b-form-tag.disabled{opacity:0.75}.b-form-tag>button.b-form-tag-remove{color:inherit;font-size:125%;line-height:1;float:none;margin-left:0.25rem}.form-control-sm .b-form-tag{line-height:1.5}.form-control-lg .b-form-tag{line-height:1.5}.media-aside{display:flex;margin-right:1rem}.media-aside-right{margin-right:0;margin-left:1rem}.modal-backdrop{opacity:0.5}.b-pagination-pills .page-item .page-link{border-radius:50rem !important;margin-left:0.25rem;line-height:1}.b-pagination-pills .page-item:first-child .page-link{margin-left:0}.popover.b-popover{display:block;opacity:1;outline:0}.popover.b-popover.fade:not(.show){opacity:0}.popover.b-popover.show{opacity:1}.b-popover-primary.popover{background-color:#cce5ff;border-color:#b8daff}.b-popover-primary.bs-popover-top>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#b8daff}.b-popover-primary.bs-popover-top>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#cce5ff}.b-popover-primary.bs-popover-right>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#b8daff}.b-popover-primary.bs-popover-right>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#cce5ff}.b-popover-primary.bs-popover-bottom>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#b8daff}.b-popover-primary.bs-popover-bottom>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#bdddff}.b-popover-primary.bs-popover-bottom .popover-header::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#bdddff}.b-popover-primary.bs-popover-left>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#b8daff}.b-popover-primary.bs-popover-left>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#cce5ff}.b-popover-primary .popover-header{color:#212529;background-color:#bdddff;border-bottom-color:#a3d0ff}.b-popover-primary .popover-body{color:#004085}.b-popover-secondary.popover{background-color:#e2e3e5;border-color:#d6d8db}.b-popover-secondary.bs-popover-top>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#d6d8db}.b-popover-secondary.bs-popover-top>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#e2e3e5}.b-popover-secondary.bs-popover-right>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#d6d8db}.b-popover-secondary.bs-popover-right>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#e2e3e5}.b-popover-secondary.bs-popover-bottom>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#d6d8db}.b-popover-secondary.bs-popover-bottom>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#dadbde}.b-popover-secondary.bs-popover-bottom .popover-header::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#dadbde}.b-popover-secondary.bs-popover-left>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#d6d8db}.b-popover-secondary.bs-popover-left>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#e2e3e5}.b-popover-secondary .popover-header{color:#212529;background-color:#dadbde;border-bottom-color:#ccced2}.b-popover-secondary .popover-body{color:#383d41}.b-popover-success.popover{background-color:#d4edda;border-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d4edda}.b-popover-success.bs-popover-right>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#c3e6cb}.b-popover-success.bs-popover-right>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d4edda}.b-popover-success.bs-popover-bottom>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#c3e6cb}.b-popover-success.bs-popover-bottom>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-bottom .popover-header::before,.b-popover-success.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-left>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#c3e6cb}.b-popover-success.bs-popover-left>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d4edda}.b-popover-success .popover-header{color:#212529;background-color:#c9e8d1;border-bottom-color:#b7e1c1}.b-popover-success .popover-body{color:#155724}.b-popover-info.popover{background-color:#d1ecf1;border-color:#bee5eb}.b-popover-info.bs-popover-top>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#bee5eb}.b-popover-info.bs-popover-top>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d1ecf1}.b-popover-info.bs-popover-right>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#bee5eb}.b-popover-info.bs-popover-right>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d1ecf1}.b-popover-info.bs-popover-bottom>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#bee5eb}.b-popover-info.bs-popover-bottom>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c5e7ed}.b-popover-info.bs-popover-bottom .popover-header::before,.b-popover-info.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c5e7ed}.b-popover-info.bs-popover-left>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#bee5eb}.b-popover-info.bs-popover-left>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d1ecf1}.b-popover-info .popover-header{color:#212529;background-color:#c5e7ed;border-bottom-color:#b2dfe7}.b-popover-info .popover-body{color:#0c5460}.b-popover-warning.popover{background-color:#fff3cd;border-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fff3cd}.b-popover-warning.bs-popover-right>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#ffeeba}.b-popover-warning.bs-popover-right>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fff3cd}.b-popover-warning.bs-popover-bottom>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#ffeeba}.b-popover-warning.bs-popover-bottom>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-bottom .popover-header::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-left>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#ffeeba}.b-popover-warning.bs-popover-left>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fff3cd}.b-popover-warning .popover-header{color:#212529;background-color:#ffefbe;border-bottom-color:#ffe9a4}.b-popover-warning .popover-body{color:#856404}.b-popover-danger.popover{background-color:#f8d7da;border-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#f8d7da}.b-popover-danger.bs-popover-right>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#f5c6cb}.b-popover-danger.bs-popover-right>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#f8d7da}.b-popover-danger.bs-popover-bottom>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#f5c6cb}.b-popover-danger.bs-popover-bottom>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-bottom .popover-header::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-left>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#f5c6cb}.b-popover-danger.bs-popover-left>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#f8d7da}.b-popover-danger .popover-header{color:#212529;background-color:#f6cace;border-bottom-color:#f2b4ba}.b-popover-danger .popover-body{color:#721c24}.b-popover-light.popover{background-color:#fefefe;border-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fefefe}.b-popover-light.bs-popover-right>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#fdfdfe}.b-popover-light.bs-popover-right>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fefefe}.b-popover-light.bs-popover-bottom>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#fdfdfe}.b-popover-light.bs-popover-bottom>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-bottom .popover-header::before,.b-popover-light.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-left>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#fdfdfe}.b-popover-light.bs-popover-left>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fefefe}.b-popover-light .popover-header{color:#212529;background-color:#f6f6f6;border-bottom-color:#eaeaea}.b-popover-light .popover-body{color:#818182}.b-popover-dark.popover{background-color:#d6d8d9;border-color:#c6c8ca}.b-popover-dark.bs-popover-top>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#c6c8ca}.b-popover-dark.bs-popover-top>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d6d8d9}.b-popover-dark.bs-popover-right>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#c6c8ca}.b-popover-dark.bs-popover-right>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d6d8d9}.b-popover-dark.bs-popover-bottom>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#c6c8ca}.b-popover-dark.bs-popover-bottom>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ced0d2}.b-popover-dark.bs-popover-bottom .popover-header::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ced0d2}.b-popover-dark.bs-popover-left>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#c6c8ca}.b-popover-dark.bs-popover-left>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d6d8d9}.b-popover-dark .popover-header{color:#212529;background-color:#ced0d2;border-bottom-color:#c1c4c5}.b-popover-dark .popover-body{color:#1b1e21}.b-sidebar-outer{position:fixed;top:0;left:0;right:0;height:0;overflow:visible;z-index:calc(1030 + 5)}.b-sidebar-backdrop{position:fixed;top:0;left:0;z-index:-1;width:100vw;height:100vh;opacity:0.6}.b-sidebar{display:flex;flex-direction:column;position:fixed;top:0;width:320px;max-width:100%;height:100vh;max-height:100%;margin:0;outline:0;-webkit-transform:translateX(0);transform:translateX(0)}.b-sidebar.slide{transition:-webkit-transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out}@media (prefers-reduced-motion: reduce){.b-sidebar.slide{transition:none}}.b-sidebar:not(.b-sidebar-right){left:0;right:auto}.b-sidebar:not(.b-sidebar-right).slide:not(.show){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.b-sidebar:not(.b-sidebar-right)>.b-sidebar-header .close{margin-left:auto}.b-sidebar.b-sidebar-right{left:auto;right:0}.b-sidebar.b-sidebar-right.slide:not(.show){-webkit-transform:translateX(100%);transform:translateX(100%)}.b-sidebar.b-sidebar-right>.b-sidebar-header .close{margin-right:auto}.b-sidebar>.b-sidebar-header{font-size:1.5rem;padding:0.5rem 1rem;display:flex;flex-direction:row;flex-grow:0;align-items:center}[dir=rtl] .b-sidebar>.b-sidebar-header{flex-direction:row-reverse}.b-sidebar>.b-sidebar-header .close{float:none;font-size:1.5rem}.b-sidebar>.b-sidebar-body{flex-grow:1;height:100%;overflow-y:auto}.b-sidebar>.b-sidebar-footer{flex-grow:0}.b-skeleton-wrapper{cursor:wait}.b-skeleton{position:relative;overflow:hidden;background-color:rgba(0,0,0,0.12);cursor:wait;-webkit-mask-image:radial-gradient(white, black);mask-image:radial-gradient(white, black)}.b-skeleton::before{content:" "}.b-skeleton-text{height:1rem;margin-bottom:0.25rem;border-radius:0.25rem}.b-skeleton-button{width:75px;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem}.b-skeleton-avatar{width:2.5em;height:2.5em;border-radius:50%}.b-skeleton-input{height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;line-height:1.5;border:#ced4da solid 1px;border-radius:0.25rem}.b-skeleton-icon-wrapper svg{color:rgba(0,0,0,0.12)}.b-skeleton-img{height:100%;width:100%}.b-skeleton-animate-wave::after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);-webkit-animation:b-skeleton-animate-wave 1.75s linear infinite;animation:b-skeleton-animate-wave 1.75s linear infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-wave::after{background:none;-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-wave{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes b-skeleton-animate-wave{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}.b-skeleton-animate-fade{-webkit-animation:b-skeleton-animate-fade 0.875s ease-in-out alternate infinite;animation:b-skeleton-animate-fade 0.875s ease-in-out alternate infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-fade{-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-fade{0%{opacity:1}100%{opacity:0.4}}@keyframes b-skeleton-animate-fade{0%{opacity:1}100%{opacity:0.4}}.b-skeleton-animate-throb{-webkit-animation:b-skeleton-animate-throb 0.875s ease-in alternate infinite;animation:b-skeleton-animate-throb 0.875s ease-in alternate infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-throb{-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-throb{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.975);transform:scale(0.975)}}@keyframes b-skeleton-animate-throb{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.975);transform:scale(0.975)}}.table.b-table.b-table-fixed{table-layout:fixed}.table.b-table.b-table-no-border-collapse{border-collapse:separate;border-spacing:0}.table.b-table[aria-busy=true]{opacity:0.55}.table.b-table>tbody>tr.b-table-details>td{border-top:none !important}.table.b-table>caption{caption-side:bottom}.table.b-table.b-table-caption-top>caption{caption-side:top !important}.table.b-table>tbody>.table-active,.table.b-table>tbody>.table-active>th,.table.b-table>tbody>.table-active>td{background-color:rgba(0,0,0,0.075)}.table.b-table.table-hover>tbody>tr.table-active:hover td,.table.b-table.table-hover>tbody>tr.table-active:hover th{color:#212529;background-image:linear-gradient(rgba(0,0,0,0.075), rgba(0,0,0,0.075));background-repeat:no-repeat}.table.b-table>tbody>.bg-active,.table.b-table>tbody>.bg-active>th,.table.b-table>tbody>.bg-active>td{background-color:rgba(255,255,255,0.075) !important}.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover td,.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover th{color:#fff;background-image:linear-gradient(rgba(255,255,255,0.075), rgba(255,255,255,0.075));background-repeat:no-repeat}.b-table-sticky-header,.table-responsive,[class*=table-responsive-]{margin-bottom:1rem}.b-table-sticky-header>.table,.table-responsive>.table,[class*=table-responsive-]>.table{margin-bottom:0}.b-table-sticky-header{overflow-y:auto;max-height:300px}@media print{.b-table-sticky-header{overflow-y:visible !important;max-height:none !important}}@supports (position: -webkit-sticky) or (position: sticky){.b-table-sticky-header>.table.b-table>thead>tr>th{position:-webkit-sticky;position:sticky;top:0;z-index:2}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{position:-webkit-sticky;position:sticky;left:0}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column{z-index:5}.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{z-index:2}.table.b-table>thead>tr>.table-b-table-default,.table.b-table>tbody>tr>.table-b-table-default,.table.b-table>tfoot>tr>.table-b-table-default{color:#212529;background-color:#fff}.table.b-table.table-dark>thead>tr>.bg-b-table-default,.table.b-table.table-dark>tbody>tr>.bg-b-table-default,.table.b-table.table-dark>tfoot>tr>.bg-b-table-default{color:#fff;background-color:#343a40}.table.b-table.table-striped>tbody>tr:nth-of-type(odd)>.table-b-table-default{background-image:linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05));background-repeat:no-repeat}.table.b-table.table-striped.table-dark>tbody>tr:nth-of-type(odd)>.bg-b-table-default{background-image:linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05));background-repeat:no-repeat}.table.b-table.table-hover>tbody>tr:hover>.table-b-table-default{color:#212529;background-image:linear-gradient(rgba(0,0,0,0.075), rgba(0,0,0,0.075));background-repeat:no-repeat}.table.b-table.table-hover.table-dark>tbody>tr:hover>.bg-b-table-default{color:#fff;background-image:linear-gradient(rgba(255,255,255,0.075), rgba(255,255,255,0.075));background-repeat:no-repeat}}.table.b-table>thead>tr>[aria-sort],.table.b-table>tfoot>tr>[aria-sort]{cursor:pointer;background-image:none;background-repeat:no-repeat;background-size:0.65em 1em}.table.b-table>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.75rem / 2) center;padding-right:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.75rem / 2) center;padding-left:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort=none],.table.b-table>tfoot>tr>[aria-sort=none]{background-image:url('+f+")}.table.b-table>thead>tr>[aria-sort=ascending],.table.b-table>tfoot>tr>[aria-sort=ascending]{background-image:url("+b+")}.table.b-table>thead>tr>[aria-sort=descending],.table.b-table>tfoot>tr>[aria-sort=descending]{background-image:url("+g+")}.table.b-table.table-dark>thead>tr>[aria-sort=none],.table.b-table.table-dark>tfoot>tr>[aria-sort=none],.table.b-table>.thead-dark>tr>[aria-sort=none]{background-image:url("+h+")}.table.b-table.table-dark>thead>tr>[aria-sort=ascending],.table.b-table.table-dark>tfoot>tr>[aria-sort=ascending],.table.b-table>.thead-dark>tr>[aria-sort=ascending]{background-image:url("+v+")}.table.b-table.table-dark>thead>tr>[aria-sort=descending],.table.b-table.table-dark>tfoot>tr>[aria-sort=descending],.table.b-table>.thead-dark>tr>[aria-sort=descending]{background-image:url("+x+")}.table.b-table>thead>tr>.table-dark[aria-sort=none],.table.b-table>tfoot>tr>.table-dark[aria-sort=none]{background-image:url("+h+")}.table.b-table>thead>tr>.table-dark[aria-sort=ascending],.table.b-table>tfoot>tr>.table-dark[aria-sort=ascending]{background-image:url("+v+")}.table.b-table>thead>tr>.table-dark[aria-sort=descending],.table.b-table>tfoot>tr>.table-dark[aria-sort=descending]{background-image:url("+x+')}.table.b-table.table-sm>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table.table-sm>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.3rem / 2) center;padding-right:calc(0.3rem + 0.65em)}.table.b-table.table-sm>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table.table-sm>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.3rem / 2) center;padding-left:calc(0.3rem + 0.65em)}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click)>tbody>tr{cursor:pointer}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range>tbody>tr{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media (max-width: 575.98px){.table.b-table.b-table-stacked-sm{display:block;width:100%}.table.b-table.b-table-stacked-sm>caption,.table.b-table.b-table-stacked-sm>tbody,.table.b-table.b-table-stacked-sm>tbody>tr,.table.b-table.b-table-stacked-sm>tbody>tr>td,.table.b-table.b-table-stacked-sm>tbody>tr>th{display:block}.table.b-table.b-table-stacked-sm>thead,.table.b-table.b-table-stacked-sm>tfoot{display:none}.table.b-table.b-table-stacked-sm>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-sm>caption{caption-side:top !important}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-sm>tbody>tr.top-row,.table.b-table.b-table-stacked-sm>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-sm>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 767.98px){.table.b-table.b-table-stacked-md{display:block;width:100%}.table.b-table.b-table-stacked-md>caption,.table.b-table.b-table-stacked-md>tbody,.table.b-table.b-table-stacked-md>tbody>tr,.table.b-table.b-table-stacked-md>tbody>tr>td,.table.b-table.b-table-stacked-md>tbody>tr>th{display:block}.table.b-table.b-table-stacked-md>thead,.table.b-table.b-table-stacked-md>tfoot{display:none}.table.b-table.b-table-stacked-md>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-md>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-md>caption{caption-side:top !important}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-md>tbody>tr.top-row,.table.b-table.b-table-stacked-md>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-md>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 991.98px){.table.b-table.b-table-stacked-lg{display:block;width:100%}.table.b-table.b-table-stacked-lg>caption,.table.b-table.b-table-stacked-lg>tbody,.table.b-table.b-table-stacked-lg>tbody>tr,.table.b-table.b-table-stacked-lg>tbody>tr>td,.table.b-table.b-table-stacked-lg>tbody>tr>th{display:block}.table.b-table.b-table-stacked-lg>thead,.table.b-table.b-table-stacked-lg>tfoot{display:none}.table.b-table.b-table-stacked-lg>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-lg>caption{caption-side:top !important}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-lg>tbody>tr.top-row,.table.b-table.b-table-stacked-lg>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-lg>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 1199.98px){.table.b-table.b-table-stacked-xl{display:block;width:100%}.table.b-table.b-table-stacked-xl>caption,.table.b-table.b-table-stacked-xl>tbody,.table.b-table.b-table-stacked-xl>tbody>tr,.table.b-table.b-table-stacked-xl>tbody>tr>td,.table.b-table.b-table-stacked-xl>tbody>tr>th{display:block}.table.b-table.b-table-stacked-xl>thead,.table.b-table.b-table-stacked-xl>tfoot{display:none}.table.b-table.b-table-stacked-xl>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-xl>caption{caption-side:top !important}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-xl>tbody>tr.top-row,.table.b-table.b-table-stacked-xl>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-xl>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+th{border-top-width:3px}}.table.b-table.b-table-stacked{display:block;width:100%}.table.b-table.b-table-stacked>caption,.table.b-table.b-table-stacked>tbody,.table.b-table.b-table-stacked>tbody>tr,.table.b-table.b-table-stacked>tbody>tr>td,.table.b-table.b-table-stacked>tbody>tr>th{display:block}.table.b-table.b-table-stacked>thead,.table.b-table.b-table-stacked>tfoot{display:none}.table.b-table.b-table-stacked>thead>tr.b-table-top-row,.table.b-table.b-table-stacked>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked>caption{caption-side:top !important}.table.b-table.b-table-stacked>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked>tbody>tr.top-row,.table.b-table.b-table-stacked>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked>tbody>tr>[rowspan]+th{border-top-width:3px}.b-time{min-width:150px}.b-time[aria-disabled=true] output,.b-time[aria-readonly=true] output,.b-time output.disabled{background-color:#e9ecef;opacity:1}.b-time[aria-disabled=true] output{pointer-events:none}[dir=rtl] .b-time>.d-flex:not(.flex-column){flex-direction:row-reverse}.b-time .b-time-header{margin-bottom:0.5rem}.b-time .b-time-header output{padding:0.25rem;font-size:80%}.b-time .b-time-footer{margin-top:0.5rem}.b-time .b-time-ampm{margin-left:0.5rem}.b-toast{display:block;position:relative;max-width:350px;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-clip:padding-box;z-index:1;border-radius:0.25rem}.b-toast .toast{background-color:rgba(255,255,255,0.85)}.b-toast:not(:last-child){margin-bottom:0.75rem}.b-toast.b-toast-solid .toast{background-color:white}.b-toast .toast{opacity:1}.b-toast .toast.fade:not(.show){opacity:0}.b-toast .toast .toast-body{display:block}.b-toast-primary .toast{background-color:rgba(230,242,255,0.85);border-color:rgba(184,218,255,0.85);color:#004085}.b-toast-primary .toast .toast-header{color:#004085;background-color:rgba(204,229,255,0.85);border-bottom-color:rgba(184,218,255,0.85)}.b-toast-primary.b-toast-solid .toast{background-color:#e6f2ff}.b-toast-secondary .toast{background-color:rgba(239,240,241,0.85);border-color:rgba(214,216,219,0.85);color:#383d41}.b-toast-secondary .toast .toast-header{color:#383d41;background-color:rgba(226,227,229,0.85);border-bottom-color:rgba(214,216,219,0.85)}.b-toast-secondary.b-toast-solid .toast{background-color:#eff0f1}.b-toast-success .toast{background-color:rgba(230,245,233,0.85);border-color:rgba(195,230,203,0.85);color:#155724}.b-toast-success .toast .toast-header{color:#155724;background-color:rgba(212,237,218,0.85);border-bottom-color:rgba(195,230,203,0.85)}.b-toast-success.b-toast-solid .toast{background-color:#e6f5e9}.b-toast-info .toast{background-color:rgba(229,244,247,0.85);border-color:rgba(190,229,235,0.85);color:#0c5460}.b-toast-info .toast .toast-header{color:#0c5460;background-color:rgba(209,236,241,0.85);border-bottom-color:rgba(190,229,235,0.85)}.b-toast-info.b-toast-solid .toast{background-color:#e5f4f7}.b-toast-warning .toast{background-color:rgba(255,249,231,0.85);border-color:rgba(255,238,186,0.85);color:#856404}.b-toast-warning .toast .toast-header{color:#856404;background-color:rgba(255,243,205,0.85);border-bottom-color:rgba(255,238,186,0.85)}.b-toast-warning.b-toast-solid .toast{background-color:#fff9e7}.b-toast-danger .toast{background-color:rgba(252,237,238,0.85);border-color:rgba(245,198,203,0.85);color:#721c24}.b-toast-danger .toast .toast-header{color:#721c24;background-color:rgba(248,215,218,0.85);border-bottom-color:rgba(245,198,203,0.85)}.b-toast-danger.b-toast-solid .toast{background-color:#fcedee}.b-toast-light .toast{background-color:rgba(255,255,255,0.85);border-color:rgba(253,253,254,0.85);color:#818182}.b-toast-light .toast .toast-header{color:#818182;background-color:rgba(254,254,254,0.85);border-bottom-color:rgba(253,253,254,0.85)}.b-toast-light.b-toast-solid .toast{background-color:white}.b-toast-dark .toast{background-color:rgba(227,229,229,0.85);border-color:rgba(198,200,202,0.85);color:#1b1e21}.b-toast-dark .toast .toast-header{color:#1b1e21;background-color:rgba(214,216,217,0.85);border-bottom-color:rgba(198,200,202,0.85)}.b-toast-dark.b-toast-solid .toast{background-color:#e3e5e5}.b-toaster{z-index:1100}.b-toaster .b-toaster-slot{position:relative;display:block}.b-toaster .b-toaster-slot:empty{display:none !important}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full,.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{position:fixed;left:0.5rem;right:0.5rem;margin:0;padding:0;height:0;overflow:visible}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{position:absolute;max-width:350px;width:100%;left:0;right:0;padding:0;margin:0}.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{width:100%;max-width:100%}.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-top-full .b-toaster-slot .toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast{width:100%;max-width:100%}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full{top:0}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot{top:0.5rem}.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{bottom:0}.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{bottom:0.5rem}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-left:auto}.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-right:auto}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-move,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move{transition:-webkit-transform 0.175s;transition:transform 0.175s;transition:transform 0.175s, -webkit-transform 0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade{transition-delay:0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active{position:absolute;transition-delay:0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade{transition-delay:0s}.tooltip.b-tooltip{display:block;opacity:0.9;outline:0}.tooltip.b-tooltip.fade:not(.show){opacity:0}.tooltip.b-tooltip.show{opacity:0.9}.tooltip.b-tooltip.noninteractive{pointer-events:none}.tooltip.b-tooltip .arrow{margin:0 0.25rem}.tooltip.b-tooltip.bs-tooltip-right .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.bs-tooltip-left .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow{margin:0.25rem 0}.tooltip.b-tooltip-primary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#007bff}.tooltip.b-tooltip-primary .tooltip-inner{color:#fff;background-color:#007bff}.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#6c757d}.tooltip.b-tooltip-secondary .tooltip-inner{color:#fff;background-color:#6c757d}.tooltip.b-tooltip-success.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#28a745}.tooltip.b-tooltip-success .tooltip-inner{color:#fff;background-color:#28a745}.tooltip.b-tooltip-info.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#17a2b8}.tooltip.b-tooltip-info .tooltip-inner{color:#fff;background-color:#17a2b8}.tooltip.b-tooltip-warning.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#ffc107}.tooltip.b-tooltip-warning .tooltip-inner{color:#212529;background-color:#ffc107}.tooltip.b-tooltip-danger.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#dc3545}.tooltip.b-tooltip-danger .tooltip-inner{color:#fff;background-color:#dc3545}.tooltip.b-tooltip-light.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#f8f9fa}.tooltip.b-tooltip-light .tooltip-inner{color:#212529;background-color:#f8f9fa}.tooltip.b-tooltip-dark.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#343a40}.tooltip.b-tooltip-dark .tooltip-inner{color:#fff;background-color:#343a40}.b-icon.bi{display:inline-block;overflow:visible;vertical-align:-0.15em}.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon;animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical;animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-fade;animation:0.75s infinite ease-in-out alternate b-icon-animation-fade}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:2s infinite linear normal b-icon-animation-spin;animation:2s infinite linear normal b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-transform-origin:center;transform-origin:center;animation:2s infinite linear reverse b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:1s infinite steps(8) normal b-icon-animation-spin;animation:1s infinite steps(8) normal b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-transform-origin:center;transform-origin:center;animation:1s infinite steps(8) reverse b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-throb;animation:0.75s infinite ease-in-out alternate b-icon-animation-throb}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-animation:none;animation:none}}@-webkit-keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}100%{-webkit-transform:translateX(25%);transform:translateX(25%)}}@keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}100%{-webkit-transform:translateX(25%);transform:translateX(25%)}}@-webkit-keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}100%{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}100%{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@-webkit-keyframes b-icon-animation-fade{0%{opacity:0.1}100%{opacity:1}}@keyframes b-icon-animation-fade{0%{opacity:0.1}100%{opacity:1}}@-webkit-keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes b-icon-animation-throb{0%{opacity:0.5;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes b-icon-animation-throb{0%{opacity:0.5;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.btn .b-icon.bi,.nav-link .b-icon.bi,.dropdown-toggle .b-icon.bi,.dropdown-item .b-icon.bi,.input-group-text .b-icon.bi{font-size:125%;vertical-align:text-bottom}\n',""]);const k=u},3622:(t,o,e)=>{"use strict";e.d(o,{Z:()=>_});var r=e(3645),i=e.n(r),n=e(1667),a=e.n(n),l=new URL(e(7211),e.b),d=new URL(e(4576),e.b),s=new URL(e(1024),e.b),m=new URL(e(9653),e.b),c=new URL(e(4231),e.b),p=new URL(e(7263),e.b),u=new URL(e(1380),e.b),f=new URL(e(9242),e.b),b=new URL(e(4104),e.b),g=new URL(e(9700),e.b),h=i()((function(t){return t[1]})),v=a()(l),x=a()(d),k=a()(s),w=a()(m),y=a()(c),O=a()(p),j=a()(u),S=a()(f),P=a()(b),T=a()(g);h.push([t.id,'/*!\n * Bootstrap v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\\2014\\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:0.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*="col-"]>.valid-tooltip{left:5px}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + 0.75rem);background-image:url('+v+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+v+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:0.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*="col-"]>.invalid-tooltip{left:5px}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url('+k+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+k+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 0.2rem rgba(38,143,255,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(38,143,255,0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 0.2rem rgba(130,138,145,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(130,138,145,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 0.2rem rgba(222,170,12,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(222,170,12,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 0.2rem rgba(216,217,219,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(216,217,219,0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 0.2rem rgba(82,88,93,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(82,88,93,0.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:0.25rem}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+w+")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("+y+")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("+O+")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:0.5rem;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("+x+') right 0.75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#80bdff;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-file-input[disabled] ~ .custom-file-label,.custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill>.nav-link,.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:0.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.3125rem;padding-bottom:0.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url('+j+")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.5);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("+S+')}.navbar-dark .navbar-text{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:0.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#0062cc}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#545b62}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#1d2124}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:0.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:0.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.carousel-control-prev-icon{background-image:url('+P+")}.carousel-control-next-icon{background-image:url("+T+')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#007bff !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0.2rem !important}.rounded{border-radius:0.25rem !important}.rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}.rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}.rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-lg{border-radius:0.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#121416 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}\n',""]);const _=h},1759:(t,o,e)=>{"use strict";e.d(o,{Z:()=>I});var r=e(3645),i=e.n(r),n=e(1667),a=e.n(n),l=new URL(e(325),e.b),d=new URL(e(2143),e.b),s=new URL(e(8624),e.b),m=new URL(e(9653),e.b),c=new URL(e(4231),e.b),p=new URL(e(7263),e.b),u=new URL(e(6697),e.b),f=new URL(e(398),e.b),b=new URL(e(4104),e.b),g=new URL(e(9700),e.b),h=new URL(e(1387),e.b),v=new URL(e(4576),e.b),x=new URL(e(1380),e.b),k=new URL(e(9859),e.b),w=i()((function(t){return t[1]}));w.push([t.id,"@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap);"]),w.push([t.id,"@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap);"]);var y=a()(l),O=a()(d),j=a()(s),S=a()(m),P=a()(c),T=a()(p),_=a()(u),C=a()(f),$=a()(b),D=a()(g),z=a()(h),E=a()(v),B=a()(x),A=a()(k);w.push([t.id,':root[mode="dark"]{/*!\n * Bootswatch v4.6.0\n * Homepage: https://bootswatch.com\n * Copyright 2012-2021 Thomas Park\n * Licensed under MIT\n * Based on Bootstrap\n*//*!\n * Bootstrap v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */}:root[mode="dark"] :root{--blue: #375a7f;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #e74c3c;--orange: #fd7e14;--yellow: #f39c12;--green: #00bc8c;--teal: #20c997;--cyan: #3498db;--white: #fff;--gray: #888;--gray-dark: #303030;--primary: #375a7f;--secondary: #444;--success: #00bc8c;--info: #3498db;--warning: #f39c12;--danger: #e74c3c;--light: #adb5bd;--dark: #303030;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}:root[mode="dark"] *,:root[mode="dark"] *::before,:root[mode="dark"] *::after{box-sizing:border-box}:root[mode="dark"] html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}:root[mode="dark"] article,:root[mode="dark"] aside,:root[mode="dark"] figcaption,:root[mode="dark"] figure,:root[mode="dark"] footer,:root[mode="dark"] header,:root[mode="dark"] hgroup,:root[mode="dark"] main,:root[mode="dark"] nav,:root[mode="dark"] section{display:block}:root[mode="dark"] body{margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-size:0.9375rem;font-weight:400;line-height:1.5;color:#fff;text-align:left;background-color:#222}:root[mode="dark"] [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}:root[mode="dark"] hr{box-sizing:content-box;height:0;overflow:visible}:root[mode="dark"] h1,:root[mode="dark"] h2,:root[mode="dark"] h3,:root[mode="dark"] h4,:root[mode="dark"] h5,:root[mode="dark"] h6{margin-top:0;margin-bottom:0.5rem}:root[mode="dark"] p{margin-top:0;margin-bottom:1rem}:root[mode="dark"] abbr[title],:root[mode="dark"] abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}:root[mode="dark"] address{margin-bottom:1rem;font-style:normal;line-height:inherit}:root[mode="dark"] ol,:root[mode="dark"] ul,:root[mode="dark"] dl{margin-top:0;margin-bottom:1rem}:root[mode="dark"] ol ol,:root[mode="dark"] ul ul,:root[mode="dark"] ol ul,:root[mode="dark"] ul ol{margin-bottom:0}:root[mode="dark"] dt{font-weight:700}:root[mode="dark"] dd{margin-bottom:.5rem;margin-left:0}:root[mode="dark"] blockquote{margin:0 0 1rem}:root[mode="dark"] b,:root[mode="dark"] strong{font-weight:bolder}:root[mode="dark"] small{font-size:80%}:root[mode="dark"] sub,:root[mode="dark"] sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}:root[mode="dark"] sub{bottom:-.25em}:root[mode="dark"] sup{top:-.5em}:root[mode="dark"] a{color:#00bc8c;text-decoration:none;background-color:transparent}:root[mode="dark"] a:hover{color:#007053;text-decoration:underline}:root[mode="dark"] a:not([href]):not([class]){color:inherit;text-decoration:none}:root[mode="dark"] a:not([href]):not([class]):hover{color:inherit;text-decoration:none}:root[mode="dark"] pre,:root[mode="dark"] code,:root[mode="dark"] kbd,:root[mode="dark"] samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}:root[mode="dark"] pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}:root[mode="dark"] figure{margin:0 0 1rem}:root[mode="dark"] img{vertical-align:middle;border-style:none}:root[mode="dark"] svg{overflow:hidden;vertical-align:middle}:root[mode="dark"] table{border-collapse:collapse}:root[mode="dark"] caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#888;text-align:left;caption-side:bottom}:root[mode="dark"] th{text-align:inherit;text-align:-webkit-match-parent}:root[mode="dark"] label{display:inline-block;margin-bottom:0.5rem}:root[mode="dark"] button{border-radius:0}:root[mode="dark"] button:focus:not(:focus-visible){outline:0}:root[mode="dark"] input,:root[mode="dark"] button,:root[mode="dark"] select,:root[mode="dark"] optgroup,:root[mode="dark"] textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}:root[mode="dark"] button,:root[mode="dark"] input{overflow:visible}:root[mode="dark"] button,:root[mode="dark"] select{text-transform:none}:root[mode="dark"] [role="button"]{cursor:pointer}:root[mode="dark"] select{word-wrap:normal}:root[mode="dark"] button,:root[mode="dark"] [type="button"],:root[mode="dark"] [type="reset"],:root[mode="dark"] [type="submit"]{-webkit-appearance:button}:root[mode="dark"] button:not(:disabled),:root[mode="dark"] [type="button"]:not(:disabled),:root[mode="dark"] [type="reset"]:not(:disabled),:root[mode="dark"] [type="submit"]:not(:disabled){cursor:pointer}:root[mode="dark"] button::-moz-focus-inner,:root[mode="dark"] [type="button"]::-moz-focus-inner,:root[mode="dark"] [type="reset"]::-moz-focus-inner,:root[mode="dark"] [type="submit"]::-moz-focus-inner{padding:0;border-style:none}:root[mode="dark"] input[type="radio"],:root[mode="dark"] input[type="checkbox"]{box-sizing:border-box;padding:0}:root[mode="dark"] textarea{overflow:auto;resize:vertical}:root[mode="dark"] fieldset{min-width:0;padding:0;margin:0;border:0}:root[mode="dark"] legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}:root[mode="dark"] progress{vertical-align:baseline}:root[mode="dark"] [type="number"]::-webkit-inner-spin-button,:root[mode="dark"] [type="number"]::-webkit-outer-spin-button{height:auto}:root[mode="dark"] [type="search"]{outline-offset:-2px;-webkit-appearance:none}:root[mode="dark"] [type="search"]::-webkit-search-decoration{-webkit-appearance:none}:root[mode="dark"] ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}:root[mode="dark"] output{display:inline-block}:root[mode="dark"] summary{display:list-item;cursor:pointer}:root[mode="dark"] template{display:none}:root[mode="dark"] [hidden]{display:none !important}:root[mode="dark"] h1,:root[mode="dark"] h2,:root[mode="dark"] h3,:root[mode="dark"] h4,:root[mode="dark"] h5,:root[mode="dark"] h6,:root[mode="dark"] .h1,:root[mode="dark"] .h2,:root[mode="dark"] .h3,:root[mode="dark"] .h4,:root[mode="dark"] .h5,:root[mode="dark"] .h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}:root[mode="dark"] h1,:root[mode="dark"] .h1{font-size:3rem}:root[mode="dark"] h2,:root[mode="dark"] .h2{font-size:2.5rem}:root[mode="dark"] h3,:root[mode="dark"] .h3{font-size:2rem}:root[mode="dark"] h4,:root[mode="dark"] .h4{font-size:1.40625rem}:root[mode="dark"] h5,:root[mode="dark"] .h5{font-size:1.171875rem}:root[mode="dark"] h6,:root[mode="dark"] .h6{font-size:0.9375rem}:root[mode="dark"] .lead{font-size:1.171875rem;font-weight:300}:root[mode="dark"] .display-1{font-size:6rem;font-weight:300;line-height:1.2}:root[mode="dark"] .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}:root[mode="dark"] .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}:root[mode="dark"] .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}:root[mode="dark"] hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}:root[mode="dark"] small,:root[mode="dark"] .small{font-size:80%;font-weight:400}:root[mode="dark"] mark,:root[mode="dark"] .mark{padding:0.2em;background-color:#fcf8e3}:root[mode="dark"] .list-unstyled{padding-left:0;list-style:none}:root[mode="dark"] .list-inline{padding-left:0;list-style:none}:root[mode="dark"] .list-inline-item{display:inline-block}:root[mode="dark"] .list-inline-item:not(:last-child){margin-right:0.5rem}:root[mode="dark"] .initialism{font-size:90%;text-transform:uppercase}:root[mode="dark"] .blockquote{margin-bottom:1rem;font-size:1.171875rem}:root[mode="dark"] .blockquote-footer{display:block;font-size:80%;color:#888}:root[mode="dark"] .blockquote-footer::before{content:"\\2014\\00A0"}:root[mode="dark"] .img-fluid{max-width:100%;height:auto}:root[mode="dark"] .img-thumbnail{padding:0.25rem;background-color:#222;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}:root[mode="dark"] .figure{display:inline-block}:root[mode="dark"] .figure-img{margin-bottom:0.5rem;line-height:1}:root[mode="dark"] .figure-caption{font-size:90%;color:#888}:root[mode="dark"] code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}:root[mode="dark"] a>code{color:inherit}:root[mode="dark"] kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#222;border-radius:0.2rem}:root[mode="dark"] kbd kbd{padding:0;font-size:100%;font-weight:700}:root[mode="dark"] pre{display:block;font-size:87.5%;color:inherit}:root[mode="dark"] pre code{font-size:inherit;color:inherit;word-break:normal}:root[mode="dark"] .pre-scrollable{max-height:340px;overflow-y:scroll}:root[mode="dark"] .container,:root[mode="dark"] .container-fluid,:root[mode="dark"] .container-sm,:root[mode="dark"] .container-md,:root[mode="dark"] .container-lg,:root[mode="dark"] .container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){:root[mode="dark"] .container,:root[mode="dark"] .container-sm{max-width:540px}}@media (min-width: 768px){:root[mode="dark"] .container,:root[mode="dark"] .container-sm,:root[mode="dark"] .container-md{max-width:720px}}@media (min-width: 992px){:root[mode="dark"] .container,:root[mode="dark"] .container-sm,:root[mode="dark"] .container-md,:root[mode="dark"] .container-lg{max-width:960px}}@media (min-width: 1200px){:root[mode="dark"] .container,:root[mode="dark"] .container-sm,:root[mode="dark"] .container-md,:root[mode="dark"] .container-lg,:root[mode="dark"] .container-xl{max-width:1140px}}:root[mode="dark"] .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}:root[mode="dark"] .no-gutters{margin-right:0;margin-left:0}:root[mode="dark"] .no-gutters>.col,:root[mode="dark"] .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}:root[mode="dark"] .col-1,:root[mode="dark"] .col-2,:root[mode="dark"] .col-3,:root[mode="dark"] .col-4,:root[mode="dark"] .col-5,:root[mode="dark"] .col-6,:root[mode="dark"] .col-7,:root[mode="dark"] .col-8,:root[mode="dark"] .col-9,:root[mode="dark"] .col-10,:root[mode="dark"] .col-11,:root[mode="dark"] .col-12,:root[mode="dark"] .col,:root[mode="dark"] .col-auto,:root[mode="dark"] .col-sm-1,:root[mode="dark"] .col-sm-2,:root[mode="dark"] .col-sm-3,:root[mode="dark"] .col-sm-4,:root[mode="dark"] .col-sm-5,:root[mode="dark"] .col-sm-6,:root[mode="dark"] .col-sm-7,:root[mode="dark"] .col-sm-8,:root[mode="dark"] .col-sm-9,:root[mode="dark"] .col-sm-10,:root[mode="dark"] .col-sm-11,:root[mode="dark"] .col-sm-12,:root[mode="dark"] .col-sm,:root[mode="dark"] .col-sm-auto,:root[mode="dark"] .col-md-1,:root[mode="dark"] .col-md-2,:root[mode="dark"] .col-md-3,:root[mode="dark"] .col-md-4,:root[mode="dark"] .col-md-5,:root[mode="dark"] .col-md-6,:root[mode="dark"] .col-md-7,:root[mode="dark"] .col-md-8,:root[mode="dark"] .col-md-9,:root[mode="dark"] .col-md-10,:root[mode="dark"] .col-md-11,:root[mode="dark"] .col-md-12,:root[mode="dark"] .col-md,:root[mode="dark"] .col-md-auto,:root[mode="dark"] .col-lg-1,:root[mode="dark"] .col-lg-2,:root[mode="dark"] .col-lg-3,:root[mode="dark"] .col-lg-4,:root[mode="dark"] .col-lg-5,:root[mode="dark"] .col-lg-6,:root[mode="dark"] .col-lg-7,:root[mode="dark"] .col-lg-8,:root[mode="dark"] .col-lg-9,:root[mode="dark"] .col-lg-10,:root[mode="dark"] .col-lg-11,:root[mode="dark"] .col-lg-12,:root[mode="dark"] .col-lg,:root[mode="dark"] .col-lg-auto,:root[mode="dark"] .col-xl-1,:root[mode="dark"] .col-xl-2,:root[mode="dark"] .col-xl-3,:root[mode="dark"] .col-xl-4,:root[mode="dark"] .col-xl-5,:root[mode="dark"] .col-xl-6,:root[mode="dark"] .col-xl-7,:root[mode="dark"] .col-xl-8,:root[mode="dark"] .col-xl-9,:root[mode="dark"] .col-xl-10,:root[mode="dark"] .col-xl-11,:root[mode="dark"] .col-xl-12,:root[mode="dark"] .col-xl,:root[mode="dark"] .col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}:root[mode="dark"] .col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="dark"] .row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="dark"] .row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="dark"] .col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="dark"] .col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="dark"] .col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="dark"] .col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="dark"] .col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="dark"] .col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="dark"] .col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="dark"] .col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .order-first{-ms-flex-order:-1;order:-1}:root[mode="dark"] .order-last{-ms-flex-order:13;order:13}:root[mode="dark"] .order-0{-ms-flex-order:0;order:0}:root[mode="dark"] .order-1{-ms-flex-order:1;order:1}:root[mode="dark"] .order-2{-ms-flex-order:2;order:2}:root[mode="dark"] .order-3{-ms-flex-order:3;order:3}:root[mode="dark"] .order-4{-ms-flex-order:4;order:4}:root[mode="dark"] .order-5{-ms-flex-order:5;order:5}:root[mode="dark"] .order-6{-ms-flex-order:6;order:6}:root[mode="dark"] .order-7{-ms-flex-order:7;order:7}:root[mode="dark"] .order-8{-ms-flex-order:8;order:8}:root[mode="dark"] .order-9{-ms-flex-order:9;order:9}:root[mode="dark"] .order-10{-ms-flex-order:10;order:10}:root[mode="dark"] .order-11{-ms-flex-order:11;order:11}:root[mode="dark"] .order-12{-ms-flex-order:12;order:12}:root[mode="dark"] .offset-1{margin-left:8.333333%}:root[mode="dark"] .offset-2{margin-left:16.666667%}:root[mode="dark"] .offset-3{margin-left:25%}:root[mode="dark"] .offset-4{margin-left:33.333333%}:root[mode="dark"] .offset-5{margin-left:41.666667%}:root[mode="dark"] .offset-6{margin-left:50%}:root[mode="dark"] .offset-7{margin-left:58.333333%}:root[mode="dark"] .offset-8{margin-left:66.666667%}:root[mode="dark"] .offset-9{margin-left:75%}:root[mode="dark"] .offset-10{margin-left:83.333333%}:root[mode="dark"] .offset-11{margin-left:91.666667%}@media (min-width: 576px){:root[mode="dark"] .col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="dark"] .row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="dark"] .row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="dark"] .col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="dark"] .col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="dark"] .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="dark"] .col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="dark"] .col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="dark"] .col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="dark"] .col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="dark"] .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .order-sm-first{-ms-flex-order:-1;order:-1}:root[mode="dark"] .order-sm-last{-ms-flex-order:13;order:13}:root[mode="dark"] .order-sm-0{-ms-flex-order:0;order:0}:root[mode="dark"] .order-sm-1{-ms-flex-order:1;order:1}:root[mode="dark"] .order-sm-2{-ms-flex-order:2;order:2}:root[mode="dark"] .order-sm-3{-ms-flex-order:3;order:3}:root[mode="dark"] .order-sm-4{-ms-flex-order:4;order:4}:root[mode="dark"] .order-sm-5{-ms-flex-order:5;order:5}:root[mode="dark"] .order-sm-6{-ms-flex-order:6;order:6}:root[mode="dark"] .order-sm-7{-ms-flex-order:7;order:7}:root[mode="dark"] .order-sm-8{-ms-flex-order:8;order:8}:root[mode="dark"] .order-sm-9{-ms-flex-order:9;order:9}:root[mode="dark"] .order-sm-10{-ms-flex-order:10;order:10}:root[mode="dark"] .order-sm-11{-ms-flex-order:11;order:11}:root[mode="dark"] .order-sm-12{-ms-flex-order:12;order:12}:root[mode="dark"] .offset-sm-0{margin-left:0}:root[mode="dark"] .offset-sm-1{margin-left:8.333333%}:root[mode="dark"] .offset-sm-2{margin-left:16.666667%}:root[mode="dark"] .offset-sm-3{margin-left:25%}:root[mode="dark"] .offset-sm-4{margin-left:33.333333%}:root[mode="dark"] .offset-sm-5{margin-left:41.666667%}:root[mode="dark"] .offset-sm-6{margin-left:50%}:root[mode="dark"] .offset-sm-7{margin-left:58.333333%}:root[mode="dark"] .offset-sm-8{margin-left:66.666667%}:root[mode="dark"] .offset-sm-9{margin-left:75%}:root[mode="dark"] .offset-sm-10{margin-left:83.333333%}:root[mode="dark"] .offset-sm-11{margin-left:91.666667%}}@media (min-width: 768px){:root[mode="dark"] .col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="dark"] .row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="dark"] .row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="dark"] .col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="dark"] .col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="dark"] .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="dark"] .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="dark"] .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="dark"] .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="dark"] .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="dark"] .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .order-md-first{-ms-flex-order:-1;order:-1}:root[mode="dark"] .order-md-last{-ms-flex-order:13;order:13}:root[mode="dark"] .order-md-0{-ms-flex-order:0;order:0}:root[mode="dark"] .order-md-1{-ms-flex-order:1;order:1}:root[mode="dark"] .order-md-2{-ms-flex-order:2;order:2}:root[mode="dark"] .order-md-3{-ms-flex-order:3;order:3}:root[mode="dark"] .order-md-4{-ms-flex-order:4;order:4}:root[mode="dark"] .order-md-5{-ms-flex-order:5;order:5}:root[mode="dark"] .order-md-6{-ms-flex-order:6;order:6}:root[mode="dark"] .order-md-7{-ms-flex-order:7;order:7}:root[mode="dark"] .order-md-8{-ms-flex-order:8;order:8}:root[mode="dark"] .order-md-9{-ms-flex-order:9;order:9}:root[mode="dark"] .order-md-10{-ms-flex-order:10;order:10}:root[mode="dark"] .order-md-11{-ms-flex-order:11;order:11}:root[mode="dark"] .order-md-12{-ms-flex-order:12;order:12}:root[mode="dark"] .offset-md-0{margin-left:0}:root[mode="dark"] .offset-md-1{margin-left:8.333333%}:root[mode="dark"] .offset-md-2{margin-left:16.666667%}:root[mode="dark"] .offset-md-3{margin-left:25%}:root[mode="dark"] .offset-md-4{margin-left:33.333333%}:root[mode="dark"] .offset-md-5{margin-left:41.666667%}:root[mode="dark"] .offset-md-6{margin-left:50%}:root[mode="dark"] .offset-md-7{margin-left:58.333333%}:root[mode="dark"] .offset-md-8{margin-left:66.666667%}:root[mode="dark"] .offset-md-9{margin-left:75%}:root[mode="dark"] .offset-md-10{margin-left:83.333333%}:root[mode="dark"] .offset-md-11{margin-left:91.666667%}}@media (min-width: 992px){:root[mode="dark"] .col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="dark"] .row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="dark"] .row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="dark"] .col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="dark"] .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="dark"] .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="dark"] .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="dark"] .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="dark"] .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="dark"] .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="dark"] .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .order-lg-first{-ms-flex-order:-1;order:-1}:root[mode="dark"] .order-lg-last{-ms-flex-order:13;order:13}:root[mode="dark"] .order-lg-0{-ms-flex-order:0;order:0}:root[mode="dark"] .order-lg-1{-ms-flex-order:1;order:1}:root[mode="dark"] .order-lg-2{-ms-flex-order:2;order:2}:root[mode="dark"] .order-lg-3{-ms-flex-order:3;order:3}:root[mode="dark"] .order-lg-4{-ms-flex-order:4;order:4}:root[mode="dark"] .order-lg-5{-ms-flex-order:5;order:5}:root[mode="dark"] .order-lg-6{-ms-flex-order:6;order:6}:root[mode="dark"] .order-lg-7{-ms-flex-order:7;order:7}:root[mode="dark"] .order-lg-8{-ms-flex-order:8;order:8}:root[mode="dark"] .order-lg-9{-ms-flex-order:9;order:9}:root[mode="dark"] .order-lg-10{-ms-flex-order:10;order:10}:root[mode="dark"] .order-lg-11{-ms-flex-order:11;order:11}:root[mode="dark"] .order-lg-12{-ms-flex-order:12;order:12}:root[mode="dark"] .offset-lg-0{margin-left:0}:root[mode="dark"] .offset-lg-1{margin-left:8.333333%}:root[mode="dark"] .offset-lg-2{margin-left:16.666667%}:root[mode="dark"] .offset-lg-3{margin-left:25%}:root[mode="dark"] .offset-lg-4{margin-left:33.333333%}:root[mode="dark"] .offset-lg-5{margin-left:41.666667%}:root[mode="dark"] .offset-lg-6{margin-left:50%}:root[mode="dark"] .offset-lg-7{margin-left:58.333333%}:root[mode="dark"] .offset-lg-8{margin-left:66.666667%}:root[mode="dark"] .offset-lg-9{margin-left:75%}:root[mode="dark"] .offset-lg-10{margin-left:83.333333%}:root[mode="dark"] .offset-lg-11{margin-left:91.666667%}}@media (min-width: 1200px){:root[mode="dark"] .col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="dark"] .row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="dark"] .row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="dark"] .col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="dark"] .col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="dark"] .col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="dark"] .col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="dark"] .col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="dark"] .col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="dark"] .col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="dark"] .col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="dark"] .col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="dark"] .col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="dark"] .col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="dark"] .col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="dark"] .order-xl-first{-ms-flex-order:-1;order:-1}:root[mode="dark"] .order-xl-last{-ms-flex-order:13;order:13}:root[mode="dark"] .order-xl-0{-ms-flex-order:0;order:0}:root[mode="dark"] .order-xl-1{-ms-flex-order:1;order:1}:root[mode="dark"] .order-xl-2{-ms-flex-order:2;order:2}:root[mode="dark"] .order-xl-3{-ms-flex-order:3;order:3}:root[mode="dark"] .order-xl-4{-ms-flex-order:4;order:4}:root[mode="dark"] .order-xl-5{-ms-flex-order:5;order:5}:root[mode="dark"] .order-xl-6{-ms-flex-order:6;order:6}:root[mode="dark"] .order-xl-7{-ms-flex-order:7;order:7}:root[mode="dark"] .order-xl-8{-ms-flex-order:8;order:8}:root[mode="dark"] .order-xl-9{-ms-flex-order:9;order:9}:root[mode="dark"] .order-xl-10{-ms-flex-order:10;order:10}:root[mode="dark"] .order-xl-11{-ms-flex-order:11;order:11}:root[mode="dark"] .order-xl-12{-ms-flex-order:12;order:12}:root[mode="dark"] .offset-xl-0{margin-left:0}:root[mode="dark"] .offset-xl-1{margin-left:8.333333%}:root[mode="dark"] .offset-xl-2{margin-left:16.666667%}:root[mode="dark"] .offset-xl-3{margin-left:25%}:root[mode="dark"] .offset-xl-4{margin-left:33.333333%}:root[mode="dark"] .offset-xl-5{margin-left:41.666667%}:root[mode="dark"] .offset-xl-6{margin-left:50%}:root[mode="dark"] .offset-xl-7{margin-left:58.333333%}:root[mode="dark"] .offset-xl-8{margin-left:66.666667%}:root[mode="dark"] .offset-xl-9{margin-left:75%}:root[mode="dark"] .offset-xl-10{margin-left:83.333333%}:root[mode="dark"] .offset-xl-11{margin-left:91.666667%}}:root[mode="dark"] .table{width:100%;margin-bottom:1rem;color:#fff}:root[mode="dark"] .table th,:root[mode="dark"] .table td{padding:0.75rem;vertical-align:top;border-top:1px solid #444}:root[mode="dark"] .table thead th{vertical-align:bottom;border-bottom:2px solid #444}:root[mode="dark"] .table tbody+tbody{border-top:2px solid #444}:root[mode="dark"] .table-sm th,:root[mode="dark"] .table-sm td{padding:0.3rem}:root[mode="dark"] .table-bordered{border:1px solid #444}:root[mode="dark"] .table-bordered th,:root[mode="dark"] .table-bordered td{border:1px solid #444}:root[mode="dark"] .table-bordered thead th,:root[mode="dark"] .table-bordered thead td{border-bottom-width:2px}:root[mode="dark"] .table-borderless th,:root[mode="dark"] .table-borderless td,:root[mode="dark"] .table-borderless thead th,:root[mode="dark"] .table-borderless tbody+tbody{border:0}:root[mode="dark"] .table-striped tbody tr:nth-of-type(odd){background-color:#303030}:root[mode="dark"] .table-hover tbody tr:hover{color:#fff;background-color:rgba(0,0,0,0.075)}:root[mode="dark"] .table-primary,:root[mode="dark"] .table-primary>th,:root[mode="dark"] .table-primary>td{background-color:#c7d1db}:root[mode="dark"] .table-primary th,:root[mode="dark"] .table-primary td,:root[mode="dark"] .table-primary thead th,:root[mode="dark"] .table-primary tbody+tbody{border-color:#97a9bc}:root[mode="dark"] .table-hover .table-primary:hover{background-color:#b7c4d1}:root[mode="dark"] .table-hover .table-primary:hover>td,:root[mode="dark"] .table-hover .table-primary:hover>th{background-color:#b7c4d1}:root[mode="dark"] .table-secondary,:root[mode="dark"] .table-secondary>th,:root[mode="dark"] .table-secondary>td{background-color:#cbcbcb}:root[mode="dark"] .table-secondary th,:root[mode="dark"] .table-secondary td,:root[mode="dark"] .table-secondary thead th,:root[mode="dark"] .table-secondary tbody+tbody{border-color:#9e9e9e}:root[mode="dark"] .table-hover .table-secondary:hover{background-color:#bebebe}:root[mode="dark"] .table-hover .table-secondary:hover>td,:root[mode="dark"] .table-hover .table-secondary:hover>th{background-color:#bebebe}:root[mode="dark"] .table-success,:root[mode="dark"] .table-success>th,:root[mode="dark"] .table-success>td{background-color:#b8ecdf}:root[mode="dark"] .table-success th,:root[mode="dark"] .table-success td,:root[mode="dark"] .table-success thead th,:root[mode="dark"] .table-success tbody+tbody{border-color:#7adcc3}:root[mode="dark"] .table-hover .table-success:hover{background-color:#a4e7d6}:root[mode="dark"] .table-hover .table-success:hover>td,:root[mode="dark"] .table-hover .table-success:hover>th{background-color:#a4e7d6}:root[mode="dark"] .table-info,:root[mode="dark"] .table-info>th,:root[mode="dark"] .table-info>td{background-color:#c6e2f5}:root[mode="dark"] .table-info th,:root[mode="dark"] .table-info td,:root[mode="dark"] .table-info thead th,:root[mode="dark"] .table-info tbody+tbody{border-color:#95c9ec}:root[mode="dark"] .table-hover .table-info:hover{background-color:#b0d7f1}:root[mode="dark"] .table-hover .table-info:hover>td,:root[mode="dark"] .table-hover .table-info:hover>th{background-color:#b0d7f1}:root[mode="dark"] .table-warning,:root[mode="dark"] .table-warning>th,:root[mode="dark"] .table-warning>td{background-color:#fce3bd}:root[mode="dark"] .table-warning th,:root[mode="dark"] .table-warning td,:root[mode="dark"] .table-warning thead th,:root[mode="dark"] .table-warning tbody+tbody{border-color:#f9cc84}:root[mode="dark"] .table-hover .table-warning:hover{background-color:#fbd9a5}:root[mode="dark"] .table-hover .table-warning:hover>td,:root[mode="dark"] .table-hover .table-warning:hover>th{background-color:#fbd9a5}:root[mode="dark"] .table-danger,:root[mode="dark"] .table-danger>th,:root[mode="dark"] .table-danger>td{background-color:#f8cdc8}:root[mode="dark"] .table-danger th,:root[mode="dark"] .table-danger td,:root[mode="dark"] .table-danger thead th,:root[mode="dark"] .table-danger tbody+tbody{border-color:#f3a29a}:root[mode="dark"] .table-hover .table-danger:hover{background-color:#f5b8b1}:root[mode="dark"] .table-hover .table-danger:hover>td,:root[mode="dark"] .table-hover .table-danger:hover>th{background-color:#f5b8b1}:root[mode="dark"] .table-light,:root[mode="dark"] .table-light>th,:root[mode="dark"] .table-light>td{background-color:#e8eaed}:root[mode="dark"] .table-light th,:root[mode="dark"] .table-light td,:root[mode="dark"] .table-light thead th,:root[mode="dark"] .table-light tbody+tbody{border-color:#d4d9dd}:root[mode="dark"] .table-hover .table-light:hover{background-color:#dadde2}:root[mode="dark"] .table-hover .table-light:hover>td,:root[mode="dark"] .table-hover .table-light:hover>th{background-color:#dadde2}:root[mode="dark"] .table-dark,:root[mode="dark"] .table-dark>th,:root[mode="dark"] .table-dark>td{background-color:#c5c5c5}:root[mode="dark"] .table-dark th,:root[mode="dark"] .table-dark td,:root[mode="dark"] .table-dark thead th,:root[mode="dark"] .table-dark tbody+tbody{border-color:#939393}:root[mode="dark"] .table-hover .table-dark:hover{background-color:#b8b8b8}:root[mode="dark"] .table-hover .table-dark:hover>td,:root[mode="dark"] .table-hover .table-dark:hover>th{background-color:#b8b8b8}:root[mode="dark"] .table-active,:root[mode="dark"] .table-active>th,:root[mode="dark"] .table-active>td{background-color:rgba(0,0,0,0.075)}:root[mode="dark"] .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}:root[mode="dark"] .table-hover .table-active:hover>td,:root[mode="dark"] .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}:root[mode="dark"] .table .thead-dark th{color:#fff;background-color:#303030;border-color:#434343}:root[mode="dark"] .table .thead-light th{color:#444;background-color:#ebebeb;border-color:#444}:root[mode="dark"] .table-dark{color:#fff;background-color:#303030}:root[mode="dark"] .table-dark th,:root[mode="dark"] .table-dark td,:root[mode="dark"] .table-dark thead th{border-color:#434343}:root[mode="dark"] .table-dark.table-bordered{border:0}:root[mode="dark"] .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}:root[mode="dark"] .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){:root[mode="dark"] .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="dark"] .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){:root[mode="dark"] .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="dark"] .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){:root[mode="dark"] .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="dark"] .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){:root[mode="dark"] .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="dark"] .table-responsive-xl>.table-bordered{border:0}}:root[mode="dark"] .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="dark"] .table-responsive>.table-bordered{border:0}:root[mode="dark"] .form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#444;background-color:#fff;background-clip:padding-box;border:1px solid #222;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .form-control{transition:none}}:root[mode="dark"] .form-control::-ms-expand{background-color:transparent;border:0}:root[mode="dark"] .form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #444}:root[mode="dark"] .form-control:focus{color:#444;background-color:#fff;border-color:#739ac2;outline:0;box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .form-control::-webkit-input-placeholder{color:#888;opacity:1}:root[mode="dark"] .form-control::-moz-placeholder{color:#888;opacity:1}:root[mode="dark"] .form-control:-ms-input-placeholder{color:#888;opacity:1}:root[mode="dark"] .form-control::-ms-input-placeholder{color:#888;opacity:1}:root[mode="dark"] .form-control::placeholder{color:#888;opacity:1}:root[mode="dark"] .form-control:disabled,:root[mode="dark"] .form-control[readonly]{background-color:#ebebeb;opacity:1}:root[mode="dark"] input[type="date"].form-control,:root[mode="dark"] input[type="time"].form-control,:root[mode="dark"] input[type="datetime-local"].form-control,:root[mode="dark"] input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}:root[mode="dark"] select.form-control:focus::-ms-value{color:#444;background-color:#fff}:root[mode="dark"] .form-control-file,:root[mode="dark"] .form-control-range{display:block;width:100%}:root[mode="dark"] .col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}:root[mode="dark"] .col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.171875rem;line-height:1.5}:root[mode="dark"] .col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.825rem;line-height:1.5}:root[mode="dark"] .form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:0.9375rem;line-height:1.5;color:#fff;background-color:transparent;border:solid transparent;border-width:1px 0}:root[mode="dark"] .form-control-plaintext.form-control-sm,:root[mode="dark"] .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}:root[mode="dark"] .form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}:root[mode="dark"] .form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}:root[mode="dark"] select.form-control[size],:root[mode="dark"] select.form-control[multiple]{height:auto}:root[mode="dark"] textarea.form-control{height:auto}:root[mode="dark"] .form-group{margin-bottom:1rem}:root[mode="dark"] .form-text{display:block;margin-top:0.25rem}:root[mode="dark"] .form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}:root[mode="dark"] .form-row>.col,:root[mode="dark"] .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}:root[mode="dark"] .form-check{position:relative;display:block;padding-left:1.25rem}:root[mode="dark"] .form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}:root[mode="dark"] .form-check-input[disabled] ~ .form-check-label,:root[mode="dark"] .form-check-input:disabled ~ .form-check-label{color:#888}:root[mode="dark"] .form-check-label{margin-bottom:0}:root[mode="dark"] .form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}:root[mode="dark"] .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}:root[mode="dark"] .valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#00bc8c}:root[mode="dark"] .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(0,188,140,0.9);border-radius:0.25rem}:root[mode="dark"] .form-row>.col>.valid-tooltip,:root[mode="dark"] .form-row>[class*="col-"]>.valid-tooltip{left:5px}:root[mode="dark"] .was-validated :valid ~ .valid-feedback,:root[mode="dark"] .was-validated :valid ~ .valid-tooltip,:root[mode="dark"] .is-valid ~ .valid-feedback,:root[mode="dark"] .is-valid ~ .valid-tooltip{display:block}:root[mode="dark"] .was-validated .form-control:valid,:root[mode="dark"] .form-control.is-valid{border-color:#00bc8c;padding-right:calc(1.5em + 0.75rem);background-image:url('+y+');background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}:root[mode="dark"] .was-validated .form-control:valid:focus,:root[mode="dark"] .form-control.is-valid:focus{border-color:#00bc8c;box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}:root[mode="dark"] .was-validated textarea.form-control:valid,:root[mode="dark"] textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}:root[mode="dark"] .was-validated .custom-select:valid,:root[mode="dark"] .custom-select.is-valid{border-color:#00bc8c;padding-right:calc(0.75em + 2.3125rem);background:url('+O+") right 0.75rem center/8px 10px no-repeat,#fff url("+y+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}:root[mode="dark"] .was-validated .custom-select:valid:focus,:root[mode="dark"] .custom-select.is-valid:focus{border-color:#00bc8c;box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}:root[mode="dark"] .was-validated .form-check-input:valid ~ .form-check-label,:root[mode="dark"] .form-check-input.is-valid ~ .form-check-label{color:#00bc8c}:root[mode="dark"] .was-validated .form-check-input:valid ~ .valid-feedback,:root[mode="dark"] .was-validated .form-check-input:valid ~ .valid-tooltip,:root[mode="dark"] .form-check-input.is-valid ~ .valid-feedback,:root[mode="dark"] .form-check-input.is-valid ~ .valid-tooltip{display:block}:root[mode="dark"] .was-validated .custom-control-input:valid ~ .custom-control-label,:root[mode="dark"] .custom-control-input.is-valid ~ .custom-control-label{color:#00bc8c}:root[mode="dark"] .was-validated .custom-control-input:valid ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#00bc8c}:root[mode="dark"] .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#00efb2;background-color:#00efb2}:root[mode="dark"] .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}:root[mode="dark"] .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#00bc8c}:root[mode="dark"] .was-validated .custom-file-input:valid ~ .custom-file-label,:root[mode="dark"] .custom-file-input.is-valid ~ .custom-file-label{border-color:#00bc8c}:root[mode="dark"] .was-validated .custom-file-input:valid:focus ~ .custom-file-label,:root[mode="dark"] .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#00bc8c;box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}:root[mode="dark"] .invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#e74c3c}:root[mode="dark"] .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(231,76,60,0.9);border-radius:0.25rem}:root[mode="dark"] .form-row>.col>.invalid-tooltip,:root[mode="dark"] .form-row>[class*="col-"]>.invalid-tooltip{left:5px}:root[mode="dark"] .was-validated :invalid ~ .invalid-feedback,:root[mode="dark"] .was-validated :invalid ~ .invalid-tooltip,:root[mode="dark"] .is-invalid ~ .invalid-feedback,:root[mode="dark"] .is-invalid ~ .invalid-tooltip{display:block}:root[mode="dark"] .was-validated .form-control:invalid,:root[mode="dark"] .form-control.is-invalid{border-color:#e74c3c;padding-right:calc(1.5em + 0.75rem);background-image:url('+j+');background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}:root[mode="dark"] .was-validated .form-control:invalid:focus,:root[mode="dark"] .form-control.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="dark"] .was-validated textarea.form-control:invalid,:root[mode="dark"] textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}:root[mode="dark"] .was-validated .custom-select:invalid,:root[mode="dark"] .custom-select.is-invalid{border-color:#e74c3c;padding-right:calc(0.75em + 2.3125rem);background:url('+O+") right 0.75rem center/8px 10px no-repeat,#fff url("+j+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}:root[mode="dark"] .was-validated .custom-select:invalid:focus,:root[mode="dark"] .custom-select.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="dark"] .was-validated .form-check-input:invalid ~ .form-check-label,:root[mode="dark"] .form-check-input.is-invalid ~ .form-check-label{color:#e74c3c}:root[mode="dark"] .was-validated .form-check-input:invalid ~ .invalid-feedback,:root[mode="dark"] .was-validated .form-check-input:invalid ~ .invalid-tooltip,:root[mode="dark"] .form-check-input.is-invalid ~ .invalid-feedback,:root[mode="dark"] .form-check-input.is-invalid ~ .invalid-tooltip{display:block}:root[mode="dark"] .was-validated .custom-control-input:invalid ~ .custom-control-label,:root[mode="dark"] .custom-control-input.is-invalid ~ .custom-control-label{color:#e74c3c}:root[mode="dark"] .was-validated .custom-control-input:invalid ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#e74c3c}:root[mode="dark"] .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#ed7669;background-color:#ed7669}:root[mode="dark"] .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="dark"] .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#e74c3c}:root[mode="dark"] .was-validated .custom-file-input:invalid ~ .custom-file-label,:root[mode="dark"] .custom-file-input.is-invalid ~ .custom-file-label{border-color:#e74c3c}:root[mode="dark"] .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,:root[mode="dark"] .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="dark"] .form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}:root[mode="dark"] .form-inline .form-check{width:100%}@media (min-width: 576px){:root[mode="dark"] .form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}:root[mode="dark"] .form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}:root[mode="dark"] .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}:root[mode="dark"] .form-inline .form-control-plaintext{display:inline-block}:root[mode="dark"] .form-inline .input-group,:root[mode="dark"] .form-inline .custom-select{width:auto}:root[mode="dark"] .form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}:root[mode="dark"] .form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}:root[mode="dark"] .form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}:root[mode="dark"] .form-inline .custom-control-label{margin-bottom:0}}:root[mode="dark"] .btn{display:inline-block;font-weight:400;color:#fff;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:0.9375rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .btn{transition:none}}:root[mode="dark"] .btn:hover{color:#fff;text-decoration:none}:root[mode="dark"] .btn:focus,:root[mode="dark"] .btn.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .btn.disabled,:root[mode="dark"] .btn:disabled{opacity:0.65}:root[mode="dark"] .btn:not(:disabled):not(.disabled){cursor:pointer}:root[mode="dark"] a.btn.disabled,:root[mode="dark"] fieldset:disabled a.btn{pointer-events:none}:root[mode="dark"] .btn-primary{color:#fff;background-color:#375a7f;border-color:#375a7f}:root[mode="dark"] .btn-primary:hover{color:#fff;background-color:#2b4764;border-color:#28415b}:root[mode="dark"] .btn-primary:focus,:root[mode="dark"] .btn-primary.focus{color:#fff;background-color:#2b4764;border-color:#28415b;box-shadow:0 0 0 0.2rem rgba(85,115,146,0.5)}:root[mode="dark"] .btn-primary.disabled,:root[mode="dark"] .btn-primary:disabled{color:#fff;background-color:#375a7f;border-color:#375a7f}:root[mode="dark"] .btn-primary:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-primary:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#28415b;border-color:#243a53}:root[mode="dark"] .btn-primary:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-primary:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(85,115,146,0.5)}:root[mode="dark"] .btn-secondary{color:#fff;background-color:#444;border-color:#444}:root[mode="dark"] .btn-secondary:hover{color:#fff;background-color:#313131;border-color:#2b2b2b}:root[mode="dark"] .btn-secondary:focus,:root[mode="dark"] .btn-secondary.focus{color:#fff;background-color:#313131;border-color:#2b2b2b;box-shadow:0 0 0 0.2rem rgba(96,96,96,0.5)}:root[mode="dark"] .btn-secondary.disabled,:root[mode="dark"] .btn-secondary:disabled{color:#fff;background-color:#444;border-color:#444}:root[mode="dark"] .btn-secondary:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-secondary:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#2b2b2b;border-color:#242424}:root[mode="dark"] .btn-secondary:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-secondary:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(96,96,96,0.5)}:root[mode="dark"] .btn-success{color:#fff;background-color:#00bc8c;border-color:#00bc8c}:root[mode="dark"] .btn-success:hover{color:#fff;background-color:#009670;border-color:#008966}:root[mode="dark"] .btn-success:focus,:root[mode="dark"] .btn-success.focus{color:#fff;background-color:#009670;border-color:#008966;box-shadow:0 0 0 0.2rem rgba(38,198,157,0.5)}:root[mode="dark"] .btn-success.disabled,:root[mode="dark"] .btn-success:disabled{color:#fff;background-color:#00bc8c;border-color:#00bc8c}:root[mode="dark"] .btn-success:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-success:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-success.dropdown-toggle{color:#fff;background-color:#008966;border-color:#007c5d}:root[mode="dark"] .btn-success:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-success:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(38,198,157,0.5)}:root[mode="dark"] .btn-info{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="dark"] .btn-info:hover{color:#fff;background-color:#2384c6;border-color:#217dbb}:root[mode="dark"] .btn-info:focus,:root[mode="dark"] .btn-info.focus{color:#fff;background-color:#2384c6;border-color:#217dbb;box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}:root[mode="dark"] .btn-info.disabled,:root[mode="dark"] .btn-info:disabled{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="dark"] .btn-info:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-info:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-info.dropdown-toggle{color:#fff;background-color:#217dbb;border-color:#1f76b0}:root[mode="dark"] .btn-info:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-info:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}:root[mode="dark"] .btn-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="dark"] .btn-warning:hover{color:#fff;background-color:#d4860b;border-color:#c87f0a}:root[mode="dark"] .btn-warning:focus,:root[mode="dark"] .btn-warning.focus{color:#fff;background-color:#d4860b;border-color:#c87f0a;box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}:root[mode="dark"] .btn-warning.disabled,:root[mode="dark"] .btn-warning:disabled{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="dark"] .btn-warning:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-warning:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-warning.dropdown-toggle{color:#fff;background-color:#c87f0a;border-color:#bc770a}:root[mode="dark"] .btn-warning:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-warning:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}:root[mode="dark"] .btn-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="dark"] .btn-danger:hover{color:#fff;background-color:#e12e1c;border-color:#d62c1a}:root[mode="dark"] .btn-danger:focus,:root[mode="dark"] .btn-danger.focus{color:#fff;background-color:#e12e1c;border-color:#d62c1a;box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}:root[mode="dark"] .btn-danger.disabled,:root[mode="dark"] .btn-danger:disabled{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="dark"] .btn-danger:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-danger:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#d62c1a;border-color:#ca2a19}:root[mode="dark"] .btn-danger:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-danger:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}:root[mode="dark"] .btn-light{color:#222;background-color:#adb5bd;border-color:#adb5bd}:root[mode="dark"] .btn-light:hover{color:#fff;background-color:#98a2ac;border-color:#919ca6}:root[mode="dark"] .btn-light:focus,:root[mode="dark"] .btn-light.focus{color:#fff;background-color:#98a2ac;border-color:#919ca6;box-shadow:0 0 0 0.2rem rgba(152,159,166,0.5)}:root[mode="dark"] .btn-light.disabled,:root[mode="dark"] .btn-light:disabled{color:#222;background-color:#adb5bd;border-color:#adb5bd}:root[mode="dark"] .btn-light:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-light:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-light.dropdown-toggle{color:#fff;background-color:#919ca6;border-color:#8a95a1}:root[mode="dark"] .btn-light:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-light:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(152,159,166,0.5)}:root[mode="dark"] .btn-dark{color:#fff;background-color:#303030;border-color:#303030}:root[mode="dark"] .btn-dark:hover{color:#fff;background-color:#1d1d1d;border-color:#171717}:root[mode="dark"] .btn-dark:focus,:root[mode="dark"] .btn-dark.focus{color:#fff;background-color:#1d1d1d;border-color:#171717;box-shadow:0 0 0 0.2rem rgba(79,79,79,0.5)}:root[mode="dark"] .btn-dark.disabled,:root[mode="dark"] .btn-dark:disabled{color:#fff;background-color:#303030;border-color:#303030}:root[mode="dark"] .btn-dark:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-dark:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-dark.dropdown-toggle{color:#fff;background-color:#171717;border-color:#101010}:root[mode="dark"] .btn-dark:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-dark:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(79,79,79,0.5)}:root[mode="dark"] .btn-outline-primary{color:#375a7f;border-color:#375a7f}:root[mode="dark"] .btn-outline-primary:hover{color:#fff;background-color:#375a7f;border-color:#375a7f}:root[mode="dark"] .btn-outline-primary:focus,:root[mode="dark"] .btn-outline-primary.focus{box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5)}:root[mode="dark"] .btn-outline-primary.disabled,:root[mode="dark"] .btn-outline-primary:disabled{color:#375a7f;background-color:transparent}:root[mode="dark"] .btn-outline-primary:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-primary:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#375a7f;border-color:#375a7f}:root[mode="dark"] .btn-outline-primary:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-primary:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5)}:root[mode="dark"] .btn-outline-secondary{color:#444;border-color:#444}:root[mode="dark"] .btn-outline-secondary:hover{color:#fff;background-color:#444;border-color:#444}:root[mode="dark"] .btn-outline-secondary:focus,:root[mode="dark"] .btn-outline-secondary.focus{box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5)}:root[mode="dark"] .btn-outline-secondary.disabled,:root[mode="dark"] .btn-outline-secondary:disabled{color:#444;background-color:transparent}:root[mode="dark"] .btn-outline-secondary:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-secondary:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#444;border-color:#444}:root[mode="dark"] .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5)}:root[mode="dark"] .btn-outline-success{color:#00bc8c;border-color:#00bc8c}:root[mode="dark"] .btn-outline-success:hover{color:#fff;background-color:#00bc8c;border-color:#00bc8c}:root[mode="dark"] .btn-outline-success:focus,:root[mode="dark"] .btn-outline-success.focus{box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5)}:root[mode="dark"] .btn-outline-success.disabled,:root[mode="dark"] .btn-outline-success:disabled{color:#00bc8c;background-color:transparent}:root[mode="dark"] .btn-outline-success:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-success:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#00bc8c;border-color:#00bc8c}:root[mode="dark"] .btn-outline-success:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-success:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5)}:root[mode="dark"] .btn-outline-info{color:#3498db;border-color:#3498db}:root[mode="dark"] .btn-outline-info:hover{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="dark"] .btn-outline-info:focus,:root[mode="dark"] .btn-outline-info.focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}:root[mode="dark"] .btn-outline-info.disabled,:root[mode="dark"] .btn-outline-info:disabled{color:#3498db;background-color:transparent}:root[mode="dark"] .btn-outline-info:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-info:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="dark"] .btn-outline-info:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-info:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}:root[mode="dark"] .btn-outline-warning{color:#f39c12;border-color:#f39c12}:root[mode="dark"] .btn-outline-warning:hover{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="dark"] .btn-outline-warning:focus,:root[mode="dark"] .btn-outline-warning.focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}:root[mode="dark"] .btn-outline-warning.disabled,:root[mode="dark"] .btn-outline-warning:disabled{color:#f39c12;background-color:transparent}:root[mode="dark"] .btn-outline-warning:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-warning:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="dark"] .btn-outline-warning:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-warning:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}:root[mode="dark"] .btn-outline-danger{color:#e74c3c;border-color:#e74c3c}:root[mode="dark"] .btn-outline-danger:hover{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="dark"] .btn-outline-danger:focus,:root[mode="dark"] .btn-outline-danger.focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}:root[mode="dark"] .btn-outline-danger.disabled,:root[mode="dark"] .btn-outline-danger:disabled{color:#e74c3c;background-color:transparent}:root[mode="dark"] .btn-outline-danger:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-danger:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="dark"] .btn-outline-danger:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-danger:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}:root[mode="dark"] .btn-outline-light{color:#adb5bd;border-color:#adb5bd}:root[mode="dark"] .btn-outline-light:hover{color:#222;background-color:#adb5bd;border-color:#adb5bd}:root[mode="dark"] .btn-outline-light:focus,:root[mode="dark"] .btn-outline-light.focus{box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5)}:root[mode="dark"] .btn-outline-light.disabled,:root[mode="dark"] .btn-outline-light:disabled{color:#adb5bd;background-color:transparent}:root[mode="dark"] .btn-outline-light:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-light:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-light.dropdown-toggle{color:#222;background-color:#adb5bd;border-color:#adb5bd}:root[mode="dark"] .btn-outline-light:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-light:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5)}:root[mode="dark"] .btn-outline-dark{color:#303030;border-color:#303030}:root[mode="dark"] .btn-outline-dark:hover{color:#fff;background-color:#303030;border-color:#303030}:root[mode="dark"] .btn-outline-dark:focus,:root[mode="dark"] .btn-outline-dark.focus{box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5)}:root[mode="dark"] .btn-outline-dark.disabled,:root[mode="dark"] .btn-outline-dark:disabled{color:#303030;background-color:transparent}:root[mode="dark"] .btn-outline-dark:not(:disabled):not(.disabled):active,:root[mode="dark"] .btn-outline-dark:not(:disabled):not(.disabled).active,:root[mode="dark"] .show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#303030;border-color:#303030}:root[mode="dark"] .btn-outline-dark:not(:disabled):not(.disabled):active:focus,:root[mode="dark"] .btn-outline-dark:not(:disabled):not(.disabled).active:focus,:root[mode="dark"] .show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5)}:root[mode="dark"] .btn-link{font-weight:400;color:#00bc8c;text-decoration:none}:root[mode="dark"] .btn-link:hover{color:#007053;text-decoration:underline}:root[mode="dark"] .btn-link:focus,:root[mode="dark"] .btn-link.focus{text-decoration:underline}:root[mode="dark"] .btn-link:disabled,:root[mode="dark"] .btn-link.disabled{color:#888;pointer-events:none}:root[mode="dark"] .btn-lg,:root[mode="dark"] .btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}:root[mode="dark"] .btn-sm,:root[mode="dark"] .btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}:root[mode="dark"] .btn-block{display:block;width:100%}:root[mode="dark"] .btn-block+.btn-block{margin-top:0.5rem}:root[mode="dark"] input[type="submit"].btn-block,:root[mode="dark"] input[type="reset"].btn-block,:root[mode="dark"] input[type="button"].btn-block{width:100%}:root[mode="dark"] .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .fade{transition:none}}:root[mode="dark"] .fade:not(.show){opacity:0}:root[mode="dark"] .collapse:not(.show){display:none}:root[mode="dark"] .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .collapsing{transition:none}}:root[mode="dark"] .dropup,:root[mode="dark"] .dropright,:root[mode="dark"] .dropdown,:root[mode="dark"] .dropleft{position:relative}:root[mode="dark"] .dropdown-toggle{white-space:nowrap}:root[mode="dark"] .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}:root[mode="dark"] .dropdown-toggle:empty::after{margin-left:0}:root[mode="dark"] .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:0.9375rem;color:#fff;text-align:left;list-style:none;background-color:#222;background-clip:padding-box;border:1px solid #444;border-radius:0.25rem}:root[mode="dark"] .dropdown-menu-left{right:auto;left:0}:root[mode="dark"] .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){:root[mode="dark"] .dropdown-menu-sm-left{right:auto;left:0}:root[mode="dark"] .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){:root[mode="dark"] .dropdown-menu-md-left{right:auto;left:0}:root[mode="dark"] .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){:root[mode="dark"] .dropdown-menu-lg-left{right:auto;left:0}:root[mode="dark"] .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){:root[mode="dark"] .dropdown-menu-xl-left{right:auto;left:0}:root[mode="dark"] .dropdown-menu-xl-right{right:0;left:auto}}:root[mode="dark"] .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}:root[mode="dark"] .dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}:root[mode="dark"] .dropup .dropdown-toggle:empty::after{margin-left:0}:root[mode="dark"] .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}:root[mode="dark"] .dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}:root[mode="dark"] .dropright .dropdown-toggle:empty::after{margin-left:0}:root[mode="dark"] .dropright .dropdown-toggle::after{vertical-align:0}:root[mode="dark"] .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}:root[mode="dark"] .dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}:root[mode="dark"] .dropleft .dropdown-toggle::after{display:none}:root[mode="dark"] .dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}:root[mode="dark"] .dropleft .dropdown-toggle:empty::after{margin-left:0}:root[mode="dark"] .dropleft .dropdown-toggle::before{vertical-align:0}:root[mode="dark"] .dropdown-menu[x-placement^="top"],:root[mode="dark"] .dropdown-menu[x-placement^="right"],:root[mode="dark"] .dropdown-menu[x-placement^="bottom"],:root[mode="dark"] .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}:root[mode="dark"] .dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #444}:root[mode="dark"] .dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#fff;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}:root[mode="dark"] .dropdown-item:hover,:root[mode="dark"] .dropdown-item:focus{color:#fff;text-decoration:none;background-color:#375a7f}:root[mode="dark"] .dropdown-item.active,:root[mode="dark"] .dropdown-item:active{color:#fff;text-decoration:none;background-color:#375a7f}:root[mode="dark"] .dropdown-item.disabled,:root[mode="dark"] .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}:root[mode="dark"] .dropdown-menu.show{display:block}:root[mode="dark"] .dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.825rem;color:#888;white-space:nowrap}:root[mode="dark"] .dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#fff}:root[mode="dark"] .btn-group,:root[mode="dark"] .btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}:root[mode="dark"] .btn-group>.btn,:root[mode="dark"] .btn-group-vertical>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}:root[mode="dark"] .btn-group>.btn:hover,:root[mode="dark"] .btn-group-vertical>.btn:hover{z-index:1}:root[mode="dark"] .btn-group>.btn:focus,:root[mode="dark"] .btn-group>.btn:active,:root[mode="dark"] .btn-group>.btn.active,:root[mode="dark"] .btn-group-vertical>.btn:focus,:root[mode="dark"] .btn-group-vertical>.btn:active,:root[mode="dark"] .btn-group-vertical>.btn.active{z-index:1}:root[mode="dark"] .btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="dark"] .btn-toolbar .input-group{width:auto}:root[mode="dark"] .btn-group>.btn:not(:first-child),:root[mode="dark"] .btn-group>.btn-group:not(:first-child){margin-left:-1px}:root[mode="dark"] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),:root[mode="dark"] .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="dark"] .btn-group>.btn:not(:first-child),:root[mode="dark"] .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="dark"] .dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}:root[mode="dark"] .dropdown-toggle-split::after,:root[mode="dark"] .dropup .dropdown-toggle-split::after,:root[mode="dark"] .dropright .dropdown-toggle-split::after{margin-left:0}:root[mode="dark"] .dropleft .dropdown-toggle-split::before{margin-right:0}:root[mode="dark"] .btn-sm+.dropdown-toggle-split,:root[mode="dark"] .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}:root[mode="dark"] .btn-lg+.dropdown-toggle-split,:root[mode="dark"] .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}:root[mode="dark"] .btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}:root[mode="dark"] .btn-group-vertical>.btn,:root[mode="dark"] .btn-group-vertical>.btn-group{width:100%}:root[mode="dark"] .btn-group-vertical>.btn:not(:first-child),:root[mode="dark"] .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}:root[mode="dark"] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),:root[mode="dark"] .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}:root[mode="dark"] .btn-group-vertical>.btn:not(:first-child),:root[mode="dark"] .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}:root[mode="dark"] .btn-group-toggle>.btn,:root[mode="dark"] .btn-group-toggle>.btn-group>.btn{margin-bottom:0}:root[mode="dark"] .btn-group-toggle>.btn input[type="radio"],:root[mode="dark"] .btn-group-toggle>.btn input[type="checkbox"],:root[mode="dark"] .btn-group-toggle>.btn-group>.btn input[type="radio"],:root[mode="dark"] .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}:root[mode="dark"] .input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}:root[mode="dark"] .input-group>.form-control,:root[mode="dark"] .input-group>.form-control-plaintext,:root[mode="dark"] .input-group>.custom-select,:root[mode="dark"] .input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}:root[mode="dark"] .input-group>.form-control+.form-control,:root[mode="dark"] .input-group>.form-control+.custom-select,:root[mode="dark"] .input-group>.form-control+.custom-file,:root[mode="dark"] .input-group>.form-control-plaintext+.form-control,:root[mode="dark"] .input-group>.form-control-plaintext+.custom-select,:root[mode="dark"] .input-group>.form-control-plaintext+.custom-file,:root[mode="dark"] .input-group>.custom-select+.form-control,:root[mode="dark"] .input-group>.custom-select+.custom-select,:root[mode="dark"] .input-group>.custom-select+.custom-file,:root[mode="dark"] .input-group>.custom-file+.form-control,:root[mode="dark"] .input-group>.custom-file+.custom-select,:root[mode="dark"] .input-group>.custom-file+.custom-file{margin-left:-1px}:root[mode="dark"] .input-group>.form-control:focus,:root[mode="dark"] .input-group>.custom-select:focus,:root[mode="dark"] .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}:root[mode="dark"] .input-group>.custom-file .custom-file-input:focus{z-index:4}:root[mode="dark"] .input-group>.form-control:not(:first-child),:root[mode="dark"] .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="dark"] .input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}:root[mode="dark"] .input-group>.custom-file:not(:last-child) .custom-file-label,:root[mode="dark"] .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="dark"] .input-group:not(.has-validation)>.form-control:not(:last-child),:root[mode="dark"] .input-group:not(.has-validation)>.custom-select:not(:last-child),:root[mode="dark"] .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="dark"] .input-group.has-validation>.form-control:nth-last-child(n+3),:root[mode="dark"] .input-group.has-validation>.custom-select:nth-last-child(n+3),:root[mode="dark"] .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="dark"] .input-group-prepend,:root[mode="dark"] .input-group-append{display:-ms-flexbox;display:flex}:root[mode="dark"] .input-group-prepend .btn,:root[mode="dark"] .input-group-append .btn{position:relative;z-index:2}:root[mode="dark"] .input-group-prepend .btn:focus,:root[mode="dark"] .input-group-append .btn:focus{z-index:3}:root[mode="dark"] .input-group-prepend .btn+.btn,:root[mode="dark"] .input-group-prepend .btn+.input-group-text,:root[mode="dark"] .input-group-prepend .input-group-text+.input-group-text,:root[mode="dark"] .input-group-prepend .input-group-text+.btn,:root[mode="dark"] .input-group-append .btn+.btn,:root[mode="dark"] .input-group-append .btn+.input-group-text,:root[mode="dark"] .input-group-append .input-group-text+.input-group-text,:root[mode="dark"] .input-group-append .input-group-text+.btn{margin-left:-1px}:root[mode="dark"] .input-group-prepend{margin-right:-1px}:root[mode="dark"] .input-group-append{margin-left:-1px}:root[mode="dark"] .input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#adb5bd;text-align:center;white-space:nowrap;background-color:#444;border:1px solid #222;border-radius:0.25rem}:root[mode="dark"] .input-group-text input[type="radio"],:root[mode="dark"] .input-group-text input[type="checkbox"]{margin-top:0}:root[mode="dark"] .input-group-lg>.form-control:not(textarea),:root[mode="dark"] .input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}:root[mode="dark"] .input-group-lg>.form-control,:root[mode="dark"] .input-group-lg>.custom-select,:root[mode="dark"] .input-group-lg>.input-group-prepend>.input-group-text,:root[mode="dark"] .input-group-lg>.input-group-append>.input-group-text,:root[mode="dark"] .input-group-lg>.input-group-prepend>.btn,:root[mode="dark"] .input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}:root[mode="dark"] .input-group-sm>.form-control:not(textarea),:root[mode="dark"] .input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}:root[mode="dark"] .input-group-sm>.form-control,:root[mode="dark"] .input-group-sm>.custom-select,:root[mode="dark"] .input-group-sm>.input-group-prepend>.input-group-text,:root[mode="dark"] .input-group-sm>.input-group-append>.input-group-text,:root[mode="dark"] .input-group-sm>.input-group-prepend>.btn,:root[mode="dark"] .input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}:root[mode="dark"] .input-group-lg>.custom-select,:root[mode="dark"] .input-group-sm>.custom-select{padding-right:1.75rem}:root[mode="dark"] .input-group>.input-group-prepend>.btn,:root[mode="dark"] .input-group>.input-group-prepend>.input-group-text,:root[mode="dark"] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,:root[mode="dark"] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,:root[mode="dark"] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,:root[mode="dark"] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,:root[mode="dark"] .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),:root[mode="dark"] .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="dark"] .input-group>.input-group-append>.btn,:root[mode="dark"] .input-group>.input-group-append>.input-group-text,:root[mode="dark"] .input-group>.input-group-prepend:not(:first-child)>.btn,:root[mode="dark"] .input-group>.input-group-prepend:not(:first-child)>.input-group-text,:root[mode="dark"] .input-group>.input-group-prepend:first-child>.btn:not(:first-child),:root[mode="dark"] .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="dark"] .custom-control{position:relative;z-index:1;display:block;min-height:1.40625rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}:root[mode="dark"] .custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}:root[mode="dark"] .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.203125rem;opacity:0}:root[mode="dark"] .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#375a7f;background-color:#375a7f}:root[mode="dark"] .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#739ac2}:root[mode="dark"] .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#97b3d2;border-color:#97b3d2}:root[mode="dark"] .custom-control-input[disabled] ~ .custom-control-label,:root[mode="dark"] .custom-control-input:disabled ~ .custom-control-label{color:#888}:root[mode="dark"] .custom-control-input[disabled] ~ .custom-control-label::before,:root[mode="dark"] .custom-control-input:disabled ~ .custom-control-label::before{background-color:#ebebeb}:root[mode="dark"] .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}:root[mode="dark"] .custom-control-label::before{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}:root[mode="dark"] .custom-control-label::after{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}:root[mode="dark"] .custom-checkbox .custom-control-label::before{border-radius:0.25rem}:root[mode="dark"] .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+S+')}:root[mode="dark"] .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#375a7f;background-color:#375a7f}:root[mode="dark"] .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url('+P+')}:root[mode="dark"] .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}:root[mode="dark"] .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}:root[mode="dark"] .custom-radio .custom-control-label::before{border-radius:50%}:root[mode="dark"] .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+T+')}:root[mode="dark"] .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}:root[mode="dark"] .custom-switch{padding-left:2.25rem}:root[mode="dark"] .custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}:root[mode="dark"] .custom-switch .custom-control-label::after{top:calc(0.203125rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:0.5rem;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .custom-switch .custom-control-label::after{transition:none}}:root[mode="dark"] .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}:root[mode="dark"] .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}:root[mode="dark"] .custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#444;vertical-align:middle;background:#fff url('+O+') right 0.75rem center/8px 10px no-repeat;border:1px solid #222;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}:root[mode="dark"] .custom-select:focus{border-color:#739ac2;outline:0;box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .custom-select:focus::-ms-value{color:#444;background-color:#fff}:root[mode="dark"] .custom-select[multiple],:root[mode="dark"] .custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}:root[mode="dark"] .custom-select:disabled{color:#888;background-color:#ebebeb}:root[mode="dark"] .custom-select::-ms-expand{display:none}:root[mode="dark"] .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #444}:root[mode="dark"] .custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.825rem}:root[mode="dark"] .custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.171875rem}:root[mode="dark"] .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}:root[mode="dark"] .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}:root[mode="dark"] .custom-file-input:focus ~ .custom-file-label{border-color:#739ac2;box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .custom-file-input[disabled] ~ .custom-file-label,:root[mode="dark"] .custom-file-input:disabled ~ .custom-file-label{background-color:#ebebeb}:root[mode="dark"] .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}:root[mode="dark"] .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}:root[mode="dark"] .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#adb5bd;background-color:#fff;border:1px solid #222;border-radius:0.25rem}:root[mode="dark"] .custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#adb5bd;content:"Browse";background-color:#444;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}:root[mode="dark"] .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}:root[mode="dark"] .custom-range:focus{outline:0}:root[mode="dark"] .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #222,0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #222,0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #222,0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .custom-range::-moz-focus-outer{border:0}:root[mode="dark"] .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#375a7f;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}:root[mode="dark"] .custom-range::-webkit-slider-thumb:active{background-color:#97b3d2}:root[mode="dark"] .custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}:root[mode="dark"] .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#375a7f;border:0;border-radius:1rem;-moz-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}:root[mode="dark"] .custom-range::-moz-range-thumb:active{background-color:#97b3d2}:root[mode="dark"] .custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}:root[mode="dark"] .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#375a7f;border:0;border-radius:1rem;-ms-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .custom-range::-ms-thumb{-ms-transition:none;transition:none}}:root[mode="dark"] .custom-range::-ms-thumb:active{background-color:#97b3d2}:root[mode="dark"] .custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}:root[mode="dark"] .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}:root[mode="dark"] .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}:root[mode="dark"] .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}:root[mode="dark"] .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}:root[mode="dark"] .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}:root[mode="dark"] .custom-range:disabled::-moz-range-track{cursor:default}:root[mode="dark"] .custom-range:disabled::-ms-thumb{background-color:#adb5bd}:root[mode="dark"] .custom-control-label::before,:root[mode="dark"] .custom-file-label,:root[mode="dark"] .custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .custom-control-label::before,:root[mode="dark"] .custom-file-label,:root[mode="dark"] .custom-select{transition:none}}:root[mode="dark"] .nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}:root[mode="dark"] .nav-link{display:block;padding:0.5rem 2rem}:root[mode="dark"] .nav-link:hover,:root[mode="dark"] .nav-link:focus{text-decoration:none}:root[mode="dark"] .nav-link.disabled{color:#adb5bd;pointer-events:none;cursor:default}:root[mode="dark"] .nav-tabs{border-bottom:1px solid #444}:root[mode="dark"] .nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}:root[mode="dark"] .nav-tabs .nav-link:hover,:root[mode="dark"] .nav-tabs .nav-link:focus{border-color:#444 #444 transparent}:root[mode="dark"] .nav-tabs .nav-link.disabled{color:#adb5bd;background-color:transparent;border-color:transparent}:root[mode="dark"] .nav-tabs .nav-link.active,:root[mode="dark"] .nav-tabs .nav-item.show .nav-link{color:#fff;background-color:#222;border-color:#444 #444 transparent}:root[mode="dark"] .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}:root[mode="dark"] .nav-pills .nav-link{border-radius:0.25rem}:root[mode="dark"] .nav-pills .nav-link.active,:root[mode="dark"] .nav-pills .show>.nav-link{color:#fff;background-color:#375a7f}:root[mode="dark"] .nav-fill>.nav-link,:root[mode="dark"] .nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}:root[mode="dark"] .nav-justified>.nav-link,:root[mode="dark"] .nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}:root[mode="dark"] .tab-content>.tab-pane{display:none}:root[mode="dark"] .tab-content>.active{display:block}:root[mode="dark"] .navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem}:root[mode="dark"] .navbar .container,:root[mode="dark"] .navbar .container-fluid,:root[mode="dark"] .navbar .container-sm,:root[mode="dark"] .navbar .container-md,:root[mode="dark"] .navbar .container-lg,:root[mode="dark"] .navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}:root[mode="dark"] .navbar-brand{display:inline-block;padding-top:0.324219rem;padding-bottom:0.324219rem;margin-right:1rem;font-size:1.171875rem;line-height:inherit;white-space:nowrap}:root[mode="dark"] .navbar-brand:hover,:root[mode="dark"] .navbar-brand:focus{text-decoration:none}:root[mode="dark"] .navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}:root[mode="dark"] .navbar-nav .nav-link{padding-right:0;padding-left:0}:root[mode="dark"] .navbar-nav .dropdown-menu{position:static;float:none}:root[mode="dark"] .navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}:root[mode="dark"] .navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}:root[mode="dark"] .navbar-toggler{padding:0.25rem 0.75rem;font-size:1.171875rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}:root[mode="dark"] .navbar-toggler:hover,:root[mode="dark"] .navbar-toggler:focus{text-decoration:none}:root[mode="dark"] .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}:root[mode="dark"] .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){:root[mode="dark"] .navbar-expand-sm>.container,:root[mode="dark"] .navbar-expand-sm>.container-fluid,:root[mode="dark"] .navbar-expand-sm>.container-sm,:root[mode="dark"] .navbar-expand-sm>.container-md,:root[mode="dark"] .navbar-expand-sm>.container-lg,:root[mode="dark"] .navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){:root[mode="dark"] .navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="dark"] .navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}:root[mode="dark"] .navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="dark"] .navbar-expand-sm>.container,:root[mode="dark"] .navbar-expand-sm>.container-fluid,:root[mode="dark"] .navbar-expand-sm>.container-sm,:root[mode="dark"] .navbar-expand-sm>.container-md,:root[mode="dark"] .navbar-expand-sm>.container-lg,:root[mode="dark"] .navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="dark"] .navbar-expand-sm .navbar-nav-scroll{overflow:visible}:root[mode="dark"] .navbar-expand-sm .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="dark"] .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){:root[mode="dark"] .navbar-expand-md>.container,:root[mode="dark"] .navbar-expand-md>.container-fluid,:root[mode="dark"] .navbar-expand-md>.container-sm,:root[mode="dark"] .navbar-expand-md>.container-md,:root[mode="dark"] .navbar-expand-md>.container-lg,:root[mode="dark"] .navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){:root[mode="dark"] .navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="dark"] .navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}:root[mode="dark"] .navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="dark"] .navbar-expand-md>.container,:root[mode="dark"] .navbar-expand-md>.container-fluid,:root[mode="dark"] .navbar-expand-md>.container-sm,:root[mode="dark"] .navbar-expand-md>.container-md,:root[mode="dark"] .navbar-expand-md>.container-lg,:root[mode="dark"] .navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="dark"] .navbar-expand-md .navbar-nav-scroll{overflow:visible}:root[mode="dark"] .navbar-expand-md .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="dark"] .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){:root[mode="dark"] .navbar-expand-lg>.container,:root[mode="dark"] .navbar-expand-lg>.container-fluid,:root[mode="dark"] .navbar-expand-lg>.container-sm,:root[mode="dark"] .navbar-expand-lg>.container-md,:root[mode="dark"] .navbar-expand-lg>.container-lg,:root[mode="dark"] .navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){:root[mode="dark"] .navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="dark"] .navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}:root[mode="dark"] .navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="dark"] .navbar-expand-lg>.container,:root[mode="dark"] .navbar-expand-lg>.container-fluid,:root[mode="dark"] .navbar-expand-lg>.container-sm,:root[mode="dark"] .navbar-expand-lg>.container-md,:root[mode="dark"] .navbar-expand-lg>.container-lg,:root[mode="dark"] .navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="dark"] .navbar-expand-lg .navbar-nav-scroll{overflow:visible}:root[mode="dark"] .navbar-expand-lg .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="dark"] .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){:root[mode="dark"] .navbar-expand-xl>.container,:root[mode="dark"] .navbar-expand-xl>.container-fluid,:root[mode="dark"] .navbar-expand-xl>.container-sm,:root[mode="dark"] .navbar-expand-xl>.container-md,:root[mode="dark"] .navbar-expand-xl>.container-lg,:root[mode="dark"] .navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){:root[mode="dark"] .navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="dark"] .navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}:root[mode="dark"] .navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="dark"] .navbar-expand-xl>.container,:root[mode="dark"] .navbar-expand-xl>.container-fluid,:root[mode="dark"] .navbar-expand-xl>.container-sm,:root[mode="dark"] .navbar-expand-xl>.container-md,:root[mode="dark"] .navbar-expand-xl>.container-lg,:root[mode="dark"] .navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="dark"] .navbar-expand-xl .navbar-nav-scroll{overflow:visible}:root[mode="dark"] .navbar-expand-xl .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="dark"] .navbar-expand-xl .navbar-toggler{display:none}}:root[mode="dark"] .navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="dark"] .navbar-expand>.container,:root[mode="dark"] .navbar-expand>.container-fluid,:root[mode="dark"] .navbar-expand>.container-sm,:root[mode="dark"] .navbar-expand>.container-md,:root[mode="dark"] .navbar-expand>.container-lg,:root[mode="dark"] .navbar-expand>.container-xl{padding-right:0;padding-left:0}:root[mode="dark"] .navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .navbar-expand .navbar-nav .dropdown-menu{position:absolute}:root[mode="dark"] .navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="dark"] .navbar-expand>.container,:root[mode="dark"] .navbar-expand>.container-fluid,:root[mode="dark"] .navbar-expand>.container-sm,:root[mode="dark"] .navbar-expand>.container-md,:root[mode="dark"] .navbar-expand>.container-lg,:root[mode="dark"] .navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="dark"] .navbar-expand .navbar-nav-scroll{overflow:visible}:root[mode="dark"] .navbar-expand .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="dark"] .navbar-expand .navbar-toggler{display:none}:root[mode="dark"] .navbar-light .navbar-brand{color:#222}:root[mode="dark"] .navbar-light .navbar-brand:hover,:root[mode="dark"] .navbar-light .navbar-brand:focus{color:#222}:root[mode="dark"] .navbar-light .navbar-nav .nav-link{color:rgba(34,34,34,0.7)}:root[mode="dark"] .navbar-light .navbar-nav .nav-link:hover,:root[mode="dark"] .navbar-light .navbar-nav .nav-link:focus{color:#222}:root[mode="dark"] .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}:root[mode="dark"] .navbar-light .navbar-nav .show>.nav-link,:root[mode="dark"] .navbar-light .navbar-nav .active>.nav-link,:root[mode="dark"] .navbar-light .navbar-nav .nav-link.show,:root[mode="dark"] .navbar-light .navbar-nav .nav-link.active{color:#222}:root[mode="dark"] .navbar-light .navbar-toggler{color:rgba(34,34,34,0.7);border-color:rgba(34,34,34,0.1)}:root[mode="dark"] .navbar-light .navbar-toggler-icon{background-image:url('+_+')}:root[mode="dark"] .navbar-light .navbar-text{color:rgba(34,34,34,0.7)}:root[mode="dark"] .navbar-light .navbar-text a{color:#222}:root[mode="dark"] .navbar-light .navbar-text a:hover,:root[mode="dark"] .navbar-light .navbar-text a:focus{color:#222}:root[mode="dark"] .navbar-dark .navbar-brand{color:#fff}:root[mode="dark"] .navbar-dark .navbar-brand:hover,:root[mode="dark"] .navbar-dark .navbar-brand:focus{color:#fff}:root[mode="dark"] .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.6)}:root[mode="dark"] .navbar-dark .navbar-nav .nav-link:hover,:root[mode="dark"] .navbar-dark .navbar-nav .nav-link:focus{color:#fff}:root[mode="dark"] .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}:root[mode="dark"] .navbar-dark .navbar-nav .show>.nav-link,:root[mode="dark"] .navbar-dark .navbar-nav .active>.nav-link,:root[mode="dark"] .navbar-dark .navbar-nav .nav-link.show,:root[mode="dark"] .navbar-dark .navbar-nav .nav-link.active{color:#fff}:root[mode="dark"] .navbar-dark .navbar-toggler{color:rgba(255,255,255,0.6);border-color:rgba(255,255,255,0.1)}:root[mode="dark"] .navbar-dark .navbar-toggler-icon{background-image:url('+C+')}:root[mode="dark"] .navbar-dark .navbar-text{color:rgba(255,255,255,0.6)}:root[mode="dark"] .navbar-dark .navbar-text a{color:#fff}:root[mode="dark"] .navbar-dark .navbar-text a:hover,:root[mode="dark"] .navbar-dark .navbar-text a:focus{color:#fff}:root[mode="dark"] .card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#303030;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}:root[mode="dark"] .card>hr{margin-right:0;margin-left:0}:root[mode="dark"] .card>.list-group{border-top:inherit;border-bottom:inherit}:root[mode="dark"] .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}:root[mode="dark"] .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}:root[mode="dark"] .card>.card-header+.list-group,:root[mode="dark"] .card>.list-group+.card-footer{border-top:0}:root[mode="dark"] .card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}:root[mode="dark"] .card-title{margin-bottom:0.75rem}:root[mode="dark"] .card-subtitle{margin-top:-0.375rem;margin-bottom:0}:root[mode="dark"] .card-text:last-child{margin-bottom:0}:root[mode="dark"] .card-link:hover{text-decoration:none}:root[mode="dark"] .card-link+.card-link{margin-left:1.25rem}:root[mode="dark"] .card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:#444;border-bottom:1px solid rgba(0,0,0,0.125)}:root[mode="dark"] .card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}:root[mode="dark"] .card-footer{padding:0.75rem 1.25rem;background-color:#444;border-top:1px solid rgba(0,0,0,0.125)}:root[mode="dark"] .card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}:root[mode="dark"] .card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}:root[mode="dark"] .card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}:root[mode="dark"] .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}:root[mode="dark"] .card-img,:root[mode="dark"] .card-img-top,:root[mode="dark"] .card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}:root[mode="dark"] .card-img,:root[mode="dark"] .card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}:root[mode="dark"] .card-img,:root[mode="dark"] .card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}:root[mode="dark"] .card-deck .card{margin-bottom:15px}@media (min-width: 576px){:root[mode="dark"] .card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}:root[mode="dark"] .card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}:root[mode="dark"] .card-group>.card{margin-bottom:15px}@media (min-width: 576px){:root[mode="dark"] .card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}:root[mode="dark"] .card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}:root[mode="dark"] .card-group>.card+.card{margin-left:0;border-left:0}:root[mode="dark"] .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="dark"] .card-group>.card:not(:last-child) .card-img-top,:root[mode="dark"] .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}:root[mode="dark"] .card-group>.card:not(:last-child) .card-img-bottom,:root[mode="dark"] .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}:root[mode="dark"] .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="dark"] .card-group>.card:not(:first-child) .card-img-top,:root[mode="dark"] .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}:root[mode="dark"] .card-group>.card:not(:first-child) .card-img-bottom,:root[mode="dark"] .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}:root[mode="dark"] .card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){:root[mode="dark"] .card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}:root[mode="dark"] .card-columns .card{display:inline-block;width:100%}}:root[mode="dark"] .accordion{overflow-anchor:none}:root[mode="dark"] .accordion>.card{overflow:hidden}:root[mode="dark"] .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}:root[mode="dark"] .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}:root[mode="dark"] .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}:root[mode="dark"] .breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#444;border-radius:0.25rem}:root[mode="dark"] .breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}:root[mode="dark"] .breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:0.5rem;color:#888;content:"/"}:root[mode="dark"] .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}:root[mode="dark"] .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}:root[mode="dark"] .breadcrumb-item.active{color:#888}:root[mode="dark"] .pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}:root[mode="dark"] .page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:0;line-height:1.25;color:#fff;background-color:#00bc8c;border:0 solid transparent}:root[mode="dark"] .page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:#00efb2;border-color:transparent}:root[mode="dark"] .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}:root[mode="dark"] .page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}:root[mode="dark"] .page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}:root[mode="dark"] .page-item.active .page-link{z-index:3;color:#fff;background-color:#00efb2;border-color:transparent}:root[mode="dark"] .page-item.disabled .page-link{color:#fff;pointer-events:none;cursor:auto;background-color:#007053;border-color:transparent}:root[mode="dark"] .pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.171875rem;line-height:1.5}:root[mode="dark"] .pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}:root[mode="dark"] .pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}:root[mode="dark"] .pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5}:root[mode="dark"] .pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}:root[mode="dark"] .pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}:root[mode="dark"] .badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .badge{transition:none}}:root[mode="dark"] a.badge:hover,:root[mode="dark"] a.badge:focus{text-decoration:none}:root[mode="dark"] .badge:empty{display:none}:root[mode="dark"] .btn .badge{position:relative;top:-1px}:root[mode="dark"] .badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}:root[mode="dark"] .badge-primary{color:#fff;background-color:#375a7f}:root[mode="dark"] a.badge-primary:hover,:root[mode="dark"] a.badge-primary:focus{color:#fff;background-color:#28415b}:root[mode="dark"] a.badge-primary:focus,:root[mode="dark"] a.badge-primary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5)}:root[mode="dark"] .badge-secondary{color:#fff;background-color:#444}:root[mode="dark"] a.badge-secondary:hover,:root[mode="dark"] a.badge-secondary:focus{color:#fff;background-color:#2b2b2b}:root[mode="dark"] a.badge-secondary:focus,:root[mode="dark"] a.badge-secondary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5)}:root[mode="dark"] .badge-success{color:#fff;background-color:#00bc8c}:root[mode="dark"] a.badge-success:hover,:root[mode="dark"] a.badge-success:focus{color:#fff;background-color:#008966}:root[mode="dark"] a.badge-success:focus,:root[mode="dark"] a.badge-success.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5)}:root[mode="dark"] .badge-info{color:#fff;background-color:#3498db}:root[mode="dark"] a.badge-info:hover,:root[mode="dark"] a.badge-info:focus{color:#fff;background-color:#217dbb}:root[mode="dark"] a.badge-info:focus,:root[mode="dark"] a.badge-info.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}:root[mode="dark"] .badge-warning{color:#fff;background-color:#f39c12}:root[mode="dark"] a.badge-warning:hover,:root[mode="dark"] a.badge-warning:focus{color:#fff;background-color:#c87f0a}:root[mode="dark"] a.badge-warning:focus,:root[mode="dark"] a.badge-warning.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}:root[mode="dark"] .badge-danger{color:#fff;background-color:#e74c3c}:root[mode="dark"] a.badge-danger:hover,:root[mode="dark"] a.badge-danger:focus{color:#fff;background-color:#d62c1a}:root[mode="dark"] a.badge-danger:focus,:root[mode="dark"] a.badge-danger.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}:root[mode="dark"] .badge-light{color:#222;background-color:#adb5bd}:root[mode="dark"] a.badge-light:hover,:root[mode="dark"] a.badge-light:focus{color:#222;background-color:#919ca6}:root[mode="dark"] a.badge-light:focus,:root[mode="dark"] a.badge-light.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5)}:root[mode="dark"] .badge-dark{color:#fff;background-color:#303030}:root[mode="dark"] a.badge-dark:hover,:root[mode="dark"] a.badge-dark:focus{color:#fff;background-color:#171717}:root[mode="dark"] a.badge-dark:focus,:root[mode="dark"] a.badge-dark.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5)}:root[mode="dark"] .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#303030;border-radius:0.3rem}@media (min-width: 576px){:root[mode="dark"] .jumbotron{padding:4rem 2rem}}:root[mode="dark"] .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}:root[mode="dark"] .alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}:root[mode="dark"] .alert-heading{color:inherit}:root[mode="dark"] .alert-link{font-weight:700}:root[mode="dark"] .alert-dismissible{padding-right:3.90625rem}:root[mode="dark"] .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:0.75rem 1.25rem;color:inherit}:root[mode="dark"] .alert-primary{color:#1d2f42;background-color:#d7dee5;border-color:#c7d1db}:root[mode="dark"] .alert-primary hr{border-top-color:#b7c4d1}:root[mode="dark"] .alert-primary .alert-link{color:#0d161f}:root[mode="dark"] .alert-secondary{color:#232323;background-color:#dadada;border-color:#cbcbcb}:root[mode="dark"] .alert-secondary hr{border-top-color:#bebebe}:root[mode="dark"] .alert-secondary .alert-link{color:#0a0a0a}:root[mode="dark"] .alert-success{color:#006249;background-color:#ccf2e8;border-color:#b8ecdf}:root[mode="dark"] .alert-success hr{border-top-color:#a4e7d6}:root[mode="dark"] .alert-success .alert-link{color:#002f23}:root[mode="dark"] .alert-info{color:#1b4f72;background-color:#d6eaf8;border-color:#c6e2f5}:root[mode="dark"] .alert-info hr{border-top-color:#b0d7f1}:root[mode="dark"] .alert-info .alert-link{color:#113249}:root[mode="dark"] .alert-warning{color:#7e5109;background-color:#fdebd0;border-color:#fce3bd}:root[mode="dark"] .alert-warning hr{border-top-color:#fbd9a5}:root[mode="dark"] .alert-warning .alert-link{color:#4e3206}:root[mode="dark"] .alert-danger{color:#78281f;background-color:#fadbd8;border-color:#f8cdc8}:root[mode="dark"] .alert-danger hr{border-top-color:#f5b8b1}:root[mode="dark"] .alert-danger .alert-link{color:#4f1a15}:root[mode="dark"] .alert-light{color:#5a5e62;background-color:#eff0f2;border-color:#e8eaed}:root[mode="dark"] .alert-light hr{border-top-color:#dadde2}:root[mode="dark"] .alert-light .alert-link{color:#424547}:root[mode="dark"] .alert-dark{color:#191919;background-color:#d6d6d6;border-color:#c5c5c5}:root[mode="dark"] .alert-dark hr{border-top-color:#b8b8b8}:root[mode="dark"] .alert-dark .alert-link{color:black}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}:root[mode="dark"] .progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.703125rem;background-color:#444;border-radius:0.25rem}:root[mode="dark"] .progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#375a7f;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .progress-bar{transition:none}}:root[mode="dark"] .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}:root[mode="dark"] .progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .progress-bar-animated{-webkit-animation:none;animation:none}}:root[mode="dark"] .media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}:root[mode="dark"] .media-body{-ms-flex:1;flex:1}:root[mode="dark"] .list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}:root[mode="dark"] .list-group-item-action{width:100%;color:#444;text-align:inherit}:root[mode="dark"] .list-group-item-action:hover,:root[mode="dark"] .list-group-item-action:focus{z-index:1;color:#444;text-decoration:none;background-color:#444}:root[mode="dark"] .list-group-item-action:active{color:#fff;background-color:#ebebeb}:root[mode="dark"] .list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#303030;border:1px solid #444}:root[mode="dark"] .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:root[mode="dark"] .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}:root[mode="dark"] .list-group-item.disabled,:root[mode="dark"] .list-group-item:disabled{color:#888;pointer-events:none;background-color:#303030}:root[mode="dark"] .list-group-item.active{z-index:2;color:#fff;background-color:#375a7f;border-color:#375a7f}:root[mode="dark"] .list-group-item+.list-group-item{border-top-width:0}:root[mode="dark"] .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}:root[mode="dark"] .list-group-horizontal{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="dark"] .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="dark"] .list-group-horizontal>.list-group-item.active{margin-top:0}:root[mode="dark"] .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="dark"] .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){:root[mode="dark"] .list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="dark"] .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="dark"] .list-group-horizontal-sm>.list-group-item.active{margin-top:0}:root[mode="dark"] .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="dark"] .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){:root[mode="dark"] .list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="dark"] .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="dark"] .list-group-horizontal-md>.list-group-item.active{margin-top:0}:root[mode="dark"] .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="dark"] .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){:root[mode="dark"] .list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="dark"] .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="dark"] .list-group-horizontal-lg>.list-group-item.active{margin-top:0}:root[mode="dark"] .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="dark"] .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){:root[mode="dark"] .list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}:root[mode="dark"] .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="dark"] .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="dark"] .list-group-horizontal-xl>.list-group-item.active{margin-top:0}:root[mode="dark"] .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="dark"] .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}:root[mode="dark"] .list-group-flush{border-radius:0}:root[mode="dark"] .list-group-flush>.list-group-item{border-width:0 0 1px}:root[mode="dark"] .list-group-flush>.list-group-item:last-child{border-bottom-width:0}:root[mode="dark"] .list-group-item-primary{color:#1d2f42;background-color:#c7d1db}:root[mode="dark"] .list-group-item-primary.list-group-item-action:hover,:root[mode="dark"] .list-group-item-primary.list-group-item-action:focus{color:#1d2f42;background-color:#b7c4d1}:root[mode="dark"] .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1d2f42;border-color:#1d2f42}:root[mode="dark"] .list-group-item-secondary{color:#232323;background-color:#cbcbcb}:root[mode="dark"] .list-group-item-secondary.list-group-item-action:hover,:root[mode="dark"] .list-group-item-secondary.list-group-item-action:focus{color:#232323;background-color:#bebebe}:root[mode="dark"] .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#232323;border-color:#232323}:root[mode="dark"] .list-group-item-success{color:#006249;background-color:#b8ecdf}:root[mode="dark"] .list-group-item-success.list-group-item-action:hover,:root[mode="dark"] .list-group-item-success.list-group-item-action:focus{color:#006249;background-color:#a4e7d6}:root[mode="dark"] .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006249;border-color:#006249}:root[mode="dark"] .list-group-item-info{color:#1b4f72;background-color:#c6e2f5}:root[mode="dark"] .list-group-item-info.list-group-item-action:hover,:root[mode="dark"] .list-group-item-info.list-group-item-action:focus{color:#1b4f72;background-color:#b0d7f1}:root[mode="dark"] .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1b4f72;border-color:#1b4f72}:root[mode="dark"] .list-group-item-warning{color:#7e5109;background-color:#fce3bd}:root[mode="dark"] .list-group-item-warning.list-group-item-action:hover,:root[mode="dark"] .list-group-item-warning.list-group-item-action:focus{color:#7e5109;background-color:#fbd9a5}:root[mode="dark"] .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#7e5109;border-color:#7e5109}:root[mode="dark"] .list-group-item-danger{color:#78281f;background-color:#f8cdc8}:root[mode="dark"] .list-group-item-danger.list-group-item-action:hover,:root[mode="dark"] .list-group-item-danger.list-group-item-action:focus{color:#78281f;background-color:#f5b8b1}:root[mode="dark"] .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#78281f;border-color:#78281f}:root[mode="dark"] .list-group-item-light{color:#5a5e62;background-color:#e8eaed}:root[mode="dark"] .list-group-item-light.list-group-item-action:hover,:root[mode="dark"] .list-group-item-light.list-group-item-action:focus{color:#5a5e62;background-color:#dadde2}:root[mode="dark"] .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#5a5e62;border-color:#5a5e62}:root[mode="dark"] .list-group-item-dark{color:#191919;background-color:#c5c5c5}:root[mode="dark"] .list-group-item-dark.list-group-item-action:hover,:root[mode="dark"] .list-group-item-dark.list-group-item-action:focus{color:#191919;background-color:#b8b8b8}:root[mode="dark"] .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#191919;border-color:#191919}:root[mode="dark"] .close{float:right;font-size:1.40625rem;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.5}:root[mode="dark"] .close:hover{color:#fff;text-decoration:none}:root[mode="dark"] .close:not(:disabled):not(.disabled):hover,:root[mode="dark"] .close:not(:disabled):not(.disabled):focus{opacity:.75}:root[mode="dark"] button.close{padding:0;background-color:transparent;border:0}:root[mode="dark"] a.close.disabled{pointer-events:none}:root[mode="dark"] .toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:#444;background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}:root[mode="dark"] .toast:not(:last-child){margin-bottom:0.75rem}:root[mode="dark"] .toast.showing{opacity:1}:root[mode="dark"] .toast.show{display:block;opacity:1}:root[mode="dark"] .toast.hide{display:none}:root[mode="dark"] .toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#888;background-color:#303030;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}:root[mode="dark"] .toast-body{padding:0.75rem}:root[mode="dark"] .modal-open{overflow:hidden}:root[mode="dark"] .modal-open .modal{overflow-x:hidden;overflow-y:auto}:root[mode="dark"] .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}:root[mode="dark"] .modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}:root[mode="dark"] .modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .modal.fade .modal-dialog{transition:none}}:root[mode="dark"] .modal.show .modal-dialog{-webkit-transform:none;transform:none}:root[mode="dark"] .modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}:root[mode="dark"] .modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}:root[mode="dark"] .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}:root[mode="dark"] .modal-dialog-scrollable .modal-header,:root[mode="dark"] .modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}:root[mode="dark"] .modal-dialog-scrollable .modal-body{overflow-y:auto}:root[mode="dark"] .modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}:root[mode="dark"] .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}:root[mode="dark"] .modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}:root[mode="dark"] .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}:root[mode="dark"] .modal-dialog-centered.modal-dialog-scrollable::before{content:none}:root[mode="dark"] .modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#303030;background-clip:padding-box;border:1px solid #444;border-radius:0.3rem;outline:0}:root[mode="dark"] .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}:root[mode="dark"] .modal-backdrop.fade{opacity:0}:root[mode="dark"] .modal-backdrop.show{opacity:0.5}:root[mode="dark"] .modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #444;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}:root[mode="dark"] .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}:root[mode="dark"] .modal-title{margin-bottom:0;line-height:1.5}:root[mode="dark"] .modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}:root[mode="dark"] .modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #444;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}:root[mode="dark"] .modal-footer>*{margin:0.25rem}:root[mode="dark"] .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){:root[mode="dark"] .modal-dialog{max-width:500px;margin:1.75rem auto}:root[mode="dark"] .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}:root[mode="dark"] .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}:root[mode="dark"] .modal-dialog-centered{min-height:calc(100% - 3.5rem)}:root[mode="dark"] .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}:root[mode="dark"] .modal-sm{max-width:300px}}@media (min-width: 992px){:root[mode="dark"] .modal-lg,:root[mode="dark"] .modal-xl{max-width:800px}}@media (min-width: 1200px){:root[mode="dark"] .modal-xl{max-width:1140px}}:root[mode="dark"] .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;opacity:0}:root[mode="dark"] .tooltip.show{opacity:0.9}:root[mode="dark"] .tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}:root[mode="dark"] .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}:root[mode="dark"] .bs-tooltip-top,:root[mode="dark"] .bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}:root[mode="dark"] .bs-tooltip-top .arrow,:root[mode="dark"] .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}:root[mode="dark"] .bs-tooltip-top .arrow::before,:root[mode="dark"] .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}:root[mode="dark"] .bs-tooltip-right,:root[mode="dark"] .bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}:root[mode="dark"] .bs-tooltip-right .arrow,:root[mode="dark"] .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}:root[mode="dark"] .bs-tooltip-right .arrow::before,:root[mode="dark"] .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}:root[mode="dark"] .bs-tooltip-bottom,:root[mode="dark"] .bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}:root[mode="dark"] .bs-tooltip-bottom .arrow,:root[mode="dark"] .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}:root[mode="dark"] .bs-tooltip-bottom .arrow::before,:root[mode="dark"] .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}:root[mode="dark"] .bs-tooltip-left,:root[mode="dark"] .bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}:root[mode="dark"] .bs-tooltip-left .arrow,:root[mode="dark"] .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}:root[mode="dark"] .bs-tooltip-left .arrow::before,:root[mode="dark"] .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}:root[mode="dark"] .tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}:root[mode="dark"] .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;background-color:#303030;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}:root[mode="dark"] .popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}:root[mode="dark"] .popover .arrow::before,:root[mode="dark"] .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}:root[mode="dark"] .bs-popover-top,:root[mode="dark"] .bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}:root[mode="dark"] .bs-popover-top>.arrow,:root[mode="dark"] .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}:root[mode="dark"] .bs-popover-top>.arrow::before,:root[mode="dark"] .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}:root[mode="dark"] .bs-popover-top>.arrow::after,:root[mode="dark"] .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#303030}:root[mode="dark"] .bs-popover-right,:root[mode="dark"] .bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}:root[mode="dark"] .bs-popover-right>.arrow,:root[mode="dark"] .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}:root[mode="dark"] .bs-popover-right>.arrow::before,:root[mode="dark"] .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}:root[mode="dark"] .bs-popover-right>.arrow::after,:root[mode="dark"] .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#303030}:root[mode="dark"] .bs-popover-bottom,:root[mode="dark"] .bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}:root[mode="dark"] .bs-popover-bottom>.arrow,:root[mode="dark"] .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}:root[mode="dark"] .bs-popover-bottom>.arrow::before,:root[mode="dark"] .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}:root[mode="dark"] .bs-popover-bottom>.arrow::after,:root[mode="dark"] .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#303030}:root[mode="dark"] .bs-popover-bottom .popover-header::before,:root[mode="dark"] .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #444}:root[mode="dark"] .bs-popover-left,:root[mode="dark"] .bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}:root[mode="dark"] .bs-popover-left>.arrow,:root[mode="dark"] .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}:root[mode="dark"] .bs-popover-left>.arrow::before,:root[mode="dark"] .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}:root[mode="dark"] .bs-popover-left>.arrow::after,:root[mode="dark"] .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#303030}:root[mode="dark"] .popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:0.9375rem;background-color:#444;border-bottom:1px solid #373737;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}:root[mode="dark"] .popover-header:empty{display:none}:root[mode="dark"] .popover-body{padding:0.5rem 0.75rem;color:#fff}:root[mode="dark"] .carousel{position:relative}:root[mode="dark"] .carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}:root[mode="dark"] .carousel-inner{position:relative;width:100%;overflow:hidden}:root[mode="dark"] .carousel-inner::after{display:block;clear:both;content:""}:root[mode="dark"] .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .carousel-item{transition:none}}:root[mode="dark"] .carousel-item.active,:root[mode="dark"] .carousel-item-next,:root[mode="dark"] .carousel-item-prev{display:block}:root[mode="dark"] .carousel-item-next:not(.carousel-item-left),:root[mode="dark"] .active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}:root[mode="dark"] .carousel-item-prev:not(.carousel-item-right),:root[mode="dark"] .active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}:root[mode="dark"] .carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}:root[mode="dark"] .carousel-fade .carousel-item.active,:root[mode="dark"] .carousel-fade .carousel-item-next.carousel-item-left,:root[mode="dark"] .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}:root[mode="dark"] .carousel-fade .active.carousel-item-left,:root[mode="dark"] .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .carousel-fade .active.carousel-item-left,:root[mode="dark"] .carousel-fade .active.carousel-item-right{transition:none}}:root[mode="dark"] .carousel-control-prev,:root[mode="dark"] .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .carousel-control-prev,:root[mode="dark"] .carousel-control-next{transition:none}}:root[mode="dark"] .carousel-control-prev:hover,:root[mode="dark"] .carousel-control-prev:focus,:root[mode="dark"] .carousel-control-next:hover,:root[mode="dark"] .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}:root[mode="dark"] .carousel-control-prev{left:0}:root[mode="dark"] .carousel-control-next{right:0}:root[mode="dark"] .carousel-control-prev-icon,:root[mode="dark"] .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}:root[mode="dark"] .carousel-control-prev-icon{background-image:url('+$+')}:root[mode="dark"] .carousel-control-next-icon{background-image:url('+D+')}:root[mode="dark"] .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}:root[mode="dark"] .carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .carousel-indicators li{transition:none}}:root[mode="dark"] .carousel-indicators .active{opacity:1}:root[mode="dark"] .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}:root[mode="dark"] .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}:root[mode="dark"] .spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}:root[mode="dark"] .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}:root[mode="dark"] .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){:root[mode="dark"] .spinner-border,:root[mode="dark"] .spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}:root[mode="dark"] .align-baseline{vertical-align:baseline !important}:root[mode="dark"] .align-top{vertical-align:top !important}:root[mode="dark"] .align-middle{vertical-align:middle !important}:root[mode="dark"] .align-bottom{vertical-align:bottom !important}:root[mode="dark"] .align-text-bottom{vertical-align:text-bottom !important}:root[mode="dark"] .align-text-top{vertical-align:text-top !important}:root[mode="dark"] .bg-primary{background-color:#375a7f !important}:root[mode="dark"] a.bg-primary:hover,:root[mode="dark"] a.bg-primary:focus,:root[mode="dark"] button.bg-primary:hover,:root[mode="dark"] button.bg-primary:focus{background-color:#28415b !important}:root[mode="dark"] .bg-secondary{background-color:#444 !important}:root[mode="dark"] a.bg-secondary:hover,:root[mode="dark"] a.bg-secondary:focus,:root[mode="dark"] button.bg-secondary:hover,:root[mode="dark"] button.bg-secondary:focus{background-color:#2b2b2b !important}:root[mode="dark"] .bg-success{background-color:#00bc8c !important}:root[mode="dark"] a.bg-success:hover,:root[mode="dark"] a.bg-success:focus,:root[mode="dark"] button.bg-success:hover,:root[mode="dark"] button.bg-success:focus{background-color:#008966 !important}:root[mode="dark"] .bg-info{background-color:#3498db !important}:root[mode="dark"] a.bg-info:hover,:root[mode="dark"] a.bg-info:focus,:root[mode="dark"] button.bg-info:hover,:root[mode="dark"] button.bg-info:focus{background-color:#217dbb !important}:root[mode="dark"] .bg-warning{background-color:#f39c12 !important}:root[mode="dark"] a.bg-warning:hover,:root[mode="dark"] a.bg-warning:focus,:root[mode="dark"] button.bg-warning:hover,:root[mode="dark"] button.bg-warning:focus{background-color:#c87f0a !important}:root[mode="dark"] .bg-danger{background-color:#e74c3c !important}:root[mode="dark"] a.bg-danger:hover,:root[mode="dark"] a.bg-danger:focus,:root[mode="dark"] button.bg-danger:hover,:root[mode="dark"] button.bg-danger:focus{background-color:#d62c1a !important}:root[mode="dark"] .bg-light{background-color:#adb5bd !important}:root[mode="dark"] a.bg-light:hover,:root[mode="dark"] a.bg-light:focus,:root[mode="dark"] button.bg-light:hover,:root[mode="dark"] button.bg-light:focus{background-color:#919ca6 !important}:root[mode="dark"] .bg-dark{background-color:#303030 !important}:root[mode="dark"] a.bg-dark:hover,:root[mode="dark"] a.bg-dark:focus,:root[mode="dark"] button.bg-dark:hover,:root[mode="dark"] button.bg-dark:focus{background-color:#171717 !important}:root[mode="dark"] .bg-white{background-color:#fff !important}:root[mode="dark"] .bg-transparent{background-color:transparent !important}:root[mode="dark"] .border{border:1px solid #dee2e6 !important}:root[mode="dark"] .border-top{border-top:1px solid #dee2e6 !important}:root[mode="dark"] .border-right{border-right:1px solid #dee2e6 !important}:root[mode="dark"] .border-bottom{border-bottom:1px solid #dee2e6 !important}:root[mode="dark"] .border-left{border-left:1px solid #dee2e6 !important}:root[mode="dark"] .border-0{border:0 !important}:root[mode="dark"] .border-top-0{border-top:0 !important}:root[mode="dark"] .border-right-0{border-right:0 !important}:root[mode="dark"] .border-bottom-0{border-bottom:0 !important}:root[mode="dark"] .border-left-0{border-left:0 !important}:root[mode="dark"] .border-primary{border-color:#375a7f !important}:root[mode="dark"] .border-secondary{border-color:#444 !important}:root[mode="dark"] .border-success{border-color:#00bc8c !important}:root[mode="dark"] .border-info{border-color:#3498db !important}:root[mode="dark"] .border-warning{border-color:#f39c12 !important}:root[mode="dark"] .border-danger{border-color:#e74c3c !important}:root[mode="dark"] .border-light{border-color:#adb5bd !important}:root[mode="dark"] .border-dark{border-color:#303030 !important}:root[mode="dark"] .border-white{border-color:#fff !important}:root[mode="dark"] .rounded-sm{border-radius:0.2rem !important}:root[mode="dark"] .rounded{border-radius:0.25rem !important}:root[mode="dark"] .rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}:root[mode="dark"] .rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}:root[mode="dark"] .rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}:root[mode="dark"] .rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}:root[mode="dark"] .rounded-lg{border-radius:0.3rem !important}:root[mode="dark"] .rounded-circle{border-radius:50% !important}:root[mode="dark"] .rounded-pill{border-radius:50rem !important}:root[mode="dark"] .rounded-0{border-radius:0 !important}:root[mode="dark"] .clearfix::after{display:block;clear:both;content:""}:root[mode="dark"] .d-none{display:none !important}:root[mode="dark"] .d-inline{display:inline !important}:root[mode="dark"] .d-inline-block{display:inline-block !important}:root[mode="dark"] .d-block{display:block !important}:root[mode="dark"] .d-table{display:table !important}:root[mode="dark"] .d-table-row{display:table-row !important}:root[mode="dark"] .d-table-cell{display:table-cell !important}:root[mode="dark"] .d-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="dark"] .d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){:root[mode="dark"] .d-sm-none{display:none !important}:root[mode="dark"] .d-sm-inline{display:inline !important}:root[mode="dark"] .d-sm-inline-block{display:inline-block !important}:root[mode="dark"] .d-sm-block{display:block !important}:root[mode="dark"] .d-sm-table{display:table !important}:root[mode="dark"] .d-sm-table-row{display:table-row !important}:root[mode="dark"] .d-sm-table-cell{display:table-cell !important}:root[mode="dark"] .d-sm-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="dark"] .d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){:root[mode="dark"] .d-md-none{display:none !important}:root[mode="dark"] .d-md-inline{display:inline !important}:root[mode="dark"] .d-md-inline-block{display:inline-block !important}:root[mode="dark"] .d-md-block{display:block !important}:root[mode="dark"] .d-md-table{display:table !important}:root[mode="dark"] .d-md-table-row{display:table-row !important}:root[mode="dark"] .d-md-table-cell{display:table-cell !important}:root[mode="dark"] .d-md-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="dark"] .d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){:root[mode="dark"] .d-lg-none{display:none !important}:root[mode="dark"] .d-lg-inline{display:inline !important}:root[mode="dark"] .d-lg-inline-block{display:inline-block !important}:root[mode="dark"] .d-lg-block{display:block !important}:root[mode="dark"] .d-lg-table{display:table !important}:root[mode="dark"] .d-lg-table-row{display:table-row !important}:root[mode="dark"] .d-lg-table-cell{display:table-cell !important}:root[mode="dark"] .d-lg-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="dark"] .d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){:root[mode="dark"] .d-xl-none{display:none !important}:root[mode="dark"] .d-xl-inline{display:inline !important}:root[mode="dark"] .d-xl-inline-block{display:inline-block !important}:root[mode="dark"] .d-xl-block{display:block !important}:root[mode="dark"] .d-xl-table{display:table !important}:root[mode="dark"] .d-xl-table-row{display:table-row !important}:root[mode="dark"] .d-xl-table-cell{display:table-cell !important}:root[mode="dark"] .d-xl-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="dark"] .d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{:root[mode="dark"] .d-print-none{display:none !important}:root[mode="dark"] .d-print-inline{display:inline !important}:root[mode="dark"] .d-print-inline-block{display:inline-block !important}:root[mode="dark"] .d-print-block{display:block !important}:root[mode="dark"] .d-print-table{display:table !important}:root[mode="dark"] .d-print-table-row{display:table-row !important}:root[mode="dark"] .d-print-table-cell{display:table-cell !important}:root[mode="dark"] .d-print-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="dark"] .d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}:root[mode="dark"] .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}:root[mode="dark"] .embed-responsive::before{display:block;content:""}:root[mode="dark"] .embed-responsive .embed-responsive-item,:root[mode="dark"] .embed-responsive iframe,:root[mode="dark"] .embed-responsive embed,:root[mode="dark"] .embed-responsive object,:root[mode="dark"] .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}:root[mode="dark"] .embed-responsive-21by9::before{padding-top:42.857143%}:root[mode="dark"] .embed-responsive-16by9::before{padding-top:56.25%}:root[mode="dark"] .embed-responsive-4by3::before{padding-top:75%}:root[mode="dark"] .embed-responsive-1by1::before{padding-top:100%}:root[mode="dark"] .flex-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="dark"] .flex-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="dark"] .flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="dark"] .flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="dark"] .flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="dark"] .flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="dark"] .flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="dark"] .flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="dark"] .flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="dark"] .flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="dark"] .flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="dark"] .flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="dark"] .justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="dark"] .justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="dark"] .justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="dark"] .justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="dark"] .justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="dark"] .align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="dark"] .align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="dark"] .align-items-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="dark"] .align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="dark"] .align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="dark"] .align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="dark"] .align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="dark"] .align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="dark"] .align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="dark"] .align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="dark"] .align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="dark"] .align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="dark"] .align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="dark"] .align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="dark"] .align-self-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="dark"] .align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="dark"] .align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){:root[mode="dark"] .flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="dark"] .flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="dark"] .flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="dark"] .flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="dark"] .flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="dark"] .flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="dark"] .flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="dark"] .flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="dark"] .flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="dark"] .flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="dark"] .flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="dark"] .flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="dark"] .justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="dark"] .justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="dark"] .justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="dark"] .justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="dark"] .justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="dark"] .align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="dark"] .align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="dark"] .align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="dark"] .align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="dark"] .align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="dark"] .align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="dark"] .align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="dark"] .align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="dark"] .align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="dark"] .align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="dark"] .align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="dark"] .align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="dark"] .align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="dark"] .align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="dark"] .align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="dark"] .align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="dark"] .align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){:root[mode="dark"] .flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="dark"] .flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="dark"] .flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="dark"] .flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="dark"] .flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="dark"] .flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="dark"] .flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="dark"] .flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="dark"] .flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="dark"] .flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="dark"] .flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="dark"] .flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="dark"] .justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="dark"] .justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="dark"] .justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="dark"] .justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="dark"] .justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="dark"] .align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="dark"] .align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="dark"] .align-items-md-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="dark"] .align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="dark"] .align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="dark"] .align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="dark"] .align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="dark"] .align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="dark"] .align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="dark"] .align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="dark"] .align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="dark"] .align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="dark"] .align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="dark"] .align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="dark"] .align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="dark"] .align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="dark"] .align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){:root[mode="dark"] .flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="dark"] .flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="dark"] .flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="dark"] .flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="dark"] .flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="dark"] .flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="dark"] .flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="dark"] .flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="dark"] .flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="dark"] .flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="dark"] .flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="dark"] .flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="dark"] .justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="dark"] .justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="dark"] .justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="dark"] .justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="dark"] .justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="dark"] .align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="dark"] .align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="dark"] .align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="dark"] .align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="dark"] .align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="dark"] .align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="dark"] .align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="dark"] .align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="dark"] .align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="dark"] .align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="dark"] .align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="dark"] .align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="dark"] .align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="dark"] .align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="dark"] .align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="dark"] .align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="dark"] .align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){:root[mode="dark"] .flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="dark"] .flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="dark"] .flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="dark"] .flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="dark"] .flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="dark"] .flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="dark"] .flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="dark"] .flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="dark"] .flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="dark"] .flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="dark"] .flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="dark"] .flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="dark"] .justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="dark"] .justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="dark"] .justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="dark"] .justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="dark"] .justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="dark"] .align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="dark"] .align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="dark"] .align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="dark"] .align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="dark"] .align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="dark"] .align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="dark"] .align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="dark"] .align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="dark"] .align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="dark"] .align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="dark"] .align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="dark"] .align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="dark"] .align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="dark"] .align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="dark"] .align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="dark"] .align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="dark"] .align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}:root[mode="dark"] .float-left{float:left !important}:root[mode="dark"] .float-right{float:right !important}:root[mode="dark"] .float-none{float:none !important}@media (min-width: 576px){:root[mode="dark"] .float-sm-left{float:left !important}:root[mode="dark"] .float-sm-right{float:right !important}:root[mode="dark"] .float-sm-none{float:none !important}}@media (min-width: 768px){:root[mode="dark"] .float-md-left{float:left !important}:root[mode="dark"] .float-md-right{float:right !important}:root[mode="dark"] .float-md-none{float:none !important}}@media (min-width: 992px){:root[mode="dark"] .float-lg-left{float:left !important}:root[mode="dark"] .float-lg-right{float:right !important}:root[mode="dark"] .float-lg-none{float:none !important}}@media (min-width: 1200px){:root[mode="dark"] .float-xl-left{float:left !important}:root[mode="dark"] .float-xl-right{float:right !important}:root[mode="dark"] .float-xl-none{float:none !important}}:root[mode="dark"] .user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}:root[mode="dark"] .user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}:root[mode="dark"] .user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}:root[mode="dark"] .overflow-auto{overflow:auto !important}:root[mode="dark"] .overflow-hidden{overflow:hidden !important}:root[mode="dark"] .position-static{position:static !important}:root[mode="dark"] .position-relative{position:relative !important}:root[mode="dark"] .position-absolute{position:absolute !important}:root[mode="dark"] .position-fixed{position:fixed !important}:root[mode="dark"] .position-sticky{position:-webkit-sticky !important;position:sticky !important}:root[mode="dark"] .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}:root[mode="dark"] .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){:root[mode="dark"] .sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}:root[mode="dark"] .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}:root[mode="dark"] .sr-only-focusable:active,:root[mode="dark"] .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}:root[mode="dark"] .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}:root[mode="dark"] .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}:root[mode="dark"] .shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}:root[mode="dark"] .shadow-none{box-shadow:none !important}:root[mode="dark"] .w-25{width:25% !important}:root[mode="dark"] .w-50{width:50% !important}:root[mode="dark"] .w-75{width:75% !important}:root[mode="dark"] .w-100{width:100% !important}:root[mode="dark"] .w-auto{width:auto !important}:root[mode="dark"] .h-25{height:25% !important}:root[mode="dark"] .h-50{height:50% !important}:root[mode="dark"] .h-75{height:75% !important}:root[mode="dark"] .h-100{height:100% !important}:root[mode="dark"] .h-auto{height:auto !important}:root[mode="dark"] .mw-100{max-width:100% !important}:root[mode="dark"] .mh-100{max-height:100% !important}:root[mode="dark"] .min-vw-100{min-width:100vw !important}:root[mode="dark"] .min-vh-100{min-height:100vh !important}:root[mode="dark"] .vw-100{width:100vw !important}:root[mode="dark"] .vh-100{height:100vh !important}:root[mode="dark"] .m-0{margin:0 !important}:root[mode="dark"] .mt-0,:root[mode="dark"] .my-0{margin-top:0 !important}:root[mode="dark"] .mr-0,:root[mode="dark"] .mx-0{margin-right:0 !important}:root[mode="dark"] .mb-0,:root[mode="dark"] .my-0{margin-bottom:0 !important}:root[mode="dark"] .ml-0,:root[mode="dark"] .mx-0{margin-left:0 !important}:root[mode="dark"] .m-1{margin:0.25rem !important}:root[mode="dark"] .mt-1,:root[mode="dark"] .my-1{margin-top:0.25rem !important}:root[mode="dark"] .mr-1,:root[mode="dark"] .mx-1{margin-right:0.25rem !important}:root[mode="dark"] .mb-1,:root[mode="dark"] .my-1{margin-bottom:0.25rem !important}:root[mode="dark"] .ml-1,:root[mode="dark"] .mx-1{margin-left:0.25rem !important}:root[mode="dark"] .m-2{margin:0.5rem !important}:root[mode="dark"] .mt-2,:root[mode="dark"] .my-2{margin-top:0.5rem !important}:root[mode="dark"] .mr-2,:root[mode="dark"] .mx-2{margin-right:0.5rem !important}:root[mode="dark"] .mb-2,:root[mode="dark"] .my-2{margin-bottom:0.5rem !important}:root[mode="dark"] .ml-2,:root[mode="dark"] .mx-2{margin-left:0.5rem !important}:root[mode="dark"] .m-3{margin:1rem !important}:root[mode="dark"] .mt-3,:root[mode="dark"] .my-3{margin-top:1rem !important}:root[mode="dark"] .mr-3,:root[mode="dark"] .mx-3{margin-right:1rem !important}:root[mode="dark"] .mb-3,:root[mode="dark"] .my-3{margin-bottom:1rem !important}:root[mode="dark"] .ml-3,:root[mode="dark"] .mx-3{margin-left:1rem !important}:root[mode="dark"] .m-4{margin:1.5rem !important}:root[mode="dark"] .mt-4,:root[mode="dark"] .my-4{margin-top:1.5rem !important}:root[mode="dark"] .mr-4,:root[mode="dark"] .mx-4{margin-right:1.5rem !important}:root[mode="dark"] .mb-4,:root[mode="dark"] .my-4{margin-bottom:1.5rem !important}:root[mode="dark"] .ml-4,:root[mode="dark"] .mx-4{margin-left:1.5rem !important}:root[mode="dark"] .m-5{margin:3rem !important}:root[mode="dark"] .mt-5,:root[mode="dark"] .my-5{margin-top:3rem !important}:root[mode="dark"] .mr-5,:root[mode="dark"] .mx-5{margin-right:3rem !important}:root[mode="dark"] .mb-5,:root[mode="dark"] .my-5{margin-bottom:3rem !important}:root[mode="dark"] .ml-5,:root[mode="dark"] .mx-5{margin-left:3rem !important}:root[mode="dark"] .p-0{padding:0 !important}:root[mode="dark"] .pt-0,:root[mode="dark"] .py-0{padding-top:0 !important}:root[mode="dark"] .pr-0,:root[mode="dark"] .px-0{padding-right:0 !important}:root[mode="dark"] .pb-0,:root[mode="dark"] .py-0{padding-bottom:0 !important}:root[mode="dark"] .pl-0,:root[mode="dark"] .px-0{padding-left:0 !important}:root[mode="dark"] .p-1{padding:0.25rem !important}:root[mode="dark"] .pt-1,:root[mode="dark"] .py-1{padding-top:0.25rem !important}:root[mode="dark"] .pr-1,:root[mode="dark"] .px-1{padding-right:0.25rem !important}:root[mode="dark"] .pb-1,:root[mode="dark"] .py-1{padding-bottom:0.25rem !important}:root[mode="dark"] .pl-1,:root[mode="dark"] .px-1{padding-left:0.25rem !important}:root[mode="dark"] .p-2{padding:0.5rem !important}:root[mode="dark"] .pt-2,:root[mode="dark"] .py-2{padding-top:0.5rem !important}:root[mode="dark"] .pr-2,:root[mode="dark"] .px-2{padding-right:0.5rem !important}:root[mode="dark"] .pb-2,:root[mode="dark"] .py-2{padding-bottom:0.5rem !important}:root[mode="dark"] .pl-2,:root[mode="dark"] .px-2{padding-left:0.5rem !important}:root[mode="dark"] .p-3{padding:1rem !important}:root[mode="dark"] .pt-3,:root[mode="dark"] .py-3{padding-top:1rem !important}:root[mode="dark"] .pr-3,:root[mode="dark"] .px-3{padding-right:1rem !important}:root[mode="dark"] .pb-3,:root[mode="dark"] .py-3{padding-bottom:1rem !important}:root[mode="dark"] .pl-3,:root[mode="dark"] .px-3{padding-left:1rem !important}:root[mode="dark"] .p-4{padding:1.5rem !important}:root[mode="dark"] .pt-4,:root[mode="dark"] .py-4{padding-top:1.5rem !important}:root[mode="dark"] .pr-4,:root[mode="dark"] .px-4{padding-right:1.5rem !important}:root[mode="dark"] .pb-4,:root[mode="dark"] .py-4{padding-bottom:1.5rem !important}:root[mode="dark"] .pl-4,:root[mode="dark"] .px-4{padding-left:1.5rem !important}:root[mode="dark"] .p-5{padding:3rem !important}:root[mode="dark"] .pt-5,:root[mode="dark"] .py-5{padding-top:3rem !important}:root[mode="dark"] .pr-5,:root[mode="dark"] .px-5{padding-right:3rem !important}:root[mode="dark"] .pb-5,:root[mode="dark"] .py-5{padding-bottom:3rem !important}:root[mode="dark"] .pl-5,:root[mode="dark"] .px-5{padding-left:3rem !important}:root[mode="dark"] .m-n1{margin:-0.25rem !important}:root[mode="dark"] .mt-n1,:root[mode="dark"] .my-n1{margin-top:-0.25rem !important}:root[mode="dark"] .mr-n1,:root[mode="dark"] .mx-n1{margin-right:-0.25rem !important}:root[mode="dark"] .mb-n1,:root[mode="dark"] .my-n1{margin-bottom:-0.25rem !important}:root[mode="dark"] .ml-n1,:root[mode="dark"] .mx-n1{margin-left:-0.25rem !important}:root[mode="dark"] .m-n2{margin:-0.5rem !important}:root[mode="dark"] .mt-n2,:root[mode="dark"] .my-n2{margin-top:-0.5rem !important}:root[mode="dark"] .mr-n2,:root[mode="dark"] .mx-n2{margin-right:-0.5rem !important}:root[mode="dark"] .mb-n2,:root[mode="dark"] .my-n2{margin-bottom:-0.5rem !important}:root[mode="dark"] .ml-n2,:root[mode="dark"] .mx-n2{margin-left:-0.5rem !important}:root[mode="dark"] .m-n3{margin:-1rem !important}:root[mode="dark"] .mt-n3,:root[mode="dark"] .my-n3{margin-top:-1rem !important}:root[mode="dark"] .mr-n3,:root[mode="dark"] .mx-n3{margin-right:-1rem !important}:root[mode="dark"] .mb-n3,:root[mode="dark"] .my-n3{margin-bottom:-1rem !important}:root[mode="dark"] .ml-n3,:root[mode="dark"] .mx-n3{margin-left:-1rem !important}:root[mode="dark"] .m-n4{margin:-1.5rem !important}:root[mode="dark"] .mt-n4,:root[mode="dark"] .my-n4{margin-top:-1.5rem !important}:root[mode="dark"] .mr-n4,:root[mode="dark"] .mx-n4{margin-right:-1.5rem !important}:root[mode="dark"] .mb-n4,:root[mode="dark"] .my-n4{margin-bottom:-1.5rem !important}:root[mode="dark"] .ml-n4,:root[mode="dark"] .mx-n4{margin-left:-1.5rem !important}:root[mode="dark"] .m-n5{margin:-3rem !important}:root[mode="dark"] .mt-n5,:root[mode="dark"] .my-n5{margin-top:-3rem !important}:root[mode="dark"] .mr-n5,:root[mode="dark"] .mx-n5{margin-right:-3rem !important}:root[mode="dark"] .mb-n5,:root[mode="dark"] .my-n5{margin-bottom:-3rem !important}:root[mode="dark"] .ml-n5,:root[mode="dark"] .mx-n5{margin-left:-3rem !important}:root[mode="dark"] .m-auto{margin:auto !important}:root[mode="dark"] .mt-auto,:root[mode="dark"] .my-auto{margin-top:auto !important}:root[mode="dark"] .mr-auto,:root[mode="dark"] .mx-auto{margin-right:auto !important}:root[mode="dark"] .mb-auto,:root[mode="dark"] .my-auto{margin-bottom:auto !important}:root[mode="dark"] .ml-auto,:root[mode="dark"] .mx-auto{margin-left:auto !important}@media (min-width: 576px){:root[mode="dark"] .m-sm-0{margin:0 !important}:root[mode="dark"] .mt-sm-0,:root[mode="dark"] .my-sm-0{margin-top:0 !important}:root[mode="dark"] .mr-sm-0,:root[mode="dark"] .mx-sm-0{margin-right:0 !important}:root[mode="dark"] .mb-sm-0,:root[mode="dark"] .my-sm-0{margin-bottom:0 !important}:root[mode="dark"] .ml-sm-0,:root[mode="dark"] .mx-sm-0{margin-left:0 !important}:root[mode="dark"] .m-sm-1{margin:0.25rem !important}:root[mode="dark"] .mt-sm-1,:root[mode="dark"] .my-sm-1{margin-top:0.25rem !important}:root[mode="dark"] .mr-sm-1,:root[mode="dark"] .mx-sm-1{margin-right:0.25rem !important}:root[mode="dark"] .mb-sm-1,:root[mode="dark"] .my-sm-1{margin-bottom:0.25rem !important}:root[mode="dark"] .ml-sm-1,:root[mode="dark"] .mx-sm-1{margin-left:0.25rem !important}:root[mode="dark"] .m-sm-2{margin:0.5rem !important}:root[mode="dark"] .mt-sm-2,:root[mode="dark"] .my-sm-2{margin-top:0.5rem !important}:root[mode="dark"] .mr-sm-2,:root[mode="dark"] .mx-sm-2{margin-right:0.5rem !important}:root[mode="dark"] .mb-sm-2,:root[mode="dark"] .my-sm-2{margin-bottom:0.5rem !important}:root[mode="dark"] .ml-sm-2,:root[mode="dark"] .mx-sm-2{margin-left:0.5rem !important}:root[mode="dark"] .m-sm-3{margin:1rem !important}:root[mode="dark"] .mt-sm-3,:root[mode="dark"] .my-sm-3{margin-top:1rem !important}:root[mode="dark"] .mr-sm-3,:root[mode="dark"] .mx-sm-3{margin-right:1rem !important}:root[mode="dark"] .mb-sm-3,:root[mode="dark"] .my-sm-3{margin-bottom:1rem !important}:root[mode="dark"] .ml-sm-3,:root[mode="dark"] .mx-sm-3{margin-left:1rem !important}:root[mode="dark"] .m-sm-4{margin:1.5rem !important}:root[mode="dark"] .mt-sm-4,:root[mode="dark"] .my-sm-4{margin-top:1.5rem !important}:root[mode="dark"] .mr-sm-4,:root[mode="dark"] .mx-sm-4{margin-right:1.5rem !important}:root[mode="dark"] .mb-sm-4,:root[mode="dark"] .my-sm-4{margin-bottom:1.5rem !important}:root[mode="dark"] .ml-sm-4,:root[mode="dark"] .mx-sm-4{margin-left:1.5rem !important}:root[mode="dark"] .m-sm-5{margin:3rem !important}:root[mode="dark"] .mt-sm-5,:root[mode="dark"] .my-sm-5{margin-top:3rem !important}:root[mode="dark"] .mr-sm-5,:root[mode="dark"] .mx-sm-5{margin-right:3rem !important}:root[mode="dark"] .mb-sm-5,:root[mode="dark"] .my-sm-5{margin-bottom:3rem !important}:root[mode="dark"] .ml-sm-5,:root[mode="dark"] .mx-sm-5{margin-left:3rem !important}:root[mode="dark"] .p-sm-0{padding:0 !important}:root[mode="dark"] .pt-sm-0,:root[mode="dark"] .py-sm-0{padding-top:0 !important}:root[mode="dark"] .pr-sm-0,:root[mode="dark"] .px-sm-0{padding-right:0 !important}:root[mode="dark"] .pb-sm-0,:root[mode="dark"] .py-sm-0{padding-bottom:0 !important}:root[mode="dark"] .pl-sm-0,:root[mode="dark"] .px-sm-0{padding-left:0 !important}:root[mode="dark"] .p-sm-1{padding:0.25rem !important}:root[mode="dark"] .pt-sm-1,:root[mode="dark"] .py-sm-1{padding-top:0.25rem !important}:root[mode="dark"] .pr-sm-1,:root[mode="dark"] .px-sm-1{padding-right:0.25rem !important}:root[mode="dark"] .pb-sm-1,:root[mode="dark"] .py-sm-1{padding-bottom:0.25rem !important}:root[mode="dark"] .pl-sm-1,:root[mode="dark"] .px-sm-1{padding-left:0.25rem !important}:root[mode="dark"] .p-sm-2{padding:0.5rem !important}:root[mode="dark"] .pt-sm-2,:root[mode="dark"] .py-sm-2{padding-top:0.5rem !important}:root[mode="dark"] .pr-sm-2,:root[mode="dark"] .px-sm-2{padding-right:0.5rem !important}:root[mode="dark"] .pb-sm-2,:root[mode="dark"] .py-sm-2{padding-bottom:0.5rem !important}:root[mode="dark"] .pl-sm-2,:root[mode="dark"] .px-sm-2{padding-left:0.5rem !important}:root[mode="dark"] .p-sm-3{padding:1rem !important}:root[mode="dark"] .pt-sm-3,:root[mode="dark"] .py-sm-3{padding-top:1rem !important}:root[mode="dark"] .pr-sm-3,:root[mode="dark"] .px-sm-3{padding-right:1rem !important}:root[mode="dark"] .pb-sm-3,:root[mode="dark"] .py-sm-3{padding-bottom:1rem !important}:root[mode="dark"] .pl-sm-3,:root[mode="dark"] .px-sm-3{padding-left:1rem !important}:root[mode="dark"] .p-sm-4{padding:1.5rem !important}:root[mode="dark"] .pt-sm-4,:root[mode="dark"] .py-sm-4{padding-top:1.5rem !important}:root[mode="dark"] .pr-sm-4,:root[mode="dark"] .px-sm-4{padding-right:1.5rem !important}:root[mode="dark"] .pb-sm-4,:root[mode="dark"] .py-sm-4{padding-bottom:1.5rem !important}:root[mode="dark"] .pl-sm-4,:root[mode="dark"] .px-sm-4{padding-left:1.5rem !important}:root[mode="dark"] .p-sm-5{padding:3rem !important}:root[mode="dark"] .pt-sm-5,:root[mode="dark"] .py-sm-5{padding-top:3rem !important}:root[mode="dark"] .pr-sm-5,:root[mode="dark"] .px-sm-5{padding-right:3rem !important}:root[mode="dark"] .pb-sm-5,:root[mode="dark"] .py-sm-5{padding-bottom:3rem !important}:root[mode="dark"] .pl-sm-5,:root[mode="dark"] .px-sm-5{padding-left:3rem !important}:root[mode="dark"] .m-sm-n1{margin:-0.25rem !important}:root[mode="dark"] .mt-sm-n1,:root[mode="dark"] .my-sm-n1{margin-top:-0.25rem !important}:root[mode="dark"] .mr-sm-n1,:root[mode="dark"] .mx-sm-n1{margin-right:-0.25rem !important}:root[mode="dark"] .mb-sm-n1,:root[mode="dark"] .my-sm-n1{margin-bottom:-0.25rem !important}:root[mode="dark"] .ml-sm-n1,:root[mode="dark"] .mx-sm-n1{margin-left:-0.25rem !important}:root[mode="dark"] .m-sm-n2{margin:-0.5rem !important}:root[mode="dark"] .mt-sm-n2,:root[mode="dark"] .my-sm-n2{margin-top:-0.5rem !important}:root[mode="dark"] .mr-sm-n2,:root[mode="dark"] .mx-sm-n2{margin-right:-0.5rem !important}:root[mode="dark"] .mb-sm-n2,:root[mode="dark"] .my-sm-n2{margin-bottom:-0.5rem !important}:root[mode="dark"] .ml-sm-n2,:root[mode="dark"] .mx-sm-n2{margin-left:-0.5rem !important}:root[mode="dark"] .m-sm-n3{margin:-1rem !important}:root[mode="dark"] .mt-sm-n3,:root[mode="dark"] .my-sm-n3{margin-top:-1rem !important}:root[mode="dark"] .mr-sm-n3,:root[mode="dark"] .mx-sm-n3{margin-right:-1rem !important}:root[mode="dark"] .mb-sm-n3,:root[mode="dark"] .my-sm-n3{margin-bottom:-1rem !important}:root[mode="dark"] .ml-sm-n3,:root[mode="dark"] .mx-sm-n3{margin-left:-1rem !important}:root[mode="dark"] .m-sm-n4{margin:-1.5rem !important}:root[mode="dark"] .mt-sm-n4,:root[mode="dark"] .my-sm-n4{margin-top:-1.5rem !important}:root[mode="dark"] .mr-sm-n4,:root[mode="dark"] .mx-sm-n4{margin-right:-1.5rem !important}:root[mode="dark"] .mb-sm-n4,:root[mode="dark"] .my-sm-n4{margin-bottom:-1.5rem !important}:root[mode="dark"] .ml-sm-n4,:root[mode="dark"] .mx-sm-n4{margin-left:-1.5rem !important}:root[mode="dark"] .m-sm-n5{margin:-3rem !important}:root[mode="dark"] .mt-sm-n5,:root[mode="dark"] .my-sm-n5{margin-top:-3rem !important}:root[mode="dark"] .mr-sm-n5,:root[mode="dark"] .mx-sm-n5{margin-right:-3rem !important}:root[mode="dark"] .mb-sm-n5,:root[mode="dark"] .my-sm-n5{margin-bottom:-3rem !important}:root[mode="dark"] .ml-sm-n5,:root[mode="dark"] .mx-sm-n5{margin-left:-3rem !important}:root[mode="dark"] .m-sm-auto{margin:auto !important}:root[mode="dark"] .mt-sm-auto,:root[mode="dark"] .my-sm-auto{margin-top:auto !important}:root[mode="dark"] .mr-sm-auto,:root[mode="dark"] .mx-sm-auto{margin-right:auto !important}:root[mode="dark"] .mb-sm-auto,:root[mode="dark"] .my-sm-auto{margin-bottom:auto !important}:root[mode="dark"] .ml-sm-auto,:root[mode="dark"] .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){:root[mode="dark"] .m-md-0{margin:0 !important}:root[mode="dark"] .mt-md-0,:root[mode="dark"] .my-md-0{margin-top:0 !important}:root[mode="dark"] .mr-md-0,:root[mode="dark"] .mx-md-0{margin-right:0 !important}:root[mode="dark"] .mb-md-0,:root[mode="dark"] .my-md-0{margin-bottom:0 !important}:root[mode="dark"] .ml-md-0,:root[mode="dark"] .mx-md-0{margin-left:0 !important}:root[mode="dark"] .m-md-1{margin:0.25rem !important}:root[mode="dark"] .mt-md-1,:root[mode="dark"] .my-md-1{margin-top:0.25rem !important}:root[mode="dark"] .mr-md-1,:root[mode="dark"] .mx-md-1{margin-right:0.25rem !important}:root[mode="dark"] .mb-md-1,:root[mode="dark"] .my-md-1{margin-bottom:0.25rem !important}:root[mode="dark"] .ml-md-1,:root[mode="dark"] .mx-md-1{margin-left:0.25rem !important}:root[mode="dark"] .m-md-2{margin:0.5rem !important}:root[mode="dark"] .mt-md-2,:root[mode="dark"] .my-md-2{margin-top:0.5rem !important}:root[mode="dark"] .mr-md-2,:root[mode="dark"] .mx-md-2{margin-right:0.5rem !important}:root[mode="dark"] .mb-md-2,:root[mode="dark"] .my-md-2{margin-bottom:0.5rem !important}:root[mode="dark"] .ml-md-2,:root[mode="dark"] .mx-md-2{margin-left:0.5rem !important}:root[mode="dark"] .m-md-3{margin:1rem !important}:root[mode="dark"] .mt-md-3,:root[mode="dark"] .my-md-3{margin-top:1rem !important}:root[mode="dark"] .mr-md-3,:root[mode="dark"] .mx-md-3{margin-right:1rem !important}:root[mode="dark"] .mb-md-3,:root[mode="dark"] .my-md-3{margin-bottom:1rem !important}:root[mode="dark"] .ml-md-3,:root[mode="dark"] .mx-md-3{margin-left:1rem !important}:root[mode="dark"] .m-md-4{margin:1.5rem !important}:root[mode="dark"] .mt-md-4,:root[mode="dark"] .my-md-4{margin-top:1.5rem !important}:root[mode="dark"] .mr-md-4,:root[mode="dark"] .mx-md-4{margin-right:1.5rem !important}:root[mode="dark"] .mb-md-4,:root[mode="dark"] .my-md-4{margin-bottom:1.5rem !important}:root[mode="dark"] .ml-md-4,:root[mode="dark"] .mx-md-4{margin-left:1.5rem !important}:root[mode="dark"] .m-md-5{margin:3rem !important}:root[mode="dark"] .mt-md-5,:root[mode="dark"] .my-md-5{margin-top:3rem !important}:root[mode="dark"] .mr-md-5,:root[mode="dark"] .mx-md-5{margin-right:3rem !important}:root[mode="dark"] .mb-md-5,:root[mode="dark"] .my-md-5{margin-bottom:3rem !important}:root[mode="dark"] .ml-md-5,:root[mode="dark"] .mx-md-5{margin-left:3rem !important}:root[mode="dark"] .p-md-0{padding:0 !important}:root[mode="dark"] .pt-md-0,:root[mode="dark"] .py-md-0{padding-top:0 !important}:root[mode="dark"] .pr-md-0,:root[mode="dark"] .px-md-0{padding-right:0 !important}:root[mode="dark"] .pb-md-0,:root[mode="dark"] .py-md-0{padding-bottom:0 !important}:root[mode="dark"] .pl-md-0,:root[mode="dark"] .px-md-0{padding-left:0 !important}:root[mode="dark"] .p-md-1{padding:0.25rem !important}:root[mode="dark"] .pt-md-1,:root[mode="dark"] .py-md-1{padding-top:0.25rem !important}:root[mode="dark"] .pr-md-1,:root[mode="dark"] .px-md-1{padding-right:0.25rem !important}:root[mode="dark"] .pb-md-1,:root[mode="dark"] .py-md-1{padding-bottom:0.25rem !important}:root[mode="dark"] .pl-md-1,:root[mode="dark"] .px-md-1{padding-left:0.25rem !important}:root[mode="dark"] .p-md-2{padding:0.5rem !important}:root[mode="dark"] .pt-md-2,:root[mode="dark"] .py-md-2{padding-top:0.5rem !important}:root[mode="dark"] .pr-md-2,:root[mode="dark"] .px-md-2{padding-right:0.5rem !important}:root[mode="dark"] .pb-md-2,:root[mode="dark"] .py-md-2{padding-bottom:0.5rem !important}:root[mode="dark"] .pl-md-2,:root[mode="dark"] .px-md-2{padding-left:0.5rem !important}:root[mode="dark"] .p-md-3{padding:1rem !important}:root[mode="dark"] .pt-md-3,:root[mode="dark"] .py-md-3{padding-top:1rem !important}:root[mode="dark"] .pr-md-3,:root[mode="dark"] .px-md-3{padding-right:1rem !important}:root[mode="dark"] .pb-md-3,:root[mode="dark"] .py-md-3{padding-bottom:1rem !important}:root[mode="dark"] .pl-md-3,:root[mode="dark"] .px-md-3{padding-left:1rem !important}:root[mode="dark"] .p-md-4{padding:1.5rem !important}:root[mode="dark"] .pt-md-4,:root[mode="dark"] .py-md-4{padding-top:1.5rem !important}:root[mode="dark"] .pr-md-4,:root[mode="dark"] .px-md-4{padding-right:1.5rem !important}:root[mode="dark"] .pb-md-4,:root[mode="dark"] .py-md-4{padding-bottom:1.5rem !important}:root[mode="dark"] .pl-md-4,:root[mode="dark"] .px-md-4{padding-left:1.5rem !important}:root[mode="dark"] .p-md-5{padding:3rem !important}:root[mode="dark"] .pt-md-5,:root[mode="dark"] .py-md-5{padding-top:3rem !important}:root[mode="dark"] .pr-md-5,:root[mode="dark"] .px-md-5{padding-right:3rem !important}:root[mode="dark"] .pb-md-5,:root[mode="dark"] .py-md-5{padding-bottom:3rem !important}:root[mode="dark"] .pl-md-5,:root[mode="dark"] .px-md-5{padding-left:3rem !important}:root[mode="dark"] .m-md-n1{margin:-0.25rem !important}:root[mode="dark"] .mt-md-n1,:root[mode="dark"] .my-md-n1{margin-top:-0.25rem !important}:root[mode="dark"] .mr-md-n1,:root[mode="dark"] .mx-md-n1{margin-right:-0.25rem !important}:root[mode="dark"] .mb-md-n1,:root[mode="dark"] .my-md-n1{margin-bottom:-0.25rem !important}:root[mode="dark"] .ml-md-n1,:root[mode="dark"] .mx-md-n1{margin-left:-0.25rem !important}:root[mode="dark"] .m-md-n2{margin:-0.5rem !important}:root[mode="dark"] .mt-md-n2,:root[mode="dark"] .my-md-n2{margin-top:-0.5rem !important}:root[mode="dark"] .mr-md-n2,:root[mode="dark"] .mx-md-n2{margin-right:-0.5rem !important}:root[mode="dark"] .mb-md-n2,:root[mode="dark"] .my-md-n2{margin-bottom:-0.5rem !important}:root[mode="dark"] .ml-md-n2,:root[mode="dark"] .mx-md-n2{margin-left:-0.5rem !important}:root[mode="dark"] .m-md-n3{margin:-1rem !important}:root[mode="dark"] .mt-md-n3,:root[mode="dark"] .my-md-n3{margin-top:-1rem !important}:root[mode="dark"] .mr-md-n3,:root[mode="dark"] .mx-md-n3{margin-right:-1rem !important}:root[mode="dark"] .mb-md-n3,:root[mode="dark"] .my-md-n3{margin-bottom:-1rem !important}:root[mode="dark"] .ml-md-n3,:root[mode="dark"] .mx-md-n3{margin-left:-1rem !important}:root[mode="dark"] .m-md-n4{margin:-1.5rem !important}:root[mode="dark"] .mt-md-n4,:root[mode="dark"] .my-md-n4{margin-top:-1.5rem !important}:root[mode="dark"] .mr-md-n4,:root[mode="dark"] .mx-md-n4{margin-right:-1.5rem !important}:root[mode="dark"] .mb-md-n4,:root[mode="dark"] .my-md-n4{margin-bottom:-1.5rem !important}:root[mode="dark"] .ml-md-n4,:root[mode="dark"] .mx-md-n4{margin-left:-1.5rem !important}:root[mode="dark"] .m-md-n5{margin:-3rem !important}:root[mode="dark"] .mt-md-n5,:root[mode="dark"] .my-md-n5{margin-top:-3rem !important}:root[mode="dark"] .mr-md-n5,:root[mode="dark"] .mx-md-n5{margin-right:-3rem !important}:root[mode="dark"] .mb-md-n5,:root[mode="dark"] .my-md-n5{margin-bottom:-3rem !important}:root[mode="dark"] .ml-md-n5,:root[mode="dark"] .mx-md-n5{margin-left:-3rem !important}:root[mode="dark"] .m-md-auto{margin:auto !important}:root[mode="dark"] .mt-md-auto,:root[mode="dark"] .my-md-auto{margin-top:auto !important}:root[mode="dark"] .mr-md-auto,:root[mode="dark"] .mx-md-auto{margin-right:auto !important}:root[mode="dark"] .mb-md-auto,:root[mode="dark"] .my-md-auto{margin-bottom:auto !important}:root[mode="dark"] .ml-md-auto,:root[mode="dark"] .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){:root[mode="dark"] .m-lg-0{margin:0 !important}:root[mode="dark"] .mt-lg-0,:root[mode="dark"] .my-lg-0{margin-top:0 !important}:root[mode="dark"] .mr-lg-0,:root[mode="dark"] .mx-lg-0{margin-right:0 !important}:root[mode="dark"] .mb-lg-0,:root[mode="dark"] .my-lg-0{margin-bottom:0 !important}:root[mode="dark"] .ml-lg-0,:root[mode="dark"] .mx-lg-0{margin-left:0 !important}:root[mode="dark"] .m-lg-1{margin:0.25rem !important}:root[mode="dark"] .mt-lg-1,:root[mode="dark"] .my-lg-1{margin-top:0.25rem !important}:root[mode="dark"] .mr-lg-1,:root[mode="dark"] .mx-lg-1{margin-right:0.25rem !important}:root[mode="dark"] .mb-lg-1,:root[mode="dark"] .my-lg-1{margin-bottom:0.25rem !important}:root[mode="dark"] .ml-lg-1,:root[mode="dark"] .mx-lg-1{margin-left:0.25rem !important}:root[mode="dark"] .m-lg-2{margin:0.5rem !important}:root[mode="dark"] .mt-lg-2,:root[mode="dark"] .my-lg-2{margin-top:0.5rem !important}:root[mode="dark"] .mr-lg-2,:root[mode="dark"] .mx-lg-2{margin-right:0.5rem !important}:root[mode="dark"] .mb-lg-2,:root[mode="dark"] .my-lg-2{margin-bottom:0.5rem !important}:root[mode="dark"] .ml-lg-2,:root[mode="dark"] .mx-lg-2{margin-left:0.5rem !important}:root[mode="dark"] .m-lg-3{margin:1rem !important}:root[mode="dark"] .mt-lg-3,:root[mode="dark"] .my-lg-3{margin-top:1rem !important}:root[mode="dark"] .mr-lg-3,:root[mode="dark"] .mx-lg-3{margin-right:1rem !important}:root[mode="dark"] .mb-lg-3,:root[mode="dark"] .my-lg-3{margin-bottom:1rem !important}:root[mode="dark"] .ml-lg-3,:root[mode="dark"] .mx-lg-3{margin-left:1rem !important}:root[mode="dark"] .m-lg-4{margin:1.5rem !important}:root[mode="dark"] .mt-lg-4,:root[mode="dark"] .my-lg-4{margin-top:1.5rem !important}:root[mode="dark"] .mr-lg-4,:root[mode="dark"] .mx-lg-4{margin-right:1.5rem !important}:root[mode="dark"] .mb-lg-4,:root[mode="dark"] .my-lg-4{margin-bottom:1.5rem !important}:root[mode="dark"] .ml-lg-4,:root[mode="dark"] .mx-lg-4{margin-left:1.5rem !important}:root[mode="dark"] .m-lg-5{margin:3rem !important}:root[mode="dark"] .mt-lg-5,:root[mode="dark"] .my-lg-5{margin-top:3rem !important}:root[mode="dark"] .mr-lg-5,:root[mode="dark"] .mx-lg-5{margin-right:3rem !important}:root[mode="dark"] .mb-lg-5,:root[mode="dark"] .my-lg-5{margin-bottom:3rem !important}:root[mode="dark"] .ml-lg-5,:root[mode="dark"] .mx-lg-5{margin-left:3rem !important}:root[mode="dark"] .p-lg-0{padding:0 !important}:root[mode="dark"] .pt-lg-0,:root[mode="dark"] .py-lg-0{padding-top:0 !important}:root[mode="dark"] .pr-lg-0,:root[mode="dark"] .px-lg-0{padding-right:0 !important}:root[mode="dark"] .pb-lg-0,:root[mode="dark"] .py-lg-0{padding-bottom:0 !important}:root[mode="dark"] .pl-lg-0,:root[mode="dark"] .px-lg-0{padding-left:0 !important}:root[mode="dark"] .p-lg-1{padding:0.25rem !important}:root[mode="dark"] .pt-lg-1,:root[mode="dark"] .py-lg-1{padding-top:0.25rem !important}:root[mode="dark"] .pr-lg-1,:root[mode="dark"] .px-lg-1{padding-right:0.25rem !important}:root[mode="dark"] .pb-lg-1,:root[mode="dark"] .py-lg-1{padding-bottom:0.25rem !important}:root[mode="dark"] .pl-lg-1,:root[mode="dark"] .px-lg-1{padding-left:0.25rem !important}:root[mode="dark"] .p-lg-2{padding:0.5rem !important}:root[mode="dark"] .pt-lg-2,:root[mode="dark"] .py-lg-2{padding-top:0.5rem !important}:root[mode="dark"] .pr-lg-2,:root[mode="dark"] .px-lg-2{padding-right:0.5rem !important}:root[mode="dark"] .pb-lg-2,:root[mode="dark"] .py-lg-2{padding-bottom:0.5rem !important}:root[mode="dark"] .pl-lg-2,:root[mode="dark"] .px-lg-2{padding-left:0.5rem !important}:root[mode="dark"] .p-lg-3{padding:1rem !important}:root[mode="dark"] .pt-lg-3,:root[mode="dark"] .py-lg-3{padding-top:1rem !important}:root[mode="dark"] .pr-lg-3,:root[mode="dark"] .px-lg-3{padding-right:1rem !important}:root[mode="dark"] .pb-lg-3,:root[mode="dark"] .py-lg-3{padding-bottom:1rem !important}:root[mode="dark"] .pl-lg-3,:root[mode="dark"] .px-lg-3{padding-left:1rem !important}:root[mode="dark"] .p-lg-4{padding:1.5rem !important}:root[mode="dark"] .pt-lg-4,:root[mode="dark"] .py-lg-4{padding-top:1.5rem !important}:root[mode="dark"] .pr-lg-4,:root[mode="dark"] .px-lg-4{padding-right:1.5rem !important}:root[mode="dark"] .pb-lg-4,:root[mode="dark"] .py-lg-4{padding-bottom:1.5rem !important}:root[mode="dark"] .pl-lg-4,:root[mode="dark"] .px-lg-4{padding-left:1.5rem !important}:root[mode="dark"] .p-lg-5{padding:3rem !important}:root[mode="dark"] .pt-lg-5,:root[mode="dark"] .py-lg-5{padding-top:3rem !important}:root[mode="dark"] .pr-lg-5,:root[mode="dark"] .px-lg-5{padding-right:3rem !important}:root[mode="dark"] .pb-lg-5,:root[mode="dark"] .py-lg-5{padding-bottom:3rem !important}:root[mode="dark"] .pl-lg-5,:root[mode="dark"] .px-lg-5{padding-left:3rem !important}:root[mode="dark"] .m-lg-n1{margin:-0.25rem !important}:root[mode="dark"] .mt-lg-n1,:root[mode="dark"] .my-lg-n1{margin-top:-0.25rem !important}:root[mode="dark"] .mr-lg-n1,:root[mode="dark"] .mx-lg-n1{margin-right:-0.25rem !important}:root[mode="dark"] .mb-lg-n1,:root[mode="dark"] .my-lg-n1{margin-bottom:-0.25rem !important}:root[mode="dark"] .ml-lg-n1,:root[mode="dark"] .mx-lg-n1{margin-left:-0.25rem !important}:root[mode="dark"] .m-lg-n2{margin:-0.5rem !important}:root[mode="dark"] .mt-lg-n2,:root[mode="dark"] .my-lg-n2{margin-top:-0.5rem !important}:root[mode="dark"] .mr-lg-n2,:root[mode="dark"] .mx-lg-n2{margin-right:-0.5rem !important}:root[mode="dark"] .mb-lg-n2,:root[mode="dark"] .my-lg-n2{margin-bottom:-0.5rem !important}:root[mode="dark"] .ml-lg-n2,:root[mode="dark"] .mx-lg-n2{margin-left:-0.5rem !important}:root[mode="dark"] .m-lg-n3{margin:-1rem !important}:root[mode="dark"] .mt-lg-n3,:root[mode="dark"] .my-lg-n3{margin-top:-1rem !important}:root[mode="dark"] .mr-lg-n3,:root[mode="dark"] .mx-lg-n3{margin-right:-1rem !important}:root[mode="dark"] .mb-lg-n3,:root[mode="dark"] .my-lg-n3{margin-bottom:-1rem !important}:root[mode="dark"] .ml-lg-n3,:root[mode="dark"] .mx-lg-n3{margin-left:-1rem !important}:root[mode="dark"] .m-lg-n4{margin:-1.5rem !important}:root[mode="dark"] .mt-lg-n4,:root[mode="dark"] .my-lg-n4{margin-top:-1.5rem !important}:root[mode="dark"] .mr-lg-n4,:root[mode="dark"] .mx-lg-n4{margin-right:-1.5rem !important}:root[mode="dark"] .mb-lg-n4,:root[mode="dark"] .my-lg-n4{margin-bottom:-1.5rem !important}:root[mode="dark"] .ml-lg-n4,:root[mode="dark"] .mx-lg-n4{margin-left:-1.5rem !important}:root[mode="dark"] .m-lg-n5{margin:-3rem !important}:root[mode="dark"] .mt-lg-n5,:root[mode="dark"] .my-lg-n5{margin-top:-3rem !important}:root[mode="dark"] .mr-lg-n5,:root[mode="dark"] .mx-lg-n5{margin-right:-3rem !important}:root[mode="dark"] .mb-lg-n5,:root[mode="dark"] .my-lg-n5{margin-bottom:-3rem !important}:root[mode="dark"] .ml-lg-n5,:root[mode="dark"] .mx-lg-n5{margin-left:-3rem !important}:root[mode="dark"] .m-lg-auto{margin:auto !important}:root[mode="dark"] .mt-lg-auto,:root[mode="dark"] .my-lg-auto{margin-top:auto !important}:root[mode="dark"] .mr-lg-auto,:root[mode="dark"] .mx-lg-auto{margin-right:auto !important}:root[mode="dark"] .mb-lg-auto,:root[mode="dark"] .my-lg-auto{margin-bottom:auto !important}:root[mode="dark"] .ml-lg-auto,:root[mode="dark"] .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){:root[mode="dark"] .m-xl-0{margin:0 !important}:root[mode="dark"] .mt-xl-0,:root[mode="dark"] .my-xl-0{margin-top:0 !important}:root[mode="dark"] .mr-xl-0,:root[mode="dark"] .mx-xl-0{margin-right:0 !important}:root[mode="dark"] .mb-xl-0,:root[mode="dark"] .my-xl-0{margin-bottom:0 !important}:root[mode="dark"] .ml-xl-0,:root[mode="dark"] .mx-xl-0{margin-left:0 !important}:root[mode="dark"] .m-xl-1{margin:0.25rem !important}:root[mode="dark"] .mt-xl-1,:root[mode="dark"] .my-xl-1{margin-top:0.25rem !important}:root[mode="dark"] .mr-xl-1,:root[mode="dark"] .mx-xl-1{margin-right:0.25rem !important}:root[mode="dark"] .mb-xl-1,:root[mode="dark"] .my-xl-1{margin-bottom:0.25rem !important}:root[mode="dark"] .ml-xl-1,:root[mode="dark"] .mx-xl-1{margin-left:0.25rem !important}:root[mode="dark"] .m-xl-2{margin:0.5rem !important}:root[mode="dark"] .mt-xl-2,:root[mode="dark"] .my-xl-2{margin-top:0.5rem !important}:root[mode="dark"] .mr-xl-2,:root[mode="dark"] .mx-xl-2{margin-right:0.5rem !important}:root[mode="dark"] .mb-xl-2,:root[mode="dark"] .my-xl-2{margin-bottom:0.5rem !important}:root[mode="dark"] .ml-xl-2,:root[mode="dark"] .mx-xl-2{margin-left:0.5rem !important}:root[mode="dark"] .m-xl-3{margin:1rem !important}:root[mode="dark"] .mt-xl-3,:root[mode="dark"] .my-xl-3{margin-top:1rem !important}:root[mode="dark"] .mr-xl-3,:root[mode="dark"] .mx-xl-3{margin-right:1rem !important}:root[mode="dark"] .mb-xl-3,:root[mode="dark"] .my-xl-3{margin-bottom:1rem !important}:root[mode="dark"] .ml-xl-3,:root[mode="dark"] .mx-xl-3{margin-left:1rem !important}:root[mode="dark"] .m-xl-4{margin:1.5rem !important}:root[mode="dark"] .mt-xl-4,:root[mode="dark"] .my-xl-4{margin-top:1.5rem !important}:root[mode="dark"] .mr-xl-4,:root[mode="dark"] .mx-xl-4{margin-right:1.5rem !important}:root[mode="dark"] .mb-xl-4,:root[mode="dark"] .my-xl-4{margin-bottom:1.5rem !important}:root[mode="dark"] .ml-xl-4,:root[mode="dark"] .mx-xl-4{margin-left:1.5rem !important}:root[mode="dark"] .m-xl-5{margin:3rem !important}:root[mode="dark"] .mt-xl-5,:root[mode="dark"] .my-xl-5{margin-top:3rem !important}:root[mode="dark"] .mr-xl-5,:root[mode="dark"] .mx-xl-5{margin-right:3rem !important}:root[mode="dark"] .mb-xl-5,:root[mode="dark"] .my-xl-5{margin-bottom:3rem !important}:root[mode="dark"] .ml-xl-5,:root[mode="dark"] .mx-xl-5{margin-left:3rem !important}:root[mode="dark"] .p-xl-0{padding:0 !important}:root[mode="dark"] .pt-xl-0,:root[mode="dark"] .py-xl-0{padding-top:0 !important}:root[mode="dark"] .pr-xl-0,:root[mode="dark"] .px-xl-0{padding-right:0 !important}:root[mode="dark"] .pb-xl-0,:root[mode="dark"] .py-xl-0{padding-bottom:0 !important}:root[mode="dark"] .pl-xl-0,:root[mode="dark"] .px-xl-0{padding-left:0 !important}:root[mode="dark"] .p-xl-1{padding:0.25rem !important}:root[mode="dark"] .pt-xl-1,:root[mode="dark"] .py-xl-1{padding-top:0.25rem !important}:root[mode="dark"] .pr-xl-1,:root[mode="dark"] .px-xl-1{padding-right:0.25rem !important}:root[mode="dark"] .pb-xl-1,:root[mode="dark"] .py-xl-1{padding-bottom:0.25rem !important}:root[mode="dark"] .pl-xl-1,:root[mode="dark"] .px-xl-1{padding-left:0.25rem !important}:root[mode="dark"] .p-xl-2{padding:0.5rem !important}:root[mode="dark"] .pt-xl-2,:root[mode="dark"] .py-xl-2{padding-top:0.5rem !important}:root[mode="dark"] .pr-xl-2,:root[mode="dark"] .px-xl-2{padding-right:0.5rem !important}:root[mode="dark"] .pb-xl-2,:root[mode="dark"] .py-xl-2{padding-bottom:0.5rem !important}:root[mode="dark"] .pl-xl-2,:root[mode="dark"] .px-xl-2{padding-left:0.5rem !important}:root[mode="dark"] .p-xl-3{padding:1rem !important}:root[mode="dark"] .pt-xl-3,:root[mode="dark"] .py-xl-3{padding-top:1rem !important}:root[mode="dark"] .pr-xl-3,:root[mode="dark"] .px-xl-3{padding-right:1rem !important}:root[mode="dark"] .pb-xl-3,:root[mode="dark"] .py-xl-3{padding-bottom:1rem !important}:root[mode="dark"] .pl-xl-3,:root[mode="dark"] .px-xl-3{padding-left:1rem !important}:root[mode="dark"] .p-xl-4{padding:1.5rem !important}:root[mode="dark"] .pt-xl-4,:root[mode="dark"] .py-xl-4{padding-top:1.5rem !important}:root[mode="dark"] .pr-xl-4,:root[mode="dark"] .px-xl-4{padding-right:1.5rem !important}:root[mode="dark"] .pb-xl-4,:root[mode="dark"] .py-xl-4{padding-bottom:1.5rem !important}:root[mode="dark"] .pl-xl-4,:root[mode="dark"] .px-xl-4{padding-left:1.5rem !important}:root[mode="dark"] .p-xl-5{padding:3rem !important}:root[mode="dark"] .pt-xl-5,:root[mode="dark"] .py-xl-5{padding-top:3rem !important}:root[mode="dark"] .pr-xl-5,:root[mode="dark"] .px-xl-5{padding-right:3rem !important}:root[mode="dark"] .pb-xl-5,:root[mode="dark"] .py-xl-5{padding-bottom:3rem !important}:root[mode="dark"] .pl-xl-5,:root[mode="dark"] .px-xl-5{padding-left:3rem !important}:root[mode="dark"] .m-xl-n1{margin:-0.25rem !important}:root[mode="dark"] .mt-xl-n1,:root[mode="dark"] .my-xl-n1{margin-top:-0.25rem !important}:root[mode="dark"] .mr-xl-n1,:root[mode="dark"] .mx-xl-n1{margin-right:-0.25rem !important}:root[mode="dark"] .mb-xl-n1,:root[mode="dark"] .my-xl-n1{margin-bottom:-0.25rem !important}:root[mode="dark"] .ml-xl-n1,:root[mode="dark"] .mx-xl-n1{margin-left:-0.25rem !important}:root[mode="dark"] .m-xl-n2{margin:-0.5rem !important}:root[mode="dark"] .mt-xl-n2,:root[mode="dark"] .my-xl-n2{margin-top:-0.5rem !important}:root[mode="dark"] .mr-xl-n2,:root[mode="dark"] .mx-xl-n2{margin-right:-0.5rem !important}:root[mode="dark"] .mb-xl-n2,:root[mode="dark"] .my-xl-n2{margin-bottom:-0.5rem !important}:root[mode="dark"] .ml-xl-n2,:root[mode="dark"] .mx-xl-n2{margin-left:-0.5rem !important}:root[mode="dark"] .m-xl-n3{margin:-1rem !important}:root[mode="dark"] .mt-xl-n3,:root[mode="dark"] .my-xl-n3{margin-top:-1rem !important}:root[mode="dark"] .mr-xl-n3,:root[mode="dark"] .mx-xl-n3{margin-right:-1rem !important}:root[mode="dark"] .mb-xl-n3,:root[mode="dark"] .my-xl-n3{margin-bottom:-1rem !important}:root[mode="dark"] .ml-xl-n3,:root[mode="dark"] .mx-xl-n3{margin-left:-1rem !important}:root[mode="dark"] .m-xl-n4{margin:-1.5rem !important}:root[mode="dark"] .mt-xl-n4,:root[mode="dark"] .my-xl-n4{margin-top:-1.5rem !important}:root[mode="dark"] .mr-xl-n4,:root[mode="dark"] .mx-xl-n4{margin-right:-1.5rem !important}:root[mode="dark"] .mb-xl-n4,:root[mode="dark"] .my-xl-n4{margin-bottom:-1.5rem !important}:root[mode="dark"] .ml-xl-n4,:root[mode="dark"] .mx-xl-n4{margin-left:-1.5rem !important}:root[mode="dark"] .m-xl-n5{margin:-3rem !important}:root[mode="dark"] .mt-xl-n5,:root[mode="dark"] .my-xl-n5{margin-top:-3rem !important}:root[mode="dark"] .mr-xl-n5,:root[mode="dark"] .mx-xl-n5{margin-right:-3rem !important}:root[mode="dark"] .mb-xl-n5,:root[mode="dark"] .my-xl-n5{margin-bottom:-3rem !important}:root[mode="dark"] .ml-xl-n5,:root[mode="dark"] .mx-xl-n5{margin-left:-3rem !important}:root[mode="dark"] .m-xl-auto{margin:auto !important}:root[mode="dark"] .mt-xl-auto,:root[mode="dark"] .my-xl-auto{margin-top:auto !important}:root[mode="dark"] .mr-xl-auto,:root[mode="dark"] .mx-xl-auto{margin-right:auto !important}:root[mode="dark"] .mb-xl-auto,:root[mode="dark"] .my-xl-auto{margin-bottom:auto !important}:root[mode="dark"] .ml-xl-auto,:root[mode="dark"] .mx-xl-auto{margin-left:auto !important}}:root[mode="dark"] .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}:root[mode="dark"] .text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}:root[mode="dark"] .text-justify{text-align:justify !important}:root[mode="dark"] .text-wrap{white-space:normal !important}:root[mode="dark"] .text-nowrap{white-space:nowrap !important}:root[mode="dark"] .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:root[mode="dark"] .text-left{text-align:left !important}:root[mode="dark"] .text-right{text-align:right !important}:root[mode="dark"] .text-center{text-align:center !important}@media (min-width: 576px){:root[mode="dark"] .text-sm-left{text-align:left !important}:root[mode="dark"] .text-sm-right{text-align:right !important}:root[mode="dark"] .text-sm-center{text-align:center !important}}@media (min-width: 768px){:root[mode="dark"] .text-md-left{text-align:left !important}:root[mode="dark"] .text-md-right{text-align:right !important}:root[mode="dark"] .text-md-center{text-align:center !important}}@media (min-width: 992px){:root[mode="dark"] .text-lg-left{text-align:left !important}:root[mode="dark"] .text-lg-right{text-align:right !important}:root[mode="dark"] .text-lg-center{text-align:center !important}}@media (min-width: 1200px){:root[mode="dark"] .text-xl-left{text-align:left !important}:root[mode="dark"] .text-xl-right{text-align:right !important}:root[mode="dark"] .text-xl-center{text-align:center !important}}:root[mode="dark"] .text-lowercase{text-transform:lowercase !important}:root[mode="dark"] .text-uppercase{text-transform:uppercase !important}:root[mode="dark"] .text-capitalize{text-transform:capitalize !important}:root[mode="dark"] .font-weight-light{font-weight:300 !important}:root[mode="dark"] .font-weight-lighter{font-weight:lighter !important}:root[mode="dark"] .font-weight-normal{font-weight:400 !important}:root[mode="dark"] .font-weight-bold{font-weight:700 !important}:root[mode="dark"] .font-weight-bolder{font-weight:bolder !important}:root[mode="dark"] .font-italic{font-style:italic !important}:root[mode="dark"] .text-white{color:#fff !important}:root[mode="dark"] .text-primary{color:#375a7f !important}:root[mode="dark"] a.text-primary:hover,:root[mode="dark"] a.text-primary:focus{color:#20344a !important}:root[mode="dark"] .text-secondary{color:#444 !important}:root[mode="dark"] a.text-secondary:hover,:root[mode="dark"] a.text-secondary:focus{color:#1e1e1e !important}:root[mode="dark"] .text-success{color:#00bc8c !important}:root[mode="dark"] a.text-success:hover,:root[mode="dark"] a.text-success:focus{color:#007053 !important}:root[mode="dark"] .text-info{color:#3498db !important}:root[mode="dark"] a.text-info:hover,:root[mode="dark"] a.text-info:focus{color:#1d6fa5 !important}:root[mode="dark"] .text-warning{color:#f39c12 !important}:root[mode="dark"] a.text-warning:hover,:root[mode="dark"] a.text-warning:focus{color:#b06f09 !important}:root[mode="dark"] .text-danger{color:#e74c3c !important}:root[mode="dark"] a.text-danger:hover,:root[mode="dark"] a.text-danger:focus{color:#bf2718 !important}:root[mode="dark"] .text-light{color:#adb5bd !important}:root[mode="dark"] a.text-light:hover,:root[mode="dark"] a.text-light:focus{color:#838f9b !important}:root[mode="dark"] .text-dark{color:#303030 !important}:root[mode="dark"] a.text-dark:hover,:root[mode="dark"] a.text-dark:focus{color:#0a0a0a !important}:root[mode="dark"] .text-body{color:#fff !important}:root[mode="dark"] .text-muted{color:#888 !important}:root[mode="dark"] .text-black-50{color:rgba(0,0,0,0.5) !important}:root[mode="dark"] .text-white-50{color:rgba(255,255,255,0.5) !important}:root[mode="dark"] .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}:root[mode="dark"] .text-decoration-none{text-decoration:none !important}:root[mode="dark"] .text-break{word-break:break-word !important;word-wrap:break-word !important}:root[mode="dark"] .text-reset{color:inherit !important}:root[mode="dark"] .visible{visibility:visible !important}:root[mode="dark"] .invisible{visibility:hidden !important}@media print{:root[mode="dark"] *,:root[mode="dark"] *::before,:root[mode="dark"] *::after{text-shadow:none !important;box-shadow:none !important}:root[mode="dark"] a:not(.btn){text-decoration:underline}:root[mode="dark"] abbr[title]::after{content:" (" attr(title) ")"}:root[mode="dark"] pre{white-space:pre-wrap !important}:root[mode="dark"] pre,:root[mode="dark"] blockquote{border:1px solid #adb5bd;page-break-inside:avoid}:root[mode="dark"] thead{display:table-header-group}:root[mode="dark"] tr,:root[mode="dark"] img{page-break-inside:avoid}:root[mode="dark"] p,:root[mode="dark"] h2,:root[mode="dark"] h3{orphans:3;widows:3}:root[mode="dark"] h2,:root[mode="dark"] h3{page-break-after:avoid}@page{:root[mode="dark"]{size:a3}}:root[mode="dark"] body{min-width:992px !important}:root[mode="dark"] .container{min-width:992px !important}:root[mode="dark"] .navbar{display:none}:root[mode="dark"] .badge{border:1px solid #000}:root[mode="dark"] .table{border-collapse:collapse !important}:root[mode="dark"] .table td,:root[mode="dark"] .table th{background-color:#fff !important}:root[mode="dark"] .table-bordered th,:root[mode="dark"] .table-bordered td{border:1px solid #dee2e6 !important}:root[mode="dark"] .table-dark{color:inherit}:root[mode="dark"] .table-dark th,:root[mode="dark"] .table-dark td,:root[mode="dark"] .table-dark thead th,:root[mode="dark"] .table-dark tbody+tbody{border-color:#444}:root[mode="dark"] .table .thead-dark th{color:inherit;border-color:#444}}:root[mode="dark"] .blockquote-footer{color:#888}:root[mode="dark"] .table-primary,:root[mode="dark"] .table-primary>th,:root[mode="dark"] .table-primary>td{background-color:#375a7f}:root[mode="dark"] .table-secondary,:root[mode="dark"] .table-secondary>th,:root[mode="dark"] .table-secondary>td{background-color:#444}:root[mode="dark"] .table-light,:root[mode="dark"] .table-light>th,:root[mode="dark"] .table-light>td{background-color:#adb5bd}:root[mode="dark"] .table-dark,:root[mode="dark"] .table-dark>th,:root[mode="dark"] .table-dark>td{background-color:#303030}:root[mode="dark"] .table-success,:root[mode="dark"] .table-success>th,:root[mode="dark"] .table-success>td{background-color:#00bc8c}:root[mode="dark"] .table-info,:root[mode="dark"] .table-info>th,:root[mode="dark"] .table-info>td{background-color:#3498db}:root[mode="dark"] .table-danger,:root[mode="dark"] .table-danger>th,:root[mode="dark"] .table-danger>td{background-color:#e74c3c}:root[mode="dark"] .table-warning,:root[mode="dark"] .table-warning>th,:root[mode="dark"] .table-warning>td{background-color:#f39c12}:root[mode="dark"] .table-active,:root[mode="dark"] .table-active>th,:root[mode="dark"] .table-active>td{background-color:rgba(0,0,0,0.075)}:root[mode="dark"] .table-hover .table-primary:hover,:root[mode="dark"] .table-hover .table-primary:hover>th,:root[mode="dark"] .table-hover .table-primary:hover>td{background-color:#2f4d6d}:root[mode="dark"] .table-hover .table-secondary:hover,:root[mode="dark"] .table-hover .table-secondary:hover>th,:root[mode="dark"] .table-hover .table-secondary:hover>td{background-color:#373737}:root[mode="dark"] .table-hover .table-light:hover,:root[mode="dark"] .table-hover .table-light:hover>th,:root[mode="dark"] .table-hover .table-light:hover>td{background-color:#9fa8b2}:root[mode="dark"] .table-hover .table-dark:hover,:root[mode="dark"] .table-hover .table-dark:hover>th,:root[mode="dark"] .table-hover .table-dark:hover>td{background-color:#232323}:root[mode="dark"] .table-hover .table-success:hover,:root[mode="dark"] .table-hover .table-success:hover>th,:root[mode="dark"] .table-hover .table-success:hover>td{background-color:#00a379}:root[mode="dark"] .table-hover .table-info:hover,:root[mode="dark"] .table-hover .table-info:hover>th,:root[mode="dark"] .table-hover .table-info:hover>td{background-color:#258cd1}:root[mode="dark"] .table-hover .table-danger:hover,:root[mode="dark"] .table-hover .table-danger:hover>th,:root[mode="dark"] .table-hover .table-danger:hover>td{background-color:#e43725}:root[mode="dark"] .table-hover .table-warning:hover,:root[mode="dark"] .table-hover .table-warning:hover>th,:root[mode="dark"] .table-hover .table-warning:hover>td{background-color:#e08e0b}:root[mode="dark"] .table-hover .table-active:hover,:root[mode="dark"] .table-hover .table-active:hover>th,:root[mode="dark"] .table-hover .table-active:hover>td{background-color:rgba(0,0,0,0.075)}:root[mode="dark"] .input-group-addon{color:#fff}:root[mode="dark"] .nav-tabs .nav-link,:root[mode="dark"] .nav-tabs .nav-link.active,:root[mode="dark"] .nav-tabs .nav-link.active:focus,:root[mode="dark"] .nav-tabs .nav-link.active:hover,:root[mode="dark"] .nav-tabs .nav-item.open .nav-link,:root[mode="dark"] .nav-tabs .nav-item.open .nav-link:focus,:root[mode="dark"] .nav-tabs .nav-item.open .nav-link:hover,:root[mode="dark"] .nav-pills .nav-link,:root[mode="dark"] .nav-pills .nav-link.active,:root[mode="dark"] .nav-pills .nav-link.active:focus,:root[mode="dark"] .nav-pills .nav-link.active:hover,:root[mode="dark"] .nav-pills .nav-item.open .nav-link,:root[mode="dark"] .nav-pills .nav-item.open .nav-link:focus,:root[mode="dark"] .nav-pills .nav-item.open .nav-link:hover{color:#fff}:root[mode="dark"] .breadcrumb a{color:#fff}:root[mode="dark"] .pagination a:hover{text-decoration:none}:root[mode="dark"] .close{opacity:.4}:root[mode="dark"] .close:hover,:root[mode="dark"] .close:focus{opacity:1}:root[mode="dark"] .alert{border:none;color:#fff}:root[mode="dark"] .alert a,:root[mode="dark"] .alert .alert-link{color:#fff;text-decoration:underline}:root[mode="dark"] .alert-primary{background-color:#375a7f}:root[mode="dark"] .alert-secondary{background-color:#444}:root[mode="dark"] .alert-success{background-color:#00bc8c}:root[mode="dark"] .alert-info{background-color:#3498db}:root[mode="dark"] .alert-warning{background-color:#f39c12}:root[mode="dark"] .alert-danger{background-color:#e74c3c}:root[mode="dark"] .alert-light{background-color:#adb5bd}:root[mode="dark"] .alert-dark{background-color:#303030}:root[mode="dark"] .list-group-item-action{color:#fff}:root[mode="dark"] .list-group-item-action:hover,:root[mode="dark"] .list-group-item-action:focus{background-color:#444;color:#fff}:root[mode="dark"] .list-group-item-action .list-group-item-heading{color:#fff}:root[mode="dark"] .custom-control-input:checked ~ .custom-control-label::before{border-color:#333;background-color:#444}:root[mode="dark"] .footer{color:#d1d1d1}:root[mode="dark"] .form-control{background-color:#181a1b;border-color:#81786a;color:#bdb7af}:root[mode="dark"] .form-control:focus{background-color:#181a1b;border-color:#315171;color:#bdb7af}:root[mode="dark"] .form-control[readonly]{background-color:#181a1b}:root[mode="light"]{/*!\n * Bootswatch v4.6.0\n * Homepage: https://bootswatch.com\n * Copyright 2012-2021 Thomas Park\n * Licensed under MIT\n * Based on Bootstrap\n*//*!\n * Bootstrap v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */}:root[mode="light"] :root{--blue: #2c3e50;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #e74c3c;--orange: #fd7e14;--yellow: #f39c12;--green: #18bc9c;--teal: #20c997;--cyan: #3498db;--white: #fff;--gray: #95a5a6;--gray-dark: #343a40;--primary: #2c3e50;--secondary: #95a5a6;--success: #18bc9c;--info: #3498db;--warning: #f39c12;--danger: #e74c3c;--light: #ecf0f1;--dark: #7b8a8b;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}:root[mode="light"] *,:root[mode="light"] *::before,:root[mode="light"] *::after{box-sizing:border-box}:root[mode="light"] html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}:root[mode="light"] article,:root[mode="light"] aside,:root[mode="light"] figcaption,:root[mode="light"] figure,:root[mode="light"] footer,:root[mode="light"] header,:root[mode="light"] hgroup,:root[mode="light"] main,:root[mode="light"] nav,:root[mode="light"] section{display:block}:root[mode="light"] body{margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-size:0.9375rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}:root[mode="light"] [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}:root[mode="light"] hr{box-sizing:content-box;height:0;overflow:visible}:root[mode="light"] h1,:root[mode="light"] h2,:root[mode="light"] h3,:root[mode="light"] h4,:root[mode="light"] h5,:root[mode="light"] h6{margin-top:0;margin-bottom:0.5rem}:root[mode="light"] p{margin-top:0;margin-bottom:1rem}:root[mode="light"] abbr[title],:root[mode="light"] abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}:root[mode="light"] address{margin-bottom:1rem;font-style:normal;line-height:inherit}:root[mode="light"] ol,:root[mode="light"] ul,:root[mode="light"] dl{margin-top:0;margin-bottom:1rem}:root[mode="light"] ol ol,:root[mode="light"] ul ul,:root[mode="light"] ol ul,:root[mode="light"] ul ol{margin-bottom:0}:root[mode="light"] dt{font-weight:700}:root[mode="light"] dd{margin-bottom:.5rem;margin-left:0}:root[mode="light"] blockquote{margin:0 0 1rem}:root[mode="light"] b,:root[mode="light"] strong{font-weight:bolder}:root[mode="light"] small{font-size:80%}:root[mode="light"] sub,:root[mode="light"] sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}:root[mode="light"] sub{bottom:-.25em}:root[mode="light"] sup{top:-.5em}:root[mode="light"] a{color:#18bc9c;text-decoration:none;background-color:transparent}:root[mode="light"] a:hover{color:#0f7864;text-decoration:underline}:root[mode="light"] a:not([href]):not([class]){color:inherit;text-decoration:none}:root[mode="light"] a:not([href]):not([class]):hover{color:inherit;text-decoration:none}:root[mode="light"] pre,:root[mode="light"] code,:root[mode="light"] kbd,:root[mode="light"] samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}:root[mode="light"] pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}:root[mode="light"] figure{margin:0 0 1rem}:root[mode="light"] img{vertical-align:middle;border-style:none}:root[mode="light"] svg{overflow:hidden;vertical-align:middle}:root[mode="light"] table{border-collapse:collapse}:root[mode="light"] caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#95a5a6;text-align:left;caption-side:bottom}:root[mode="light"] th{text-align:inherit;text-align:-webkit-match-parent}:root[mode="light"] label{display:inline-block;margin-bottom:0.5rem}:root[mode="light"] button{border-radius:0}:root[mode="light"] button:focus:not(:focus-visible){outline:0}:root[mode="light"] input,:root[mode="light"] button,:root[mode="light"] select,:root[mode="light"] optgroup,:root[mode="light"] textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}:root[mode="light"] button,:root[mode="light"] input{overflow:visible}:root[mode="light"] button,:root[mode="light"] select{text-transform:none}:root[mode="light"] [role="button"]{cursor:pointer}:root[mode="light"] select{word-wrap:normal}:root[mode="light"] button,:root[mode="light"] [type="button"],:root[mode="light"] [type="reset"],:root[mode="light"] [type="submit"]{-webkit-appearance:button}:root[mode="light"] button:not(:disabled),:root[mode="light"] [type="button"]:not(:disabled),:root[mode="light"] [type="reset"]:not(:disabled),:root[mode="light"] [type="submit"]:not(:disabled){cursor:pointer}:root[mode="light"] button::-moz-focus-inner,:root[mode="light"] [type="button"]::-moz-focus-inner,:root[mode="light"] [type="reset"]::-moz-focus-inner,:root[mode="light"] [type="submit"]::-moz-focus-inner{padding:0;border-style:none}:root[mode="light"] input[type="radio"],:root[mode="light"] input[type="checkbox"]{box-sizing:border-box;padding:0}:root[mode="light"] textarea{overflow:auto;resize:vertical}:root[mode="light"] fieldset{min-width:0;padding:0;margin:0;border:0}:root[mode="light"] legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}:root[mode="light"] progress{vertical-align:baseline}:root[mode="light"] [type="number"]::-webkit-inner-spin-button,:root[mode="light"] [type="number"]::-webkit-outer-spin-button{height:auto}:root[mode="light"] [type="search"]{outline-offset:-2px;-webkit-appearance:none}:root[mode="light"] [type="search"]::-webkit-search-decoration{-webkit-appearance:none}:root[mode="light"] ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}:root[mode="light"] output{display:inline-block}:root[mode="light"] summary{display:list-item;cursor:pointer}:root[mode="light"] template{display:none}:root[mode="light"] [hidden]{display:none !important}:root[mode="light"] h1,:root[mode="light"] h2,:root[mode="light"] h3,:root[mode="light"] h4,:root[mode="light"] h5,:root[mode="light"] h6,:root[mode="light"] .h1,:root[mode="light"] .h2,:root[mode="light"] .h3,:root[mode="light"] .h4,:root[mode="light"] .h5,:root[mode="light"] .h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}:root[mode="light"] h1,:root[mode="light"] .h1{font-size:3rem}:root[mode="light"] h2,:root[mode="light"] .h2{font-size:2.5rem}:root[mode="light"] h3,:root[mode="light"] .h3{font-size:2rem}:root[mode="light"] h4,:root[mode="light"] .h4{font-size:1.40625rem}:root[mode="light"] h5,:root[mode="light"] .h5{font-size:1.171875rem}:root[mode="light"] h6,:root[mode="light"] .h6{font-size:0.9375rem}:root[mode="light"] .lead{font-size:1.171875rem;font-weight:300}:root[mode="light"] .display-1{font-size:6rem;font-weight:300;line-height:1.2}:root[mode="light"] .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}:root[mode="light"] .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}:root[mode="light"] .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}:root[mode="light"] hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}:root[mode="light"] small,:root[mode="light"] .small{font-size:80%;font-weight:400}:root[mode="light"] mark,:root[mode="light"] .mark{padding:0.2em;background-color:#fcf8e3}:root[mode="light"] .list-unstyled{padding-left:0;list-style:none}:root[mode="light"] .list-inline{padding-left:0;list-style:none}:root[mode="light"] .list-inline-item{display:inline-block}:root[mode="light"] .list-inline-item:not(:last-child){margin-right:0.5rem}:root[mode="light"] .initialism{font-size:90%;text-transform:uppercase}:root[mode="light"] .blockquote{margin-bottom:1rem;font-size:1.171875rem}:root[mode="light"] .blockquote-footer{display:block;font-size:80%;color:#95a5a6}:root[mode="light"] .blockquote-footer::before{content:"\\2014\\00A0"}:root[mode="light"] .img-fluid{max-width:100%;height:auto}:root[mode="light"] .img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}:root[mode="light"] .figure{display:inline-block}:root[mode="light"] .figure-img{margin-bottom:0.5rem;line-height:1}:root[mode="light"] .figure-caption{font-size:90%;color:#95a5a6}:root[mode="light"] code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}:root[mode="light"] a>code{color:inherit}:root[mode="light"] kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}:root[mode="light"] kbd kbd{padding:0;font-size:100%;font-weight:700}:root[mode="light"] pre{display:block;font-size:87.5%;color:#212529}:root[mode="light"] pre code{font-size:inherit;color:inherit;word-break:normal}:root[mode="light"] .pre-scrollable{max-height:340px;overflow-y:scroll}:root[mode="light"] .container,:root[mode="light"] .container-fluid,:root[mode="light"] .container-sm,:root[mode="light"] .container-md,:root[mode="light"] .container-lg,:root[mode="light"] .container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){:root[mode="light"] .container,:root[mode="light"] .container-sm{max-width:540px}}@media (min-width: 768px){:root[mode="light"] .container,:root[mode="light"] .container-sm,:root[mode="light"] .container-md{max-width:720px}}@media (min-width: 992px){:root[mode="light"] .container,:root[mode="light"] .container-sm,:root[mode="light"] .container-md,:root[mode="light"] .container-lg{max-width:960px}}@media (min-width: 1200px){:root[mode="light"] .container,:root[mode="light"] .container-sm,:root[mode="light"] .container-md,:root[mode="light"] .container-lg,:root[mode="light"] .container-xl{max-width:1140px}}:root[mode="light"] .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}:root[mode="light"] .no-gutters{margin-right:0;margin-left:0}:root[mode="light"] .no-gutters>.col,:root[mode="light"] .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}:root[mode="light"] .col-1,:root[mode="light"] .col-2,:root[mode="light"] .col-3,:root[mode="light"] .col-4,:root[mode="light"] .col-5,:root[mode="light"] .col-6,:root[mode="light"] .col-7,:root[mode="light"] .col-8,:root[mode="light"] .col-9,:root[mode="light"] .col-10,:root[mode="light"] .col-11,:root[mode="light"] .col-12,:root[mode="light"] .col,:root[mode="light"] .col-auto,:root[mode="light"] .col-sm-1,:root[mode="light"] .col-sm-2,:root[mode="light"] .col-sm-3,:root[mode="light"] .col-sm-4,:root[mode="light"] .col-sm-5,:root[mode="light"] .col-sm-6,:root[mode="light"] .col-sm-7,:root[mode="light"] .col-sm-8,:root[mode="light"] .col-sm-9,:root[mode="light"] .col-sm-10,:root[mode="light"] .col-sm-11,:root[mode="light"] .col-sm-12,:root[mode="light"] .col-sm,:root[mode="light"] .col-sm-auto,:root[mode="light"] .col-md-1,:root[mode="light"] .col-md-2,:root[mode="light"] .col-md-3,:root[mode="light"] .col-md-4,:root[mode="light"] .col-md-5,:root[mode="light"] .col-md-6,:root[mode="light"] .col-md-7,:root[mode="light"] .col-md-8,:root[mode="light"] .col-md-9,:root[mode="light"] .col-md-10,:root[mode="light"] .col-md-11,:root[mode="light"] .col-md-12,:root[mode="light"] .col-md,:root[mode="light"] .col-md-auto,:root[mode="light"] .col-lg-1,:root[mode="light"] .col-lg-2,:root[mode="light"] .col-lg-3,:root[mode="light"] .col-lg-4,:root[mode="light"] .col-lg-5,:root[mode="light"] .col-lg-6,:root[mode="light"] .col-lg-7,:root[mode="light"] .col-lg-8,:root[mode="light"] .col-lg-9,:root[mode="light"] .col-lg-10,:root[mode="light"] .col-lg-11,:root[mode="light"] .col-lg-12,:root[mode="light"] .col-lg,:root[mode="light"] .col-lg-auto,:root[mode="light"] .col-xl-1,:root[mode="light"] .col-xl-2,:root[mode="light"] .col-xl-3,:root[mode="light"] .col-xl-4,:root[mode="light"] .col-xl-5,:root[mode="light"] .col-xl-6,:root[mode="light"] .col-xl-7,:root[mode="light"] .col-xl-8,:root[mode="light"] .col-xl-9,:root[mode="light"] .col-xl-10,:root[mode="light"] .col-xl-11,:root[mode="light"] .col-xl-12,:root[mode="light"] .col-xl,:root[mode="light"] .col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}:root[mode="light"] .col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="light"] .row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="light"] .row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="light"] .col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="light"] .col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="light"] .col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="light"] .col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="light"] .col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="light"] .col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="light"] .col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="light"] .col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .order-first{-ms-flex-order:-1;order:-1}:root[mode="light"] .order-last{-ms-flex-order:13;order:13}:root[mode="light"] .order-0{-ms-flex-order:0;order:0}:root[mode="light"] .order-1{-ms-flex-order:1;order:1}:root[mode="light"] .order-2{-ms-flex-order:2;order:2}:root[mode="light"] .order-3{-ms-flex-order:3;order:3}:root[mode="light"] .order-4{-ms-flex-order:4;order:4}:root[mode="light"] .order-5{-ms-flex-order:5;order:5}:root[mode="light"] .order-6{-ms-flex-order:6;order:6}:root[mode="light"] .order-7{-ms-flex-order:7;order:7}:root[mode="light"] .order-8{-ms-flex-order:8;order:8}:root[mode="light"] .order-9{-ms-flex-order:9;order:9}:root[mode="light"] .order-10{-ms-flex-order:10;order:10}:root[mode="light"] .order-11{-ms-flex-order:11;order:11}:root[mode="light"] .order-12{-ms-flex-order:12;order:12}:root[mode="light"] .offset-1{margin-left:8.333333%}:root[mode="light"] .offset-2{margin-left:16.666667%}:root[mode="light"] .offset-3{margin-left:25%}:root[mode="light"] .offset-4{margin-left:33.333333%}:root[mode="light"] .offset-5{margin-left:41.666667%}:root[mode="light"] .offset-6{margin-left:50%}:root[mode="light"] .offset-7{margin-left:58.333333%}:root[mode="light"] .offset-8{margin-left:66.666667%}:root[mode="light"] .offset-9{margin-left:75%}:root[mode="light"] .offset-10{margin-left:83.333333%}:root[mode="light"] .offset-11{margin-left:91.666667%}@media (min-width: 576px){:root[mode="light"] .col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="light"] .row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="light"] .row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="light"] .col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="light"] .col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="light"] .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="light"] .col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="light"] .col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="light"] .col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="light"] .col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="light"] .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .order-sm-first{-ms-flex-order:-1;order:-1}:root[mode="light"] .order-sm-last{-ms-flex-order:13;order:13}:root[mode="light"] .order-sm-0{-ms-flex-order:0;order:0}:root[mode="light"] .order-sm-1{-ms-flex-order:1;order:1}:root[mode="light"] .order-sm-2{-ms-flex-order:2;order:2}:root[mode="light"] .order-sm-3{-ms-flex-order:3;order:3}:root[mode="light"] .order-sm-4{-ms-flex-order:4;order:4}:root[mode="light"] .order-sm-5{-ms-flex-order:5;order:5}:root[mode="light"] .order-sm-6{-ms-flex-order:6;order:6}:root[mode="light"] .order-sm-7{-ms-flex-order:7;order:7}:root[mode="light"] .order-sm-8{-ms-flex-order:8;order:8}:root[mode="light"] .order-sm-9{-ms-flex-order:9;order:9}:root[mode="light"] .order-sm-10{-ms-flex-order:10;order:10}:root[mode="light"] .order-sm-11{-ms-flex-order:11;order:11}:root[mode="light"] .order-sm-12{-ms-flex-order:12;order:12}:root[mode="light"] .offset-sm-0{margin-left:0}:root[mode="light"] .offset-sm-1{margin-left:8.333333%}:root[mode="light"] .offset-sm-2{margin-left:16.666667%}:root[mode="light"] .offset-sm-3{margin-left:25%}:root[mode="light"] .offset-sm-4{margin-left:33.333333%}:root[mode="light"] .offset-sm-5{margin-left:41.666667%}:root[mode="light"] .offset-sm-6{margin-left:50%}:root[mode="light"] .offset-sm-7{margin-left:58.333333%}:root[mode="light"] .offset-sm-8{margin-left:66.666667%}:root[mode="light"] .offset-sm-9{margin-left:75%}:root[mode="light"] .offset-sm-10{margin-left:83.333333%}:root[mode="light"] .offset-sm-11{margin-left:91.666667%}}@media (min-width: 768px){:root[mode="light"] .col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="light"] .row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="light"] .row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="light"] .col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="light"] .col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="light"] .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="light"] .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="light"] .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="light"] .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="light"] .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="light"] .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .order-md-first{-ms-flex-order:-1;order:-1}:root[mode="light"] .order-md-last{-ms-flex-order:13;order:13}:root[mode="light"] .order-md-0{-ms-flex-order:0;order:0}:root[mode="light"] .order-md-1{-ms-flex-order:1;order:1}:root[mode="light"] .order-md-2{-ms-flex-order:2;order:2}:root[mode="light"] .order-md-3{-ms-flex-order:3;order:3}:root[mode="light"] .order-md-4{-ms-flex-order:4;order:4}:root[mode="light"] .order-md-5{-ms-flex-order:5;order:5}:root[mode="light"] .order-md-6{-ms-flex-order:6;order:6}:root[mode="light"] .order-md-7{-ms-flex-order:7;order:7}:root[mode="light"] .order-md-8{-ms-flex-order:8;order:8}:root[mode="light"] .order-md-9{-ms-flex-order:9;order:9}:root[mode="light"] .order-md-10{-ms-flex-order:10;order:10}:root[mode="light"] .order-md-11{-ms-flex-order:11;order:11}:root[mode="light"] .order-md-12{-ms-flex-order:12;order:12}:root[mode="light"] .offset-md-0{margin-left:0}:root[mode="light"] .offset-md-1{margin-left:8.333333%}:root[mode="light"] .offset-md-2{margin-left:16.666667%}:root[mode="light"] .offset-md-3{margin-left:25%}:root[mode="light"] .offset-md-4{margin-left:33.333333%}:root[mode="light"] .offset-md-5{margin-left:41.666667%}:root[mode="light"] .offset-md-6{margin-left:50%}:root[mode="light"] .offset-md-7{margin-left:58.333333%}:root[mode="light"] .offset-md-8{margin-left:66.666667%}:root[mode="light"] .offset-md-9{margin-left:75%}:root[mode="light"] .offset-md-10{margin-left:83.333333%}:root[mode="light"] .offset-md-11{margin-left:91.666667%}}@media (min-width: 992px){:root[mode="light"] .col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="light"] .row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="light"] .row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="light"] .col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="light"] .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="light"] .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="light"] .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="light"] .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="light"] .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="light"] .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="light"] .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .order-lg-first{-ms-flex-order:-1;order:-1}:root[mode="light"] .order-lg-last{-ms-flex-order:13;order:13}:root[mode="light"] .order-lg-0{-ms-flex-order:0;order:0}:root[mode="light"] .order-lg-1{-ms-flex-order:1;order:1}:root[mode="light"] .order-lg-2{-ms-flex-order:2;order:2}:root[mode="light"] .order-lg-3{-ms-flex-order:3;order:3}:root[mode="light"] .order-lg-4{-ms-flex-order:4;order:4}:root[mode="light"] .order-lg-5{-ms-flex-order:5;order:5}:root[mode="light"] .order-lg-6{-ms-flex-order:6;order:6}:root[mode="light"] .order-lg-7{-ms-flex-order:7;order:7}:root[mode="light"] .order-lg-8{-ms-flex-order:8;order:8}:root[mode="light"] .order-lg-9{-ms-flex-order:9;order:9}:root[mode="light"] .order-lg-10{-ms-flex-order:10;order:10}:root[mode="light"] .order-lg-11{-ms-flex-order:11;order:11}:root[mode="light"] .order-lg-12{-ms-flex-order:12;order:12}:root[mode="light"] .offset-lg-0{margin-left:0}:root[mode="light"] .offset-lg-1{margin-left:8.333333%}:root[mode="light"] .offset-lg-2{margin-left:16.666667%}:root[mode="light"] .offset-lg-3{margin-left:25%}:root[mode="light"] .offset-lg-4{margin-left:33.333333%}:root[mode="light"] .offset-lg-5{margin-left:41.666667%}:root[mode="light"] .offset-lg-6{margin-left:50%}:root[mode="light"] .offset-lg-7{margin-left:58.333333%}:root[mode="light"] .offset-lg-8{margin-left:66.666667%}:root[mode="light"] .offset-lg-9{margin-left:75%}:root[mode="light"] .offset-lg-10{margin-left:83.333333%}:root[mode="light"] .offset-lg-11{margin-left:91.666667%}}@media (min-width: 1200px){:root[mode="light"] .col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}:root[mode="light"] .row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}:root[mode="light"] .row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}:root[mode="light"] .col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}:root[mode="light"] .col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}:root[mode="light"] .col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}:root[mode="light"] .col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}:root[mode="light"] .col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}:root[mode="light"] .col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}:root[mode="light"] .col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}:root[mode="light"] .col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}:root[mode="light"] .col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}:root[mode="light"] .col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}:root[mode="light"] .col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}:root[mode="light"] .col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}:root[mode="light"] .order-xl-first{-ms-flex-order:-1;order:-1}:root[mode="light"] .order-xl-last{-ms-flex-order:13;order:13}:root[mode="light"] .order-xl-0{-ms-flex-order:0;order:0}:root[mode="light"] .order-xl-1{-ms-flex-order:1;order:1}:root[mode="light"] .order-xl-2{-ms-flex-order:2;order:2}:root[mode="light"] .order-xl-3{-ms-flex-order:3;order:3}:root[mode="light"] .order-xl-4{-ms-flex-order:4;order:4}:root[mode="light"] .order-xl-5{-ms-flex-order:5;order:5}:root[mode="light"] .order-xl-6{-ms-flex-order:6;order:6}:root[mode="light"] .order-xl-7{-ms-flex-order:7;order:7}:root[mode="light"] .order-xl-8{-ms-flex-order:8;order:8}:root[mode="light"] .order-xl-9{-ms-flex-order:9;order:9}:root[mode="light"] .order-xl-10{-ms-flex-order:10;order:10}:root[mode="light"] .order-xl-11{-ms-flex-order:11;order:11}:root[mode="light"] .order-xl-12{-ms-flex-order:12;order:12}:root[mode="light"] .offset-xl-0{margin-left:0}:root[mode="light"] .offset-xl-1{margin-left:8.333333%}:root[mode="light"] .offset-xl-2{margin-left:16.666667%}:root[mode="light"] .offset-xl-3{margin-left:25%}:root[mode="light"] .offset-xl-4{margin-left:33.333333%}:root[mode="light"] .offset-xl-5{margin-left:41.666667%}:root[mode="light"] .offset-xl-6{margin-left:50%}:root[mode="light"] .offset-xl-7{margin-left:58.333333%}:root[mode="light"] .offset-xl-8{margin-left:66.666667%}:root[mode="light"] .offset-xl-9{margin-left:75%}:root[mode="light"] .offset-xl-10{margin-left:83.333333%}:root[mode="light"] .offset-xl-11{margin-left:91.666667%}}:root[mode="light"] .table{width:100%;margin-bottom:1rem;color:#212529}:root[mode="light"] .table th,:root[mode="light"] .table td{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}:root[mode="light"] .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}:root[mode="light"] .table tbody+tbody{border-top:2px solid #dee2e6}:root[mode="light"] .table-sm th,:root[mode="light"] .table-sm td{padding:0.3rem}:root[mode="light"] .table-bordered{border:1px solid #dee2e6}:root[mode="light"] .table-bordered th,:root[mode="light"] .table-bordered td{border:1px solid #dee2e6}:root[mode="light"] .table-bordered thead th,:root[mode="light"] .table-bordered thead td{border-bottom-width:2px}:root[mode="light"] .table-borderless th,:root[mode="light"] .table-borderless td,:root[mode="light"] .table-borderless thead th,:root[mode="light"] .table-borderless tbody+tbody{border:0}:root[mode="light"] .table-striped tbody tr:nth-of-type(odd){background-color:#ecf0f1}:root[mode="light"] .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}:root[mode="light"] .table-primary,:root[mode="light"] .table-primary>th,:root[mode="light"] .table-primary>td{background-color:#c4c9ce}:root[mode="light"] .table-primary th,:root[mode="light"] .table-primary td,:root[mode="light"] .table-primary thead th,:root[mode="light"] .table-primary tbody+tbody{border-color:#919ba4}:root[mode="light"] .table-hover .table-primary:hover{background-color:#b6bcc2}:root[mode="light"] .table-hover .table-primary:hover>td,:root[mode="light"] .table-hover .table-primary:hover>th{background-color:#b6bcc2}:root[mode="light"] .table-secondary,:root[mode="light"] .table-secondary>th,:root[mode="light"] .table-secondary>td{background-color:#e1e6e6}:root[mode="light"] .table-secondary th,:root[mode="light"] .table-secondary td,:root[mode="light"] .table-secondary thead th,:root[mode="light"] .table-secondary tbody+tbody{border-color:#c8d0d1}:root[mode="light"] .table-hover .table-secondary:hover{background-color:#d3dada}:root[mode="light"] .table-hover .table-secondary:hover>td,:root[mode="light"] .table-hover .table-secondary:hover>th{background-color:#d3dada}:root[mode="light"] .table-success,:root[mode="light"] .table-success>th,:root[mode="light"] .table-success>td{background-color:#beece3}:root[mode="light"] .table-success th,:root[mode="light"] .table-success td,:root[mode="light"] .table-success thead th,:root[mode="light"] .table-success tbody+tbody{border-color:#87dccc}:root[mode="light"] .table-hover .table-success:hover{background-color:#aae6db}:root[mode="light"] .table-hover .table-success:hover>td,:root[mode="light"] .table-hover .table-success:hover>th{background-color:#aae6db}:root[mode="light"] .table-info,:root[mode="light"] .table-info>th,:root[mode="light"] .table-info>td{background-color:#c6e2f5}:root[mode="light"] .table-info th,:root[mode="light"] .table-info td,:root[mode="light"] .table-info thead th,:root[mode="light"] .table-info tbody+tbody{border-color:#95c9ec}:root[mode="light"] .table-hover .table-info:hover{background-color:#b0d7f1}:root[mode="light"] .table-hover .table-info:hover>td,:root[mode="light"] .table-hover .table-info:hover>th{background-color:#b0d7f1}:root[mode="light"] .table-warning,:root[mode="light"] .table-warning>th,:root[mode="light"] .table-warning>td{background-color:#fce3bd}:root[mode="light"] .table-warning th,:root[mode="light"] .table-warning td,:root[mode="light"] .table-warning thead th,:root[mode="light"] .table-warning tbody+tbody{border-color:#f9cc84}:root[mode="light"] .table-hover .table-warning:hover{background-color:#fbd9a5}:root[mode="light"] .table-hover .table-warning:hover>td,:root[mode="light"] .table-hover .table-warning:hover>th{background-color:#fbd9a5}:root[mode="light"] .table-danger,:root[mode="light"] .table-danger>th,:root[mode="light"] .table-danger>td{background-color:#f8cdc8}:root[mode="light"] .table-danger th,:root[mode="light"] .table-danger td,:root[mode="light"] .table-danger thead th,:root[mode="light"] .table-danger tbody+tbody{border-color:#f3a29a}:root[mode="light"] .table-hover .table-danger:hover{background-color:#f5b8b1}:root[mode="light"] .table-hover .table-danger:hover>td,:root[mode="light"] .table-hover .table-danger:hover>th{background-color:#f5b8b1}:root[mode="light"] .table-light,:root[mode="light"] .table-light>th,:root[mode="light"] .table-light>td{background-color:#fafbfb}:root[mode="light"] .table-light th,:root[mode="light"] .table-light td,:root[mode="light"] .table-light thead th,:root[mode="light"] .table-light tbody+tbody{border-color:#f5f7f8}:root[mode="light"] .table-hover .table-light:hover{background-color:#ecf0f0}:root[mode="light"] .table-hover .table-light:hover>td,:root[mode="light"] .table-hover .table-light:hover>th{background-color:#ecf0f0}:root[mode="light"] .table-dark,:root[mode="light"] .table-dark>th,:root[mode="light"] .table-dark>td{background-color:#dadedf}:root[mode="light"] .table-dark th,:root[mode="light"] .table-dark td,:root[mode="light"] .table-dark thead th,:root[mode="light"] .table-dark tbody+tbody{border-color:#bac2c3}:root[mode="light"] .table-hover .table-dark:hover{background-color:#ccd2d3}:root[mode="light"] .table-hover .table-dark:hover>td,:root[mode="light"] .table-hover .table-dark:hover>th{background-color:#ccd2d3}:root[mode="light"] .table-active,:root[mode="light"] .table-active>th,:root[mode="light"] .table-active>td{background-color:rgba(0,0,0,0.075)}:root[mode="light"] .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}:root[mode="light"] .table-hover .table-active:hover>td,:root[mode="light"] .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}:root[mode="light"] .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}:root[mode="light"] .table .thead-light th{color:#7b8a8b;background-color:#ecf0f1;border-color:#dee2e6}:root[mode="light"] .table-dark{color:#fff;background-color:#343a40}:root[mode="light"] .table-dark th,:root[mode="light"] .table-dark td,:root[mode="light"] .table-dark thead th{border-color:#454d55}:root[mode="light"] .table-dark.table-bordered{border:0}:root[mode="light"] .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}:root[mode="light"] .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){:root[mode="light"] .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="light"] .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){:root[mode="light"] .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="light"] .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){:root[mode="light"] .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="light"] .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){:root[mode="light"] .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="light"] .table-responsive-xl>.table-bordered{border:0}}:root[mode="light"] .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}:root[mode="light"] .table-responsive>.table-bordered{border:0}:root[mode="light"] .form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="light"] .form-control{transition:none}}:root[mode="light"] .form-control::-ms-expand{background-color:transparent;border:0}:root[mode="light"] .form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #7b8a8b}:root[mode="light"] .form-control:focus{color:#7b8a8b;background-color:#fff;border-color:#597ea2;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .form-control::-webkit-input-placeholder{color:#95a5a6;opacity:1}:root[mode="light"] .form-control::-moz-placeholder{color:#95a5a6;opacity:1}:root[mode="light"] .form-control:-ms-input-placeholder{color:#95a5a6;opacity:1}:root[mode="light"] .form-control::-ms-input-placeholder{color:#95a5a6;opacity:1}:root[mode="light"] .form-control::placeholder{color:#95a5a6;opacity:1}:root[mode="light"] .form-control:disabled,:root[mode="light"] .form-control[readonly]{background-color:#ecf0f1;opacity:1}:root[mode="light"] input[type="date"].form-control,:root[mode="light"] input[type="time"].form-control,:root[mode="light"] input[type="datetime-local"].form-control,:root[mode="light"] input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}:root[mode="light"] select.form-control:focus::-ms-value{color:#7b8a8b;background-color:#fff}:root[mode="light"] .form-control-file,:root[mode="light"] .form-control-range{display:block;width:100%}:root[mode="light"] .col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}:root[mode="light"] .col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.171875rem;line-height:1.5}:root[mode="light"] .col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.825rem;line-height:1.5}:root[mode="light"] .form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:0.9375rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}:root[mode="light"] .form-control-plaintext.form-control-sm,:root[mode="light"] .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}:root[mode="light"] .form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}:root[mode="light"] .form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}:root[mode="light"] select.form-control[size],:root[mode="light"] select.form-control[multiple]{height:auto}:root[mode="light"] textarea.form-control{height:auto}:root[mode="light"] .form-group{margin-bottom:1rem}:root[mode="light"] .form-text{display:block;margin-top:0.25rem}:root[mode="light"] .form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}:root[mode="light"] .form-row>.col,:root[mode="light"] .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}:root[mode="light"] .form-check{position:relative;display:block;padding-left:1.25rem}:root[mode="light"] .form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}:root[mode="light"] .form-check-input[disabled] ~ .form-check-label,:root[mode="light"] .form-check-input:disabled ~ .form-check-label{color:#95a5a6}:root[mode="light"] .form-check-label{margin-bottom:0}:root[mode="light"] .form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}:root[mode="light"] .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}:root[mode="light"] .valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#18bc9c}:root[mode="light"] .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(24,188,156,0.9);border-radius:0.25rem}:root[mode="light"] .form-row>.col>.valid-tooltip,:root[mode="light"] .form-row>[class*="col-"]>.valid-tooltip{left:5px}:root[mode="light"] .was-validated :valid ~ .valid-feedback,:root[mode="light"] .was-validated :valid ~ .valid-tooltip,:root[mode="light"] .is-valid ~ .valid-feedback,:root[mode="light"] .is-valid ~ .valid-tooltip{display:block}:root[mode="light"] .was-validated .form-control:valid,:root[mode="light"] .form-control.is-valid{border-color:#18bc9c;padding-right:calc(1.5em + 0.75rem);background-image:url('+z+');background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}:root[mode="light"] .was-validated .form-control:valid:focus,:root[mode="light"] .form-control.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}:root[mode="light"] .was-validated textarea.form-control:valid,:root[mode="light"] textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}:root[mode="light"] .was-validated .custom-select:valid,:root[mode="light"] .custom-select.is-valid{border-color:#18bc9c;padding-right:calc(0.75em + 2.3125rem);background:url('+E+") right 0.75rem center/8px 10px no-repeat,#fff url("+z+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}:root[mode="light"] .was-validated .custom-select:valid:focus,:root[mode="light"] .custom-select.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}:root[mode="light"] .was-validated .form-check-input:valid ~ .form-check-label,:root[mode="light"] .form-check-input.is-valid ~ .form-check-label{color:#18bc9c}:root[mode="light"] .was-validated .form-check-input:valid ~ .valid-feedback,:root[mode="light"] .was-validated .form-check-input:valid ~ .valid-tooltip,:root[mode="light"] .form-check-input.is-valid ~ .valid-feedback,:root[mode="light"] .form-check-input.is-valid ~ .valid-tooltip{display:block}:root[mode="light"] .was-validated .custom-control-input:valid ~ .custom-control-label,:root[mode="light"] .custom-control-input.is-valid ~ .custom-control-label{color:#18bc9c}:root[mode="light"] .was-validated .custom-control-input:valid ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#18bc9c}:root[mode="light"] .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#24e3be;background-color:#24e3be}:root[mode="light"] .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}:root[mode="light"] .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#18bc9c}:root[mode="light"] .was-validated .custom-file-input:valid ~ .custom-file-label,:root[mode="light"] .custom-file-input.is-valid ~ .custom-file-label{border-color:#18bc9c}:root[mode="light"] .was-validated .custom-file-input:valid:focus ~ .custom-file-label,:root[mode="light"] .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}:root[mode="light"] .invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#e74c3c}:root[mode="light"] .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(231,76,60,0.9);border-radius:0.25rem}:root[mode="light"] .form-row>.col>.invalid-tooltip,:root[mode="light"] .form-row>[class*="col-"]>.invalid-tooltip{left:5px}:root[mode="light"] .was-validated :invalid ~ .invalid-feedback,:root[mode="light"] .was-validated :invalid ~ .invalid-tooltip,:root[mode="light"] .is-invalid ~ .invalid-feedback,:root[mode="light"] .is-invalid ~ .invalid-tooltip{display:block}:root[mode="light"] .was-validated .form-control:invalid,:root[mode="light"] .form-control.is-invalid{border-color:#e74c3c;padding-right:calc(1.5em + 0.75rem);background-image:url('+j+');background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}:root[mode="light"] .was-validated .form-control:invalid:focus,:root[mode="light"] .form-control.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="light"] .was-validated textarea.form-control:invalid,:root[mode="light"] textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}:root[mode="light"] .was-validated .custom-select:invalid,:root[mode="light"] .custom-select.is-invalid{border-color:#e74c3c;padding-right:calc(0.75em + 2.3125rem);background:url('+E+") right 0.75rem center/8px 10px no-repeat,#fff url("+j+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}:root[mode="light"] .was-validated .custom-select:invalid:focus,:root[mode="light"] .custom-select.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="light"] .was-validated .form-check-input:invalid ~ .form-check-label,:root[mode="light"] .form-check-input.is-invalid ~ .form-check-label{color:#e74c3c}:root[mode="light"] .was-validated .form-check-input:invalid ~ .invalid-feedback,:root[mode="light"] .was-validated .form-check-input:invalid ~ .invalid-tooltip,:root[mode="light"] .form-check-input.is-invalid ~ .invalid-feedback,:root[mode="light"] .form-check-input.is-invalid ~ .invalid-tooltip{display:block}:root[mode="light"] .was-validated .custom-control-input:invalid ~ .custom-control-label,:root[mode="light"] .custom-control-input.is-invalid ~ .custom-control-label{color:#e74c3c}:root[mode="light"] .was-validated .custom-control-input:invalid ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#e74c3c}:root[mode="light"] .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#ed7669;background-color:#ed7669}:root[mode="light"] .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="light"] .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,:root[mode="light"] .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#e74c3c}:root[mode="light"] .was-validated .custom-file-input:invalid ~ .custom-file-label,:root[mode="light"] .custom-file-input.is-invalid ~ .custom-file-label{border-color:#e74c3c}:root[mode="light"] .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,:root[mode="light"] .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}:root[mode="light"] .form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}:root[mode="light"] .form-inline .form-check{width:100%}@media (min-width: 576px){:root[mode="light"] .form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}:root[mode="light"] .form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}:root[mode="light"] .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}:root[mode="light"] .form-inline .form-control-plaintext{display:inline-block}:root[mode="light"] .form-inline .input-group,:root[mode="light"] .form-inline .custom-select{width:auto}:root[mode="light"] .form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}:root[mode="light"] .form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}:root[mode="light"] .form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}:root[mode="light"] .form-inline .custom-control-label{margin-bottom:0}}:root[mode="light"] .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:0.9375rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="light"] .btn{transition:none}}:root[mode="light"] .btn:hover{color:#212529;text-decoration:none}:root[mode="light"] .btn:focus,:root[mode="light"] .btn.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .btn.disabled,:root[mode="light"] .btn:disabled{opacity:0.65}:root[mode="light"] .btn:not(:disabled):not(.disabled){cursor:pointer}:root[mode="light"] a.btn.disabled,:root[mode="light"] fieldset:disabled a.btn{pointer-events:none}:root[mode="light"] .btn-primary{color:#fff;background-color:#2c3e50;border-color:#2c3e50}:root[mode="light"] .btn-primary:hover{color:#fff;background-color:#1e2b37;border-color:#1a252f}:root[mode="light"] .btn-primary:focus,:root[mode="light"] .btn-primary.focus{color:#fff;background-color:#1e2b37;border-color:#1a252f;box-shadow:0 0 0 0.2rem rgba(76,91,106,0.5)}:root[mode="light"] .btn-primary.disabled,:root[mode="light"] .btn-primary:disabled{color:#fff;background-color:#2c3e50;border-color:#2c3e50}:root[mode="light"] .btn-primary:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-primary:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#1a252f;border-color:#151e27}:root[mode="light"] .btn-primary:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-primary:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(76,91,106,0.5)}:root[mode="light"] .btn-secondary{color:#fff;background-color:#95a5a6;border-color:#95a5a6}:root[mode="light"] .btn-secondary:hover{color:#fff;background-color:#809395;border-color:#798d8f}:root[mode="light"] .btn-secondary:focus,:root[mode="light"] .btn-secondary.focus{color:#fff;background-color:#809395;border-color:#798d8f;box-shadow:0 0 0 0.2rem rgba(165,179,179,0.5)}:root[mode="light"] .btn-secondary.disabled,:root[mode="light"] .btn-secondary:disabled{color:#fff;background-color:#95a5a6;border-color:#95a5a6}:root[mode="light"] .btn-secondary:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-secondary:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#798d8f;border-color:#738789}:root[mode="light"] .btn-secondary:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-secondary:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(165,179,179,0.5)}:root[mode="light"] .btn-success{color:#fff;background-color:#18bc9c;border-color:#18bc9c}:root[mode="light"] .btn-success:hover{color:#fff;background-color:#149a80;border-color:#128f76}:root[mode="light"] .btn-success:focus,:root[mode="light"] .btn-success.focus{color:#fff;background-color:#149a80;border-color:#128f76;box-shadow:0 0 0 0.2rem rgba(59,198,171,0.5)}:root[mode="light"] .btn-success.disabled,:root[mode="light"] .btn-success:disabled{color:#fff;background-color:#18bc9c;border-color:#18bc9c}:root[mode="light"] .btn-success:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-success:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-success.dropdown-toggle{color:#fff;background-color:#128f76;border-color:#11836d}:root[mode="light"] .btn-success:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-success:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(59,198,171,0.5)}:root[mode="light"] .btn-info{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="light"] .btn-info:hover{color:#fff;background-color:#2384c6;border-color:#217dbb}:root[mode="light"] .btn-info:focus,:root[mode="light"] .btn-info.focus{color:#fff;background-color:#2384c6;border-color:#217dbb;box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}:root[mode="light"] .btn-info.disabled,:root[mode="light"] .btn-info:disabled{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="light"] .btn-info:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-info:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-info.dropdown-toggle{color:#fff;background-color:#217dbb;border-color:#1f76b0}:root[mode="light"] .btn-info:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-info:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}:root[mode="light"] .btn-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="light"] .btn-warning:hover{color:#fff;background-color:#d4860b;border-color:#c87f0a}:root[mode="light"] .btn-warning:focus,:root[mode="light"] .btn-warning.focus{color:#fff;background-color:#d4860b;border-color:#c87f0a;box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}:root[mode="light"] .btn-warning.disabled,:root[mode="light"] .btn-warning:disabled{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="light"] .btn-warning:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-warning:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-warning.dropdown-toggle{color:#fff;background-color:#c87f0a;border-color:#bc770a}:root[mode="light"] .btn-warning:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-warning:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}:root[mode="light"] .btn-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="light"] .btn-danger:hover{color:#fff;background-color:#e12e1c;border-color:#d62c1a}:root[mode="light"] .btn-danger:focus,:root[mode="light"] .btn-danger.focus{color:#fff;background-color:#e12e1c;border-color:#d62c1a;box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}:root[mode="light"] .btn-danger.disabled,:root[mode="light"] .btn-danger:disabled{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="light"] .btn-danger:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-danger:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#d62c1a;border-color:#ca2a19}:root[mode="light"] .btn-danger:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-danger:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}:root[mode="light"] .btn-light{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}:root[mode="light"] .btn-light:hover{color:#212529;background-color:#d6dfe1;border-color:#cfd9db}:root[mode="light"] .btn-light:focus,:root[mode="light"] .btn-light.focus{color:#212529;background-color:#d6dfe1;border-color:#cfd9db;box-shadow:0 0 0 0.2rem rgba(206,210,211,0.5)}:root[mode="light"] .btn-light.disabled,:root[mode="light"] .btn-light:disabled{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}:root[mode="light"] .btn-light:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-light:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-light.dropdown-toggle{color:#212529;background-color:#cfd9db;border-color:#c7d3d6}:root[mode="light"] .btn-light:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-light:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(206,210,211,0.5)}:root[mode="light"] .btn-dark{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}:root[mode="light"] .btn-dark:hover{color:#fff;background-color:#697677;border-color:#636f70}:root[mode="light"] .btn-dark:focus,:root[mode="light"] .btn-dark.focus{color:#fff;background-color:#697677;border-color:#636f70;box-shadow:0 0 0 0.2rem rgba(143,156,156,0.5)}:root[mode="light"] .btn-dark.disabled,:root[mode="light"] .btn-dark:disabled{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}:root[mode="light"] .btn-dark:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-dark:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-dark.dropdown-toggle{color:#fff;background-color:#636f70;border-color:#5d696a}:root[mode="light"] .btn-dark:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-dark:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(143,156,156,0.5)}:root[mode="light"] .btn-outline-primary{color:#2c3e50;border-color:#2c3e50}:root[mode="light"] .btn-outline-primary:hover{color:#fff;background-color:#2c3e50;border-color:#2c3e50}:root[mode="light"] .btn-outline-primary:focus,:root[mode="light"] .btn-outline-primary.focus{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}:root[mode="light"] .btn-outline-primary.disabled,:root[mode="light"] .btn-outline-primary:disabled{color:#2c3e50;background-color:transparent}:root[mode="light"] .btn-outline-primary:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-primary:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#2c3e50;border-color:#2c3e50}:root[mode="light"] .btn-outline-primary:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-primary:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}:root[mode="light"] .btn-outline-secondary{color:#95a5a6;border-color:#95a5a6}:root[mode="light"] .btn-outline-secondary:hover{color:#fff;background-color:#95a5a6;border-color:#95a5a6}:root[mode="light"] .btn-outline-secondary:focus,:root[mode="light"] .btn-outline-secondary.focus{box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}:root[mode="light"] .btn-outline-secondary.disabled,:root[mode="light"] .btn-outline-secondary:disabled{color:#95a5a6;background-color:transparent}:root[mode="light"] .btn-outline-secondary:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-secondary:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#95a5a6;border-color:#95a5a6}:root[mode="light"] .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}:root[mode="light"] .btn-outline-success{color:#18bc9c;border-color:#18bc9c}:root[mode="light"] .btn-outline-success:hover{color:#fff;background-color:#18bc9c;border-color:#18bc9c}:root[mode="light"] .btn-outline-success:focus,:root[mode="light"] .btn-outline-success.focus{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}:root[mode="light"] .btn-outline-success.disabled,:root[mode="light"] .btn-outline-success:disabled{color:#18bc9c;background-color:transparent}:root[mode="light"] .btn-outline-success:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-success:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#18bc9c;border-color:#18bc9c}:root[mode="light"] .btn-outline-success:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-success:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}:root[mode="light"] .btn-outline-info{color:#3498db;border-color:#3498db}:root[mode="light"] .btn-outline-info:hover{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="light"] .btn-outline-info:focus,:root[mode="light"] .btn-outline-info.focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}:root[mode="light"] .btn-outline-info.disabled,:root[mode="light"] .btn-outline-info:disabled{color:#3498db;background-color:transparent}:root[mode="light"] .btn-outline-info:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-info:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#3498db;border-color:#3498db}:root[mode="light"] .btn-outline-info:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-info:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}:root[mode="light"] .btn-outline-warning{color:#f39c12;border-color:#f39c12}:root[mode="light"] .btn-outline-warning:hover{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="light"] .btn-outline-warning:focus,:root[mode="light"] .btn-outline-warning.focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}:root[mode="light"] .btn-outline-warning.disabled,:root[mode="light"] .btn-outline-warning:disabled{color:#f39c12;background-color:transparent}:root[mode="light"] .btn-outline-warning:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-warning:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f39c12;border-color:#f39c12}:root[mode="light"] .btn-outline-warning:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-warning:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}:root[mode="light"] .btn-outline-danger{color:#e74c3c;border-color:#e74c3c}:root[mode="light"] .btn-outline-danger:hover{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="light"] .btn-outline-danger:focus,:root[mode="light"] .btn-outline-danger.focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}:root[mode="light"] .btn-outline-danger.disabled,:root[mode="light"] .btn-outline-danger:disabled{color:#e74c3c;background-color:transparent}:root[mode="light"] .btn-outline-danger:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-danger:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#e74c3c;border-color:#e74c3c}:root[mode="light"] .btn-outline-danger:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-danger:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}:root[mode="light"] .btn-outline-light{color:#ecf0f1;border-color:#ecf0f1}:root[mode="light"] .btn-outline-light:hover{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}:root[mode="light"] .btn-outline-light:focus,:root[mode="light"] .btn-outline-light.focus{box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}:root[mode="light"] .btn-outline-light.disabled,:root[mode="light"] .btn-outline-light:disabled{color:#ecf0f1;background-color:transparent}:root[mode="light"] .btn-outline-light:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-light:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}:root[mode="light"] .btn-outline-light:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-light:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}:root[mode="light"] .btn-outline-dark{color:#7b8a8b;border-color:#7b8a8b}:root[mode="light"] .btn-outline-dark:hover{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}:root[mode="light"] .btn-outline-dark:focus,:root[mode="light"] .btn-outline-dark.focus{box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}:root[mode="light"] .btn-outline-dark.disabled,:root[mode="light"] .btn-outline-dark:disabled{color:#7b8a8b;background-color:transparent}:root[mode="light"] .btn-outline-dark:not(:disabled):not(.disabled):active,:root[mode="light"] .btn-outline-dark:not(:disabled):not(.disabled).active,:root[mode="light"] .show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}:root[mode="light"] .btn-outline-dark:not(:disabled):not(.disabled):active:focus,:root[mode="light"] .btn-outline-dark:not(:disabled):not(.disabled).active:focus,:root[mode="light"] .show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}:root[mode="light"] .btn-link{font-weight:400;color:#18bc9c;text-decoration:none}:root[mode="light"] .btn-link:hover{color:#0f7864;text-decoration:underline}:root[mode="light"] .btn-link:focus,:root[mode="light"] .btn-link.focus{text-decoration:underline}:root[mode="light"] .btn-link:disabled,:root[mode="light"] .btn-link.disabled{color:#95a5a6;pointer-events:none}:root[mode="light"] .btn-lg,:root[mode="light"] .btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}:root[mode="light"] .btn-sm,:root[mode="light"] .btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}:root[mode="light"] .btn-block{display:block;width:100%}:root[mode="light"] .btn-block+.btn-block{margin-top:0.5rem}:root[mode="light"] input[type="submit"].btn-block,:root[mode="light"] input[type="reset"].btn-block,:root[mode="light"] input[type="button"].btn-block{width:100%}:root[mode="light"] .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){:root[mode="light"] .fade{transition:none}}:root[mode="light"] .fade:not(.show){opacity:0}:root[mode="light"] .collapse:not(.show){display:none}:root[mode="light"] .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){:root[mode="light"] .collapsing{transition:none}}:root[mode="light"] .dropup,:root[mode="light"] .dropright,:root[mode="light"] .dropdown,:root[mode="light"] .dropleft{position:relative}:root[mode="light"] .dropdown-toggle{white-space:nowrap}:root[mode="light"] .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}:root[mode="light"] .dropdown-toggle:empty::after{margin-left:0}:root[mode="light"] .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:0.9375rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:0.25rem}:root[mode="light"] .dropdown-menu-left{right:auto;left:0}:root[mode="light"] .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){:root[mode="light"] .dropdown-menu-sm-left{right:auto;left:0}:root[mode="light"] .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){:root[mode="light"] .dropdown-menu-md-left{right:auto;left:0}:root[mode="light"] .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){:root[mode="light"] .dropdown-menu-lg-left{right:auto;left:0}:root[mode="light"] .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){:root[mode="light"] .dropdown-menu-xl-left{right:auto;left:0}:root[mode="light"] .dropdown-menu-xl-right{right:0;left:auto}}:root[mode="light"] .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}:root[mode="light"] .dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}:root[mode="light"] .dropup .dropdown-toggle:empty::after{margin-left:0}:root[mode="light"] .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}:root[mode="light"] .dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}:root[mode="light"] .dropright .dropdown-toggle:empty::after{margin-left:0}:root[mode="light"] .dropright .dropdown-toggle::after{vertical-align:0}:root[mode="light"] .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}:root[mode="light"] .dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}:root[mode="light"] .dropleft .dropdown-toggle::after{display:none}:root[mode="light"] .dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}:root[mode="light"] .dropleft .dropdown-toggle:empty::after{margin-left:0}:root[mode="light"] .dropleft .dropdown-toggle::before{vertical-align:0}:root[mode="light"] .dropdown-menu[x-placement^="top"],:root[mode="light"] .dropdown-menu[x-placement^="right"],:root[mode="light"] .dropdown-menu[x-placement^="bottom"],:root[mode="light"] .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}:root[mode="light"] .dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #ecf0f1}:root[mode="light"] .dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#7b8a8b;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}:root[mode="light"] .dropdown-item:hover,:root[mode="light"] .dropdown-item:focus{color:#fff;text-decoration:none;background-color:#2c3e50}:root[mode="light"] .dropdown-item.active,:root[mode="light"] .dropdown-item:active{color:#fff;text-decoration:none;background-color:#2c3e50}:root[mode="light"] .dropdown-item.disabled,:root[mode="light"] .dropdown-item:disabled{color:#b4bcc2;pointer-events:none;background-color:transparent}:root[mode="light"] .dropdown-menu.show{display:block}:root[mode="light"] .dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.825rem;color:#95a5a6;white-space:nowrap}:root[mode="light"] .dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#7b8a8b}:root[mode="light"] .btn-group,:root[mode="light"] .btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}:root[mode="light"] .btn-group>.btn,:root[mode="light"] .btn-group-vertical>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}:root[mode="light"] .btn-group>.btn:hover,:root[mode="light"] .btn-group-vertical>.btn:hover{z-index:1}:root[mode="light"] .btn-group>.btn:focus,:root[mode="light"] .btn-group>.btn:active,:root[mode="light"] .btn-group>.btn.active,:root[mode="light"] .btn-group-vertical>.btn:focus,:root[mode="light"] .btn-group-vertical>.btn:active,:root[mode="light"] .btn-group-vertical>.btn.active{z-index:1}:root[mode="light"] .btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="light"] .btn-toolbar .input-group{width:auto}:root[mode="light"] .btn-group>.btn:not(:first-child),:root[mode="light"] .btn-group>.btn-group:not(:first-child){margin-left:-1px}:root[mode="light"] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),:root[mode="light"] .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="light"] .btn-group>.btn:not(:first-child),:root[mode="light"] .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="light"] .dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}:root[mode="light"] .dropdown-toggle-split::after,:root[mode="light"] .dropup .dropdown-toggle-split::after,:root[mode="light"] .dropright .dropdown-toggle-split::after{margin-left:0}:root[mode="light"] .dropleft .dropdown-toggle-split::before{margin-right:0}:root[mode="light"] .btn-sm+.dropdown-toggle-split,:root[mode="light"] .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}:root[mode="light"] .btn-lg+.dropdown-toggle-split,:root[mode="light"] .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}:root[mode="light"] .btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}:root[mode="light"] .btn-group-vertical>.btn,:root[mode="light"] .btn-group-vertical>.btn-group{width:100%}:root[mode="light"] .btn-group-vertical>.btn:not(:first-child),:root[mode="light"] .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}:root[mode="light"] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),:root[mode="light"] .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}:root[mode="light"] .btn-group-vertical>.btn:not(:first-child),:root[mode="light"] .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}:root[mode="light"] .btn-group-toggle>.btn,:root[mode="light"] .btn-group-toggle>.btn-group>.btn{margin-bottom:0}:root[mode="light"] .btn-group-toggle>.btn input[type="radio"],:root[mode="light"] .btn-group-toggle>.btn input[type="checkbox"],:root[mode="light"] .btn-group-toggle>.btn-group>.btn input[type="radio"],:root[mode="light"] .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}:root[mode="light"] .input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}:root[mode="light"] .input-group>.form-control,:root[mode="light"] .input-group>.form-control-plaintext,:root[mode="light"] .input-group>.custom-select,:root[mode="light"] .input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}:root[mode="light"] .input-group>.form-control+.form-control,:root[mode="light"] .input-group>.form-control+.custom-select,:root[mode="light"] .input-group>.form-control+.custom-file,:root[mode="light"] .input-group>.form-control-plaintext+.form-control,:root[mode="light"] .input-group>.form-control-plaintext+.custom-select,:root[mode="light"] .input-group>.form-control-plaintext+.custom-file,:root[mode="light"] .input-group>.custom-select+.form-control,:root[mode="light"] .input-group>.custom-select+.custom-select,:root[mode="light"] .input-group>.custom-select+.custom-file,:root[mode="light"] .input-group>.custom-file+.form-control,:root[mode="light"] .input-group>.custom-file+.custom-select,:root[mode="light"] .input-group>.custom-file+.custom-file{margin-left:-1px}:root[mode="light"] .input-group>.form-control:focus,:root[mode="light"] .input-group>.custom-select:focus,:root[mode="light"] .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}:root[mode="light"] .input-group>.custom-file .custom-file-input:focus{z-index:4}:root[mode="light"] .input-group>.form-control:not(:first-child),:root[mode="light"] .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="light"] .input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}:root[mode="light"] .input-group>.custom-file:not(:last-child) .custom-file-label,:root[mode="light"] .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="light"] .input-group:not(.has-validation)>.form-control:not(:last-child),:root[mode="light"] .input-group:not(.has-validation)>.custom-select:not(:last-child),:root[mode="light"] .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="light"] .input-group.has-validation>.form-control:nth-last-child(n+3),:root[mode="light"] .input-group.has-validation>.custom-select:nth-last-child(n+3),:root[mode="light"] .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="light"] .input-group-prepend,:root[mode="light"] .input-group-append{display:-ms-flexbox;display:flex}:root[mode="light"] .input-group-prepend .btn,:root[mode="light"] .input-group-append .btn{position:relative;z-index:2}:root[mode="light"] .input-group-prepend .btn:focus,:root[mode="light"] .input-group-append .btn:focus{z-index:3}:root[mode="light"] .input-group-prepend .btn+.btn,:root[mode="light"] .input-group-prepend .btn+.input-group-text,:root[mode="light"] .input-group-prepend .input-group-text+.input-group-text,:root[mode="light"] .input-group-prepend .input-group-text+.btn,:root[mode="light"] .input-group-append .btn+.btn,:root[mode="light"] .input-group-append .btn+.input-group-text,:root[mode="light"] .input-group-append .input-group-text+.input-group-text,:root[mode="light"] .input-group-append .input-group-text+.btn{margin-left:-1px}:root[mode="light"] .input-group-prepend{margin-right:-1px}:root[mode="light"] .input-group-append{margin-left:-1px}:root[mode="light"] .input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;text-align:center;white-space:nowrap;background-color:#ecf0f1;border:1px solid #ced4da;border-radius:0.25rem}:root[mode="light"] .input-group-text input[type="radio"],:root[mode="light"] .input-group-text input[type="checkbox"]{margin-top:0}:root[mode="light"] .input-group-lg>.form-control:not(textarea),:root[mode="light"] .input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}:root[mode="light"] .input-group-lg>.form-control,:root[mode="light"] .input-group-lg>.custom-select,:root[mode="light"] .input-group-lg>.input-group-prepend>.input-group-text,:root[mode="light"] .input-group-lg>.input-group-append>.input-group-text,:root[mode="light"] .input-group-lg>.input-group-prepend>.btn,:root[mode="light"] .input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}:root[mode="light"] .input-group-sm>.form-control:not(textarea),:root[mode="light"] .input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}:root[mode="light"] .input-group-sm>.form-control,:root[mode="light"] .input-group-sm>.custom-select,:root[mode="light"] .input-group-sm>.input-group-prepend>.input-group-text,:root[mode="light"] .input-group-sm>.input-group-append>.input-group-text,:root[mode="light"] .input-group-sm>.input-group-prepend>.btn,:root[mode="light"] .input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}:root[mode="light"] .input-group-lg>.custom-select,:root[mode="light"] .input-group-sm>.custom-select{padding-right:1.75rem}:root[mode="light"] .input-group>.input-group-prepend>.btn,:root[mode="light"] .input-group>.input-group-prepend>.input-group-text,:root[mode="light"] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,:root[mode="light"] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,:root[mode="light"] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,:root[mode="light"] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,:root[mode="light"] .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),:root[mode="light"] .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="light"] .input-group>.input-group-append>.btn,:root[mode="light"] .input-group>.input-group-append>.input-group-text,:root[mode="light"] .input-group>.input-group-prepend:not(:first-child)>.btn,:root[mode="light"] .input-group>.input-group-prepend:not(:first-child)>.input-group-text,:root[mode="light"] .input-group>.input-group-prepend:first-child>.btn:not(:first-child),:root[mode="light"] .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="light"] .custom-control{position:relative;z-index:1;display:block;min-height:1.40625rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}:root[mode="light"] .custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}:root[mode="light"] .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.203125rem;opacity:0}:root[mode="light"] .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#2c3e50;background-color:#2c3e50}:root[mode="light"] .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#597ea2}:root[mode="light"] .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#7997b5;border-color:#7997b5}:root[mode="light"] .custom-control-input[disabled] ~ .custom-control-label,:root[mode="light"] .custom-control-input:disabled ~ .custom-control-label{color:#95a5a6}:root[mode="light"] .custom-control-input[disabled] ~ .custom-control-label::before,:root[mode="light"] .custom-control-input:disabled ~ .custom-control-label::before{background-color:#ecf0f1}:root[mode="light"] .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}:root[mode="light"] .custom-control-label::before{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#b4bcc2 solid 1px}:root[mode="light"] .custom-control-label::after{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}:root[mode="light"] .custom-checkbox .custom-control-label::before{border-radius:0.25rem}:root[mode="light"] .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+S+')}:root[mode="light"] .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#2c3e50;background-color:#2c3e50}:root[mode="light"] .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url('+P+')}:root[mode="light"] .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}:root[mode="light"] .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}:root[mode="light"] .custom-radio .custom-control-label::before{border-radius:50%}:root[mode="light"] .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+T+')}:root[mode="light"] .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}:root[mode="light"] .custom-switch{padding-left:2.25rem}:root[mode="light"] .custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}:root[mode="light"] .custom-switch .custom-control-label::after{top:calc(0.203125rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#b4bcc2;border-radius:0.5rem;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="light"] .custom-switch .custom-control-label::after{transition:none}}:root[mode="light"] .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}:root[mode="light"] .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}:root[mode="light"] .custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;vertical-align:middle;background:#fff url('+E+') right 0.75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}:root[mode="light"] .custom-select:focus{border-color:#597ea2;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .custom-select:focus::-ms-value{color:#7b8a8b;background-color:#fff}:root[mode="light"] .custom-select[multiple],:root[mode="light"] .custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}:root[mode="light"] .custom-select:disabled{color:#95a5a6;background-color:#ecf0f1}:root[mode="light"] .custom-select::-ms-expand{display:none}:root[mode="light"] .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #7b8a8b}:root[mode="light"] .custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.825rem}:root[mode="light"] .custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.171875rem}:root[mode="light"] .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}:root[mode="light"] .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}:root[mode="light"] .custom-file-input:focus ~ .custom-file-label{border-color:#597ea2;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .custom-file-input[disabled] ~ .custom-file-label,:root[mode="light"] .custom-file-input:disabled ~ .custom-file-label{background-color:#ecf0f1}:root[mode="light"] .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}:root[mode="light"] .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}:root[mode="light"] .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#7b8a8b;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}:root[mode="light"] .custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#7b8a8b;content:"Browse";background-color:#ecf0f1;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}:root[mode="light"] .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}:root[mode="light"] .custom-range:focus{outline:0}:root[mode="light"] .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .custom-range::-moz-focus-outer{border:0}:root[mode="light"] .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#2c3e50;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){:root[mode="light"] .custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}:root[mode="light"] .custom-range::-webkit-slider-thumb:active{background-color:#7997b5}:root[mode="light"] .custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}:root[mode="light"] .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#2c3e50;border:0;border-radius:1rem;-moz-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){:root[mode="light"] .custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}:root[mode="light"] .custom-range::-moz-range-thumb:active{background-color:#7997b5}:root[mode="light"] .custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}:root[mode="light"] .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#2c3e50;border:0;border-radius:1rem;-ms-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){:root[mode="light"] .custom-range::-ms-thumb{-ms-transition:none;transition:none}}:root[mode="light"] .custom-range::-ms-thumb:active{background-color:#7997b5}:root[mode="light"] .custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}:root[mode="light"] .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}:root[mode="light"] .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}:root[mode="light"] .custom-range:disabled::-webkit-slider-thumb{background-color:#b4bcc2}:root[mode="light"] .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}:root[mode="light"] .custom-range:disabled::-moz-range-thumb{background-color:#b4bcc2}:root[mode="light"] .custom-range:disabled::-moz-range-track{cursor:default}:root[mode="light"] .custom-range:disabled::-ms-thumb{background-color:#b4bcc2}:root[mode="light"] .custom-control-label::before,:root[mode="light"] .custom-file-label,:root[mode="light"] .custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="light"] .custom-control-label::before,:root[mode="light"] .custom-file-label,:root[mode="light"] .custom-select{transition:none}}:root[mode="light"] .nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}:root[mode="light"] .nav-link{display:block;padding:0.5rem 2rem}:root[mode="light"] .nav-link:hover,:root[mode="light"] .nav-link:focus{text-decoration:none}:root[mode="light"] .nav-link.disabled{color:#95a5a6;pointer-events:none;cursor:default}:root[mode="light"] .nav-tabs{border-bottom:1px solid #ecf0f1}:root[mode="light"] .nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}:root[mode="light"] .nav-tabs .nav-link:hover,:root[mode="light"] .nav-tabs .nav-link:focus{border-color:#ecf0f1 #ecf0f1 #ecf0f1}:root[mode="light"] .nav-tabs .nav-link.disabled{color:#95a5a6;background-color:transparent;border-color:transparent}:root[mode="light"] .nav-tabs .nav-link.active,:root[mode="light"] .nav-tabs .nav-item.show .nav-link{color:#7b8a8b;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}:root[mode="light"] .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}:root[mode="light"] .nav-pills .nav-link{border-radius:0.25rem}:root[mode="light"] .nav-pills .nav-link.active,:root[mode="light"] .nav-pills .show>.nav-link{color:#fff;background-color:#2c3e50}:root[mode="light"] .nav-fill>.nav-link,:root[mode="light"] .nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}:root[mode="light"] .nav-justified>.nav-link,:root[mode="light"] .nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}:root[mode="light"] .tab-content>.tab-pane{display:none}:root[mode="light"] .tab-content>.active{display:block}:root[mode="light"] .navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem}:root[mode="light"] .navbar .container,:root[mode="light"] .navbar .container-fluid,:root[mode="light"] .navbar .container-sm,:root[mode="light"] .navbar .container-md,:root[mode="light"] .navbar .container-lg,:root[mode="light"] .navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}:root[mode="light"] .navbar-brand{display:inline-block;padding-top:0.324219rem;padding-bottom:0.324219rem;margin-right:1rem;font-size:1.171875rem;line-height:inherit;white-space:nowrap}:root[mode="light"] .navbar-brand:hover,:root[mode="light"] .navbar-brand:focus{text-decoration:none}:root[mode="light"] .navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}:root[mode="light"] .navbar-nav .nav-link{padding-right:0;padding-left:0}:root[mode="light"] .navbar-nav .dropdown-menu{position:static;float:none}:root[mode="light"] .navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}:root[mode="light"] .navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}:root[mode="light"] .navbar-toggler{padding:0.25rem 0.75rem;font-size:1.171875rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}:root[mode="light"] .navbar-toggler:hover,:root[mode="light"] .navbar-toggler:focus{text-decoration:none}:root[mode="light"] .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}:root[mode="light"] .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){:root[mode="light"] .navbar-expand-sm>.container,:root[mode="light"] .navbar-expand-sm>.container-fluid,:root[mode="light"] .navbar-expand-sm>.container-sm,:root[mode="light"] .navbar-expand-sm>.container-md,:root[mode="light"] .navbar-expand-sm>.container-lg,:root[mode="light"] .navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){:root[mode="light"] .navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="light"] .navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}:root[mode="light"] .navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="light"] .navbar-expand-sm>.container,:root[mode="light"] .navbar-expand-sm>.container-fluid,:root[mode="light"] .navbar-expand-sm>.container-sm,:root[mode="light"] .navbar-expand-sm>.container-md,:root[mode="light"] .navbar-expand-sm>.container-lg,:root[mode="light"] .navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="light"] .navbar-expand-sm .navbar-nav-scroll{overflow:visible}:root[mode="light"] .navbar-expand-sm .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="light"] .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){:root[mode="light"] .navbar-expand-md>.container,:root[mode="light"] .navbar-expand-md>.container-fluid,:root[mode="light"] .navbar-expand-md>.container-sm,:root[mode="light"] .navbar-expand-md>.container-md,:root[mode="light"] .navbar-expand-md>.container-lg,:root[mode="light"] .navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){:root[mode="light"] .navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="light"] .navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}:root[mode="light"] .navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="light"] .navbar-expand-md>.container,:root[mode="light"] .navbar-expand-md>.container-fluid,:root[mode="light"] .navbar-expand-md>.container-sm,:root[mode="light"] .navbar-expand-md>.container-md,:root[mode="light"] .navbar-expand-md>.container-lg,:root[mode="light"] .navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="light"] .navbar-expand-md .navbar-nav-scroll{overflow:visible}:root[mode="light"] .navbar-expand-md .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="light"] .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){:root[mode="light"] .navbar-expand-lg>.container,:root[mode="light"] .navbar-expand-lg>.container-fluid,:root[mode="light"] .navbar-expand-lg>.container-sm,:root[mode="light"] .navbar-expand-lg>.container-md,:root[mode="light"] .navbar-expand-lg>.container-lg,:root[mode="light"] .navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){:root[mode="light"] .navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="light"] .navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}:root[mode="light"] .navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="light"] .navbar-expand-lg>.container,:root[mode="light"] .navbar-expand-lg>.container-fluid,:root[mode="light"] .navbar-expand-lg>.container-sm,:root[mode="light"] .navbar-expand-lg>.container-md,:root[mode="light"] .navbar-expand-lg>.container-lg,:root[mode="light"] .navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="light"] .navbar-expand-lg .navbar-nav-scroll{overflow:visible}:root[mode="light"] .navbar-expand-lg .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="light"] .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){:root[mode="light"] .navbar-expand-xl>.container,:root[mode="light"] .navbar-expand-xl>.container-fluid,:root[mode="light"] .navbar-expand-xl>.container-sm,:root[mode="light"] .navbar-expand-xl>.container-md,:root[mode="light"] .navbar-expand-xl>.container-lg,:root[mode="light"] .navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){:root[mode="light"] .navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="light"] .navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}:root[mode="light"] .navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="light"] .navbar-expand-xl>.container,:root[mode="light"] .navbar-expand-xl>.container-fluid,:root[mode="light"] .navbar-expand-xl>.container-sm,:root[mode="light"] .navbar-expand-xl>.container-md,:root[mode="light"] .navbar-expand-xl>.container-lg,:root[mode="light"] .navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="light"] .navbar-expand-xl .navbar-nav-scroll{overflow:visible}:root[mode="light"] .navbar-expand-xl .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="light"] .navbar-expand-xl .navbar-toggler{display:none}}:root[mode="light"] .navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}:root[mode="light"] .navbar-expand>.container,:root[mode="light"] .navbar-expand>.container-fluid,:root[mode="light"] .navbar-expand>.container-sm,:root[mode="light"] .navbar-expand>.container-md,:root[mode="light"] .navbar-expand>.container-lg,:root[mode="light"] .navbar-expand>.container-xl{padding-right:0;padding-left:0}:root[mode="light"] .navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .navbar-expand .navbar-nav .dropdown-menu{position:absolute}:root[mode="light"] .navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}:root[mode="light"] .navbar-expand>.container,:root[mode="light"] .navbar-expand>.container-fluid,:root[mode="light"] .navbar-expand>.container-sm,:root[mode="light"] .navbar-expand>.container-md,:root[mode="light"] .navbar-expand>.container-lg,:root[mode="light"] .navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}:root[mode="light"] .navbar-expand .navbar-nav-scroll{overflow:visible}:root[mode="light"] .navbar-expand .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}:root[mode="light"] .navbar-expand .navbar-toggler{display:none}:root[mode="light"] .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}:root[mode="light"] .navbar-light .navbar-brand:hover,:root[mode="light"] .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}:root[mode="light"] .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}:root[mode="light"] .navbar-light .navbar-nav .nav-link:hover,:root[mode="light"] .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}:root[mode="light"] .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}:root[mode="light"] .navbar-light .navbar-nav .show>.nav-link,:root[mode="light"] .navbar-light .navbar-nav .active>.nav-link,:root[mode="light"] .navbar-light .navbar-nav .nav-link.show,:root[mode="light"] .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}:root[mode="light"] .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}:root[mode="light"] .navbar-light .navbar-toggler-icon{background-image:url('+B+')}:root[mode="light"] .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}:root[mode="light"] .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}:root[mode="light"] .navbar-light .navbar-text a:hover,:root[mode="light"] .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}:root[mode="light"] .navbar-dark .navbar-brand{color:#fff}:root[mode="light"] .navbar-dark .navbar-brand:hover,:root[mode="light"] .navbar-dark .navbar-brand:focus{color:#fff}:root[mode="light"] .navbar-dark .navbar-nav .nav-link{color:#fff}:root[mode="light"] .navbar-dark .navbar-nav .nav-link:hover,:root[mode="light"] .navbar-dark .navbar-nav .nav-link:focus{color:#18bc9c}:root[mode="light"] .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}:root[mode="light"] .navbar-dark .navbar-nav .show>.nav-link,:root[mode="light"] .navbar-dark .navbar-nav .active>.nav-link,:root[mode="light"] .navbar-dark .navbar-nav .nav-link.show,:root[mode="light"] .navbar-dark .navbar-nav .nav-link.active{color:#fff}:root[mode="light"] .navbar-dark .navbar-toggler{color:#fff;border-color:rgba(255,255,255,0.1)}:root[mode="light"] .navbar-dark .navbar-toggler-icon{background-image:url('+A+')}:root[mode="light"] .navbar-dark .navbar-text{color:#fff}:root[mode="light"] .navbar-dark .navbar-text a{color:#fff}:root[mode="light"] .navbar-dark .navbar-text a:hover,:root[mode="light"] .navbar-dark .navbar-text a:focus{color:#fff}:root[mode="light"] .card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}:root[mode="light"] .card>hr{margin-right:0;margin-left:0}:root[mode="light"] .card>.list-group{border-top:inherit;border-bottom:inherit}:root[mode="light"] .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}:root[mode="light"] .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}:root[mode="light"] .card>.card-header+.list-group,:root[mode="light"] .card>.list-group+.card-footer{border-top:0}:root[mode="light"] .card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}:root[mode="light"] .card-title{margin-bottom:0.75rem}:root[mode="light"] .card-subtitle{margin-top:-0.375rem;margin-bottom:0}:root[mode="light"] .card-text:last-child{margin-bottom:0}:root[mode="light"] .card-link:hover{text-decoration:none}:root[mode="light"] .card-link+.card-link{margin-left:1.25rem}:root[mode="light"] .card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}:root[mode="light"] .card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}:root[mode="light"] .card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}:root[mode="light"] .card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}:root[mode="light"] .card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}:root[mode="light"] .card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}:root[mode="light"] .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}:root[mode="light"] .card-img,:root[mode="light"] .card-img-top,:root[mode="light"] .card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}:root[mode="light"] .card-img,:root[mode="light"] .card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}:root[mode="light"] .card-img,:root[mode="light"] .card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}:root[mode="light"] .card-deck .card{margin-bottom:15px}@media (min-width: 576px){:root[mode="light"] .card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}:root[mode="light"] .card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}:root[mode="light"] .card-group>.card{margin-bottom:15px}@media (min-width: 576px){:root[mode="light"] .card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}:root[mode="light"] .card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}:root[mode="light"] .card-group>.card+.card{margin-left:0;border-left:0}:root[mode="light"] .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}:root[mode="light"] .card-group>.card:not(:last-child) .card-img-top,:root[mode="light"] .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}:root[mode="light"] .card-group>.card:not(:last-child) .card-img-bottom,:root[mode="light"] .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}:root[mode="light"] .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:root[mode="light"] .card-group>.card:not(:first-child) .card-img-top,:root[mode="light"] .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}:root[mode="light"] .card-group>.card:not(:first-child) .card-img-bottom,:root[mode="light"] .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}:root[mode="light"] .card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){:root[mode="light"] .card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}:root[mode="light"] .card-columns .card{display:inline-block;width:100%}}:root[mode="light"] .accordion{overflow-anchor:none}:root[mode="light"] .accordion>.card{overflow:hidden}:root[mode="light"] .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}:root[mode="light"] .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}:root[mode="light"] .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}:root[mode="light"] .breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#ecf0f1;border-radius:0.25rem}:root[mode="light"] .breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}:root[mode="light"] .breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:0.5rem;color:#95a5a6;content:"/"}:root[mode="light"] .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}:root[mode="light"] .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}:root[mode="light"] .breadcrumb-item.active{color:#95a5a6}:root[mode="light"] .pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}:root[mode="light"] .page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:0;line-height:1.25;color:#fff;background-color:#18bc9c;border:0 solid transparent}:root[mode="light"] .page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:#0f7864;border-color:transparent}:root[mode="light"] .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}:root[mode="light"] .page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}:root[mode="light"] .page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}:root[mode="light"] .page-item.active .page-link{z-index:3;color:#fff;background-color:#0f7864;border-color:transparent}:root[mode="light"] .page-item.disabled .page-link{color:#ecf0f1;pointer-events:none;cursor:auto;background-color:#3be6c4;border-color:transparent}:root[mode="light"] .pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.171875rem;line-height:1.5}:root[mode="light"] .pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}:root[mode="light"] .pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}:root[mode="light"] .pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5}:root[mode="light"] .pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}:root[mode="light"] .pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}:root[mode="light"] .badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="light"] .badge{transition:none}}:root[mode="light"] a.badge:hover,:root[mode="light"] a.badge:focus{text-decoration:none}:root[mode="light"] .badge:empty{display:none}:root[mode="light"] .btn .badge{position:relative;top:-1px}:root[mode="light"] .badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}:root[mode="light"] .badge-primary{color:#fff;background-color:#2c3e50}:root[mode="light"] a.badge-primary:hover,:root[mode="light"] a.badge-primary:focus{color:#fff;background-color:#1a252f}:root[mode="light"] a.badge-primary:focus,:root[mode="light"] a.badge-primary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}:root[mode="light"] .badge-secondary{color:#fff;background-color:#95a5a6}:root[mode="light"] a.badge-secondary:hover,:root[mode="light"] a.badge-secondary:focus{color:#fff;background-color:#798d8f}:root[mode="light"] a.badge-secondary:focus,:root[mode="light"] a.badge-secondary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}:root[mode="light"] .badge-success{color:#fff;background-color:#18bc9c}:root[mode="light"] a.badge-success:hover,:root[mode="light"] a.badge-success:focus{color:#fff;background-color:#128f76}:root[mode="light"] a.badge-success:focus,:root[mode="light"] a.badge-success.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}:root[mode="light"] .badge-info{color:#fff;background-color:#3498db}:root[mode="light"] a.badge-info:hover,:root[mode="light"] a.badge-info:focus{color:#fff;background-color:#217dbb}:root[mode="light"] a.badge-info:focus,:root[mode="light"] a.badge-info.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}:root[mode="light"] .badge-warning{color:#fff;background-color:#f39c12}:root[mode="light"] a.badge-warning:hover,:root[mode="light"] a.badge-warning:focus{color:#fff;background-color:#c87f0a}:root[mode="light"] a.badge-warning:focus,:root[mode="light"] a.badge-warning.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}:root[mode="light"] .badge-danger{color:#fff;background-color:#e74c3c}:root[mode="light"] a.badge-danger:hover,:root[mode="light"] a.badge-danger:focus{color:#fff;background-color:#d62c1a}:root[mode="light"] a.badge-danger:focus,:root[mode="light"] a.badge-danger.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}:root[mode="light"] .badge-light{color:#212529;background-color:#ecf0f1}:root[mode="light"] a.badge-light:hover,:root[mode="light"] a.badge-light:focus{color:#212529;background-color:#cfd9db}:root[mode="light"] a.badge-light:focus,:root[mode="light"] a.badge-light.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}:root[mode="light"] .badge-dark{color:#fff;background-color:#7b8a8b}:root[mode="light"] a.badge-dark:hover,:root[mode="light"] a.badge-dark:focus{color:#fff;background-color:#636f70}:root[mode="light"] a.badge-dark:focus,:root[mode="light"] a.badge-dark.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}:root[mode="light"] .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#ecf0f1;border-radius:0.3rem}@media (min-width: 576px){:root[mode="light"] .jumbotron{padding:4rem 2rem}}:root[mode="light"] .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}:root[mode="light"] .alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}:root[mode="light"] .alert-heading{color:inherit}:root[mode="light"] .alert-link{font-weight:700}:root[mode="light"] .alert-dismissible{padding-right:3.90625rem}:root[mode="light"] .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:0.75rem 1.25rem;color:inherit}:root[mode="light"] .alert-primary{color:#17202a;background-color:#d5d8dc;border-color:#c4c9ce}:root[mode="light"] .alert-primary hr{border-top-color:#b6bcc2}:root[mode="light"] .alert-primary .alert-link{color:#050709}:root[mode="light"] .alert-secondary{color:#4d5656;background-color:#eaeded;border-color:#e1e6e6}:root[mode="light"] .alert-secondary hr{border-top-color:#d3dada}:root[mode="light"] .alert-secondary .alert-link{color:#353b3b}:root[mode="light"] .alert-success{color:#0c6251;background-color:#d1f2eb;border-color:#beece3}:root[mode="light"] .alert-success hr{border-top-color:#aae6db}:root[mode="light"] .alert-success .alert-link{color:#06352b}:root[mode="light"] .alert-info{color:#1b4f72;background-color:#d6eaf8;border-color:#c6e2f5}:root[mode="light"] .alert-info hr{border-top-color:#b0d7f1}:root[mode="light"] .alert-info .alert-link{color:#113249}:root[mode="light"] .alert-warning{color:#7e5109;background-color:#fdebd0;border-color:#fce3bd}:root[mode="light"] .alert-warning hr{border-top-color:#fbd9a5}:root[mode="light"] .alert-warning .alert-link{color:#4e3206}:root[mode="light"] .alert-danger{color:#78281f;background-color:#fadbd8;border-color:#f8cdc8}:root[mode="light"] .alert-danger hr{border-top-color:#f5b8b1}:root[mode="light"] .alert-danger .alert-link{color:#4f1a15}:root[mode="light"] .alert-light{color:#7b7d7d;background-color:#fbfcfc;border-color:#fafbfb}:root[mode="light"] .alert-light hr{border-top-color:#ecf0f0}:root[mode="light"] .alert-light .alert-link{color:#626363}:root[mode="light"] .alert-dark{color:#404848;background-color:#e5e8e8;border-color:#dadedf}:root[mode="light"] .alert-dark hr{border-top-color:#ccd2d3}:root[mode="light"] .alert-dark .alert-link{color:#282d2d}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}:root[mode="light"] .progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.703125rem;background-color:#ecf0f1;border-radius:0.25rem}:root[mode="light"] .progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#2c3e50;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){:root[mode="light"] .progress-bar{transition:none}}:root[mode="light"] .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}:root[mode="light"] .progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){:root[mode="light"] .progress-bar-animated{-webkit-animation:none;animation:none}}:root[mode="light"] .media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}:root[mode="light"] .media-body{-ms-flex:1;flex:1}:root[mode="light"] .list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}:root[mode="light"] .list-group-item-action{width:100%;color:#7b8a8b;text-align:inherit}:root[mode="light"] .list-group-item-action:hover,:root[mode="light"] .list-group-item-action:focus{z-index:1;color:#7b8a8b;text-decoration:none;background-color:#ecf0f1}:root[mode="light"] .list-group-item-action:active{color:#212529;background-color:#ecf0f1}:root[mode="light"] .list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}:root[mode="light"] .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:root[mode="light"] .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}:root[mode="light"] .list-group-item.disabled,:root[mode="light"] .list-group-item:disabled{color:#95a5a6;pointer-events:none;background-color:#ecf0f1}:root[mode="light"] .list-group-item.active{z-index:2;color:#fff;background-color:#2c3e50;border-color:#2c3e50}:root[mode="light"] .list-group-item+.list-group-item{border-top-width:0}:root[mode="light"] .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}:root[mode="light"] .list-group-horizontal{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="light"] .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="light"] .list-group-horizontal>.list-group-item.active{margin-top:0}:root[mode="light"] .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="light"] .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){:root[mode="light"] .list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="light"] .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="light"] .list-group-horizontal-sm>.list-group-item.active{margin-top:0}:root[mode="light"] .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="light"] .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){:root[mode="light"] .list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="light"] .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="light"] .list-group-horizontal-md>.list-group-item.active{margin-top:0}:root[mode="light"] .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="light"] .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){:root[mode="light"] .list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="light"] .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="light"] .list-group-horizontal-lg>.list-group-item.active{margin-top:0}:root[mode="light"] .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="light"] .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){:root[mode="light"] .list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}:root[mode="light"] .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}:root[mode="light"] .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}:root[mode="light"] .list-group-horizontal-xl>.list-group-item.active{margin-top:0}:root[mode="light"] .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}:root[mode="light"] .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}:root[mode="light"] .list-group-flush{border-radius:0}:root[mode="light"] .list-group-flush>.list-group-item{border-width:0 0 1px}:root[mode="light"] .list-group-flush>.list-group-item:last-child{border-bottom-width:0}:root[mode="light"] .list-group-item-primary{color:#17202a;background-color:#c4c9ce}:root[mode="light"] .list-group-item-primary.list-group-item-action:hover,:root[mode="light"] .list-group-item-primary.list-group-item-action:focus{color:#17202a;background-color:#b6bcc2}:root[mode="light"] .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#17202a;border-color:#17202a}:root[mode="light"] .list-group-item-secondary{color:#4d5656;background-color:#e1e6e6}:root[mode="light"] .list-group-item-secondary.list-group-item-action:hover,:root[mode="light"] .list-group-item-secondary.list-group-item-action:focus{color:#4d5656;background-color:#d3dada}:root[mode="light"] .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#4d5656;border-color:#4d5656}:root[mode="light"] .list-group-item-success{color:#0c6251;background-color:#beece3}:root[mode="light"] .list-group-item-success.list-group-item-action:hover,:root[mode="light"] .list-group-item-success.list-group-item-action:focus{color:#0c6251;background-color:#aae6db}:root[mode="light"] .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0c6251;border-color:#0c6251}:root[mode="light"] .list-group-item-info{color:#1b4f72;background-color:#c6e2f5}:root[mode="light"] .list-group-item-info.list-group-item-action:hover,:root[mode="light"] .list-group-item-info.list-group-item-action:focus{color:#1b4f72;background-color:#b0d7f1}:root[mode="light"] .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1b4f72;border-color:#1b4f72}:root[mode="light"] .list-group-item-warning{color:#7e5109;background-color:#fce3bd}:root[mode="light"] .list-group-item-warning.list-group-item-action:hover,:root[mode="light"] .list-group-item-warning.list-group-item-action:focus{color:#7e5109;background-color:#fbd9a5}:root[mode="light"] .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#7e5109;border-color:#7e5109}:root[mode="light"] .list-group-item-danger{color:#78281f;background-color:#f8cdc8}:root[mode="light"] .list-group-item-danger.list-group-item-action:hover,:root[mode="light"] .list-group-item-danger.list-group-item-action:focus{color:#78281f;background-color:#f5b8b1}:root[mode="light"] .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#78281f;border-color:#78281f}:root[mode="light"] .list-group-item-light{color:#7b7d7d;background-color:#fafbfb}:root[mode="light"] .list-group-item-light.list-group-item-action:hover,:root[mode="light"] .list-group-item-light.list-group-item-action:focus{color:#7b7d7d;background-color:#ecf0f0}:root[mode="light"] .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#7b7d7d;border-color:#7b7d7d}:root[mode="light"] .list-group-item-dark{color:#404848;background-color:#dadedf}:root[mode="light"] .list-group-item-dark.list-group-item-action:hover,:root[mode="light"] .list-group-item-dark.list-group-item-action:focus{color:#404848;background-color:#ccd2d3}:root[mode="light"] .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#404848;border-color:#404848}:root[mode="light"] .close{float:right;font-size:1.40625rem;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.5}:root[mode="light"] .close:hover{color:#fff;text-decoration:none}:root[mode="light"] .close:not(:disabled):not(.disabled):hover,:root[mode="light"] .close:not(:disabled):not(.disabled):focus{opacity:.75}:root[mode="light"] button.close{padding:0;background-color:transparent;border:0}:root[mode="light"] a.close.disabled{pointer-events:none}:root[mode="light"] .toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}:root[mode="light"] .toast:not(:last-child){margin-bottom:0.75rem}:root[mode="light"] .toast.showing{opacity:1}:root[mode="light"] .toast.show{display:block;opacity:1}:root[mode="light"] .toast.hide{display:none}:root[mode="light"] .toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#95a5a6;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}:root[mode="light"] .toast-body{padding:0.75rem}:root[mode="light"] .modal-open{overflow:hidden}:root[mode="light"] .modal-open .modal{overflow-x:hidden;overflow-y:auto}:root[mode="light"] .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}:root[mode="light"] .modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}:root[mode="light"] .modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){:root[mode="light"] .modal.fade .modal-dialog{transition:none}}:root[mode="light"] .modal.show .modal-dialog{-webkit-transform:none;transform:none}:root[mode="light"] .modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}:root[mode="light"] .modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}:root[mode="light"] .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}:root[mode="light"] .modal-dialog-scrollable .modal-header,:root[mode="light"] .modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}:root[mode="light"] .modal-dialog-scrollable .modal-body{overflow-y:auto}:root[mode="light"] .modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}:root[mode="light"] .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}:root[mode="light"] .modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}:root[mode="light"] .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}:root[mode="light"] .modal-dialog-centered.modal-dialog-scrollable::before{content:none}:root[mode="light"] .modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem;outline:0}:root[mode="light"] .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}:root[mode="light"] .modal-backdrop.fade{opacity:0}:root[mode="light"] .modal-backdrop.show{opacity:0.5}:root[mode="light"] .modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}:root[mode="light"] .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}:root[mode="light"] .modal-title{margin-bottom:0;line-height:1.5}:root[mode="light"] .modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}:root[mode="light"] .modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}:root[mode="light"] .modal-footer>*{margin:0.25rem}:root[mode="light"] .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){:root[mode="light"] .modal-dialog{max-width:500px;margin:1.75rem auto}:root[mode="light"] .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}:root[mode="light"] .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}:root[mode="light"] .modal-dialog-centered{min-height:calc(100% - 3.5rem)}:root[mode="light"] .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}:root[mode="light"] .modal-sm{max-width:300px}}@media (min-width: 992px){:root[mode="light"] .modal-lg,:root[mode="light"] .modal-xl{max-width:800px}}@media (min-width: 1200px){:root[mode="light"] .modal-xl{max-width:1140px}}:root[mode="light"] .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;opacity:0}:root[mode="light"] .tooltip.show{opacity:0.9}:root[mode="light"] .tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}:root[mode="light"] .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}:root[mode="light"] .bs-tooltip-top,:root[mode="light"] .bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}:root[mode="light"] .bs-tooltip-top .arrow,:root[mode="light"] .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}:root[mode="light"] .bs-tooltip-top .arrow::before,:root[mode="light"] .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}:root[mode="light"] .bs-tooltip-right,:root[mode="light"] .bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}:root[mode="light"] .bs-tooltip-right .arrow,:root[mode="light"] .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}:root[mode="light"] .bs-tooltip-right .arrow::before,:root[mode="light"] .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}:root[mode="light"] .bs-tooltip-bottom,:root[mode="light"] .bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}:root[mode="light"] .bs-tooltip-bottom .arrow,:root[mode="light"] .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}:root[mode="light"] .bs-tooltip-bottom .arrow::before,:root[mode="light"] .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}:root[mode="light"] .bs-tooltip-left,:root[mode="light"] .bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}:root[mode="light"] .bs-tooltip-left .arrow,:root[mode="light"] .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}:root[mode="light"] .bs-tooltip-left .arrow::before,:root[mode="light"] .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}:root[mode="light"] .tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}:root[mode="light"] .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}:root[mode="light"] .popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}:root[mode="light"] .popover .arrow::before,:root[mode="light"] .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}:root[mode="light"] .bs-popover-top,:root[mode="light"] .bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}:root[mode="light"] .bs-popover-top>.arrow,:root[mode="light"] .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}:root[mode="light"] .bs-popover-top>.arrow::before,:root[mode="light"] .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}:root[mode="light"] .bs-popover-top>.arrow::after,:root[mode="light"] .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}:root[mode="light"] .bs-popover-right,:root[mode="light"] .bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}:root[mode="light"] .bs-popover-right>.arrow,:root[mode="light"] .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}:root[mode="light"] .bs-popover-right>.arrow::before,:root[mode="light"] .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}:root[mode="light"] .bs-popover-right>.arrow::after,:root[mode="light"] .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}:root[mode="light"] .bs-popover-bottom,:root[mode="light"] .bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}:root[mode="light"] .bs-popover-bottom>.arrow,:root[mode="light"] .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}:root[mode="light"] .bs-popover-bottom>.arrow::before,:root[mode="light"] .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}:root[mode="light"] .bs-popover-bottom>.arrow::after,:root[mode="light"] .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}:root[mode="light"] .bs-popover-bottom .popover-header::before,:root[mode="light"] .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}:root[mode="light"] .bs-popover-left,:root[mode="light"] .bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}:root[mode="light"] .bs-popover-left>.arrow,:root[mode="light"] .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}:root[mode="light"] .bs-popover-left>.arrow::before,:root[mode="light"] .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}:root[mode="light"] .bs-popover-left>.arrow::after,:root[mode="light"] .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}:root[mode="light"] .popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:0.9375rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}:root[mode="light"] .popover-header:empty{display:none}:root[mode="light"] .popover-body{padding:0.5rem 0.75rem;color:#212529}:root[mode="light"] .carousel{position:relative}:root[mode="light"] .carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}:root[mode="light"] .carousel-inner{position:relative;width:100%;overflow:hidden}:root[mode="light"] .carousel-inner::after{display:block;clear:both;content:""}:root[mode="light"] .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){:root[mode="light"] .carousel-item{transition:none}}:root[mode="light"] .carousel-item.active,:root[mode="light"] .carousel-item-next,:root[mode="light"] .carousel-item-prev{display:block}:root[mode="light"] .carousel-item-next:not(.carousel-item-left),:root[mode="light"] .active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}:root[mode="light"] .carousel-item-prev:not(.carousel-item-right),:root[mode="light"] .active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}:root[mode="light"] .carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}:root[mode="light"] .carousel-fade .carousel-item.active,:root[mode="light"] .carousel-fade .carousel-item-next.carousel-item-left,:root[mode="light"] .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}:root[mode="light"] .carousel-fade .active.carousel-item-left,:root[mode="light"] .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){:root[mode="light"] .carousel-fade .active.carousel-item-left,:root[mode="light"] .carousel-fade .active.carousel-item-right{transition:none}}:root[mode="light"] .carousel-control-prev,:root[mode="light"] .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){:root[mode="light"] .carousel-control-prev,:root[mode="light"] .carousel-control-next{transition:none}}:root[mode="light"] .carousel-control-prev:hover,:root[mode="light"] .carousel-control-prev:focus,:root[mode="light"] .carousel-control-next:hover,:root[mode="light"] .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}:root[mode="light"] .carousel-control-prev{left:0}:root[mode="light"] .carousel-control-next{right:0}:root[mode="light"] .carousel-control-prev-icon,:root[mode="light"] .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}:root[mode="light"] .carousel-control-prev-icon{background-image:url('+$+')}:root[mode="light"] .carousel-control-next-icon{background-image:url('+D+')}:root[mode="light"] .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}:root[mode="light"] .carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){:root[mode="light"] .carousel-indicators li{transition:none}}:root[mode="light"] .carousel-indicators .active{opacity:1}:root[mode="light"] .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}:root[mode="light"] .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}:root[mode="light"] .spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}:root[mode="light"] .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}:root[mode="light"] .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){:root[mode="light"] .spinner-border,:root[mode="light"] .spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}:root[mode="light"] .align-baseline{vertical-align:baseline !important}:root[mode="light"] .align-top{vertical-align:top !important}:root[mode="light"] .align-middle{vertical-align:middle !important}:root[mode="light"] .align-bottom{vertical-align:bottom !important}:root[mode="light"] .align-text-bottom{vertical-align:text-bottom !important}:root[mode="light"] .align-text-top{vertical-align:text-top !important}:root[mode="light"] .bg-primary{background-color:#2c3e50 !important}:root[mode="light"] a.bg-primary:hover,:root[mode="light"] a.bg-primary:focus,:root[mode="light"] button.bg-primary:hover,:root[mode="light"] button.bg-primary:focus{background-color:#1a252f !important}:root[mode="light"] .bg-secondary{background-color:#95a5a6 !important}:root[mode="light"] a.bg-secondary:hover,:root[mode="light"] a.bg-secondary:focus,:root[mode="light"] button.bg-secondary:hover,:root[mode="light"] button.bg-secondary:focus{background-color:#798d8f !important}:root[mode="light"] .bg-success{background-color:#18bc9c !important}:root[mode="light"] a.bg-success:hover,:root[mode="light"] a.bg-success:focus,:root[mode="light"] button.bg-success:hover,:root[mode="light"] button.bg-success:focus{background-color:#128f76 !important}:root[mode="light"] .bg-info{background-color:#3498db !important}:root[mode="light"] a.bg-info:hover,:root[mode="light"] a.bg-info:focus,:root[mode="light"] button.bg-info:hover,:root[mode="light"] button.bg-info:focus{background-color:#217dbb !important}:root[mode="light"] .bg-warning{background-color:#f39c12 !important}:root[mode="light"] a.bg-warning:hover,:root[mode="light"] a.bg-warning:focus,:root[mode="light"] button.bg-warning:hover,:root[mode="light"] button.bg-warning:focus{background-color:#c87f0a !important}:root[mode="light"] .bg-danger{background-color:#e74c3c !important}:root[mode="light"] a.bg-danger:hover,:root[mode="light"] a.bg-danger:focus,:root[mode="light"] button.bg-danger:hover,:root[mode="light"] button.bg-danger:focus{background-color:#d62c1a !important}:root[mode="light"] .bg-light{background-color:#ecf0f1 !important}:root[mode="light"] a.bg-light:hover,:root[mode="light"] a.bg-light:focus,:root[mode="light"] button.bg-light:hover,:root[mode="light"] button.bg-light:focus{background-color:#cfd9db !important}:root[mode="light"] .bg-dark{background-color:#7b8a8b !important}:root[mode="light"] a.bg-dark:hover,:root[mode="light"] a.bg-dark:focus,:root[mode="light"] button.bg-dark:hover,:root[mode="light"] button.bg-dark:focus{background-color:#636f70 !important}:root[mode="light"] .bg-white{background-color:#fff !important}:root[mode="light"] .bg-transparent{background-color:transparent !important}:root[mode="light"] .border{border:1px solid #dee2e6 !important}:root[mode="light"] .border-top{border-top:1px solid #dee2e6 !important}:root[mode="light"] .border-right{border-right:1px solid #dee2e6 !important}:root[mode="light"] .border-bottom{border-bottom:1px solid #dee2e6 !important}:root[mode="light"] .border-left{border-left:1px solid #dee2e6 !important}:root[mode="light"] .border-0{border:0 !important}:root[mode="light"] .border-top-0{border-top:0 !important}:root[mode="light"] .border-right-0{border-right:0 !important}:root[mode="light"] .border-bottom-0{border-bottom:0 !important}:root[mode="light"] .border-left-0{border-left:0 !important}:root[mode="light"] .border-primary{border-color:#2c3e50 !important}:root[mode="light"] .border-secondary{border-color:#95a5a6 !important}:root[mode="light"] .border-success{border-color:#18bc9c !important}:root[mode="light"] .border-info{border-color:#3498db !important}:root[mode="light"] .border-warning{border-color:#f39c12 !important}:root[mode="light"] .border-danger{border-color:#e74c3c !important}:root[mode="light"] .border-light{border-color:#ecf0f1 !important}:root[mode="light"] .border-dark{border-color:#7b8a8b !important}:root[mode="light"] .border-white{border-color:#fff !important}:root[mode="light"] .rounded-sm{border-radius:0.2rem !important}:root[mode="light"] .rounded{border-radius:0.25rem !important}:root[mode="light"] .rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}:root[mode="light"] .rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}:root[mode="light"] .rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}:root[mode="light"] .rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}:root[mode="light"] .rounded-lg{border-radius:0.3rem !important}:root[mode="light"] .rounded-circle{border-radius:50% !important}:root[mode="light"] .rounded-pill{border-radius:50rem !important}:root[mode="light"] .rounded-0{border-radius:0 !important}:root[mode="light"] .clearfix::after{display:block;clear:both;content:""}:root[mode="light"] .d-none{display:none !important}:root[mode="light"] .d-inline{display:inline !important}:root[mode="light"] .d-inline-block{display:inline-block !important}:root[mode="light"] .d-block{display:block !important}:root[mode="light"] .d-table{display:table !important}:root[mode="light"] .d-table-row{display:table-row !important}:root[mode="light"] .d-table-cell{display:table-cell !important}:root[mode="light"] .d-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="light"] .d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){:root[mode="light"] .d-sm-none{display:none !important}:root[mode="light"] .d-sm-inline{display:inline !important}:root[mode="light"] .d-sm-inline-block{display:inline-block !important}:root[mode="light"] .d-sm-block{display:block !important}:root[mode="light"] .d-sm-table{display:table !important}:root[mode="light"] .d-sm-table-row{display:table-row !important}:root[mode="light"] .d-sm-table-cell{display:table-cell !important}:root[mode="light"] .d-sm-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="light"] .d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){:root[mode="light"] .d-md-none{display:none !important}:root[mode="light"] .d-md-inline{display:inline !important}:root[mode="light"] .d-md-inline-block{display:inline-block !important}:root[mode="light"] .d-md-block{display:block !important}:root[mode="light"] .d-md-table{display:table !important}:root[mode="light"] .d-md-table-row{display:table-row !important}:root[mode="light"] .d-md-table-cell{display:table-cell !important}:root[mode="light"] .d-md-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="light"] .d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){:root[mode="light"] .d-lg-none{display:none !important}:root[mode="light"] .d-lg-inline{display:inline !important}:root[mode="light"] .d-lg-inline-block{display:inline-block !important}:root[mode="light"] .d-lg-block{display:block !important}:root[mode="light"] .d-lg-table{display:table !important}:root[mode="light"] .d-lg-table-row{display:table-row !important}:root[mode="light"] .d-lg-table-cell{display:table-cell !important}:root[mode="light"] .d-lg-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="light"] .d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){:root[mode="light"] .d-xl-none{display:none !important}:root[mode="light"] .d-xl-inline{display:inline !important}:root[mode="light"] .d-xl-inline-block{display:inline-block !important}:root[mode="light"] .d-xl-block{display:block !important}:root[mode="light"] .d-xl-table{display:table !important}:root[mode="light"] .d-xl-table-row{display:table-row !important}:root[mode="light"] .d-xl-table-cell{display:table-cell !important}:root[mode="light"] .d-xl-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="light"] .d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{:root[mode="light"] .d-print-none{display:none !important}:root[mode="light"] .d-print-inline{display:inline !important}:root[mode="light"] .d-print-inline-block{display:inline-block !important}:root[mode="light"] .d-print-block{display:block !important}:root[mode="light"] .d-print-table{display:table !important}:root[mode="light"] .d-print-table-row{display:table-row !important}:root[mode="light"] .d-print-table-cell{display:table-cell !important}:root[mode="light"] .d-print-flex{display:-ms-flexbox !important;display:flex !important}:root[mode="light"] .d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}:root[mode="light"] .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}:root[mode="light"] .embed-responsive::before{display:block;content:""}:root[mode="light"] .embed-responsive .embed-responsive-item,:root[mode="light"] .embed-responsive iframe,:root[mode="light"] .embed-responsive embed,:root[mode="light"] .embed-responsive object,:root[mode="light"] .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}:root[mode="light"] .embed-responsive-21by9::before{padding-top:42.857143%}:root[mode="light"] .embed-responsive-16by9::before{padding-top:56.25%}:root[mode="light"] .embed-responsive-4by3::before{padding-top:75%}:root[mode="light"] .embed-responsive-1by1::before{padding-top:100%}:root[mode="light"] .flex-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="light"] .flex-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="light"] .flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="light"] .flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="light"] .flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="light"] .flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="light"] .flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="light"] .flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="light"] .flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="light"] .flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="light"] .flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="light"] .flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="light"] .justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="light"] .justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="light"] .justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="light"] .justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="light"] .justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="light"] .align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="light"] .align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="light"] .align-items-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="light"] .align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="light"] .align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="light"] .align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="light"] .align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="light"] .align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="light"] .align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="light"] .align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="light"] .align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="light"] .align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="light"] .align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="light"] .align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="light"] .align-self-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="light"] .align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="light"] .align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){:root[mode="light"] .flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="light"] .flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="light"] .flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="light"] .flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="light"] .flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="light"] .flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="light"] .flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="light"] .flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="light"] .flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="light"] .flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="light"] .flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="light"] .flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="light"] .justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="light"] .justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="light"] .justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="light"] .justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="light"] .justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="light"] .align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="light"] .align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="light"] .align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="light"] .align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="light"] .align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="light"] .align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="light"] .align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="light"] .align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="light"] .align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="light"] .align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="light"] .align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="light"] .align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="light"] .align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="light"] .align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="light"] .align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="light"] .align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="light"] .align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){:root[mode="light"] .flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="light"] .flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="light"] .flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="light"] .flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="light"] .flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="light"] .flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="light"] .flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="light"] .flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="light"] .flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="light"] .flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="light"] .flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="light"] .flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="light"] .justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="light"] .justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="light"] .justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="light"] .justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="light"] .justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="light"] .align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="light"] .align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="light"] .align-items-md-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="light"] .align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="light"] .align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="light"] .align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="light"] .align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="light"] .align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="light"] .align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="light"] .align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="light"] .align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="light"] .align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="light"] .align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="light"] .align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="light"] .align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="light"] .align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="light"] .align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){:root[mode="light"] .flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="light"] .flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="light"] .flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="light"] .flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="light"] .flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="light"] .flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="light"] .flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="light"] .flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="light"] .flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="light"] .flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="light"] .flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="light"] .flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="light"] .justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="light"] .justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="light"] .justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="light"] .justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="light"] .justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="light"] .align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="light"] .align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="light"] .align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="light"] .align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="light"] .align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="light"] .align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="light"] .align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="light"] .align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="light"] .align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="light"] .align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="light"] .align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="light"] .align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="light"] .align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="light"] .align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="light"] .align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="light"] .align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="light"] .align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){:root[mode="light"] .flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}:root[mode="light"] .flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}:root[mode="light"] .flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}:root[mode="light"] .flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}:root[mode="light"] .flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}:root[mode="light"] .flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}:root[mode="light"] .flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}:root[mode="light"] .flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}:root[mode="light"] .flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}:root[mode="light"] .flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}:root[mode="light"] .flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}:root[mode="light"] .flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}:root[mode="light"] .justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}:root[mode="light"] .justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}:root[mode="light"] .justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}:root[mode="light"] .justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}:root[mode="light"] .justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}:root[mode="light"] .align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}:root[mode="light"] .align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}:root[mode="light"] .align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}:root[mode="light"] .align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}:root[mode="light"] .align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}:root[mode="light"] .align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}:root[mode="light"] .align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}:root[mode="light"] .align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}:root[mode="light"] .align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}:root[mode="light"] .align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}:root[mode="light"] .align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}:root[mode="light"] .align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}:root[mode="light"] .align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}:root[mode="light"] .align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}:root[mode="light"] .align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}:root[mode="light"] .align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}:root[mode="light"] .align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}:root[mode="light"] .float-left{float:left !important}:root[mode="light"] .float-right{float:right !important}:root[mode="light"] .float-none{float:none !important}@media (min-width: 576px){:root[mode="light"] .float-sm-left{float:left !important}:root[mode="light"] .float-sm-right{float:right !important}:root[mode="light"] .float-sm-none{float:none !important}}@media (min-width: 768px){:root[mode="light"] .float-md-left{float:left !important}:root[mode="light"] .float-md-right{float:right !important}:root[mode="light"] .float-md-none{float:none !important}}@media (min-width: 992px){:root[mode="light"] .float-lg-left{float:left !important}:root[mode="light"] .float-lg-right{float:right !important}:root[mode="light"] .float-lg-none{float:none !important}}@media (min-width: 1200px){:root[mode="light"] .float-xl-left{float:left !important}:root[mode="light"] .float-xl-right{float:right !important}:root[mode="light"] .float-xl-none{float:none !important}}:root[mode="light"] .user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}:root[mode="light"] .user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}:root[mode="light"] .user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}:root[mode="light"] .overflow-auto{overflow:auto !important}:root[mode="light"] .overflow-hidden{overflow:hidden !important}:root[mode="light"] .position-static{position:static !important}:root[mode="light"] .position-relative{position:relative !important}:root[mode="light"] .position-absolute{position:absolute !important}:root[mode="light"] .position-fixed{position:fixed !important}:root[mode="light"] .position-sticky{position:-webkit-sticky !important;position:sticky !important}:root[mode="light"] .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}:root[mode="light"] .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){:root[mode="light"] .sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}:root[mode="light"] .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}:root[mode="light"] .sr-only-focusable:active,:root[mode="light"] .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}:root[mode="light"] .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}:root[mode="light"] .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}:root[mode="light"] .shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}:root[mode="light"] .shadow-none{box-shadow:none !important}:root[mode="light"] .w-25{width:25% !important}:root[mode="light"] .w-50{width:50% !important}:root[mode="light"] .w-75{width:75% !important}:root[mode="light"] .w-100{width:100% !important}:root[mode="light"] .w-auto{width:auto !important}:root[mode="light"] .h-25{height:25% !important}:root[mode="light"] .h-50{height:50% !important}:root[mode="light"] .h-75{height:75% !important}:root[mode="light"] .h-100{height:100% !important}:root[mode="light"] .h-auto{height:auto !important}:root[mode="light"] .mw-100{max-width:100% !important}:root[mode="light"] .mh-100{max-height:100% !important}:root[mode="light"] .min-vw-100{min-width:100vw !important}:root[mode="light"] .min-vh-100{min-height:100vh !important}:root[mode="light"] .vw-100{width:100vw !important}:root[mode="light"] .vh-100{height:100vh !important}:root[mode="light"] .m-0{margin:0 !important}:root[mode="light"] .mt-0,:root[mode="light"] .my-0{margin-top:0 !important}:root[mode="light"] .mr-0,:root[mode="light"] .mx-0{margin-right:0 !important}:root[mode="light"] .mb-0,:root[mode="light"] .my-0{margin-bottom:0 !important}:root[mode="light"] .ml-0,:root[mode="light"] .mx-0{margin-left:0 !important}:root[mode="light"] .m-1{margin:0.25rem !important}:root[mode="light"] .mt-1,:root[mode="light"] .my-1{margin-top:0.25rem !important}:root[mode="light"] .mr-1,:root[mode="light"] .mx-1{margin-right:0.25rem !important}:root[mode="light"] .mb-1,:root[mode="light"] .my-1{margin-bottom:0.25rem !important}:root[mode="light"] .ml-1,:root[mode="light"] .mx-1{margin-left:0.25rem !important}:root[mode="light"] .m-2{margin:0.5rem !important}:root[mode="light"] .mt-2,:root[mode="light"] .my-2{margin-top:0.5rem !important}:root[mode="light"] .mr-2,:root[mode="light"] .mx-2{margin-right:0.5rem !important}:root[mode="light"] .mb-2,:root[mode="light"] .my-2{margin-bottom:0.5rem !important}:root[mode="light"] .ml-2,:root[mode="light"] .mx-2{margin-left:0.5rem !important}:root[mode="light"] .m-3{margin:1rem !important}:root[mode="light"] .mt-3,:root[mode="light"] .my-3{margin-top:1rem !important}:root[mode="light"] .mr-3,:root[mode="light"] .mx-3{margin-right:1rem !important}:root[mode="light"] .mb-3,:root[mode="light"] .my-3{margin-bottom:1rem !important}:root[mode="light"] .ml-3,:root[mode="light"] .mx-3{margin-left:1rem !important}:root[mode="light"] .m-4{margin:1.5rem !important}:root[mode="light"] .mt-4,:root[mode="light"] .my-4{margin-top:1.5rem !important}:root[mode="light"] .mr-4,:root[mode="light"] .mx-4{margin-right:1.5rem !important}:root[mode="light"] .mb-4,:root[mode="light"] .my-4{margin-bottom:1.5rem !important}:root[mode="light"] .ml-4,:root[mode="light"] .mx-4{margin-left:1.5rem !important}:root[mode="light"] .m-5{margin:3rem !important}:root[mode="light"] .mt-5,:root[mode="light"] .my-5{margin-top:3rem !important}:root[mode="light"] .mr-5,:root[mode="light"] .mx-5{margin-right:3rem !important}:root[mode="light"] .mb-5,:root[mode="light"] .my-5{margin-bottom:3rem !important}:root[mode="light"] .ml-5,:root[mode="light"] .mx-5{margin-left:3rem !important}:root[mode="light"] .p-0{padding:0 !important}:root[mode="light"] .pt-0,:root[mode="light"] .py-0{padding-top:0 !important}:root[mode="light"] .pr-0,:root[mode="light"] .px-0{padding-right:0 !important}:root[mode="light"] .pb-0,:root[mode="light"] .py-0{padding-bottom:0 !important}:root[mode="light"] .pl-0,:root[mode="light"] .px-0{padding-left:0 !important}:root[mode="light"] .p-1{padding:0.25rem !important}:root[mode="light"] .pt-1,:root[mode="light"] .py-1{padding-top:0.25rem !important}:root[mode="light"] .pr-1,:root[mode="light"] .px-1{padding-right:0.25rem !important}:root[mode="light"] .pb-1,:root[mode="light"] .py-1{padding-bottom:0.25rem !important}:root[mode="light"] .pl-1,:root[mode="light"] .px-1{padding-left:0.25rem !important}:root[mode="light"] .p-2{padding:0.5rem !important}:root[mode="light"] .pt-2,:root[mode="light"] .py-2{padding-top:0.5rem !important}:root[mode="light"] .pr-2,:root[mode="light"] .px-2{padding-right:0.5rem !important}:root[mode="light"] .pb-2,:root[mode="light"] .py-2{padding-bottom:0.5rem !important}:root[mode="light"] .pl-2,:root[mode="light"] .px-2{padding-left:0.5rem !important}:root[mode="light"] .p-3{padding:1rem !important}:root[mode="light"] .pt-3,:root[mode="light"] .py-3{padding-top:1rem !important}:root[mode="light"] .pr-3,:root[mode="light"] .px-3{padding-right:1rem !important}:root[mode="light"] .pb-3,:root[mode="light"] .py-3{padding-bottom:1rem !important}:root[mode="light"] .pl-3,:root[mode="light"] .px-3{padding-left:1rem !important}:root[mode="light"] .p-4{padding:1.5rem !important}:root[mode="light"] .pt-4,:root[mode="light"] .py-4{padding-top:1.5rem !important}:root[mode="light"] .pr-4,:root[mode="light"] .px-4{padding-right:1.5rem !important}:root[mode="light"] .pb-4,:root[mode="light"] .py-4{padding-bottom:1.5rem !important}:root[mode="light"] .pl-4,:root[mode="light"] .px-4{padding-left:1.5rem !important}:root[mode="light"] .p-5{padding:3rem !important}:root[mode="light"] .pt-5,:root[mode="light"] .py-5{padding-top:3rem !important}:root[mode="light"] .pr-5,:root[mode="light"] .px-5{padding-right:3rem !important}:root[mode="light"] .pb-5,:root[mode="light"] .py-5{padding-bottom:3rem !important}:root[mode="light"] .pl-5,:root[mode="light"] .px-5{padding-left:3rem !important}:root[mode="light"] .m-n1{margin:-0.25rem !important}:root[mode="light"] .mt-n1,:root[mode="light"] .my-n1{margin-top:-0.25rem !important}:root[mode="light"] .mr-n1,:root[mode="light"] .mx-n1{margin-right:-0.25rem !important}:root[mode="light"] .mb-n1,:root[mode="light"] .my-n1{margin-bottom:-0.25rem !important}:root[mode="light"] .ml-n1,:root[mode="light"] .mx-n1{margin-left:-0.25rem !important}:root[mode="light"] .m-n2{margin:-0.5rem !important}:root[mode="light"] .mt-n2,:root[mode="light"] .my-n2{margin-top:-0.5rem !important}:root[mode="light"] .mr-n2,:root[mode="light"] .mx-n2{margin-right:-0.5rem !important}:root[mode="light"] .mb-n2,:root[mode="light"] .my-n2{margin-bottom:-0.5rem !important}:root[mode="light"] .ml-n2,:root[mode="light"] .mx-n2{margin-left:-0.5rem !important}:root[mode="light"] .m-n3{margin:-1rem !important}:root[mode="light"] .mt-n3,:root[mode="light"] .my-n3{margin-top:-1rem !important}:root[mode="light"] .mr-n3,:root[mode="light"] .mx-n3{margin-right:-1rem !important}:root[mode="light"] .mb-n3,:root[mode="light"] .my-n3{margin-bottom:-1rem !important}:root[mode="light"] .ml-n3,:root[mode="light"] .mx-n3{margin-left:-1rem !important}:root[mode="light"] .m-n4{margin:-1.5rem !important}:root[mode="light"] .mt-n4,:root[mode="light"] .my-n4{margin-top:-1.5rem !important}:root[mode="light"] .mr-n4,:root[mode="light"] .mx-n4{margin-right:-1.5rem !important}:root[mode="light"] .mb-n4,:root[mode="light"] .my-n4{margin-bottom:-1.5rem !important}:root[mode="light"] .ml-n4,:root[mode="light"] .mx-n4{margin-left:-1.5rem !important}:root[mode="light"] .m-n5{margin:-3rem !important}:root[mode="light"] .mt-n5,:root[mode="light"] .my-n5{margin-top:-3rem !important}:root[mode="light"] .mr-n5,:root[mode="light"] .mx-n5{margin-right:-3rem !important}:root[mode="light"] .mb-n5,:root[mode="light"] .my-n5{margin-bottom:-3rem !important}:root[mode="light"] .ml-n5,:root[mode="light"] .mx-n5{margin-left:-3rem !important}:root[mode="light"] .m-auto{margin:auto !important}:root[mode="light"] .mt-auto,:root[mode="light"] .my-auto{margin-top:auto !important}:root[mode="light"] .mr-auto,:root[mode="light"] .mx-auto{margin-right:auto !important}:root[mode="light"] .mb-auto,:root[mode="light"] .my-auto{margin-bottom:auto !important}:root[mode="light"] .ml-auto,:root[mode="light"] .mx-auto{margin-left:auto !important}@media (min-width: 576px){:root[mode="light"] .m-sm-0{margin:0 !important}:root[mode="light"] .mt-sm-0,:root[mode="light"] .my-sm-0{margin-top:0 !important}:root[mode="light"] .mr-sm-0,:root[mode="light"] .mx-sm-0{margin-right:0 !important}:root[mode="light"] .mb-sm-0,:root[mode="light"] .my-sm-0{margin-bottom:0 !important}:root[mode="light"] .ml-sm-0,:root[mode="light"] .mx-sm-0{margin-left:0 !important}:root[mode="light"] .m-sm-1{margin:0.25rem !important}:root[mode="light"] .mt-sm-1,:root[mode="light"] .my-sm-1{margin-top:0.25rem !important}:root[mode="light"] .mr-sm-1,:root[mode="light"] .mx-sm-1{margin-right:0.25rem !important}:root[mode="light"] .mb-sm-1,:root[mode="light"] .my-sm-1{margin-bottom:0.25rem !important}:root[mode="light"] .ml-sm-1,:root[mode="light"] .mx-sm-1{margin-left:0.25rem !important}:root[mode="light"] .m-sm-2{margin:0.5rem !important}:root[mode="light"] .mt-sm-2,:root[mode="light"] .my-sm-2{margin-top:0.5rem !important}:root[mode="light"] .mr-sm-2,:root[mode="light"] .mx-sm-2{margin-right:0.5rem !important}:root[mode="light"] .mb-sm-2,:root[mode="light"] .my-sm-2{margin-bottom:0.5rem !important}:root[mode="light"] .ml-sm-2,:root[mode="light"] .mx-sm-2{margin-left:0.5rem !important}:root[mode="light"] .m-sm-3{margin:1rem !important}:root[mode="light"] .mt-sm-3,:root[mode="light"] .my-sm-3{margin-top:1rem !important}:root[mode="light"] .mr-sm-3,:root[mode="light"] .mx-sm-3{margin-right:1rem !important}:root[mode="light"] .mb-sm-3,:root[mode="light"] .my-sm-3{margin-bottom:1rem !important}:root[mode="light"] .ml-sm-3,:root[mode="light"] .mx-sm-3{margin-left:1rem !important}:root[mode="light"] .m-sm-4{margin:1.5rem !important}:root[mode="light"] .mt-sm-4,:root[mode="light"] .my-sm-4{margin-top:1.5rem !important}:root[mode="light"] .mr-sm-4,:root[mode="light"] .mx-sm-4{margin-right:1.5rem !important}:root[mode="light"] .mb-sm-4,:root[mode="light"] .my-sm-4{margin-bottom:1.5rem !important}:root[mode="light"] .ml-sm-4,:root[mode="light"] .mx-sm-4{margin-left:1.5rem !important}:root[mode="light"] .m-sm-5{margin:3rem !important}:root[mode="light"] .mt-sm-5,:root[mode="light"] .my-sm-5{margin-top:3rem !important}:root[mode="light"] .mr-sm-5,:root[mode="light"] .mx-sm-5{margin-right:3rem !important}:root[mode="light"] .mb-sm-5,:root[mode="light"] .my-sm-5{margin-bottom:3rem !important}:root[mode="light"] .ml-sm-5,:root[mode="light"] .mx-sm-5{margin-left:3rem !important}:root[mode="light"] .p-sm-0{padding:0 !important}:root[mode="light"] .pt-sm-0,:root[mode="light"] .py-sm-0{padding-top:0 !important}:root[mode="light"] .pr-sm-0,:root[mode="light"] .px-sm-0{padding-right:0 !important}:root[mode="light"] .pb-sm-0,:root[mode="light"] .py-sm-0{padding-bottom:0 !important}:root[mode="light"] .pl-sm-0,:root[mode="light"] .px-sm-0{padding-left:0 !important}:root[mode="light"] .p-sm-1{padding:0.25rem !important}:root[mode="light"] .pt-sm-1,:root[mode="light"] .py-sm-1{padding-top:0.25rem !important}:root[mode="light"] .pr-sm-1,:root[mode="light"] .px-sm-1{padding-right:0.25rem !important}:root[mode="light"] .pb-sm-1,:root[mode="light"] .py-sm-1{padding-bottom:0.25rem !important}:root[mode="light"] .pl-sm-1,:root[mode="light"] .px-sm-1{padding-left:0.25rem !important}:root[mode="light"] .p-sm-2{padding:0.5rem !important}:root[mode="light"] .pt-sm-2,:root[mode="light"] .py-sm-2{padding-top:0.5rem !important}:root[mode="light"] .pr-sm-2,:root[mode="light"] .px-sm-2{padding-right:0.5rem !important}:root[mode="light"] .pb-sm-2,:root[mode="light"] .py-sm-2{padding-bottom:0.5rem !important}:root[mode="light"] .pl-sm-2,:root[mode="light"] .px-sm-2{padding-left:0.5rem !important}:root[mode="light"] .p-sm-3{padding:1rem !important}:root[mode="light"] .pt-sm-3,:root[mode="light"] .py-sm-3{padding-top:1rem !important}:root[mode="light"] .pr-sm-3,:root[mode="light"] .px-sm-3{padding-right:1rem !important}:root[mode="light"] .pb-sm-3,:root[mode="light"] .py-sm-3{padding-bottom:1rem !important}:root[mode="light"] .pl-sm-3,:root[mode="light"] .px-sm-3{padding-left:1rem !important}:root[mode="light"] .p-sm-4{padding:1.5rem !important}:root[mode="light"] .pt-sm-4,:root[mode="light"] .py-sm-4{padding-top:1.5rem !important}:root[mode="light"] .pr-sm-4,:root[mode="light"] .px-sm-4{padding-right:1.5rem !important}:root[mode="light"] .pb-sm-4,:root[mode="light"] .py-sm-4{padding-bottom:1.5rem !important}:root[mode="light"] .pl-sm-4,:root[mode="light"] .px-sm-4{padding-left:1.5rem !important}:root[mode="light"] .p-sm-5{padding:3rem !important}:root[mode="light"] .pt-sm-5,:root[mode="light"] .py-sm-5{padding-top:3rem !important}:root[mode="light"] .pr-sm-5,:root[mode="light"] .px-sm-5{padding-right:3rem !important}:root[mode="light"] .pb-sm-5,:root[mode="light"] .py-sm-5{padding-bottom:3rem !important}:root[mode="light"] .pl-sm-5,:root[mode="light"] .px-sm-5{padding-left:3rem !important}:root[mode="light"] .m-sm-n1{margin:-0.25rem !important}:root[mode="light"] .mt-sm-n1,:root[mode="light"] .my-sm-n1{margin-top:-0.25rem !important}:root[mode="light"] .mr-sm-n1,:root[mode="light"] .mx-sm-n1{margin-right:-0.25rem !important}:root[mode="light"] .mb-sm-n1,:root[mode="light"] .my-sm-n1{margin-bottom:-0.25rem !important}:root[mode="light"] .ml-sm-n1,:root[mode="light"] .mx-sm-n1{margin-left:-0.25rem !important}:root[mode="light"] .m-sm-n2{margin:-0.5rem !important}:root[mode="light"] .mt-sm-n2,:root[mode="light"] .my-sm-n2{margin-top:-0.5rem !important}:root[mode="light"] .mr-sm-n2,:root[mode="light"] .mx-sm-n2{margin-right:-0.5rem !important}:root[mode="light"] .mb-sm-n2,:root[mode="light"] .my-sm-n2{margin-bottom:-0.5rem !important}:root[mode="light"] .ml-sm-n2,:root[mode="light"] .mx-sm-n2{margin-left:-0.5rem !important}:root[mode="light"] .m-sm-n3{margin:-1rem !important}:root[mode="light"] .mt-sm-n3,:root[mode="light"] .my-sm-n3{margin-top:-1rem !important}:root[mode="light"] .mr-sm-n3,:root[mode="light"] .mx-sm-n3{margin-right:-1rem !important}:root[mode="light"] .mb-sm-n3,:root[mode="light"] .my-sm-n3{margin-bottom:-1rem !important}:root[mode="light"] .ml-sm-n3,:root[mode="light"] .mx-sm-n3{margin-left:-1rem !important}:root[mode="light"] .m-sm-n4{margin:-1.5rem !important}:root[mode="light"] .mt-sm-n4,:root[mode="light"] .my-sm-n4{margin-top:-1.5rem !important}:root[mode="light"] .mr-sm-n4,:root[mode="light"] .mx-sm-n4{margin-right:-1.5rem !important}:root[mode="light"] .mb-sm-n4,:root[mode="light"] .my-sm-n4{margin-bottom:-1.5rem !important}:root[mode="light"] .ml-sm-n4,:root[mode="light"] .mx-sm-n4{margin-left:-1.5rem !important}:root[mode="light"] .m-sm-n5{margin:-3rem !important}:root[mode="light"] .mt-sm-n5,:root[mode="light"] .my-sm-n5{margin-top:-3rem !important}:root[mode="light"] .mr-sm-n5,:root[mode="light"] .mx-sm-n5{margin-right:-3rem !important}:root[mode="light"] .mb-sm-n5,:root[mode="light"] .my-sm-n5{margin-bottom:-3rem !important}:root[mode="light"] .ml-sm-n5,:root[mode="light"] .mx-sm-n5{margin-left:-3rem !important}:root[mode="light"] .m-sm-auto{margin:auto !important}:root[mode="light"] .mt-sm-auto,:root[mode="light"] .my-sm-auto{margin-top:auto !important}:root[mode="light"] .mr-sm-auto,:root[mode="light"] .mx-sm-auto{margin-right:auto !important}:root[mode="light"] .mb-sm-auto,:root[mode="light"] .my-sm-auto{margin-bottom:auto !important}:root[mode="light"] .ml-sm-auto,:root[mode="light"] .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){:root[mode="light"] .m-md-0{margin:0 !important}:root[mode="light"] .mt-md-0,:root[mode="light"] .my-md-0{margin-top:0 !important}:root[mode="light"] .mr-md-0,:root[mode="light"] .mx-md-0{margin-right:0 !important}:root[mode="light"] .mb-md-0,:root[mode="light"] .my-md-0{margin-bottom:0 !important}:root[mode="light"] .ml-md-0,:root[mode="light"] .mx-md-0{margin-left:0 !important}:root[mode="light"] .m-md-1{margin:0.25rem !important}:root[mode="light"] .mt-md-1,:root[mode="light"] .my-md-1{margin-top:0.25rem !important}:root[mode="light"] .mr-md-1,:root[mode="light"] .mx-md-1{margin-right:0.25rem !important}:root[mode="light"] .mb-md-1,:root[mode="light"] .my-md-1{margin-bottom:0.25rem !important}:root[mode="light"] .ml-md-1,:root[mode="light"] .mx-md-1{margin-left:0.25rem !important}:root[mode="light"] .m-md-2{margin:0.5rem !important}:root[mode="light"] .mt-md-2,:root[mode="light"] .my-md-2{margin-top:0.5rem !important}:root[mode="light"] .mr-md-2,:root[mode="light"] .mx-md-2{margin-right:0.5rem !important}:root[mode="light"] .mb-md-2,:root[mode="light"] .my-md-2{margin-bottom:0.5rem !important}:root[mode="light"] .ml-md-2,:root[mode="light"] .mx-md-2{margin-left:0.5rem !important}:root[mode="light"] .m-md-3{margin:1rem !important}:root[mode="light"] .mt-md-3,:root[mode="light"] .my-md-3{margin-top:1rem !important}:root[mode="light"] .mr-md-3,:root[mode="light"] .mx-md-3{margin-right:1rem !important}:root[mode="light"] .mb-md-3,:root[mode="light"] .my-md-3{margin-bottom:1rem !important}:root[mode="light"] .ml-md-3,:root[mode="light"] .mx-md-3{margin-left:1rem !important}:root[mode="light"] .m-md-4{margin:1.5rem !important}:root[mode="light"] .mt-md-4,:root[mode="light"] .my-md-4{margin-top:1.5rem !important}:root[mode="light"] .mr-md-4,:root[mode="light"] .mx-md-4{margin-right:1.5rem !important}:root[mode="light"] .mb-md-4,:root[mode="light"] .my-md-4{margin-bottom:1.5rem !important}:root[mode="light"] .ml-md-4,:root[mode="light"] .mx-md-4{margin-left:1.5rem !important}:root[mode="light"] .m-md-5{margin:3rem !important}:root[mode="light"] .mt-md-5,:root[mode="light"] .my-md-5{margin-top:3rem !important}:root[mode="light"] .mr-md-5,:root[mode="light"] .mx-md-5{margin-right:3rem !important}:root[mode="light"] .mb-md-5,:root[mode="light"] .my-md-5{margin-bottom:3rem !important}:root[mode="light"] .ml-md-5,:root[mode="light"] .mx-md-5{margin-left:3rem !important}:root[mode="light"] .p-md-0{padding:0 !important}:root[mode="light"] .pt-md-0,:root[mode="light"] .py-md-0{padding-top:0 !important}:root[mode="light"] .pr-md-0,:root[mode="light"] .px-md-0{padding-right:0 !important}:root[mode="light"] .pb-md-0,:root[mode="light"] .py-md-0{padding-bottom:0 !important}:root[mode="light"] .pl-md-0,:root[mode="light"] .px-md-0{padding-left:0 !important}:root[mode="light"] .p-md-1{padding:0.25rem !important}:root[mode="light"] .pt-md-1,:root[mode="light"] .py-md-1{padding-top:0.25rem !important}:root[mode="light"] .pr-md-1,:root[mode="light"] .px-md-1{padding-right:0.25rem !important}:root[mode="light"] .pb-md-1,:root[mode="light"] .py-md-1{padding-bottom:0.25rem !important}:root[mode="light"] .pl-md-1,:root[mode="light"] .px-md-1{padding-left:0.25rem !important}:root[mode="light"] .p-md-2{padding:0.5rem !important}:root[mode="light"] .pt-md-2,:root[mode="light"] .py-md-2{padding-top:0.5rem !important}:root[mode="light"] .pr-md-2,:root[mode="light"] .px-md-2{padding-right:0.5rem !important}:root[mode="light"] .pb-md-2,:root[mode="light"] .py-md-2{padding-bottom:0.5rem !important}:root[mode="light"] .pl-md-2,:root[mode="light"] .px-md-2{padding-left:0.5rem !important}:root[mode="light"] .p-md-3{padding:1rem !important}:root[mode="light"] .pt-md-3,:root[mode="light"] .py-md-3{padding-top:1rem !important}:root[mode="light"] .pr-md-3,:root[mode="light"] .px-md-3{padding-right:1rem !important}:root[mode="light"] .pb-md-3,:root[mode="light"] .py-md-3{padding-bottom:1rem !important}:root[mode="light"] .pl-md-3,:root[mode="light"] .px-md-3{padding-left:1rem !important}:root[mode="light"] .p-md-4{padding:1.5rem !important}:root[mode="light"] .pt-md-4,:root[mode="light"] .py-md-4{padding-top:1.5rem !important}:root[mode="light"] .pr-md-4,:root[mode="light"] .px-md-4{padding-right:1.5rem !important}:root[mode="light"] .pb-md-4,:root[mode="light"] .py-md-4{padding-bottom:1.5rem !important}:root[mode="light"] .pl-md-4,:root[mode="light"] .px-md-4{padding-left:1.5rem !important}:root[mode="light"] .p-md-5{padding:3rem !important}:root[mode="light"] .pt-md-5,:root[mode="light"] .py-md-5{padding-top:3rem !important}:root[mode="light"] .pr-md-5,:root[mode="light"] .px-md-5{padding-right:3rem !important}:root[mode="light"] .pb-md-5,:root[mode="light"] .py-md-5{padding-bottom:3rem !important}:root[mode="light"] .pl-md-5,:root[mode="light"] .px-md-5{padding-left:3rem !important}:root[mode="light"] .m-md-n1{margin:-0.25rem !important}:root[mode="light"] .mt-md-n1,:root[mode="light"] .my-md-n1{margin-top:-0.25rem !important}:root[mode="light"] .mr-md-n1,:root[mode="light"] .mx-md-n1{margin-right:-0.25rem !important}:root[mode="light"] .mb-md-n1,:root[mode="light"] .my-md-n1{margin-bottom:-0.25rem !important}:root[mode="light"] .ml-md-n1,:root[mode="light"] .mx-md-n1{margin-left:-0.25rem !important}:root[mode="light"] .m-md-n2{margin:-0.5rem !important}:root[mode="light"] .mt-md-n2,:root[mode="light"] .my-md-n2{margin-top:-0.5rem !important}:root[mode="light"] .mr-md-n2,:root[mode="light"] .mx-md-n2{margin-right:-0.5rem !important}:root[mode="light"] .mb-md-n2,:root[mode="light"] .my-md-n2{margin-bottom:-0.5rem !important}:root[mode="light"] .ml-md-n2,:root[mode="light"] .mx-md-n2{margin-left:-0.5rem !important}:root[mode="light"] .m-md-n3{margin:-1rem !important}:root[mode="light"] .mt-md-n3,:root[mode="light"] .my-md-n3{margin-top:-1rem !important}:root[mode="light"] .mr-md-n3,:root[mode="light"] .mx-md-n3{margin-right:-1rem !important}:root[mode="light"] .mb-md-n3,:root[mode="light"] .my-md-n3{margin-bottom:-1rem !important}:root[mode="light"] .ml-md-n3,:root[mode="light"] .mx-md-n3{margin-left:-1rem !important}:root[mode="light"] .m-md-n4{margin:-1.5rem !important}:root[mode="light"] .mt-md-n4,:root[mode="light"] .my-md-n4{margin-top:-1.5rem !important}:root[mode="light"] .mr-md-n4,:root[mode="light"] .mx-md-n4{margin-right:-1.5rem !important}:root[mode="light"] .mb-md-n4,:root[mode="light"] .my-md-n4{margin-bottom:-1.5rem !important}:root[mode="light"] .ml-md-n4,:root[mode="light"] .mx-md-n4{margin-left:-1.5rem !important}:root[mode="light"] .m-md-n5{margin:-3rem !important}:root[mode="light"] .mt-md-n5,:root[mode="light"] .my-md-n5{margin-top:-3rem !important}:root[mode="light"] .mr-md-n5,:root[mode="light"] .mx-md-n5{margin-right:-3rem !important}:root[mode="light"] .mb-md-n5,:root[mode="light"] .my-md-n5{margin-bottom:-3rem !important}:root[mode="light"] .ml-md-n5,:root[mode="light"] .mx-md-n5{margin-left:-3rem !important}:root[mode="light"] .m-md-auto{margin:auto !important}:root[mode="light"] .mt-md-auto,:root[mode="light"] .my-md-auto{margin-top:auto !important}:root[mode="light"] .mr-md-auto,:root[mode="light"] .mx-md-auto{margin-right:auto !important}:root[mode="light"] .mb-md-auto,:root[mode="light"] .my-md-auto{margin-bottom:auto !important}:root[mode="light"] .ml-md-auto,:root[mode="light"] .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){:root[mode="light"] .m-lg-0{margin:0 !important}:root[mode="light"] .mt-lg-0,:root[mode="light"] .my-lg-0{margin-top:0 !important}:root[mode="light"] .mr-lg-0,:root[mode="light"] .mx-lg-0{margin-right:0 !important}:root[mode="light"] .mb-lg-0,:root[mode="light"] .my-lg-0{margin-bottom:0 !important}:root[mode="light"] .ml-lg-0,:root[mode="light"] .mx-lg-0{margin-left:0 !important}:root[mode="light"] .m-lg-1{margin:0.25rem !important}:root[mode="light"] .mt-lg-1,:root[mode="light"] .my-lg-1{margin-top:0.25rem !important}:root[mode="light"] .mr-lg-1,:root[mode="light"] .mx-lg-1{margin-right:0.25rem !important}:root[mode="light"] .mb-lg-1,:root[mode="light"] .my-lg-1{margin-bottom:0.25rem !important}:root[mode="light"] .ml-lg-1,:root[mode="light"] .mx-lg-1{margin-left:0.25rem !important}:root[mode="light"] .m-lg-2{margin:0.5rem !important}:root[mode="light"] .mt-lg-2,:root[mode="light"] .my-lg-2{margin-top:0.5rem !important}:root[mode="light"] .mr-lg-2,:root[mode="light"] .mx-lg-2{margin-right:0.5rem !important}:root[mode="light"] .mb-lg-2,:root[mode="light"] .my-lg-2{margin-bottom:0.5rem !important}:root[mode="light"] .ml-lg-2,:root[mode="light"] .mx-lg-2{margin-left:0.5rem !important}:root[mode="light"] .m-lg-3{margin:1rem !important}:root[mode="light"] .mt-lg-3,:root[mode="light"] .my-lg-3{margin-top:1rem !important}:root[mode="light"] .mr-lg-3,:root[mode="light"] .mx-lg-3{margin-right:1rem !important}:root[mode="light"] .mb-lg-3,:root[mode="light"] .my-lg-3{margin-bottom:1rem !important}:root[mode="light"] .ml-lg-3,:root[mode="light"] .mx-lg-3{margin-left:1rem !important}:root[mode="light"] .m-lg-4{margin:1.5rem !important}:root[mode="light"] .mt-lg-4,:root[mode="light"] .my-lg-4{margin-top:1.5rem !important}:root[mode="light"] .mr-lg-4,:root[mode="light"] .mx-lg-4{margin-right:1.5rem !important}:root[mode="light"] .mb-lg-4,:root[mode="light"] .my-lg-4{margin-bottom:1.5rem !important}:root[mode="light"] .ml-lg-4,:root[mode="light"] .mx-lg-4{margin-left:1.5rem !important}:root[mode="light"] .m-lg-5{margin:3rem !important}:root[mode="light"] .mt-lg-5,:root[mode="light"] .my-lg-5{margin-top:3rem !important}:root[mode="light"] .mr-lg-5,:root[mode="light"] .mx-lg-5{margin-right:3rem !important}:root[mode="light"] .mb-lg-5,:root[mode="light"] .my-lg-5{margin-bottom:3rem !important}:root[mode="light"] .ml-lg-5,:root[mode="light"] .mx-lg-5{margin-left:3rem !important}:root[mode="light"] .p-lg-0{padding:0 !important}:root[mode="light"] .pt-lg-0,:root[mode="light"] .py-lg-0{padding-top:0 !important}:root[mode="light"] .pr-lg-0,:root[mode="light"] .px-lg-0{padding-right:0 !important}:root[mode="light"] .pb-lg-0,:root[mode="light"] .py-lg-0{padding-bottom:0 !important}:root[mode="light"] .pl-lg-0,:root[mode="light"] .px-lg-0{padding-left:0 !important}:root[mode="light"] .p-lg-1{padding:0.25rem !important}:root[mode="light"] .pt-lg-1,:root[mode="light"] .py-lg-1{padding-top:0.25rem !important}:root[mode="light"] .pr-lg-1,:root[mode="light"] .px-lg-1{padding-right:0.25rem !important}:root[mode="light"] .pb-lg-1,:root[mode="light"] .py-lg-1{padding-bottom:0.25rem !important}:root[mode="light"] .pl-lg-1,:root[mode="light"] .px-lg-1{padding-left:0.25rem !important}:root[mode="light"] .p-lg-2{padding:0.5rem !important}:root[mode="light"] .pt-lg-2,:root[mode="light"] .py-lg-2{padding-top:0.5rem !important}:root[mode="light"] .pr-lg-2,:root[mode="light"] .px-lg-2{padding-right:0.5rem !important}:root[mode="light"] .pb-lg-2,:root[mode="light"] .py-lg-2{padding-bottom:0.5rem !important}:root[mode="light"] .pl-lg-2,:root[mode="light"] .px-lg-2{padding-left:0.5rem !important}:root[mode="light"] .p-lg-3{padding:1rem !important}:root[mode="light"] .pt-lg-3,:root[mode="light"] .py-lg-3{padding-top:1rem !important}:root[mode="light"] .pr-lg-3,:root[mode="light"] .px-lg-3{padding-right:1rem !important}:root[mode="light"] .pb-lg-3,:root[mode="light"] .py-lg-3{padding-bottom:1rem !important}:root[mode="light"] .pl-lg-3,:root[mode="light"] .px-lg-3{padding-left:1rem !important}:root[mode="light"] .p-lg-4{padding:1.5rem !important}:root[mode="light"] .pt-lg-4,:root[mode="light"] .py-lg-4{padding-top:1.5rem !important}:root[mode="light"] .pr-lg-4,:root[mode="light"] .px-lg-4{padding-right:1.5rem !important}:root[mode="light"] .pb-lg-4,:root[mode="light"] .py-lg-4{padding-bottom:1.5rem !important}:root[mode="light"] .pl-lg-4,:root[mode="light"] .px-lg-4{padding-left:1.5rem !important}:root[mode="light"] .p-lg-5{padding:3rem !important}:root[mode="light"] .pt-lg-5,:root[mode="light"] .py-lg-5{padding-top:3rem !important}:root[mode="light"] .pr-lg-5,:root[mode="light"] .px-lg-5{padding-right:3rem !important}:root[mode="light"] .pb-lg-5,:root[mode="light"] .py-lg-5{padding-bottom:3rem !important}:root[mode="light"] .pl-lg-5,:root[mode="light"] .px-lg-5{padding-left:3rem !important}:root[mode="light"] .m-lg-n1{margin:-0.25rem !important}:root[mode="light"] .mt-lg-n1,:root[mode="light"] .my-lg-n1{margin-top:-0.25rem !important}:root[mode="light"] .mr-lg-n1,:root[mode="light"] .mx-lg-n1{margin-right:-0.25rem !important}:root[mode="light"] .mb-lg-n1,:root[mode="light"] .my-lg-n1{margin-bottom:-0.25rem !important}:root[mode="light"] .ml-lg-n1,:root[mode="light"] .mx-lg-n1{margin-left:-0.25rem !important}:root[mode="light"] .m-lg-n2{margin:-0.5rem !important}:root[mode="light"] .mt-lg-n2,:root[mode="light"] .my-lg-n2{margin-top:-0.5rem !important}:root[mode="light"] .mr-lg-n2,:root[mode="light"] .mx-lg-n2{margin-right:-0.5rem !important}:root[mode="light"] .mb-lg-n2,:root[mode="light"] .my-lg-n2{margin-bottom:-0.5rem !important}:root[mode="light"] .ml-lg-n2,:root[mode="light"] .mx-lg-n2{margin-left:-0.5rem !important}:root[mode="light"] .m-lg-n3{margin:-1rem !important}:root[mode="light"] .mt-lg-n3,:root[mode="light"] .my-lg-n3{margin-top:-1rem !important}:root[mode="light"] .mr-lg-n3,:root[mode="light"] .mx-lg-n3{margin-right:-1rem !important}:root[mode="light"] .mb-lg-n3,:root[mode="light"] .my-lg-n3{margin-bottom:-1rem !important}:root[mode="light"] .ml-lg-n3,:root[mode="light"] .mx-lg-n3{margin-left:-1rem !important}:root[mode="light"] .m-lg-n4{margin:-1.5rem !important}:root[mode="light"] .mt-lg-n4,:root[mode="light"] .my-lg-n4{margin-top:-1.5rem !important}:root[mode="light"] .mr-lg-n4,:root[mode="light"] .mx-lg-n4{margin-right:-1.5rem !important}:root[mode="light"] .mb-lg-n4,:root[mode="light"] .my-lg-n4{margin-bottom:-1.5rem !important}:root[mode="light"] .ml-lg-n4,:root[mode="light"] .mx-lg-n4{margin-left:-1.5rem !important}:root[mode="light"] .m-lg-n5{margin:-3rem !important}:root[mode="light"] .mt-lg-n5,:root[mode="light"] .my-lg-n5{margin-top:-3rem !important}:root[mode="light"] .mr-lg-n5,:root[mode="light"] .mx-lg-n5{margin-right:-3rem !important}:root[mode="light"] .mb-lg-n5,:root[mode="light"] .my-lg-n5{margin-bottom:-3rem !important}:root[mode="light"] .ml-lg-n5,:root[mode="light"] .mx-lg-n5{margin-left:-3rem !important}:root[mode="light"] .m-lg-auto{margin:auto !important}:root[mode="light"] .mt-lg-auto,:root[mode="light"] .my-lg-auto{margin-top:auto !important}:root[mode="light"] .mr-lg-auto,:root[mode="light"] .mx-lg-auto{margin-right:auto !important}:root[mode="light"] .mb-lg-auto,:root[mode="light"] .my-lg-auto{margin-bottom:auto !important}:root[mode="light"] .ml-lg-auto,:root[mode="light"] .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){:root[mode="light"] .m-xl-0{margin:0 !important}:root[mode="light"] .mt-xl-0,:root[mode="light"] .my-xl-0{margin-top:0 !important}:root[mode="light"] .mr-xl-0,:root[mode="light"] .mx-xl-0{margin-right:0 !important}:root[mode="light"] .mb-xl-0,:root[mode="light"] .my-xl-0{margin-bottom:0 !important}:root[mode="light"] .ml-xl-0,:root[mode="light"] .mx-xl-0{margin-left:0 !important}:root[mode="light"] .m-xl-1{margin:0.25rem !important}:root[mode="light"] .mt-xl-1,:root[mode="light"] .my-xl-1{margin-top:0.25rem !important}:root[mode="light"] .mr-xl-1,:root[mode="light"] .mx-xl-1{margin-right:0.25rem !important}:root[mode="light"] .mb-xl-1,:root[mode="light"] .my-xl-1{margin-bottom:0.25rem !important}:root[mode="light"] .ml-xl-1,:root[mode="light"] .mx-xl-1{margin-left:0.25rem !important}:root[mode="light"] .m-xl-2{margin:0.5rem !important}:root[mode="light"] .mt-xl-2,:root[mode="light"] .my-xl-2{margin-top:0.5rem !important}:root[mode="light"] .mr-xl-2,:root[mode="light"] .mx-xl-2{margin-right:0.5rem !important}:root[mode="light"] .mb-xl-2,:root[mode="light"] .my-xl-2{margin-bottom:0.5rem !important}:root[mode="light"] .ml-xl-2,:root[mode="light"] .mx-xl-2{margin-left:0.5rem !important}:root[mode="light"] .m-xl-3{margin:1rem !important}:root[mode="light"] .mt-xl-3,:root[mode="light"] .my-xl-3{margin-top:1rem !important}:root[mode="light"] .mr-xl-3,:root[mode="light"] .mx-xl-3{margin-right:1rem !important}:root[mode="light"] .mb-xl-3,:root[mode="light"] .my-xl-3{margin-bottom:1rem !important}:root[mode="light"] .ml-xl-3,:root[mode="light"] .mx-xl-3{margin-left:1rem !important}:root[mode="light"] .m-xl-4{margin:1.5rem !important}:root[mode="light"] .mt-xl-4,:root[mode="light"] .my-xl-4{margin-top:1.5rem !important}:root[mode="light"] .mr-xl-4,:root[mode="light"] .mx-xl-4{margin-right:1.5rem !important}:root[mode="light"] .mb-xl-4,:root[mode="light"] .my-xl-4{margin-bottom:1.5rem !important}:root[mode="light"] .ml-xl-4,:root[mode="light"] .mx-xl-4{margin-left:1.5rem !important}:root[mode="light"] .m-xl-5{margin:3rem !important}:root[mode="light"] .mt-xl-5,:root[mode="light"] .my-xl-5{margin-top:3rem !important}:root[mode="light"] .mr-xl-5,:root[mode="light"] .mx-xl-5{margin-right:3rem !important}:root[mode="light"] .mb-xl-5,:root[mode="light"] .my-xl-5{margin-bottom:3rem !important}:root[mode="light"] .ml-xl-5,:root[mode="light"] .mx-xl-5{margin-left:3rem !important}:root[mode="light"] .p-xl-0{padding:0 !important}:root[mode="light"] .pt-xl-0,:root[mode="light"] .py-xl-0{padding-top:0 !important}:root[mode="light"] .pr-xl-0,:root[mode="light"] .px-xl-0{padding-right:0 !important}:root[mode="light"] .pb-xl-0,:root[mode="light"] .py-xl-0{padding-bottom:0 !important}:root[mode="light"] .pl-xl-0,:root[mode="light"] .px-xl-0{padding-left:0 !important}:root[mode="light"] .p-xl-1{padding:0.25rem !important}:root[mode="light"] .pt-xl-1,:root[mode="light"] .py-xl-1{padding-top:0.25rem !important}:root[mode="light"] .pr-xl-1,:root[mode="light"] .px-xl-1{padding-right:0.25rem !important}:root[mode="light"] .pb-xl-1,:root[mode="light"] .py-xl-1{padding-bottom:0.25rem !important}:root[mode="light"] .pl-xl-1,:root[mode="light"] .px-xl-1{padding-left:0.25rem !important}:root[mode="light"] .p-xl-2{padding:0.5rem !important}:root[mode="light"] .pt-xl-2,:root[mode="light"] .py-xl-2{padding-top:0.5rem !important}:root[mode="light"] .pr-xl-2,:root[mode="light"] .px-xl-2{padding-right:0.5rem !important}:root[mode="light"] .pb-xl-2,:root[mode="light"] .py-xl-2{padding-bottom:0.5rem !important}:root[mode="light"] .pl-xl-2,:root[mode="light"] .px-xl-2{padding-left:0.5rem !important}:root[mode="light"] .p-xl-3{padding:1rem !important}:root[mode="light"] .pt-xl-3,:root[mode="light"] .py-xl-3{padding-top:1rem !important}:root[mode="light"] .pr-xl-3,:root[mode="light"] .px-xl-3{padding-right:1rem !important}:root[mode="light"] .pb-xl-3,:root[mode="light"] .py-xl-3{padding-bottom:1rem !important}:root[mode="light"] .pl-xl-3,:root[mode="light"] .px-xl-3{padding-left:1rem !important}:root[mode="light"] .p-xl-4{padding:1.5rem !important}:root[mode="light"] .pt-xl-4,:root[mode="light"] .py-xl-4{padding-top:1.5rem !important}:root[mode="light"] .pr-xl-4,:root[mode="light"] .px-xl-4{padding-right:1.5rem !important}:root[mode="light"] .pb-xl-4,:root[mode="light"] .py-xl-4{padding-bottom:1.5rem !important}:root[mode="light"] .pl-xl-4,:root[mode="light"] .px-xl-4{padding-left:1.5rem !important}:root[mode="light"] .p-xl-5{padding:3rem !important}:root[mode="light"] .pt-xl-5,:root[mode="light"] .py-xl-5{padding-top:3rem !important}:root[mode="light"] .pr-xl-5,:root[mode="light"] .px-xl-5{padding-right:3rem !important}:root[mode="light"] .pb-xl-5,:root[mode="light"] .py-xl-5{padding-bottom:3rem !important}:root[mode="light"] .pl-xl-5,:root[mode="light"] .px-xl-5{padding-left:3rem !important}:root[mode="light"] .m-xl-n1{margin:-0.25rem !important}:root[mode="light"] .mt-xl-n1,:root[mode="light"] .my-xl-n1{margin-top:-0.25rem !important}:root[mode="light"] .mr-xl-n1,:root[mode="light"] .mx-xl-n1{margin-right:-0.25rem !important}:root[mode="light"] .mb-xl-n1,:root[mode="light"] .my-xl-n1{margin-bottom:-0.25rem !important}:root[mode="light"] .ml-xl-n1,:root[mode="light"] .mx-xl-n1{margin-left:-0.25rem !important}:root[mode="light"] .m-xl-n2{margin:-0.5rem !important}:root[mode="light"] .mt-xl-n2,:root[mode="light"] .my-xl-n2{margin-top:-0.5rem !important}:root[mode="light"] .mr-xl-n2,:root[mode="light"] .mx-xl-n2{margin-right:-0.5rem !important}:root[mode="light"] .mb-xl-n2,:root[mode="light"] .my-xl-n2{margin-bottom:-0.5rem !important}:root[mode="light"] .ml-xl-n2,:root[mode="light"] .mx-xl-n2{margin-left:-0.5rem !important}:root[mode="light"] .m-xl-n3{margin:-1rem !important}:root[mode="light"] .mt-xl-n3,:root[mode="light"] .my-xl-n3{margin-top:-1rem !important}:root[mode="light"] .mr-xl-n3,:root[mode="light"] .mx-xl-n3{margin-right:-1rem !important}:root[mode="light"] .mb-xl-n3,:root[mode="light"] .my-xl-n3{margin-bottom:-1rem !important}:root[mode="light"] .ml-xl-n3,:root[mode="light"] .mx-xl-n3{margin-left:-1rem !important}:root[mode="light"] .m-xl-n4{margin:-1.5rem !important}:root[mode="light"] .mt-xl-n4,:root[mode="light"] .my-xl-n4{margin-top:-1.5rem !important}:root[mode="light"] .mr-xl-n4,:root[mode="light"] .mx-xl-n4{margin-right:-1.5rem !important}:root[mode="light"] .mb-xl-n4,:root[mode="light"] .my-xl-n4{margin-bottom:-1.5rem !important}:root[mode="light"] .ml-xl-n4,:root[mode="light"] .mx-xl-n4{margin-left:-1.5rem !important}:root[mode="light"] .m-xl-n5{margin:-3rem !important}:root[mode="light"] .mt-xl-n5,:root[mode="light"] .my-xl-n5{margin-top:-3rem !important}:root[mode="light"] .mr-xl-n5,:root[mode="light"] .mx-xl-n5{margin-right:-3rem !important}:root[mode="light"] .mb-xl-n5,:root[mode="light"] .my-xl-n5{margin-bottom:-3rem !important}:root[mode="light"] .ml-xl-n5,:root[mode="light"] .mx-xl-n5{margin-left:-3rem !important}:root[mode="light"] .m-xl-auto{margin:auto !important}:root[mode="light"] .mt-xl-auto,:root[mode="light"] .my-xl-auto{margin-top:auto !important}:root[mode="light"] .mr-xl-auto,:root[mode="light"] .mx-xl-auto{margin-right:auto !important}:root[mode="light"] .mb-xl-auto,:root[mode="light"] .my-xl-auto{margin-bottom:auto !important}:root[mode="light"] .ml-xl-auto,:root[mode="light"] .mx-xl-auto{margin-left:auto !important}}:root[mode="light"] .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}:root[mode="light"] .text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}:root[mode="light"] .text-justify{text-align:justify !important}:root[mode="light"] .text-wrap{white-space:normal !important}:root[mode="light"] .text-nowrap{white-space:nowrap !important}:root[mode="light"] .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:root[mode="light"] .text-left{text-align:left !important}:root[mode="light"] .text-right{text-align:right !important}:root[mode="light"] .text-center{text-align:center !important}@media (min-width: 576px){:root[mode="light"] .text-sm-left{text-align:left !important}:root[mode="light"] .text-sm-right{text-align:right !important}:root[mode="light"] .text-sm-center{text-align:center !important}}@media (min-width: 768px){:root[mode="light"] .text-md-left{text-align:left !important}:root[mode="light"] .text-md-right{text-align:right !important}:root[mode="light"] .text-md-center{text-align:center !important}}@media (min-width: 992px){:root[mode="light"] .text-lg-left{text-align:left !important}:root[mode="light"] .text-lg-right{text-align:right !important}:root[mode="light"] .text-lg-center{text-align:center !important}}@media (min-width: 1200px){:root[mode="light"] .text-xl-left{text-align:left !important}:root[mode="light"] .text-xl-right{text-align:right !important}:root[mode="light"] .text-xl-center{text-align:center !important}}:root[mode="light"] .text-lowercase{text-transform:lowercase !important}:root[mode="light"] .text-uppercase{text-transform:uppercase !important}:root[mode="light"] .text-capitalize{text-transform:capitalize !important}:root[mode="light"] .font-weight-light{font-weight:300 !important}:root[mode="light"] .font-weight-lighter{font-weight:lighter !important}:root[mode="light"] .font-weight-normal{font-weight:400 !important}:root[mode="light"] .font-weight-bold{font-weight:700 !important}:root[mode="light"] .font-weight-bolder{font-weight:bolder !important}:root[mode="light"] .font-italic{font-style:italic !important}:root[mode="light"] .text-white{color:#fff !important}:root[mode="light"] .text-primary{color:#2c3e50 !important}:root[mode="light"] a.text-primary:hover,:root[mode="light"] a.text-primary:focus{color:#11181f !important}:root[mode="light"] .text-secondary{color:#95a5a6 !important}:root[mode="light"] a.text-secondary:hover,:root[mode="light"] a.text-secondary:focus{color:#6d8082 !important}:root[mode="light"] .text-success{color:#18bc9c !important}:root[mode="light"] a.text-success:hover,:root[mode="light"] a.text-success:focus{color:#0f7864 !important}:root[mode="light"] .text-info{color:#3498db !important}:root[mode="light"] a.text-info:hover,:root[mode="light"] a.text-info:focus{color:#1d6fa5 !important}:root[mode="light"] .text-warning{color:#f39c12 !important}:root[mode="light"] a.text-warning:hover,:root[mode="light"] a.text-warning:focus{color:#b06f09 !important}:root[mode="light"] .text-danger{color:#e74c3c !important}:root[mode="light"] a.text-danger:hover,:root[mode="light"] a.text-danger:focus{color:#bf2718 !important}:root[mode="light"] .text-light{color:#ecf0f1 !important}:root[mode="light"] a.text-light:hover,:root[mode="light"] a.text-light:focus{color:#c0cdd1 !important}:root[mode="light"] .text-dark{color:#7b8a8b !important}:root[mode="light"] a.text-dark:hover,:root[mode="light"] a.text-dark:focus{color:#576263 !important}:root[mode="light"] .text-body{color:#212529 !important}:root[mode="light"] .text-muted{color:#95a5a6 !important}:root[mode="light"] .text-black-50{color:rgba(0,0,0,0.5) !important}:root[mode="light"] .text-white-50{color:rgba(255,255,255,0.5) !important}:root[mode="light"] .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}:root[mode="light"] .text-decoration-none{text-decoration:none !important}:root[mode="light"] .text-break{word-break:break-word !important;word-wrap:break-word !important}:root[mode="light"] .text-reset{color:inherit !important}:root[mode="light"] .visible{visibility:visible !important}:root[mode="light"] .invisible{visibility:hidden !important}@media print{:root[mode="light"] *,:root[mode="light"] *::before,:root[mode="light"] *::after{text-shadow:none !important;box-shadow:none !important}:root[mode="light"] a:not(.btn){text-decoration:underline}:root[mode="light"] abbr[title]::after{content:" (" attr(title) ")"}:root[mode="light"] pre{white-space:pre-wrap !important}:root[mode="light"] pre,:root[mode="light"] blockquote{border:1px solid #b4bcc2;page-break-inside:avoid}:root[mode="light"] thead{display:table-header-group}:root[mode="light"] tr,:root[mode="light"] img{page-break-inside:avoid}:root[mode="light"] p,:root[mode="light"] h2,:root[mode="light"] h3{orphans:3;widows:3}:root[mode="light"] h2,:root[mode="light"] h3{page-break-after:avoid}@page{:root[mode="light"]{size:a3}}:root[mode="light"] body{min-width:992px !important}:root[mode="light"] .container{min-width:992px !important}:root[mode="light"] .navbar{display:none}:root[mode="light"] .badge{border:1px solid #000}:root[mode="light"] .table{border-collapse:collapse !important}:root[mode="light"] .table td,:root[mode="light"] .table th{background-color:#fff !important}:root[mode="light"] .table-bordered th,:root[mode="light"] .table-bordered td{border:1px solid #dee2e6 !important}:root[mode="light"] .table-dark{color:inherit}:root[mode="light"] .table-dark th,:root[mode="light"] .table-dark td,:root[mode="light"] .table-dark thead th,:root[mode="light"] .table-dark tbody+tbody{border-color:#dee2e6}:root[mode="light"] .table .thead-dark th{color:inherit;border-color:#dee2e6}}:root[mode="light"] .bg-primary .navbar-nav .active>.nav-link{color:#18bc9c !important}:root[mode="light"] .bg-dark.navbar-dark .navbar-nav .nav-link:focus,:root[mode="light"] .bg-dark.navbar-dark .navbar-nav .nav-link:hover,:root[mode="light"] .bg-dark.navbar-dark .navbar-nav .active>.nav-link{color:#2c3e50 !important}:root[mode="light"] .btn-secondary,:root[mode="light"] .btn-secondary:hover,:root[mode="light"] .btn-warning,:root[mode="light"] .btn-warning:hover{color:#fff}:root[mode="light"] .table-primary,:root[mode="light"] .table-secondary,:root[mode="light"] .table-success,:root[mode="light"] .table-info,:root[mode="light"] .table-warning,:root[mode="light"] .table-danger{color:#fff}:root[mode="light"] .table-primary,:root[mode="light"] .table-primary>th,:root[mode="light"] .table-primary>td{background-color:#2c3e50}:root[mode="light"] .table-secondary,:root[mode="light"] .table-secondary>th,:root[mode="light"] .table-secondary>td{background-color:#95a5a6}:root[mode="light"] .table-light,:root[mode="light"] .table-light>th,:root[mode="light"] .table-light>td{background-color:#ecf0f1}:root[mode="light"] .table-dark,:root[mode="light"] .table-dark>th,:root[mode="light"] .table-dark>td{background-color:#7b8a8b}:root[mode="light"] .table-success,:root[mode="light"] .table-success>th,:root[mode="light"] .table-success>td{background-color:#18bc9c}:root[mode="light"] .table-info,:root[mode="light"] .table-info>th,:root[mode="light"] .table-info>td{background-color:#3498db}:root[mode="light"] .table-danger,:root[mode="light"] .table-danger>th,:root[mode="light"] .table-danger>td{background-color:#e74c3c}:root[mode="light"] .table-warning,:root[mode="light"] .table-warning>th,:root[mode="light"] .table-warning>td{background-color:#f39c12}:root[mode="light"] .table-active,:root[mode="light"] .table-active>th,:root[mode="light"] .table-active>td{background-color:rgba(0,0,0,0.075)}:root[mode="light"] .table-hover .table-primary:hover,:root[mode="light"] .table-hover .table-primary:hover>th,:root[mode="light"] .table-hover .table-primary:hover>td{background-color:#233140}:root[mode="light"] .table-hover .table-secondary:hover,:root[mode="light"] .table-hover .table-secondary:hover>th,:root[mode="light"] .table-hover .table-secondary:hover>td{background-color:#87999a}:root[mode="light"] .table-hover .table-light:hover,:root[mode="light"] .table-hover .table-light:hover>th,:root[mode="light"] .table-hover .table-light:hover>td{background-color:#dde4e6}:root[mode="light"] .table-hover .table-dark:hover,:root[mode="light"] .table-hover .table-dark:hover>th,:root[mode="light"] .table-hover .table-dark:hover>td{background-color:#6f7d7e}:root[mode="light"] .table-hover .table-success:hover,:root[mode="light"] .table-hover .table-success:hover>th,:root[mode="light"] .table-hover .table-success:hover>td{background-color:#15a589}:root[mode="light"] .table-hover .table-info:hover,:root[mode="light"] .table-hover .table-info:hover>th,:root[mode="light"] .table-hover .table-info:hover>td{background-color:#258cd1}:root[mode="light"] .table-hover .table-danger:hover,:root[mode="light"] .table-hover .table-danger:hover>th,:root[mode="light"] .table-hover .table-danger:hover>td{background-color:#e43725}:root[mode="light"] .table-hover .table-warning:hover,:root[mode="light"] .table-hover .table-warning:hover>th,:root[mode="light"] .table-hover .table-warning:hover>td{background-color:#e08e0b}:root[mode="light"] .table-hover .table-active:hover,:root[mode="light"] .table-hover .table-active:hover>th,:root[mode="light"] .table-hover .table-active:hover>td{background-color:rgba(0,0,0,0.075)}:root[mode="light"] .nav-tabs .nav-link.active,:root[mode="light"] .nav-tabs .nav-link.active:focus,:root[mode="light"] .nav-tabs .nav-link.active:hover,:root[mode="light"] .nav-tabs .nav-item.open .nav-link,:root[mode="light"] .nav-tabs .nav-item.open .nav-link:focus,:root[mode="light"] .nav-tabs .nav-item.open .nav-link:hover{color:#2c3e50}:root[mode="light"] .pagination a:hover{text-decoration:none}:root[mode="light"] .close{text-decoration:none;opacity:.4}:root[mode="light"] .close:hover,:root[mode="light"] .close:focus{opacity:1}:root[mode="light"] .badge-secondary,:root[mode="light"] .badge-warning{color:#fff}:root[mode="light"] .alert{border:none;color:#fff}:root[mode="light"] .alert a,:root[mode="light"] .alert .alert-link{color:#fff;text-decoration:underline}:root[mode="light"] .alert-primary{background-color:#2c3e50}:root[mode="light"] .alert-secondary{background-color:#95a5a6}:root[mode="light"] .alert-success{background-color:#18bc9c}:root[mode="light"] .alert-info{background-color:#3498db}:root[mode="light"] .alert-warning{background-color:#f39c12}:root[mode="light"] .alert-danger{background-color:#e74c3c}:root[mode="light"] .alert-light{background-color:#ecf0f1}:root[mode="light"] .alert-dark{background-color:#7b8a8b}:root[mode="light"] .alert-light,:root[mode="light"] .alert-light a,:root[mode="light"] .alert-light .alert-link{color:#212529}:root[mode="light"] .modal .close,:root[mode="light"] .toast .close{color:#000}:root[mode="light"] .modal .close:not(:disabled):not(.disabled):hover,:root[mode="light"] .modal .close:not(:disabled):not(.disabled):focus,:root[mode="light"] .toast .close:not(:disabled):not(.disabled):hover,:root[mode="light"] .toast .close:not(:disabled):not(.disabled):focus{color:#000}:root[mode="light"] .footer{color:#2f2f2f}:root textarea{font-family:monospace !important}:root .footer{font-size:0.9em;text-align:center}\n',""]);const I=w},3645:t=>{"use strict";t.exports=function(t){var o=[];return o.toString=function(){return this.map((function(o){var e=t(o);return o[2]?"@media ".concat(o[2]," {").concat(e,"}"):e})).join("")},o.i=function(t,e,r){"string"==typeof t&&(t=[[null,t,""]]);var i={};if(r)for(var n=0;n{"use strict";t.exports=function(t,o){return o||(o={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),o.hash&&(t+=o.hash),/["'() \t\n]|(%20)/.test(t)||o.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},5281:function(t){t.exports=function(){"use strict";var t,o,e,r,i=14,n=8,a=!1,l=function(t){var o,e,r=[];for(t.length<16&&(r=[o=16-t.length,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o]),e=0;e16)throw"Decryption error: Maybe bad key";if(16===e)return"";for(r=0;r<16-e;r++)i+=String.fromCharCode(t[r])}else for(r=0;r<16;r++)i+=String.fromCharCode(t[r]);return i},s=function(t,o){var e,r=[];for(o||(t=function(t){try{return unescape(encodeURIComponent(t))}catch(t){throw"Error on UTF-8 encode"}}(t)),e=0;e=12?3:2,a=[],l=[],d=t.concat(o);for(a[0]=A(d),l=a[0],e=1;e=0;i--)l[i]=f(a[i],o),l[i]=x(l[i],0===i?e:a[i-1]);for(i=0;i-1;e--)r=g(r),r=b(r),r=v(r,o,e),e>0&&(r=h(r));return r},b=function(t){var o,e=a?T:P,r=[];for(o=0;o<16;o++)r[o]=e[t[o]];return r},g=function(t){var o,e=[],r=a?[0,13,10,7,4,1,14,11,8,5,2,15,12,9,6,3]:[0,5,10,15,4,9,14,3,8,13,2,7,12,1,6,11];for(o=0;o<16;o++)e[o]=t[r[o]];return e},h=function(t){var o,e=[];if(a)for(o=0;o<4;o++)e[4*o]=B[t[4*o]]^z[t[1+4*o]]^E[t[2+4*o]]^D[t[3+4*o]],e[1+4*o]=D[t[4*o]]^B[t[1+4*o]]^z[t[2+4*o]]^E[t[3+4*o]],e[2+4*o]=E[t[4*o]]^D[t[1+4*o]]^B[t[2+4*o]]^z[t[3+4*o]],e[3+4*o]=z[t[4*o]]^E[t[1+4*o]]^D[t[2+4*o]]^B[t[3+4*o]];else for(o=0;o<4;o++)e[4*o]=C[t[4*o]]^$[t[1+4*o]]^t[2+4*o]^t[3+4*o],e[1+4*o]=t[4*o]^C[t[1+4*o]]^$[t[2+4*o]]^t[3+4*o],e[2+4*o]=t[4*o]^t[1+4*o]^C[t[2+4*o]]^$[t[3+4*o]],e[3+4*o]=$[t[4*o]]^t[1+4*o]^t[2+4*o]^C[t[3+4*o]];return e},v=function(t,o,e){var r,i=[];for(r=0;r<16;r++)i[r]=t[r]^o[e][r];return i},x=function(t,o){var e,r=[];for(e=0;e<16;e++)r[e]=t[e]^o[e];return r},k=function(t){var o,e,r,a,l=[],d=[],s=[];for(o=0;o6&&o%n==4&&(d=w(d)),r=0;r<4;r++)l[o][r]=l[o-n][r]^d[r]}for(o=0;o127?283^t<<1:t<<1,o>>>=1;return r},S=function(t){var o,e=[];for(o=0;o<256;o++)e[o]=j(t,o);return e},P=O("637c777bf26b6fc53001672bfed7ab76ca82c97dfa5947f0add4a2af9ca472c0b7fd9326363ff7cc34a5e5f171d8311504c723c31896059a071280e2eb27b27509832c1a1b6e5aa0523bd6b329e32f8453d100ed20fcb15b6acbbe394a4c58cfd0efaafb434d338545f9027f503c9fa851a3408f929d38f5bcb6da2110fff3d2cd0c13ec5f974417c4a77e3d645d197360814fdc222a908846eeb814de5e0bdbe0323a0a4906245cc2d3ac629195e479e7c8376d8dd54ea96c56f4ea657aae08ba78252e1ca6b4c6e8dd741f4bbd8b8a703eb5664803f60e613557b986c11d9ee1f8981169d98e949b1e87e9ce5528df8ca1890dbfe6426841992d0fb054bb16",2),T=function(t){var o,e=[];for(o=0;o>>32-o}function e(t,o){var e,r,i,n,a;return i=2147483648&t,n=2147483648&o,a=(1073741823&t)+(1073741823&o),(e=1073741824&t)&(r=1073741824&o)?2147483648^a^i^n:e|r?1073741824&a?3221225472^a^i^n:1073741824^a^i^n:a^i^n}function r(t,r,i,n,a,l,d){return t=e(t,e(e(function(t,o,e){return t&o|~t&e}(r,i,n),a),d)),e(o(t,l),r)}function i(t,r,i,n,a,l,d){return t=e(t,e(e(function(t,o,e){return t&e|o&~e}(r,i,n),a),d)),e(o(t,l),r)}function n(t,r,i,n,a,l,d){return t=e(t,e(e(function(t,o,e){return t^o^e}(r,i,n),a),d)),e(o(t,l),r)}function a(t,r,i,n,a,l,d){return t=e(t,e(e(function(t,o,e){return o^(t|~e)}(r,i,n),a),d)),e(o(t,l),r)}function l(t){var o,e,r=[];for(e=0;e<=3;e++)o=t>>>8*e&255,r=r.concat(o);return r}var d,s,m,c,p,u,f,b,g,h,v=O("67452301efcdab8998badcfe10325476d76aa478e8c7b756242070dbc1bdceeef57c0faf4787c62aa8304613fd469501698098d88b44f7afffff5bb1895cd7be6b901122fd987193a679438e49b40821f61e2562c040b340265e5a51e9b6c7aad62f105d02441453d8a1e681e7d3fbc821e1cde6c33707d6f4d50d87455a14eda9e3e905fcefa3f8676f02d98d2a4c8afffa39428771f6816d9d6122fde5380ca4beea444bdecfa9f6bb4b60bebfbc70289b7ec6eaa127fad4ef308504881d05d9d4d039e6db99e51fa27cf8c4ac5665f4292244432aff97ab9423a7fc93a039655b59c38f0ccc92ffeff47d85845dd16fa87e4ffe2ce6e0a30143144e0811a1f7537e82bd3af2352ad7d2bbeb86d391",8);for(h=function(t){for(var o,e=t.length,r=e+8,i=16*((r-r%64)/64+1),n=[],a=0,l=0;l>>29,n}(t),u=v[0],f=v[1],b=v[2],g=v[3],d=0;d>2],a+=o[(3&n[r])<<4|n[r+1]>>4],void 0!==n[r+1]?a+=o[(15&n[r+1])<<2|n[r+2]>>6]:a+="=",void 0!==n[r+2]?a+=o[63&n[r+2]]:a+="=";for(i=a.slice(0,64)+"\n",r=1;r>4,n[1]=(15&i[1])<<4|i[2]>>2,n[2]=(3&i[2])<<6|i[3],r.push(n[0],n[1],n[2]);return r.slice(0,r.length-r.length%16)},"function"==typeof Array.indexOf&&(t=o),{encode:e,decode:r});return{size:function(t){switch(t){case 128:i=10,n=4;break;case 192:i=12,n=6;break;case 256:i=14,n=8;break;default:throw"Invalid Key Size Specified:"+t}},h2a:function(t){var o=[];return t.replace(/(..)/g,(function(t){o.push(parseInt(t,16))})),o},expandKey:k,encryptBlock:u,decryptBlock:f,Decrypt:a,s2a:s,rawEncrypt:c,rawDecrypt:p,dec:function(t,o,e){var r=I.decode(t),i=r.slice(8,16),n=m(s(o,e),i),a=n.key,l=n.iv;return r=r.slice(16,r.length),p(r,a,l,e)},openSSLKey:m,a2h:function(t){var o,e="";for(o=0;o{"use strict";var r,i=(r=e(144))&&"object"==typeof r&&"default"in r?r.default:r;function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var a="undefined"!=typeof window;function l(t,o){return o.reduce((function(o,e){return t.hasOwnProperty(e)&&(o[e]=t[e]),o}),{})}var d={},s={},m={},c=new(i.extend({data:function(){return{transports:d,targets:s,sources:m,trackInstances:a}},methods:{open:function(t){if(a){var o=t.to,e=t.from,r=t.passengers,l=t.order,d=void 0===l?1/0:l;if(o&&e&&r){var s,m={to:o,from:e,passengers:(s=r,Array.isArray(s)||"object"===n(s)?Object.freeze(s):s),order:d};-1===Object.keys(this.transports).indexOf(o)&&i.set(this.transports,o,[]);var c,p=this.$_getTransportIndex(m),u=this.transports[o].slice(0);-1===p?u.push(m):u[p]=m,this.transports[o]=(c=function(t,o){return t.order-o.order},u.map((function(t,o){return[o,t]})).sort((function(t,o){return c(t[1],o[1])||t[0]-o[0]})).map((function(t){return t[1]})))}}},close:function(t){var o=arguments.length>1&&void 0!==arguments[1]&&arguments[1],e=t.to,r=t.from;if(e&&(r||!1!==o)&&this.transports[e])if(o)this.transports[e]=[];else{var i=this.$_getTransportIndex(t);if(i>=0){var n=this.transports[e].slice(0);n.splice(i,1),this.transports[e]=n}}},registerTarget:function(t,o,e){a&&(this.trackInstances&&!e&&this.targets[t]&&console.warn("[portal-vue]: Target ".concat(t," already exists")),this.$set(this.targets,t,Object.freeze([o])))},unregisterTarget:function(t){this.$delete(this.targets,t)},registerSource:function(t,o,e){a&&(this.trackInstances&&!e&&this.sources[t]&&console.warn("[portal-vue]: source ".concat(t," already exists")),this.$set(this.sources,t,Object.freeze([o])))},unregisterSource:function(t){this.$delete(this.sources,t)},hasTarget:function(t){return!(!this.targets[t]||!this.targets[t][0])},hasSource:function(t){return!(!this.sources[t]||!this.sources[t][0])},hasContentFor:function(t){return!!this.transports[t]&&!!this.transports[t].length},$_getTransportIndex:function(t){var o=t.to,e=t.from;for(var r in this.transports[o])if(this.transports[o][r].from===e)return+r;return-1}}}))(d),p=1,u=i.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(p++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var t=this;this.$nextTick((function(){c.registerSource(t.name,t)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){c.unregisterSource(this.name),this.clear()},watch:{to:function(t,o){o&&o!==t&&this.clear(o),this.sendUpdate()}},methods:{clear:function(t){var o={from:this.name,to:t||this.to};c.close(o)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(t){return"function"==typeof t?t(this.slotProps):t},sendUpdate:function(){var t,o=this.normalizeSlots();if(o){var e={from:this.name,to:this.to,passengers:(t=o,function(t){if(Array.isArray(t)){for(var o=0,e=new Array(t.length);o0)},name:function(t,o){c.unregisterTarget(o),c.registerTarget(t,this)}},mounted:function(){var t=this;this.transition&&this.$nextTick((function(){t.firstRender=!1}))},beforeDestroy:function(){c.unregisterTarget(this.name)},computed:{ownTransports:function(){var t=this.transports[this.name]||[];return this.multiple?t:0===t.length?[]:[t[t.length-1]]},passengers:function(){return function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.reduce((function(t,e){var r=e.passengers[0],i="function"==typeof r?r(o):e.passengers;return t.concat(i)}),[])}(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var t=this.slim&&!this.transition;return t&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),t}},render:function(t){var o=this.noWrapper(),e=this.children(),r=this.transition||this.tag;return o?e[0]:this.slim&&!r?t():t(r,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},e)}}),b=0,g=["disabled","name","order","slim","slotProps","tag","to"],h=["multiple","transition"];i.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(b++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!=typeof document){var t=document.querySelector(this.mountTo);if(t){var o=this.$props;if(c.targets[o.name])o.bail?console.warn("[portal-vue]: Target ".concat(o.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=c.targets[o.name];else{var e=o.append;if(e){var r="string"==typeof e?e:"DIV",i=document.createElement(r);t.appendChild(i),t=i}var n=l(this.$props,h);n.slim=this.targetSlim,n.tag=this.targetTag,n.slotProps=this.targetSlotProps,n.name=this.to,this.portalTarget=new f({el:t,parent:this.$parent||this,propsData:n})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var t=this.portalTarget;if(this.append){var o=t.$el;o.parentNode.removeChild(o)}t.$destroy()},render:function(t){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),t();if(!this.$scopedSlots.manual){var o=l(this.$props,g);return t(u,{props:o,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var e=this.$scopedSlots.manual({to:this.to});return Array.isArray(e)&&(e=e[0]),e||t()}});o.h_=u,o.YC=f,o.Df=c},3379:t=>{"use strict";var o=[];function e(t){for(var e=-1,r=0;r{"use strict";var o={};t.exports=function(t,e){var r=function(t){if(void 0===o[t]){var e=document.querySelector(t);if(window.HTMLIFrameElement&&e instanceof window.HTMLIFrameElement)try{e=e.contentDocument.head}catch(t){e=null}o[t]=e}return o[t]}(t);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(e)}},9216:t=>{"use strict";t.exports=function(t){var o=document.createElement("style");return t.setAttributes(o,t.attributes),t.insert(o),o}},3565:(t,o,e)=>{"use strict";t.exports=function(t){var o=e.nc;o&&t.setAttribute("nonce",o)}},7795:t=>{"use strict";t.exports=function(t){var o=t.insertStyleElement(t);return{update:function(e){!function(t,o,e){var r=e.css,i=e.media,n=e.sourceMap;i?t.setAttribute("media",i):t.removeAttribute("media"),n&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(n))))," */")),o.styleTagTransform(r,t)}(o,t,e)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(o)}}}},4589:t=>{"use strict";t.exports=function(t,o){if(o.styleSheet)o.styleSheet.cssText=t;else{for(;o.firstChild;)o.removeChild(o.firstChild);o.appendChild(document.createTextNode(t))}}},144:(t,o,e)=>{"use strict";e.r(o),e.d(o,{default:()=>Bi});var r=Object.freeze({});function i(t){return null==t}function n(t){return null!=t}function a(t){return!0===t}function l(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function d(t){return null!==t&&"object"==typeof t}var s=Object.prototype.toString;function m(t){return"[object Object]"===s.call(t)}function c(t){var o=parseFloat(String(t));return o>=0&&Math.floor(o)===o&&isFinite(t)}function p(t){return n(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function u(t){return null==t?"":Array.isArray(t)||m(t)&&t.toString===s?JSON.stringify(t,null,2):String(t)}function f(t){var o=parseFloat(t);return isNaN(o)?t:o}function b(t,o){for(var e=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(e,1)}}var v=Object.prototype.hasOwnProperty;function x(t,o){return v.call(t,o)}function k(t){var o=Object.create(null);return function(e){return o[e]||(o[e]=t(e))}}var w=/-(\w)/g,y=k((function(t){return t.replace(w,(function(t,o){return o?o.toUpperCase():""}))})),O=k((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),j=/\B([A-Z])/g,S=k((function(t){return t.replace(j,"-$1").toLowerCase()})),P=Function.prototype.bind?function(t,o){return t.bind(o)}:function(t,o){function e(e){var r=arguments.length;return r?r>1?t.apply(o,arguments):t.call(o,e):t.call(o)}return e._length=t.length,e};function T(t,o){o=o||0;for(var e=t.length-o,r=new Array(e);e--;)r[e]=t[e+o];return r}function _(t,o){for(var e in o)t[e]=o[e];return t}function C(t){for(var o={},e=0;e0,K=q&&q.indexOf("edge/")>0,J=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===G),Z=(q&&/chrome\/\d+/.test(q),q&&/phantomjs/.test(q),q&&q.match(/firefox\/(\d+)/)),Q={}.watch,tt=!1;if(U)try{var ot={};Object.defineProperty(ot,"passive",{get:function(){tt=!0}}),window.addEventListener("test-passive",null,ot)}catch(t){}var et=function(){return void 0===V&&(V=!U&&!W&&void 0!==e.g&&e.g.process&&"server"===e.g.process.env.VUE_ENV),V},rt=U&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var nt,at="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);nt="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var lt=$,dt=0,st=function(){this.id=dt++,this.subs=[]};st.prototype.addSub=function(t){this.subs.push(t)},st.prototype.removeSub=function(t){h(this.subs,t)},st.prototype.depend=function(){st.target&&st.target.addDep(this)},st.prototype.notify=function(){for(var t=this.subs.slice(),o=0,e=t.length;o-1)if(n&&!x(i,"default"))a=!1;else if(""===a||a===S(t)){var d=Vt(String,i.type);(d<0||l0&&(po((r=uo(r,(o||"")+"_"+e))[0])&&po(s)&&(m[d]=gt(s.text+r[0].text),r.shift()),m.push.apply(m,r)):l(r)?po(s)?m[d]=gt(s.text+r):""!==r&&m.push(gt(r)):po(r)&&po(s)?m[d]=gt(s.text+r.text):(a(t._isVList)&&n(r.tag)&&i(r.key)&&n(o)&&(r.key="__vlist"+o+"_"+e+"__"),m.push(r)));return m}function fo(t,o){if(t){for(var e=Object.create(null),r=at?Reflect.ownKeys(t):Object.keys(t),i=0;i0,a=t?!!t.$stable:!n,l=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&e&&e!==r&&l===e.$key&&!n&&!e.$hasNormal)return e;for(var d in i={},t)t[d]&&"$"!==d[0]&&(i[d]=xo(o,d,t[d]))}else i={};for(var s in o)s in i||(i[s]=ko(o,s));return t&&Object.isExtensible(t)&&(t._normalized=i),R(i,"$stable",a),R(i,"$key",l),R(i,"$hasNormal",n),i}function xo(t,o,e){var r=function(){var t=arguments.length?e.apply(null,arguments):e({}),o=(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:co(t))&&t[0];return t&&(!o||1===t.length&&o.isComment&&!ho(o))?void 0:t};return e.proxy&&Object.defineProperty(t,o,{get:r,enumerable:!0,configurable:!0}),r}function ko(t,o){return function(){return t[o]}}function wo(t,o){var e,r,i,a,l;if(Array.isArray(t)||"string"==typeof t)for(e=new Array(t.length),r=0,i=t.length;rdocument.createEvent("Event").timeStamp&&(pe=function(){return ue.now()})}function fe(){var t,o;for(ce=pe(),se=!0,ne.sort((function(t,o){return t.id-o.id})),me=0;meme&&ne[e].id>t.id;)e--;ne.splice(e+1,0,t)}else ne.push(t);de||(de=!0,oo(fe))}}(this)},ge.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||d(t)||this.deep){var o=this.value;if(this.value=t,this.user){var e='callback for watcher "'+this.expression+'"';Ht(this.cb,this.vm,[t,o],this.vm,e)}else this.cb.call(this.vm,t,o)}}},ge.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},ge.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},ge.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||h(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var he={enumerable:!0,configurable:!0,get:$,set:$};function ve(t,o,e){he.get=function(){return this[o][e]},he.set=function(t){this[o][e]=t},Object.defineProperty(t,e,he)}var xe={lazy:!0};function ke(t,o,e){var r=!et();"function"==typeof e?(he.get=r?we(o):ye(e),he.set=$):(he.get=e.get?r&&!1!==e.cache?we(o):ye(e.get):$,he.set=e.set||$),Object.defineProperty(t,o,he)}function we(t){return function(){var o=this._computedWatchers&&this._computedWatchers[t];if(o)return o.dirty&&o.evaluate(),st.target&&o.depend(),o.value}}function ye(t){return function(){return t.call(this,this)}}function Oe(t,o,e,r){return m(e)&&(r=e,e=e.handler),"string"==typeof e&&(e=t[e]),t.$watch(o,e,r)}var je=0;function Se(t){var o=t.options;if(t.super){var e=Se(t.super);if(e!==t.superOptions){t.superOptions=e;var r=function(t){var o,e=t.options,r=t.sealedOptions;for(var i in e)e[i]!==r[i]&&(o||(o={}),o[i]=e[i]);return o}(t);r&&_(t.extendOptions,r),(o=t.options=At(e,t.extendOptions)).name&&(o.components[o.name]=t)}}return o}function Pe(t){this._init(t)}function Te(t){return t&&(t.Ctor.options.name||t.tag)}function _e(t,o){return Array.isArray(t)?t.indexOf(o)>-1:"string"==typeof t?t.split(",").indexOf(o)>-1:(e=t,!("[object RegExp]"!==s.call(e))&&t.test(o));var e}function Ce(t,o){var e=t.cache,r=t.keys,i=t._vnode;for(var n in e){var a=e[n];if(a){var l=a.name;l&&!o(l)&&$e(e,n,r,i)}}}function $e(t,o,e,r){var i=t[o];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[o]=null,h(e,o)}!function(t){t.prototype._init=function(t){var o=this;o._uid=je++,o._isVue=!0,t&&t._isComponent?function(t,o){var e=t.$options=Object.create(t.constructor.options),r=o._parentVnode;e.parent=o.parent,e._parentVnode=r;var i=r.componentOptions;e.propsData=i.propsData,e._parentListeners=i.listeners,e._renderChildren=i.children,e._componentTag=i.tag,o.render&&(e.render=o.render,e.staticRenderFns=o.staticRenderFns)}(o,t):o.$options=At(Se(o.constructor),t||{},o),o._renderProxy=o,o._self=o,function(t){var o=t.$options,e=o.parent;if(e&&!o.abstract){for(;e.$options.abstract&&e.$parent;)e=e.$parent;e.$children.push(t)}t.$parent=e,t.$root=e?e.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(o),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var o=t.$options._parentListeners;o&&Zo(t,o)}(o),function(t){t._vnode=null,t._staticTrees=null;var o=t.$options,e=t.$vnode=o._parentVnode,i=e&&e.context;t.$slots=bo(o._renderChildren,i),t.$scopedSlots=r,t._c=function(o,e,r,i){return Ho(t,o,e,r,i,!1)},t.$createElement=function(o,e,r,i){return Ho(t,o,e,r,i,!0)};var n=e&&e.data;St(t,"$attrs",n&&n.attrs||r,null,!0),St(t,"$listeners",o._parentListeners||r,null,!0)}(o),ie(o,"beforeCreate"),function(t){var o=fo(t.$options.inject,t);o&&(yt(!1),Object.keys(o).forEach((function(e){St(t,e,o[e])})),yt(!0))}(o),function(t){t._watchers=[];var o=t.$options;o.props&&function(t,o){var e=t.$options.propsData||{},r=t._props={},i=t.$options._propKeys=[];t.$parent&&yt(!1);var n=function(n){i.push(n);var a=Ft(n,o,e,t);St(r,n,a),n in t||ve(t,"_props",n)};for(var a in o)n(a);yt(!0)}(t,o.props),o.methods&&function(t,o){for(var e in t.$options.props,o)t[e]="function"!=typeof o[e]?$:P(o[e],t)}(t,o.methods),o.data?function(t){var o=t.$options.data;m(o=t._data="function"==typeof o?function(t,o){ct();try{return t.call(o,o)}catch(t){return Nt(t,o,"data()"),{}}finally{pt()}}(o,t):o||{})||(o={});for(var e,r=Object.keys(o),i=t.$options.props,n=(t.$options.methods,r.length);n--;){var a=r[n];i&&x(i,a)||(e=void 0,36===(e=(a+"").charCodeAt(0))||95===e)||ve(t,"_data",a)}jt(o,!0)}(t):jt(t._data={},!0),o.computed&&function(t,o){var e=t._computedWatchers=Object.create(null),r=et();for(var i in o){var n=o[i],a="function"==typeof n?n:n.get;r||(e[i]=new ge(t,a||$,$,xe)),i in t||ke(t,i,n)}}(t,o.computed),o.watch&&o.watch!==Q&&function(t,o){for(var e in o){var r=o[e];if(Array.isArray(r))for(var i=0;i1?T(e):e;for(var r=T(arguments,1),i='event handler for "'+t+'"',n=0,a=e.length;nparseInt(this.max)&&$e(o,e[0],e,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)$e(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(o){Ce(t,(function(t){return _e(o,t)}))})),this.$watch("exclude",(function(o){Ce(t,(function(t){return!_e(o,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,o=Yo(t),e=o&&o.componentOptions;if(e){var r=Te(e),i=this.include,n=this.exclude;if(i&&(!r||!_e(i,r))||n&&r&&_e(n,r))return o;var a=this.cache,l=this.keys,d=null==o.key?e.Ctor.cid+(e.tag?"::"+e.tag:""):o.key;a[d]?(o.componentInstance=a[d].componentInstance,h(l,d),l.push(d)):(this.vnodeToCache=o,this.keyToCache=d),o.data.keepAlive=!0}return o||t&&t[0]}}};!function(t){var o={get:function(){return M}};Object.defineProperty(t,"config",o),t.util={warn:lt,extend:_,mergeOptions:At,defineReactive:St},t.set=Pt,t.delete=Tt,t.nextTick=oo,t.observable=function(t){return jt(t),t},t.options=Object.create(null),F.forEach((function(o){t.options[o+"s"]=Object.create(null)})),t.options._base=t,_(t.options.components,ze),function(t){t.use=function(t){var o=this._installedPlugins||(this._installedPlugins=[]);if(o.indexOf(t)>-1)return this;var e=T(arguments,1);return e.unshift(this),"function"==typeof t.install?t.install.apply(t,e):"function"==typeof t&&t.apply(null,e),o.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=At(this.options,t),this}}(t),function(t){t.cid=0;var o=1;t.extend=function(t){t=t||{};var e=this,r=e.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var n=t.name||e.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(e.prototype)).constructor=a,a.cid=o++,a.options=At(e.options,t),a.super=e,a.options.props&&function(t){var o=t.options.props;for(var e in o)ve(t.prototype,"_props",e)}(a),a.options.computed&&function(t){var o=t.options.computed;for(var e in o)ke(t.prototype,e,o[e])}(a),a.extend=e.extend,a.mixin=e.mixin,a.use=e.use,F.forEach((function(t){a[t]=e[t]})),n&&(a.options.components[n]=a),a.superOptions=e.options,a.extendOptions=t,a.sealedOptions=_({},a.options),i[r]=a,a}}(t),function(t){F.forEach((function(o){t[o]=function(t,e){return e?("component"===o&&m(e)&&(e.name=e.name||t,e=this.options._base.extend(e)),"directive"===o&&"function"==typeof e&&(e={bind:e,update:e}),this.options[o+"s"][t]=e,e):this.options[o+"s"][t]}}))}(t)}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:et}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Pe,"FunctionalRenderContext",{value:Io}),Pe.version="2.6.14";var Ee=b("style,class"),Be=b("input,textarea,option,select,progress"),Ae=b("contenteditable,draggable,spellcheck"),Ie=b("events,caret,typing,plaintext-only"),Fe=b("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Le="http://www.w3.org/1999/xlink",Me=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Re=function(t){return Me(t)?t.slice(6,t.length):""},Ve=function(t){return null==t||!1===t};function Ne(t,o){return{staticClass:He(t.staticClass,o.staticClass),class:n(t.class)?[t.class,o.class]:o.class}}function He(t,o){return t?o?t+" "+o:t:o||""}function Ue(t){return Array.isArray(t)?function(t){for(var o,e="",r=0,i=t.length;r-1?ur(t,o,e):Fe(o)?Ve(e)?t.removeAttribute(o):(e="allowfullscreen"===o&&"EMBED"===t.tagName?"true":o,t.setAttribute(o,e)):Ae(o)?t.setAttribute(o,function(t,o){return Ve(o)||"false"===o?"false":"contenteditable"===t&&Ie(o)?o:"true"}(o,e)):Me(o)?Ve(e)?t.removeAttributeNS(Le,Re(o)):t.setAttributeNS(Le,o,e):ur(t,o,e)}function ur(t,o,e){if(Ve(e))t.removeAttribute(o);else{if(Y&&!X&&"TEXTAREA"===t.tagName&&"placeholder"===o&&""!==e&&!t.__ieph){var r=function(o){o.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(o,e)}}var fr={create:cr,update:cr};function br(t,o){var e=o.elm,r=o.data,a=t.data;if(!(i(r.staticClass)&&i(r.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var l=function(t){for(var o=t.data,e=t,r=t;n(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(o=Ne(r.data,o));for(;n(e=e.parent);)e&&e.data&&(o=Ne(o,e.data));return i=o.staticClass,a=o.class,n(i)||n(a)?He(i,Ue(a)):"";var i,a}(o),d=e._transitionClasses;n(d)&&(l=He(l,Ue(d))),l!==e._prevClass&&(e.setAttribute("class",l),e._prevClass=l)}}var gr,hr={create:br,update:br};function vr(t,o,e){var r=gr;return function i(){var n=o.apply(null,arguments);null!==n&&wr(t,i,e,r)}}var xr=qt&&!(Z&&Number(Z[1])<=53);function kr(t,o,e,r){if(xr){var i=ce,n=o;o=n._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return n.apply(this,arguments)}}gr.addEventListener(t,o,tt?{capture:e,passive:r}:e)}function wr(t,o,e,r){(r||gr).removeEventListener(t,o._wrapper||o,e)}function yr(t,o){if(!i(t.data.on)||!i(o.data.on)){var e=o.data.on||{},r=t.data.on||{};gr=o.elm,function(t){if(n(t.__r)){var o=Y?"change":"input";t[o]=[].concat(t.__r,t[o]||[]),delete t.__r}n(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(e),lo(e,r,kr,wr,vr,o.context),gr=void 0}}var Or,jr={create:yr,update:yr};function Sr(t,o){if(!i(t.data.domProps)||!i(o.data.domProps)){var e,r,a=o.elm,l=t.data.domProps||{},d=o.data.domProps||{};for(e in n(d.__ob__)&&(d=o.data.domProps=_({},d)),l)e in d||(a[e]="");for(e in d){if(r=d[e],"textContent"===e||"innerHTML"===e){if(o.children&&(o.children.length=0),r===l[e])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===e&&"PROGRESS"!==a.tagName){a._value=r;var s=i(r)?"":String(r);Pr(a,s)&&(a.value=s)}else if("innerHTML"===e&&qe(a.tagName)&&i(a.innerHTML)){(Or=Or||document.createElement("div")).innerHTML=""+r+"";for(var m=Or.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;m.firstChild;)a.appendChild(m.firstChild)}else if(r!==l[e])try{a[e]=r}catch(t){}}}}function Pr(t,o){return!t.composing&&("OPTION"===t.tagName||function(t,o){var e=!0;try{e=document.activeElement!==t}catch(t){}return e&&t.value!==o}(t,o)||function(t,o){var e=t.value,r=t._vModifiers;if(n(r)){if(r.number)return f(e)!==f(o);if(r.trim)return e.trim()!==o.trim()}return e!==o}(t,o))}var Tr={create:Sr,update:Sr},_r=k((function(t){var o={},e=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(e);r.length>1&&(o[r[0].trim()]=r[1].trim())}})),o}));function Cr(t){var o=$r(t.style);return t.staticStyle?_(t.staticStyle,o):o}function $r(t){return Array.isArray(t)?C(t):"string"==typeof t?_r(t):t}var Dr,zr=/^--/,Er=/\s*!important$/,Br=function(t,o,e){if(zr.test(o))t.style.setProperty(o,e);else if(Er.test(e))t.style.setProperty(S(o),e.replace(Er,""),"important");else{var r=Ir(o);if(Array.isArray(e))for(var i=0,n=e.length;i-1?o.split(Mr).forEach((function(o){return t.classList.add(o)})):t.classList.add(o);else{var e=" "+(t.getAttribute("class")||"")+" ";e.indexOf(" "+o+" ")<0&&t.setAttribute("class",(e+o).trim())}}function Vr(t,o){if(o&&(o=o.trim()))if(t.classList)o.indexOf(" ")>-1?o.split(Mr).forEach((function(o){return t.classList.remove(o)})):t.classList.remove(o),t.classList.length||t.removeAttribute("class");else{for(var e=" "+(t.getAttribute("class")||"")+" ",r=" "+o+" ";e.indexOf(r)>=0;)e=e.replace(r," ");(e=e.trim())?t.setAttribute("class",e):t.removeAttribute("class")}}function Nr(t){if(t){if("object"==typeof t){var o={};return!1!==t.css&&_(o,Hr(t.name||"v")),_(o,t),o}return"string"==typeof t?Hr(t):void 0}}var Hr=k((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Ur=U&&!X,Wr="transition",Gr="animation",qr="transition",Yr="transitionend",Xr="animation",Kr="animationend";Ur&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(qr="WebkitTransition",Yr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Xr="WebkitAnimation",Kr="webkitAnimationEnd"));var Jr=U?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Zr(t){Jr((function(){Jr(t)}))}function Qr(t,o){var e=t._transitionClasses||(t._transitionClasses=[]);e.indexOf(o)<0&&(e.push(o),Rr(t,o))}function ti(t,o){t._transitionClasses&&h(t._transitionClasses,o),Vr(t,o)}function oi(t,o,e){var r=ri(t,o),i=r.type,n=r.timeout,a=r.propCount;if(!i)return e();var l=i===Wr?Yr:Kr,d=0,s=function(){t.removeEventListener(l,m),e()},m=function(o){o.target===t&&++d>=a&&s()};setTimeout((function(){d0&&(e=Wr,m=a,c=n.length):o===Gr?s>0&&(e=Gr,m=s,c=d.length):c=(e=(m=Math.max(a,s))>0?a>s?Wr:Gr:null)?e===Wr?n.length:d.length:0,{type:e,timeout:m,propCount:c,hasTransform:e===Wr&&ei.test(r[qr+"Property"])}}function ii(t,o){for(;t.length1}function mi(t,o){!0!==o.data.show&&ai(o)}var ci=function(t){var o,e,r={},d=t.modules,s=t.nodeOps;for(o=0;of?x(t,i(e[h+1])?null:e[h+1].elm,e,u,h,r):u>h&&w(o,p,f)}(p,b,h,e,m):n(h)?(n(t.text)&&s.setTextContent(p,""),x(p,null,h,0,h.length-1,e)):n(b)?w(b,0,b.length-1):n(t.text)&&s.setTextContent(p,""):t.text!==o.text&&s.setTextContent(p,o.text),n(f)&&n(u=f.hook)&&n(u=u.postpatch)&&u(t,o)}}}function S(t,o,e){if(a(e)&&n(t.parent))t.parent.data.pendingInsert=o;else for(var r=0;r-1,a.selected!==n&&(a.selected=n);else if(E(gi(a),r))return void(t.selectedIndex!==l&&(t.selectedIndex=l));i||(t.selectedIndex=-1)}}function bi(t,o){return o.every((function(o){return!E(o,t)}))}function gi(t){return"_value"in t?t._value:t.value}function hi(t){t.target.composing=!0}function vi(t){t.target.composing&&(t.target.composing=!1,xi(t.target,"input"))}function xi(t,o){var e=document.createEvent("HTMLEvents");e.initEvent(o,!0,!0),t.dispatchEvent(e)}function ki(t){return!t.componentInstance||t.data&&t.data.transition?t:ki(t.componentInstance._vnode)}var wi={model:pi,show:{bind:function(t,o,e){var r=o.value,i=(e=ki(e)).data&&e.data.transition,n=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(e.data.show=!0,ai(e,(function(){t.style.display=n}))):t.style.display=r?n:"none"},update:function(t,o,e){var r=o.value;!r!=!o.oldValue&&((e=ki(e)).data&&e.data.transition?(e.data.show=!0,r?ai(e,(function(){t.style.display=t.__vOriginalDisplay})):li(e,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,o,e,r,i){i||(t.style.display=t.__vOriginalDisplay)}}},yi={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Oi(t){var o=t&&t.componentOptions;return o&&o.Ctor.options.abstract?Oi(Yo(o.children)):t}function ji(t){var o={},e=t.$options;for(var r in e.propsData)o[r]=t[r];var i=e._parentListeners;for(var n in i)o[y(n)]=i[n];return o}function Si(t,o){if(/\d-keep-alive$/.test(o.tag))return t("keep-alive",{props:o.componentOptions.propsData})}var Pi=function(t){return t.tag||ho(t)},Ti=function(t){return"show"===t.name},_i={name:"transition",props:yi,abstract:!0,render:function(t){var o=this,e=this.$slots.default;if(e&&(e=e.filter(Pi)).length){var r=this.mode,i=e[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var n=Oi(i);if(!n)return i;if(this._leaving)return Si(t,i);var a="__transition-"+this._uid+"-";n.key=null==n.key?n.isComment?a+"comment":a+n.tag:l(n.key)?0===String(n.key).indexOf(a)?n.key:a+n.key:n.key;var d=(n.data||(n.data={})).transition=ji(this),s=this._vnode,m=Oi(s);if(n.data.directives&&n.data.directives.some(Ti)&&(n.data.show=!0),m&&m.data&&!function(t,o){return o.key===t.key&&o.tag===t.tag}(n,m)&&!ho(m)&&(!m.componentInstance||!m.componentInstance._vnode.isComment)){var c=m.data.transition=_({},d);if("out-in"===r)return this._leaving=!0,so(c,"afterLeave",(function(){o._leaving=!1,o.$forceUpdate()})),Si(t,i);if("in-out"===r){if(ho(n))return s;var p,u=function(){p()};so(d,"afterEnter",u),so(d,"enterCancelled",u),so(c,"delayLeave",(function(t){p=t}))}}return i}}},Ci=_({tag:String,moveClass:String},yi);function $i(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Di(t){t.data.newPos=t.elm.getBoundingClientRect()}function zi(t){var o=t.data.pos,e=t.data.newPos,r=o.left-e.left,i=o.top-e.top;if(r||i){t.data.moved=!0;var n=t.elm.style;n.transform=n.WebkitTransform="translate("+r+"px,"+i+"px)",n.transitionDuration="0s"}}delete Ci.mode;var Ei={Transition:_i,TransitionGroup:{props:Ci,beforeMount:function(){var t=this,o=this._update;this._update=function(e,r){var i=te(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),o.call(t,e,r)}},render:function(t){for(var o=this.tag||this.$vnode.data.tag||"span",e=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],n=this.children=[],a=ji(this),l=0;l-1?Xe[t]=o.constructor===window.HTMLUnknownElement||o.constructor===window.HTMLElement:Xe[t]=/HTMLUnknownElement/.test(o.toString())},_(Pe.options.directives,wi),_(Pe.options.components,Ei),Pe.prototype.__patch__=U?ci:$,Pe.prototype.$mount=function(t,o){return function(t,o,e){var r;return t.$el=o,t.$options.render||(t.$options.render=bt),ie(t,"beforeMount"),r=function(){t._update(t._render(),e)},new ge(t,r,$,{before:function(){t._isMounted&&!t._isDestroyed&&ie(t,"beforeUpdate")}},!0),e=!1,null==t.$vnode&&(t._isMounted=!0,ie(t,"mounted")),t}(this,t=t&&U?function(t){return"string"==typeof t?document.querySelector(t)||document.createElement("div"):t}(t):void 0,o)},U&&setTimeout((function(){M.devtools&&rt&&rt.emit("init",Pe)}),0);const Bi=Pe},9700:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z%27/%3e%3c/svg%3e"},4104:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z%27/%3e%3c/svg%3e"},9566:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},2952:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},6803:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},8776:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},134:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},9052:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},1024:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e"},8624:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23e74c3c%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23e74c3c%27 stroke=%27none%27/%3e%3c/svg%3e"},7263:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e"},9859:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},1380:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280, 0, 0, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},9242:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},398:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.6%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},6697:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%2834, 34, 34, 0.7%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},4231:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%274%27 viewBox=%270 0 4 4%27%3e%3cpath stroke=%27%23fff%27 d=%27M0 2h4%27/%3e%3c/svg%3e"},2143:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23303030%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e"},4576:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e"},325:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2300bc8c%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},1387:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2318bc9c%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},7211:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2328a745%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},9653:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23fff%27 d=%27M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z%27/%3e%3c/svg%3e"},8593:t=>{"use strict";t.exports=JSON.parse('{"name":"axios","version":"0.21.4","description":"Promise based HTTP client for the browser and node.js","main":"index.js","scripts":{"test":"grunt test","start":"node ./sandbox/server.js","build":"NODE_ENV=production grunt build","preversion":"npm test","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","postversion":"git push && git push --tags","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","fix":"eslint --fix lib/**/*.js"},"repository":{"type":"git","url":"https://github.com/axios/axios.git"},"keywords":["xhr","http","ajax","promise","node"],"author":"Matt Zabriskie","license":"MIT","bugs":{"url":"https://github.com/axios/axios/issues"},"homepage":"https://axios-http.com","devDependencies":{"coveralls":"^3.0.0","es6-promise":"^4.2.4","grunt":"^1.3.0","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^23.0.0","grunt-karma":"^4.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^4.0.2","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1","karma":"^6.3.2","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.8","karma-webpack":"^4.0.2","load-grunt-tasks":"^3.5.2","minimist":"^1.2.0","mocha":"^8.2.1","sinon":"^4.5.0","terser-webpack-plugin":"^4.2.3","typescript":"^4.0.5","url-search-params":"^0.10.0","webpack":"^4.44.2","webpack-dev-server":"^3.11.0"},"browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"jsdelivr":"dist/axios.min.js","unpkg":"dist/axios.min.js","typings":"./index.d.ts","dependencies":{"follow-redirects":"^1.14.0"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}]}')}},o={};function e(r){var i=o[r];if(void 0!==i)return i.exports;var n=o[r]={id:r,exports:{}};return t[r].call(n.exports,n,n.exports,e),n.exports}e.m=t,e.n=t=>{var o=t&&t.__esModule?()=>t.default:()=>t;return e.d(o,{a:o}),o},e.d=(t,o)=>{for(var r in o)e.o(o,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:o[r]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=(t,o)=>Object.prototype.hasOwnProperty.call(t,o),e.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.b=document.baseURI||self.location.href,e(9637)})(); \ No newline at end of file diff --git a/frontend/index.html b/frontend/index.html index 431fc13..bf637a1 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -9,6 +9,22 @@ OTS - One Time Secrets + +
diff --git a/src/app.vue b/src/app.vue index 0ec5da0..5286ead 100644 --- a/src/app.vue +++ b/src/app.vue @@ -25,6 +25,14 @@ {{ $t('btn-new-secret') }} + + + ​ + + @@ -172,6 +180,7 @@ export default { securePassword: '', secretId: '', showError: false, + darkTheme: false, } }, @@ -187,8 +196,15 @@ export default { }, }, + watch: { + darkTheme(to) { + window.setTheme(to ? 'dark' : 'light') + }, + }, + // Trigger initialization functions mounted() { + this.darkTheme = window.getTheme() === 'dark' window.onhashchange = this.hashLoad this.hashLoad() }, @@ -269,14 +285,3 @@ export default { }, } - - diff --git a/src/main.js b/src/main.js index 9527ce8..0d6fd87 100644 --- a/src/main.js +++ b/src/main.js @@ -5,7 +5,7 @@ import BootstrapVue from 'bootstrap-vue' import 'bootstrap/dist/css/bootstrap.css' import 'bootstrap-vue/dist/bootstrap-vue.css' -import 'bootswatch/dist/flatly/bootstrap.css' +import './style.scss' import app from './app.vue' import messages from './langs/langs.js' diff --git a/src/package-lock.json b/src/package-lock.json index d3059c1..a10e74d 100644 --- a/src/package-lock.json +++ b/src/package-lock.json @@ -7,10 +7,9 @@ "name": "ots", "dependencies": { "axios": "^0.21.4", - "bootstrap": "^4.0.0", + "bootstrap": "^4.6.0", "bootstrap-vue": "^2.21.2", - "bootswatch": "^4.0.0", - "eslint-plugin-vue": "^7.17.0", + "bootswatch": "^4.6.0", "gibberish-aes": "^1.0.0", "popper.js": "^1.16.1", "vue": "^2.6.14", @@ -23,6 +22,7 @@ "babel-loader": "^8.2.2", "css-loader": "^6.2.0", "eslint": "^6.0.0", + "eslint-plugin-vue": "^7.17.0", "node-sass": "^6.0.1", "sass-loader": "^12.1.0", "style-loader": "^3.2.1", @@ -38,6 +38,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", + "dev": true, "dependencies": { "@babel/highlight": "^7.14.5" }, @@ -379,6 +380,7 @@ "version": "7.14.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -425,6 +427,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.14.5", "chalk": "^2.0.0", @@ -1972,6 +1975,7 @@ "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -1983,6 +1987,7 @@ "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } @@ -1991,6 +1996,7 @@ "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -2024,6 +2030,7 @@ "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, "dependencies": { "type-fest": "^0.21.3" }, @@ -2050,6 +2057,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true, "engines": { "node": ">=6" } @@ -2058,6 +2066,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -2085,6 +2094,7 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, "dependencies": { "sprintf-js": "~1.0.2" } @@ -2120,6 +2130,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true, "engines": { "node": ">=4" } @@ -2253,7 +2264,8 @@ "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", @@ -2314,6 +2326,7 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -2365,6 +2378,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, "engines": { "node": ">=6" } @@ -2415,6 +2429,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -2427,7 +2442,8 @@ "node_modules/chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true }, "node_modules/chownr": { "version": "2.0.0", @@ -2451,6 +2467,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, "dependencies": { "restore-cursor": "^3.1.0" }, @@ -2462,6 +2479,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, "engines": { "node": ">= 10" } @@ -2533,6 +2551,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "dependencies": { "color-name": "1.1.3" } @@ -2540,7 +2559,8 @@ "node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "node_modules/colorette": { "version": "1.3.0", @@ -2575,7 +2595,8 @@ "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "node_modules/consola": { "version": "2.15.3", @@ -2642,6 +2663,7 @@ "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -2657,6 +2679,7 @@ "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, "bin": { "semver": "bin/semver" } @@ -2736,6 +2759,7 @@ "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, "dependencies": { "ms": "2.1.2" }, @@ -2782,7 +2806,8 @@ "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "node_modules/define-properties": { "version": "1.1.3", @@ -2815,6 +2840,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, "dependencies": { "esutils": "^2.0.2" }, @@ -2841,7 +2867,8 @@ "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, "node_modules/emojis-list": { "version": "3.0.0", @@ -2914,6 +2941,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, "engines": { "node": ">=0.8.0" } @@ -2922,6 +2950,7 @@ "version": "6.8.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", + "dev": true, "dependencies": { "@babel/code-frame": "^7.0.0", "ajv": "^6.10.0", @@ -2975,6 +3004,7 @@ "version": "7.17.0", "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.17.0.tgz", "integrity": "sha512-Rq5R2QetDCgC+kBFQw1+aJ5B93tQ4xqZvoCUxuIzwTonngNArsdP8ChM8PowIzsJvRtWl4ltGh/bZcN3xhFWSw==", + "dev": true, "dependencies": { "eslint-utils": "^2.1.0", "natural-compare": "^1.4.0", @@ -2992,6 +3022,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, "dependencies": { "eslint-visitor-keys": "^1.1.0" }, @@ -3006,6 +3037,7 @@ "version": "7.11.0", "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz", "integrity": "sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==", + "dev": true, "dependencies": { "debug": "^4.1.1", "eslint-scope": "^5.1.1", @@ -3029,6 +3061,7 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -3041,6 +3074,7 @@ "version": "1.4.3", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "dev": true, "dependencies": { "eslint-visitor-keys": "^1.1.0" }, @@ -3052,6 +3086,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, "engines": { "node": ">=4" } @@ -3060,6 +3095,7 @@ "version": "12.4.0", "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, "dependencies": { "type-fest": "^0.8.1" }, @@ -3074,6 +3110,7 @@ "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, "engines": { "node": ">=8" } @@ -3082,6 +3119,7 @@ "version": "6.2.1", "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "dev": true, "dependencies": { "acorn": "^7.1.1", "acorn-jsx": "^5.2.0", @@ -3095,6 +3133,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -3107,6 +3146,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, "dependencies": { "estraverse": "^5.1.0" }, @@ -3118,6 +3158,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true, "engines": { "node": ">=4.0" } @@ -3126,6 +3167,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, "dependencies": { "estraverse": "^5.2.0" }, @@ -3137,6 +3179,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true, "engines": { "node": ">=4.0" } @@ -3145,6 +3188,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, "engines": { "node": ">=4.0" } @@ -3153,6 +3197,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -3258,6 +3303,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", @@ -3279,17 +3325,20 @@ "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true }, "node_modules/fastest-levenshtein": { "version": "1.0.12", @@ -3301,6 +3350,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, "dependencies": { "escape-string-regexp": "^1.0.5" }, @@ -3315,6 +3365,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "dev": true, "dependencies": { "flat-cache": "^2.0.1" }, @@ -3356,6 +3407,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "dev": true, "dependencies": { "flatted": "^2.0.0", "rimraf": "2.6.3", @@ -3368,7 +3420,8 @@ "node_modules/flatted": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==" + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true }, "node_modules/follow-redirects": { "version": "1.14.3", @@ -3433,7 +3486,8 @@ "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "node_modules/function-bind": { "version": "1.1.1", @@ -3444,7 +3498,8 @@ "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true }, "node_modules/gauge": { "version": "2.7.4", @@ -3592,6 +3647,7 @@ "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -3611,6 +3667,7 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, "dependencies": { "is-glob": "^4.0.1" }, @@ -3722,6 +3779,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, "engines": { "node": ">=4" } @@ -3805,6 +3863,7 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -3828,6 +3887,7 @@ "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, "engines": { "node": ">= 4" } @@ -3836,6 +3896,7 @@ "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -3867,6 +3928,7 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, "engines": { "node": ">=0.8.19" } @@ -3884,6 +3946,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -3892,12 +3955,14 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "node_modules/inquirer": { "version": "7.3.3", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", @@ -3921,6 +3986,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true, "engines": { "node": ">=8" } @@ -3929,6 +3995,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { "color-convert": "^2.0.1" }, @@ -3943,6 +4010,7 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3958,6 +4026,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "dependencies": { "color-name": "~1.1.4" }, @@ -3968,12 +4037,14 @@ "node_modules/inquirer/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, "node_modules/inquirer/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, "engines": { "node": ">=8" } @@ -3982,6 +4053,7 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, "dependencies": { "ansi-regex": "^5.0.0" }, @@ -3993,6 +4065,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -4031,6 +4104,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -4039,6 +4113,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "engines": { "node": ">=8" } @@ -4047,6 +4122,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, "dependencies": { "is-extglob": "^2.1.1" }, @@ -4102,7 +4178,8 @@ "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true }, "node_modules/isobject": { "version": "3.0.1", @@ -4172,12 +4249,14 @@ "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, "node_modules/js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -4225,12 +4304,14 @@ "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true }, "node_modules/json-stringify-safe": { "version": "5.0.1", @@ -4290,6 +4371,7 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" @@ -4354,7 +4436,8 @@ "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true }, "node_modules/lodash.debounce": { "version": "4.0.8", @@ -4537,6 +4620,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, "engines": { "node": ">=6" } @@ -4554,6 +4638,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -4564,7 +4649,8 @@ "node_modules/minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true }, "node_modules/minimist-options": { "version": "4.1.0", @@ -4609,6 +4695,7 @@ "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, "dependencies": { "minimist": "^1.2.5" }, @@ -4619,12 +4706,14 @@ "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true }, "node_modules/nan": { "version": "2.15.0", @@ -4647,7 +4736,8 @@ "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true }, "node_modules/neo-async": { "version": "2.6.2", @@ -4658,7 +4748,8 @@ "node_modules/nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true }, "node_modules/node-fetch": { "version": "2.6.2", @@ -5023,6 +5114,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "dependencies": { "wrappy": "1" } @@ -5031,6 +5123,7 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, "dependencies": { "mimic-fn": "^2.1.0" }, @@ -5045,6 +5138,7 @@ "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", @@ -5061,6 +5155,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -5114,6 +5209,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, "dependencies": { "callsites": "^3.0.0" }, @@ -5152,6 +5248,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -5160,6 +5257,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, "engines": { "node": ">=4" } @@ -5306,6 +5404,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true, "engines": { "node": ">= 0.8.0" } @@ -5333,6 +5432,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, "engines": { "node": ">=0.4.0" } @@ -5353,6 +5453,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, "engines": { "node": ">=6" } @@ -5557,6 +5658,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "dev": true, "engines": { "node": ">=6.5.0" } @@ -5690,6 +5792,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, "engines": { "node": ">=4" } @@ -5698,6 +5801,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -5710,6 +5814,7 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, "dependencies": { "glob": "^7.1.3" }, @@ -5721,6 +5826,7 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, "engines": { "node": ">=0.12.0" } @@ -5729,6 +5835,7 @@ "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, "dependencies": { "tslib": "^1.9.0" }, @@ -5745,7 +5852,8 @@ "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, "node_modules/sass-graph": { "version": "2.2.5", @@ -5840,6 +5948,7 @@ "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, "bin": { "semver": "bin/semver.js" } @@ -5875,6 +5984,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, "dependencies": { "shebang-regex": "^1.0.0" }, @@ -5886,6 +5996,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -5893,12 +6004,14 @@ "node_modules/signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true }, "node_modules/slice-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "dev": true, "dependencies": { "ansi-styles": "^3.2.0", "astral-regex": "^1.0.0", @@ -5912,6 +6025,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, "engines": { "node": ">=4" } @@ -5988,7 +6102,8 @@ "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true }, "node_modules/sshpk": { "version": "1.16.1", @@ -6037,6 +6152,7 @@ "version": "4.2.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -6050,6 +6166,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true, "engines": { "node": ">=8" } @@ -6058,6 +6175,7 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, "dependencies": { "ansi-regex": "^5.0.0" }, @@ -6069,6 +6187,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, "dependencies": { "ansi-regex": "^4.1.0" }, @@ -6101,6 +6220,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, "engines": { "node": ">=8" }, @@ -6128,6 +6248,7 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "dependencies": { "has-flag": "^3.0.0" }, @@ -6139,6 +6260,7 @@ "version": "5.4.6", "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "dev": true, "dependencies": { "ajv": "^6.10.2", "lodash": "^4.17.14", @@ -6152,12 +6274,14 @@ "node_modules/table/node_modules/emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true }, "node_modules/table/node_modules/is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, "engines": { "node": ">=4" } @@ -6166,6 +6290,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, "dependencies": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -6319,17 +6444,20 @@ "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true }, "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, "dependencies": { "os-tmpdir": "~1.0.2" }, @@ -6380,7 +6508,8 @@ "node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/tunnel-agent": { "version": "0.6.0", @@ -6404,6 +6533,7 @@ "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, "dependencies": { "prelude-ls": "~1.1.2" }, @@ -6415,6 +6545,7 @@ "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, "engines": { "node": ">=10" }, @@ -6466,6 +6597,7 @@ "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, "dependencies": { "punycode": "^2.1.0" } @@ -6489,7 +6621,8 @@ "node_modules/v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true }, "node_modules/validate-npm-package-license": { "version": "3.0.4", @@ -6846,6 +6979,7 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, "dependencies": { "isexe": "^2.0.0" }, @@ -6921,6 +7055,7 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -6971,12 +7106,14 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "node_modules/write": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "dev": true, "dependencies": { "mkdirp": "^0.5.1" }, @@ -7126,6 +7263,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", + "dev": true, "requires": { "@babel/highlight": "^7.14.5" } @@ -7381,7 +7519,8 @@ "@babel/helper-validator-identifier": { "version": "7.14.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", - "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==" + "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", + "dev": true }, "@babel/helper-validator-option": { "version": "7.14.5", @@ -7416,6 +7555,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.14.5", "chalk": "^2.0.0", @@ -8538,18 +8678,21 @@ "acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true }, "acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, "requires": {} }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -8574,6 +8717,7 @@ "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, "requires": { "type-fest": "^0.21.3" } @@ -8587,12 +8731,14 @@ "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true }, "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -8617,6 +8763,7 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, "requires": { "sprintf-js": "~1.0.2" } @@ -8645,7 +8792,8 @@ "astral-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true }, "async-foreach": { "version": "0.1.3", @@ -8747,7 +8895,8 @@ "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "bcrypt-pbkdf": { "version": "1.0.2", @@ -8797,6 +8946,7 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -8834,7 +8984,8 @@ "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true }, "camelcase": { "version": "5.3.1", @@ -8869,6 +9020,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -8878,7 +9030,8 @@ "chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true }, "chownr": { "version": "2.0.0", @@ -8896,6 +9049,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, "requires": { "restore-cursor": "^3.1.0" } @@ -8903,7 +9057,8 @@ "cli-width": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true }, "cliui": { "version": "5.0.0", @@ -8962,6 +9117,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "requires": { "color-name": "1.1.3" } @@ -8969,7 +9125,8 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "colorette": { "version": "1.3.0", @@ -9001,7 +9158,8 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "consola": { "version": "2.15.3", @@ -9060,6 +9218,7 @@ "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -9071,7 +9230,8 @@ "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true } } }, @@ -9127,6 +9287,7 @@ "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, "requires": { "ms": "2.1.2" } @@ -9158,7 +9319,8 @@ "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "define-properties": { "version": "1.1.3", @@ -9185,6 +9347,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, "requires": { "esutils": "^2.0.2" } @@ -9208,7 +9371,8 @@ "emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, "emojis-list": { "version": "3.0.0", @@ -9262,12 +9426,14 @@ "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true }, "eslint": { "version": "6.8.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", + "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "ajv": "^6.10.0", @@ -9312,6 +9478,7 @@ "version": "12.4.0", "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, "requires": { "type-fest": "^0.8.1" } @@ -9319,7 +9486,8 @@ "type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true } } }, @@ -9327,6 +9495,7 @@ "version": "7.17.0", "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.17.0.tgz", "integrity": "sha512-Rq5R2QetDCgC+kBFQw1+aJ5B93tQ4xqZvoCUxuIzwTonngNArsdP8ChM8PowIzsJvRtWl4ltGh/bZcN3xhFWSw==", + "dev": true, "requires": { "eslint-utils": "^2.1.0", "natural-compare": "^1.4.0", @@ -9338,6 +9507,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, "requires": { "eslint-visitor-keys": "^1.1.0" } @@ -9346,6 +9516,7 @@ "version": "7.11.0", "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz", "integrity": "sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==", + "dev": true, "requires": { "debug": "^4.1.1", "eslint-scope": "^5.1.1", @@ -9362,6 +9533,7 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, "requires": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -9371,6 +9543,7 @@ "version": "1.4.3", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "dev": true, "requires": { "eslint-visitor-keys": "^1.1.0" } @@ -9378,12 +9551,14 @@ "eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true }, "espree": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "dev": true, "requires": { "acorn": "^7.1.1", "acorn-jsx": "^5.2.0", @@ -9393,12 +9568,14 @@ "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true }, "esquery": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, "requires": { "estraverse": "^5.1.0" }, @@ -9406,7 +9583,8 @@ "estraverse": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true } } }, @@ -9414,6 +9592,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, "requires": { "estraverse": "^5.2.0" }, @@ -9421,19 +9600,22 @@ "estraverse": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true } } }, "estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true }, "events": { "version": "3.3.0", @@ -9511,6 +9693,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, "requires": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", @@ -9526,17 +9709,20 @@ "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true }, "fastest-levenshtein": { "version": "1.0.12", @@ -9548,6 +9734,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, "requires": { "escape-string-regexp": "^1.0.5" } @@ -9556,6 +9743,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "dev": true, "requires": { "flat-cache": "^2.0.1" } @@ -9585,6 +9773,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "dev": true, "requires": { "flatted": "^2.0.0", "rimraf": "2.6.3", @@ -9594,7 +9783,8 @@ "flatted": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==" + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true }, "follow-redirects": { "version": "1.14.3", @@ -9636,7 +9826,8 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "function-bind": { "version": "1.1.1", @@ -9647,7 +9838,8 @@ "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true }, "gauge": { "version": "2.7.4", @@ -9764,6 +9956,7 @@ "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -9777,6 +9970,7 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, "requires": { "is-glob": "^4.0.1" } @@ -9861,7 +10055,8 @@ "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true }, "has-symbols": { "version": "1.0.2", @@ -9923,6 +10118,7 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } @@ -9937,12 +10133,14 @@ "ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true }, "import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -9961,7 +10159,8 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true }, "indent-string": { "version": "4.0.0", @@ -9973,6 +10172,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -9981,12 +10181,14 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "inquirer": { "version": "7.3.3", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, "requires": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", @@ -10006,12 +10208,14 @@ "ansi-regex": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "requires": { "color-convert": "^2.0.1" } @@ -10020,6 +10224,7 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -10029,6 +10234,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "requires": { "color-name": "~1.1.4" } @@ -10036,17 +10242,20 @@ "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true }, "strip-ansi": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, "requires": { "ansi-regex": "^5.0.0" } @@ -10055,6 +10264,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "requires": { "has-flag": "^4.0.0" } @@ -10085,17 +10295,20 @@ "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true }, "is-glob": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, "requires": { "is-extglob": "^2.1.1" } @@ -10136,7 +10349,8 @@ "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true }, "isobject": { "version": "3.0.1", @@ -10193,12 +10407,14 @@ "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, "js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -10237,12 +10453,14 @@ "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true }, "json-stringify-safe": { "version": "5.0.1", @@ -10287,6 +10505,7 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, "requires": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" @@ -10338,7 +10557,8 @@ "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true }, "lodash.debounce": { "version": "4.0.8", @@ -10475,7 +10695,8 @@ "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true }, "min-indent": { "version": "1.0.1", @@ -10487,6 +10708,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -10494,7 +10716,8 @@ "minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true }, "minimist-options": { "version": "4.1.0", @@ -10530,6 +10753,7 @@ "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, "requires": { "minimist": "^1.2.5" } @@ -10537,12 +10761,14 @@ "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true }, "nan": { "version": "2.15.0", @@ -10559,7 +10785,8 @@ "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true }, "neo-async": { "version": "2.6.2", @@ -10570,7 +10797,8 @@ "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true }, "node-fetch": { "version": "2.6.2", @@ -10837,6 +11065,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "requires": { "wrappy": "1" } @@ -10845,6 +11074,7 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, "requires": { "mimic-fn": "^2.1.0" } @@ -10853,6 +11083,7 @@ "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, "requires": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", @@ -10865,7 +11096,8 @@ "os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true }, "p-defer": { "version": "1.0.0", @@ -10901,6 +11133,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, "requires": { "callsites": "^3.0.0" } @@ -10926,12 +11159,14 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true }, "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true }, "path-parse": { "version": "1.0.7", @@ -11031,7 +11266,8 @@ "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true }, "prettier": { "version": "1.19.1", @@ -11049,7 +11285,8 @@ "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true }, "pseudomap": { "version": "1.0.2", @@ -11066,7 +11303,8 @@ "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true }, "qs": { "version": "6.5.2", @@ -11231,7 +11469,8 @@ "regexpp": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==" + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "dev": true }, "regexpu-core": { "version": "4.7.1", @@ -11340,12 +11579,14 @@ "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true }, "restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, "requires": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -11355,6 +11596,7 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, "requires": { "glob": "^7.1.3" } @@ -11362,12 +11604,14 @@ "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true }, "rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, "requires": { "tslib": "^1.9.0" } @@ -11381,7 +11625,8 @@ "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, "sass-graph": { "version": "2.2.5", @@ -11440,7 +11685,8 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true }, "serialize-javascript": { "version": "6.0.0", @@ -11470,6 +11716,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, "requires": { "shebang-regex": "^1.0.0" } @@ -11477,17 +11724,20 @@ "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true }, "signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true }, "slice-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "dev": true, "requires": { "ansi-styles": "^3.2.0", "astral-regex": "^1.0.0", @@ -11497,7 +11747,8 @@ "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true } } }, @@ -11566,7 +11817,8 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true }, "sshpk": { "version": "1.16.1", @@ -11607,6 +11859,7 @@ "version": "4.2.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -11616,12 +11869,14 @@ "ansi-regex": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true }, "strip-ansi": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, "requires": { "ansi-regex": "^5.0.0" } @@ -11632,6 +11887,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, "requires": { "ansi-regex": "^4.1.0" } @@ -11654,7 +11910,8 @@ "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true }, "style-loader": { "version": "3.2.1", @@ -11667,6 +11924,7 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -11675,6 +11933,7 @@ "version": "5.4.6", "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "dev": true, "requires": { "ajv": "^6.10.2", "lodash": "^4.17.14", @@ -11685,17 +11944,20 @@ "emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true }, "string-width": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -11796,17 +12058,20 @@ "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true }, "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, "requires": { "os-tmpdir": "~1.0.2" } @@ -11845,7 +12110,8 @@ "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "tunnel-agent": { "version": "0.6.0", @@ -11866,6 +12132,7 @@ "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, "requires": { "prelude-ls": "~1.1.2" } @@ -11873,7 +12140,8 @@ "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true }, "unicode-canonical-property-names-ecmascript": { "version": "1.0.4", @@ -11907,6 +12175,7 @@ "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, "requires": { "punycode": "^2.1.0" } @@ -11926,7 +12195,8 @@ "v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true }, "validate-npm-package-license": { "version": "3.0.4", @@ -12190,6 +12460,7 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, "requires": { "isexe": "^2.0.0" } @@ -12251,7 +12522,8 @@ "word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true }, "wrap-ansi": { "version": "5.1.0", @@ -12292,12 +12564,14 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "write": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "dev": true, "requires": { "mkdirp": "^0.5.1" } diff --git a/src/package.json b/src/package.json index 4323611..397cca5 100644 --- a/src/package.json +++ b/src/package.json @@ -24,9 +24,9 @@ }, "dependencies": { "axios": "^0.21.4", - "bootstrap": "^4.0.0", + "bootstrap": "^4.6.0", "bootstrap-vue": "^2.21.2", - "bootswatch": "^4.0.0", + "bootswatch": "^4.6.0", "gibberish-aes": "^1.0.0", "popper.js": "^1.16.1", "vue": "^2.6.14", diff --git a/src/style.scss b/src/style.scss new file mode 100644 index 0000000..5e0b7c3 --- /dev/null +++ b/src/style.scss @@ -0,0 +1,50 @@ +:root { + + &[mode="dark"] { + @import "node_modules/bootswatch/dist/darkly/bootstrap"; + + .custom-control-input:checked ~ .custom-control-label::before { + border-color: #333; + background-color: #444; + } + + .footer { + color: #d1d1d1; + } + + .form-control { + /* Force overwrite bright textareas */ + background-color: rgb(24, 26, 27); + border-color: rgb(129, 120, 106); + color: rgb(189, 183, 175); + + &:focus { + background-color: rgb(24, 26, 27); + border-color: rgb(49, 81, 113); + color: rgb(189, 183, 175); + } + + &[readonly] { + background-color: rgb(24, 26, 27); + } + } + } + + &[mode="light"] { + @import "node_modules/bootswatch/dist/flatly/bootstrap"; + + .footer { + color: #2f2f2f; + } + } + + textarea { + font-family: monospace !important; + } + + .footer { + font-size: 0.9em; + text-align: center; + } + +}