diff --git a/.dockerignore b/.dockerignore index 85de9cf..a6f21c9 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1 @@ -src +src/node_modules diff --git a/.gitignore b/.gitignore index 528d34f..0ccf1d1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ +frontend/app.js frontend/app.js.LICENSE.txt frontend/css frontend/js frontend/locale/*.untranslated.json frontend/webfonts +frontend/*.woff2 node_modules ots diff --git a/.repo-runner.yaml b/.repo-runner.yaml index 2c70cf3..d90ebcb 100644 --- a/.repo-runner.yaml +++ b/.repo-runner.yaml @@ -1,13 +1,14 @@ --- -image: "reporunner/golang-alpine" +image: "reporunner/archlinux" checkout_dir: /go/src/github.com/Luzifer/ots commands: # Dependencies for downloading libraries - - apk add --update curl git make tar unzip + - pacman -Syy --noconfirm awk curl git go make nodejs-lts-fermium npm tar unzip which zip - make publish environment: - DRAFT: "false" CGO_ENABLED: 0 + DRAFT: "false" + GOPATH: /go diff --git a/Dockerfile b/Dockerfile index 9c5ffef..d618877 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,20 +1,28 @@ -FROM golang:alpine as builder +FROM luzifer/archlinux as builder + +ENV CGO_ENABLED=0 \ + GOPATH=/go COPY . /go/src/github.com/Luzifer/ots WORKDIR /go/src/github.com/Luzifer/ots RUN set -ex \ - && apk add --update \ + && pacman --noconfirm -Syy \ curl \ git \ + go \ make \ + nodejs-lts-fermium \ + npm \ tar \ unzip \ + && make -C src -f ../Makefile generate-inner \ && make download_libs \ && go install \ -ldflags "-X main.version=$(git describe --tags --always || echo dev)" \ -mod=readonly + FROM alpine:latest LABEL maintainer "Knut Ahlers " diff --git a/Dockerfile.minimal b/Dockerfile.minimal index 0f9b4cd..2c3fc1f 100644 --- a/Dockerfile.minimal +++ b/Dockerfile.minimal @@ -1,16 +1,28 @@ -FROM golang:alpine as builder +FROM luzifer/archlinux as builder -ENV CGO_ENABLED=0 +ENV CGO_ENABLED=0 \ + GOPATH=/go COPY . /go/src/github.com/Luzifer/ots WORKDIR /go/src/github.com/Luzifer/ots RUN set -ex \ - && apk add --update git \ + && pacman --noconfirm -Syy \ + curl \ + git \ + go \ + make \ + nodejs-lts-fermium \ + npm \ + tar \ + unzip \ + && make -C src -f ../Makefile generate-inner \ + && make download_libs \ && go install \ -ldflags "-X main.version=$(git describe --tags --always || echo dev)" \ -mod=readonly + FROM scratch LABEL maintainer "Knut Ahlers " diff --git a/Makefile b/Makefile index 20758f0..fe5511a 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,15 @@ VER_FONTAWESOME=5.14.0 default: generate download_libs generate: - docker run --rm -ti -v $(CURDIR):$(CURDIR) -w $(CURDIR)/src node:14-alpine \ - sh -exc "npx npm@lts ci && npx npm@lts run build && chown -R $(shell id -u) ../frontend node_modules" + docker run --rm -i -v $(CURDIR):$(CURDIR) -w $(CURDIR) node:14-alpine \ + sh -exc "apk add make && make -C src -f ../Makefile generate-inner && chown -R $(shell id -u) frontend src/node_modules" + +generate-inner: + npx npm@lts ci + npx npm@lts run build publish: download_libs + $(MAKE) -C src -f ../Makefile generate-inner curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh bash golang.sh diff --git a/frontend/app.js b/frontend/app.js deleted file mode 100644 index 377a8ae..0000000 --- a/frontend/app.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see app.js.LICENSE.txt */ -(()=>{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 bf637a1..054157d 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -6,7 +6,22 @@ - + {{ range (list "webfonts/fa-solid-900.woff2" "webfonts/fa-brands-400.woff2" "lato-v20-latin-ext_latin-regular.woff2" "lato-v20-latin-ext_latin-700.woff2") }} + + {{ end }} + + OTS - One Time Secrets @@ -24,13 +39,21 @@ // Very early load of theme definition to avoid flickering document.addEventListener('DOMContentLoaded', () => window.refreshTheme()) + + // Template variable from Golang process + {{- range $key, $value := .Vars }} + const {{ $key }} = "{{ $value }}" + {{- end }}
- - + diff --git a/go.mod b/go.mod index c1e0901..0819608 100644 --- a/go.mod +++ b/go.mod @@ -7,6 +7,7 @@ require ( github.com/Luzifer/rconfig/v2 v2.2.1 github.com/gofrs/uuid/v3 v3.1.2 github.com/gorilla/mux v1.7.3 + github.com/pkg/errors v0.9.1 github.com/sirupsen/logrus v1.4.2 github.com/xuyu/goredis v0.0.0-20160929021245-89fbe9474b37 ) diff --git a/go.sum b/go.sum index 22a2625..6601d8a 100644 --- a/go.sum +++ b/go.sum @@ -13,6 +13,8 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxv github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/leekchan/gtf v0.0.0-20190214083521-5fba33c5b00b/go.mod h1:thNruaSwydMhkQ8dXzapABF9Sc1Tz08ZBcDdgott9RA= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= diff --git a/main.go b/main.go index 0e0648a..237813c 100644 --- a/main.go +++ b/main.go @@ -8,8 +8,10 @@ import ( "os" "path" "strings" + "text/template" "github.com/gorilla/mux" + "github.com/pkg/errors" log "github.com/sirupsen/logrus" http_helpers "github.com/Luzifer/go_helpers/v2/http" @@ -56,66 +58,58 @@ func main() { api := newAPI(store) r := mux.NewRouter() + r.Use(http_helpers.GzipHandler) + api.Register(r.PathPrefix("/api").Subrouter()) - r.HandleFunc("/vars.js", handleVars) - r.PathPrefix("/").HandlerFunc(http_helpers.GzipFunc(assetDelivery)) + + r.HandleFunc("/", handleIndex) + r.PathPrefix("/").HandlerFunc(assetDelivery) log.Fatalf("HTTP server quit: %s", http.ListenAndServe(cfg.Listen, http_helpers.NewHTTPLogHandler(r))) } -func assetDelivery(res http.ResponseWriter, r *http.Request) { +func assetDelivery(w http.ResponseWriter, r *http.Request) { assetName := r.URL.Path - if assetName == "/" { - assetName = "/index.html" - } dot := strings.LastIndex(assetName, ".") if dot < 0 { // There are no assets with no dot in it - http.Error(res, "404 not found", http.StatusNotFound) + http.Error(w, "404 not found", http.StatusNotFound) return } ext := assetName[dot:] assetData, err := assets.ReadFile(path.Join("frontend", assetName)) if err != nil { - http.Error(res, "404 not found", http.StatusNotFound) + http.Error(w, "404 not found", http.StatusNotFound) return } - res.Header().Set("Content-Type", mime.TypeByExtension(ext)) - res.Write(assetData) + w.Header().Set("Content-Type", mime.TypeByExtension(ext)) + w.Write(assetData) } -func handleVars(w http.ResponseWriter, r *http.Request) { - cookie, _ := r.Cookie("lang") - - cookieLang := "" - if cookie != nil { - cookieLang = cookie.Value - } - acceptLang := r.Header.Get("Accept-Language") - defaultLang := "en" // known valid language - - vars := map[string]string{ - "version": version, +func handleIndex(w http.ResponseWriter, r *http.Request) { + indexTpl, err := assets.ReadFile("frontend/index.html") + if err != nil { + http.Error(w, "404 not found", http.StatusNotFound) + return } - switch { - case cookieLang != "": - vars["locale"] = normalizeLang(cookieLang) - case acceptLang != "": - vars["locale"] = normalizeLang(strings.Split(acceptLang, ",")[0]) - default: - vars["locale"] = defaultLang + tpl, err := template.New("index.html").Funcs(tplFuncs).Parse(string(indexTpl)) + if err != nil { + http.Error(w, errors.Wrap(err, "parsing template").Error(), http.StatusInternalServerError) + return } - w.Header().Set("Content-Type", "application/javascript") - for k, v := range vars { - fmt.Fprintf(w, "var %s = %q\n", k, v) + if err = tpl.Execute(w, struct { + Vars map[string]string + }{ + Vars: map[string]string{ + "version": version, + }, + }); err != nil { + http.Error(w, errors.Wrap(err, "parsing template").Error(), http.StatusInternalServerError) + return } } - -func normalizeLang(lang string) string { - return strings.ToLower(strings.Split(lang, "-")[0]) -} diff --git a/src/lato.scss b/src/lato.scss new file mode 100644 index 0000000..ca3e628 --- /dev/null +++ b/src/lato.scss @@ -0,0 +1,21 @@ +/* lato-regular - latin-ext_latin */ +@font-face { + font-family: 'Lato'; + font-style: normal; + font-weight: 400; + src: url('latofont/lato-v20-latin-ext_latin-regular.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */ +} +/* lato-italic - latin-ext_latin */ +@font-face { + font-family: 'Lato'; + font-style: italic; + font-weight: 400; + src: url('latofont/lato-v20-latin-ext_latin-italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */ +} +/* lato-700 - latin-ext_latin */ +@font-face { + font-family: 'Lato'; + font-style: normal; + font-weight: 700; + src: url('latofont/lato-v20-latin-ext_latin-700.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */ +} diff --git a/src/latofont/OFL.txt b/src/latofont/OFL.txt new file mode 100755 index 0000000..6d2c416 --- /dev/null +++ b/src/latofont/OFL.txt @@ -0,0 +1,94 @@ +Copyright (c) 2010-2015, Ɓukasz Dziedzic (dziedzic@typoland.com), +with Reserved Font Name Lato. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/latofont/lato-v20-latin-ext_latin-700.woff2 b/src/latofont/lato-v20-latin-ext_latin-700.woff2 new file mode 100644 index 0000000..5ba583e Binary files /dev/null and b/src/latofont/lato-v20-latin-ext_latin-700.woff2 differ diff --git a/src/latofont/lato-v20-latin-ext_latin-italic.woff2 b/src/latofont/lato-v20-latin-ext_latin-italic.woff2 new file mode 100644 index 0000000..75f438e Binary files /dev/null and b/src/latofont/lato-v20-latin-ext_latin-italic.woff2 differ diff --git a/src/latofont/lato-v20-latin-ext_latin-regular.woff2 b/src/latofont/lato-v20-latin-ext_latin-regular.woff2 new file mode 100644 index 0000000..4153a82 Binary files /dev/null and b/src/latofont/lato-v20-latin-ext_latin-regular.woff2 differ diff --git a/src/main.js b/src/main.js index 0d6fd87..8392396 100644 --- a/src/main.js +++ b/src/main.js @@ -13,8 +13,12 @@ import messages from './langs/langs.js' Vue.use(BootstrapVue) Vue.use(VueI18n) +const cookieSet = Object.fromEntries(document.cookie.split('; ') + .map(el => el.split('=') + .map(el => decodeURIComponent(el)))) + const i18n = new VueI18n({ - locale, + locale: cookieSet.lang?.split(/[_-]/)[0] || navigator?.language?.split(/[_-]/)[0] || 'en', fallbackLocale: 'en', messages, }) diff --git a/src/style.scss b/src/style.scss index 5e0b7c3..ec54e30 100644 --- a/src/style.scss +++ b/src/style.scss @@ -1,7 +1,14 @@ +// Force local fonts +$web-font-path: ''; + +@import "lato"; + :root { &[mode="dark"] { - @import "node_modules/bootswatch/dist/darkly/bootstrap"; + @import "node_modules/bootswatch/dist/darkly/_variables"; + @import "node_modules/bootstrap/scss/bootstrap"; + @import "node_modules/bootswatch/dist/darkly/_bootswatch"; .custom-control-input:checked ~ .custom-control-label::before { border-color: #333; @@ -31,7 +38,9 @@ } &[mode="light"] { - @import "node_modules/bootswatch/dist/flatly/bootstrap"; + @import "node_modules/bootswatch/dist/flatly/_variables"; + @import "node_modules/bootstrap/scss/bootstrap"; + @import "node_modules/bootswatch/dist/flatly/_bootswatch"; .footer { color: #2f2f2f; diff --git a/src/webpack.config.js b/src/webpack.config.js index b58438b..fadf333 100644 --- a/src/webpack.config.js +++ b/src/webpack.config.js @@ -48,6 +48,14 @@ module.exports = { loader: 'vue-loader', }, + { + test: /\.woff2/, + type: 'asset/resource', + generator: { + filename: '[name][ext]', + }, + }, + ], }, } diff --git a/tplFuncs.go b/tplFuncs.go index 4d7c7a5..62df749 100644 --- a/tplFuncs.go +++ b/tplFuncs.go @@ -4,14 +4,23 @@ import ( "crypto/sha512" "encoding/base64" "path" + "sync" "text/template" ) -var tplFuncs = template.FuncMap{ - "SRIHash": assetSRIHash, -} +var ( + sriCacheStore = newSRICache() + tplFuncs = template.FuncMap{ + "list": func(args ...string) []string { return args }, + "assetSRI": assetSRIHash, + } +) func assetSRIHash(assetName string) string { + if sri, ok := sriCacheStore.Get(assetName); ok { + return sri + } + data, err := assets.ReadFile(path.Join("frontend", assetName)) if err != nil { panic(err) @@ -21,5 +30,29 @@ func assetSRIHash(assetName string) string { h.Write(data) sum := h.Sum(nil) - return "sha384-" + base64.StdEncoding.EncodeToString(sum) + sri := "sha384-" + base64.StdEncoding.EncodeToString(sum) + sriCacheStore.Set(assetName, sri) + return sri +} + +type sriCache struct { + c map[string]string + l sync.RWMutex +} + +func newSRICache() *sriCache { return &sriCache{c: map[string]string{}} } + +func (s *sriCache) Get(assetName string) (string, bool) { + s.l.RLock() + defer s.l.RUnlock() + + h, ok := s.c[assetName] + return h, ok +} + +func (s *sriCache) Set(assetName, hash string) { + s.l.Lock() + defer s.l.Unlock() + + s.c[assetName] = hash }