diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..d8a3d0c66 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules +bundle.js +coverage \ No newline at end of file diff --git a/README.md b/README.md index 769d13f72..d69842393 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,23 @@ -# Chitter API Frontend Challenge +# Chitter API Challenge -* Feel free to use Google, your notes, books, etc. but work on your own -* If you refer to the solution of another coach or student, please put a link to that in your README -* If you have a partial solution, **still check in a partial solution** -* You must submit a pull request to this repo with your code by 9am Monday morning +This was a challenge to build a Twitter clone that connected to a backend REST API. Users were able to sing up, log in and then post messages to a public stream. Having completed the challenge I have a much better understanding of how to write and test asynchoronous code in Javascript, as well as use of fetch and the most common RESTful methods like POST, GET, PATCH and DELETE. -Challenge: -------- +Language - Javscript +Testing - Jest -As usual please start by forking this repo. - -We are going to write a small Twitter clone that will allow the users to post messages to a public stream. - -The scenario is similar to the [Chitter Challenge](https://github.com/makersacademy/chitter-challenge), except someone has already built a backend API for you and hosted it on Heroku. - -Your task is to build a front-end single-page-app to interface with this API. You can do this in any framework you like, or in pure Javascript. [The API documentation is here.](https://github.com/makersacademy/chitter_api_backend) - -Here are some interactions the API supports. Implement as many as you see fit. +## Requirements * Creating Users * Logging in * Posting Peeps -* Viewing all Peeps *(I suggest you start here)* +* Viewing all Peeps * Viewing individual Peeps * Deleting Peeps * Liking Peeps * Unliking Peeps -We are looking for well tested, easy to read, easy to change code. This is more important than the number of interactions you implement. - -Note that others may be doing the same task at the same time, so the data may change as you are using it. - -## Utilities you might find useful +### Screenshots -* [The Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) for making requests. -* [Postman](https://www.getpostman.com/) or [Insomnia](https://insomnia.rest/) for exploring the API. +Screenshot 2022-07-03 at 16 55 13 +Screenshot 2022-07-03 at 16 55 53 +Screenshot 2022-07-03 at 16 56 03 diff --git a/chitterApi.js b/chitterApi.js new file mode 100644 index 000000000..a12cf5192 --- /dev/null +++ b/chitterApi.js @@ -0,0 +1,64 @@ +class ChitterApi { + async fetchPeeps() { + const response = await fetch( + "https://chitter-backend-api-v2.herokuapp.com/peeps" + ); + + const peeps = await response.json(); + return peeps; + } + + async createUser(handle, password) { + const response = await fetch( + "https://chitter-backend-api-v2.herokuapp.com/users", + { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + user: { handle: handle, password: password }, + }), + } + ); + const user = await response.json(); + return user; + } + + async logInUser(handle, password) { + const response = await fetch( + "https://chitter-backend-api-v2.herokuapp.com/sessions", + { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + session: { handle: handle, password: password }, + }), + } + ); + const confirmation = await response.json(); + return confirmation; + } + + async createPeep(session_key, user_id, body) { + const response = await fetch( + "https://chitter-backend-api-v2.herokuapp.com/peeps", + { + method: "POST", + headers: { + Authorization: `Token token=${session_key}`, + "Content-Type": "application/json", + }, + body: JSON.stringify({ + peep: { user_id: user_id, body: body }, + }), + } + ); + const peep = await response.json(); + return peep; + } +} + +module.exports = ChitterApi; diff --git a/chitterModel.js b/chitterModel.js new file mode 100644 index 000000000..7fd0157a6 --- /dev/null +++ b/chitterModel.js @@ -0,0 +1,37 @@ +class ChitterModel { + constructor() { + this.peeps = []; + this.session = null; + } + + getSession() { + return this.session; + } + + saveSession(session) { + this.session = session; + } + + getPeeps() { + return this.peeps; + } + + addPeep(peep) { + this.peeps.push(peep); + } + + addNewPeep(peep) { + this.peeps.unshift(peep); + } + + setPeeps(peeps) { + this.reset(); + peeps.forEach((peep) => this.addPeep(peep)); + } + + reset() { + this.peeps = []; + } +} + +module.exports = ChitterModel; diff --git a/chitterView.js b/chitterView.js new file mode 100644 index 000000000..65646223e --- /dev/null +++ b/chitterView.js @@ -0,0 +1,132 @@ +class ChitterView { + constructor(model, api) { + this.model = model; + this.api = api; + + this.peepList = document.querySelector("#peep-list"); + this.successAlert = document.querySelector("#success-alert"); + this.failAlert = document.querySelector("#fail-alert"); + + this.createAccountBtn = document.querySelector("#user-create-btn"); + this.createHandleInput = document.querySelector("#create-account-handle"); + this.createPasswordInput = document.querySelector( + "#create-account-password" + ); + this.createAccountSubmit = document.querySelector("#create-account-submit"); + + this.createAccountSubmit.addEventListener("click", () => { + this.createAccount( + this.createHandleInput.value, + this.createPasswordInput.value + ); + }); + + this.loginBtn = document.querySelector("#user-login-btn"); + this.loginHandleInput = document.querySelector("#login-handle"); + this.loginPasswordInput = document.querySelector("#login-password"); + this.loginSubmit = document.querySelector("#login-submit"); + this.loginSubmit.addEventListener("click", () => { + this.signIn(this.loginHandleInput.value, this.loginPasswordInput.value); + }); + + this.peepInput = document.querySelector("#peep-input"); + this.peepSubmit = document.querySelector("#peep-submit"); + this.peepSubmit.addEventListener("click", () => { + this.newPeep( + this.model.getSession().session_key, + this.model.getSession().user_id, + this.peepInput.value + ); + }); + } + + async displayPeepsFromApi() { + const peeps = await this.api.fetchPeeps(); + this.model.setPeeps(peeps); + this.displayPeeps(); + } + + displayPeeps() { + this.clearPeepDivs(); + let peeps = this.model.getPeeps(); + + peeps.forEach((peep) => { + this.addPeepLi(peep); + }); + } + + clearPeepDivs() { + const peeps = document.querySelectorAll("li.peep"); + peeps.forEach((peep) => { + peep.remove(); + }); + } + + async createAccount(handle, password) { + if (handle && password) { + const user = await this.api.createUser(handle, password); + + // this.showAndHide("#success-alert"); + // this.successAlert.innerText = `Thanks ${user.handle} your account has been created`; + + this.createHandleInput.value = null; + this.createPasswordInput.value = null; + + this.signIn(handle, password); + } + } + + async signIn(handle, password) { + if (handle && password) { + const response = await this.api.logInUser(handle, password); + + this.model.saveSession(response); + + this.showAndHide("#success-alert"); + this.successAlert.innerText = `Thanks ${response.session_key} you have successfully logged in`; + + this.loginHandleInput.value = null; + this.loginPasswordInput.value = null; + + this.showAndHide("#user-container"); + + this.showAndHide("#peep-container"); + } + } + + async newPeep(session_key, user_id, body) { + const peep = await this.api.createPeep(session_key, user_id, body); + + this.model.addNewPeep(peep); + this.displayPeeps(); + + this.peepInput.value = null; + } + + addPeepLi(peep) { + const time = this.formatTime(peep); + + this.peepList.innerHTML += `
  • +
    ${peep.user.handle}
    +

    ${time}

    +

    ${peep.body}

    +
  • `; + } + + formatTime(peep) { + let time = new Date(peep.created_at); + + return time.toDateString(); + } + + showAndHide(element) { + var x = document.querySelector(element); + if (x.style.display === "none") { + x.style.display = "block"; + } else { + x.style.display = "none"; + } + } +} + +module.exports = ChitterView; diff --git a/css/mdb.dark.min.css b/css/mdb.dark.min.css new file mode 100644 index 000000000..2731d18f3 --- /dev/null +++ b/css/mdb.dark.min.css @@ -0,0 +1,23 @@ +:root{--mdb-blue:#0d6efd;--mdb-indigo:#6610f2;--mdb-purple:#6f42c1;--mdb-pink:#d63384;--mdb-red:#dc3545;--mdb-orange:#fd7e14;--mdb-yellow:#ffc107;--mdb-green:#198754;--mdb-teal:#20c997;--mdb-cyan:#0dcaf0;--mdb-gray:#757575;--mdb-gray-dark:#4f4f4f;--mdb-gray-100:#f5f5f5;--mdb-gray-200:#eee;--mdb-gray-300:#e0e0e0;--mdb-gray-400:#bdbdbd;--mdb-gray-500:#9e9e9e;--mdb-gray-600:#757575;--mdb-gray-700:#616161;--mdb-gray-800:#4f4f4f;--mdb-gray-900:#262626;--mdb-primary:#1266f1;--mdb-secondary:#b23cfd;--mdb-success:#00b74a;--mdb-info:#39c0ed;--mdb-warning:#ffa900;--mdb-danger:#f93154;--mdb-light:#f9f9f9;--mdb-dark:#262626;--mdb-white:#fff;--mdb-black:#000;--mdb-primary-rgb:18,102,241;--mdb-secondary-rgb:178,60,253;--mdb-success-rgb:0,183,74;--mdb-info-rgb:57,192,237;--mdb-warning-rgb:255,169,0;--mdb-danger-rgb:249,49,84;--mdb-light-rgb:249,249,249;--mdb-dark-rgb:38,38,38;--mdb-white-rgb:255,255,255;--mdb-black-rgb:0,0,0;--mdb-body-color-rgb:79,79,79;--mdb-body-bg-rgb:255,255,255;--mdb-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--mdb-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--mdb-gradient:linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0));--mdb-body-font-family:var(--mdb-font-roboto);--mdb-body-font-size:1rem;--mdb-body-font-weight:400;--mdb-body-line-height:1.6;--mdb-body-color:#4f4f4f;--mdb-body-bg:#fff}*,:after,:before{box-sizing:border-box}@media(prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media(min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media(min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media(min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-mdb-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{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,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--mdb-font-monospace);font-size:1em;/*!rtl:ignore*/direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border:0 solid;border-color:inherit}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media(min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}/*!rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-6{font-size:2.5rem}}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#757575}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#757575}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--mdb-gutter-x,.75rem);padding-left:var(--mdb-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media(min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--mdb-gutter-x:1.5rem;--mdb-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--mdb-gutter-y)*-1);margin-right:calc(var(--mdb-gutter-x)*-0.5);margin-left:calc(var(--mdb-gutter-x)*-0.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--mdb-gutter-x)*0.5);padding-left:calc(var(--mdb-gutter-x)*0.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--mdb-gutter-x:0}.g-0,.gy-0{--mdb-gutter-y:0}.g-1,.gx-1{--mdb-gutter-x:0.25rem}.g-1,.gy-1{--mdb-gutter-y:0.25rem}.g-2,.gx-2{--mdb-gutter-x:0.5rem}.g-2,.gy-2{--mdb-gutter-y:0.5rem}.g-3,.gx-3{--mdb-gutter-x:1rem}.g-3,.gy-3{--mdb-gutter-y:1rem}.g-4,.gx-4{--mdb-gutter-x:1.5rem}.g-4,.gy-4{--mdb-gutter-y:1.5rem}.g-5,.gx-5{--mdb-gutter-x:3rem}.g-5,.gy-5{--mdb-gutter-y:3rem}@media(min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x:0}.g-sm-0,.gy-sm-0{--mdb-gutter-y:0}.g-sm-1,.gx-sm-1{--mdb-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x:1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y:1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x:3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y:3rem}}@media(min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x:0}.g-md-0,.gy-md-0{--mdb-gutter-y:0}.g-md-1,.gx-md-1{--mdb-gutter-x:0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y:0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x:0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y:0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x:1rem}.g-md-3,.gy-md-3{--mdb-gutter-y:1rem}.g-md-4,.gx-md-4{--mdb-gutter-x:1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y:1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x:3rem}.g-md-5,.gy-md-5{--mdb-gutter-y:3rem}}@media(min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x:0}.g-lg-0,.gy-lg-0{--mdb-gutter-y:0}.g-lg-1,.gx-lg-1{--mdb-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x:1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y:1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x:3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y:3rem}}@media(min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x:0}.g-xl-0,.gy-xl-0{--mdb-gutter-y:0}.g-xl-1,.gx-xl-1{--mdb-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x:1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y:1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x:3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y:3rem}}@media(min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x:0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y:0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y:3rem}}.table{--mdb-table-bg:transparent;--mdb-table-accent-bg:transparent;--mdb-table-striped-color:#212529;--mdb-table-striped-bg:rgba(0,0,0,0.02);--mdb-table-active-color:#212529;--mdb-table-active-bg:rgba(0,0,0,0.1);--mdb-table-hover-color:#212529;--mdb-table-hover-bg:rgba(0,0,0,0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg:var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg:var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg:var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg:#d0e0fc;--mdb-table-striped-bg:#c6d5ef;--mdb-table-striped-color:#000;--mdb-table-active-bg:#bbcae3;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c0cfe9;--mdb-table-hover-color:#000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg:#f0d8ff;--mdb-table-striped-bg:#e4cdf2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#d8c2e6;--mdb-table-active-color:#000;--mdb-table-hover-bg:#dec8ec;--mdb-table-hover-color:#000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg:#ccf1db;--mdb-table-striped-bg:#c2e5d0;--mdb-table-striped-color:#000;--mdb-table-active-bg:#b8d9c5;--mdb-table-active-color:#000;--mdb-table-hover-bg:#bddfcb;--mdb-table-hover-color:#000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg:#d7f2fb;--mdb-table-striped-bg:#cce6ee;--mdb-table-striped-color:#000;--mdb-table-active-bg:#c2dae2;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c7e0e8;--mdb-table-hover-color:#000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg:#fec;--mdb-table-striped-bg:#f2e2c2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e6d6b8;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ecdcbd;--mdb-table-hover-color:#000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg:#fed6dd;--mdb-table-striped-bg:#f1cbd2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e5c1c7;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ebc6cc;--mdb-table-hover-color:#000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg:#f9f9f9;--mdb-table-striped-bg:#ededed;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e0e0e0;--mdb-table-active-color:#000;--mdb-table-hover-bg:#e6e6e6;--mdb-table-hover-color:#000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg:#262626;--mdb-table-striped-bg:#313131;--mdb-table-striped-color:#fff;--mdb-table-active-bg:#3c3c3c;--mdb-table-active-color:#fff;--mdb-table-hover-bg:#363636;--mdb-table-hover-color:#fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.775rem}.form-text{margin-top:.25rem;font-size:.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.6em + .5rem + 2px);padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-repeat:no-repeat;background-position:50%;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");background-position:0;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%231266f1'/%3E%3C/svg%3E")}.form-switch .form-check-input:checked{background-position:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.valid-tooltip{color:#000;border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{padding-right:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) right calc(.4em + .1875rem)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.invalid-tooltip{color:#000;border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{padding-right:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) right calc(.4em + .1875rem)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:.125rem solid transparent;padding:.375rem .75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{border-color:#1266f1}.btn-primary:hover{background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{background-color:#0e52c1;border-color:#0e4db5}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary.disabled,.btn-primary:disabled{border-color:#1266f1}.btn-secondary{color:#000;border-color:#b23cfd}.btn-check:focus+.btn-secondary,.btn-secondary:focus,.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#000;border-color:#b23cfd}.btn-success{color:#000;border-color:#00b74a}.btn-check:focus+.btn-success,.btn-success:focus,.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success.disabled,.btn-success:disabled{color:#000;border-color:#00b74a}.btn-info{color:#000;border-color:#39c0ed}.btn-check:focus+.btn-info,.btn-info:focus,.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;border-color:#39c0ed}.btn-warning{color:#000;border-color:#ffa900}.btn-check:focus+.btn-warning,.btn-warning:focus,.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;border-color:#ffa900}.btn-danger{color:#000;border-color:#f93154}.btn-check:focus+.btn-danger,.btn-danger:focus,.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#000;border-color:#f93154}.btn-light{color:#000;border-color:#f9f9f9}.btn-check:focus+.btn-light,.btn-light:focus,.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;border-color:#f9f9f9}.btn-dark{border-color:#262626}.btn-check:focus+.btn-dark,.btn-dark:focus,.btn-dark:hover{background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark.disabled,.btn-dark:disabled{border-color:#262626}.btn-white{color:#000;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus,.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-white.disabled,.btn-white:disabled{color:#000;border-color:#fff}.btn-black,.btn-black:hover{border-color:#000}.btn-black:focus,.btn-check:focus+.btn-black{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.active,.btn-black:active,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{border-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.disabled,.btn-black:disabled{border-color:#000}.btn-outline-primary:hover{color:#fff;background-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#262626;border-color:#262626}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-white:focus,.btn-check:checked+.btn-outline-white:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{background-color:transparent}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black:active{color:#fff;background-color:#000;border-color:#000}.btn-check:active+.btn-outline-black:focus,.btn-check:checked+.btn-outline-black:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black.disabled,.btn-outline-black:disabled{background-color:transparent}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link.disabled,.btn-link:disabled{color:#757575}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-mdb-popper]{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-mdb-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-left:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#222}.dropdown-item.active,.dropdown-item:active{text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:hsla(0,0%,100%,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-.125rem}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropstart .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-.125rem}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;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}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:50%;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height,75vh);overflow-y:auto}@media(min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler,.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler,.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler,.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler,.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler,.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler,.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.55);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.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(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.5rem - 1px) calc(.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.5rem - 1px) calc(.5rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.75rem;margin-left:-.75rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.5rem;border-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{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-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{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-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider,"/") /*!rtl: var(--mdb-breadcrumb-divider, "/") */}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0}@media(prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid transparent}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.5625rem 1.5rem}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");transform:rotate(-180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion:reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{height:4px;font-size:.75rem;background-color:#eee;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:4px 4px}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn:before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}@keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(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:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.5rem;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}}@media(min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.5rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:focus,.list-group-item-black.list-group-item-action:hover{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #e0e0e0;border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;/*!rtl:ignore*/left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:after,.popover .popover-arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,.bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,.bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,.bs-popover-end>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,.bs-popover-end>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,.bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,.bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,.bs-popover-start>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,.bs-popover-start>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}/*!rtl:begin:ignore*/.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}/*!rtl:end:ignore*/.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}/*!rtl:options:{ + "autoRename": true, + "stringMap":[ { + "name" : "prev-next", + "search" : "prev", + "replace" : "next" + } ] +}*/.carousel-control-next-icon,.carousel-control-prev-icon{background-image:none}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(1turn)}}@keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem}.offcanvas-header .btn-close{padding:.5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom,.offcanvas-top{right:0;left:0;height:30vh;max-height:100%}.offcanvas-bottom{border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,.bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,.bs-tooltip-end .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,.bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,.bs-tooltip-start .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;text-align:center;background-color:#000}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#1266f1}.link-primary:focus,.link-primary:hover{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:focus,.link-secondary:hover{color:#c163fd}.link-success{color:#00b74a}.link-success:focus,.link-success:hover{color:#33c56e}.link-info{color:#39c0ed}.link-info:focus,.link-info:hover{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:focus,.link-warning:hover{color:#ffba33}.link-danger{color:#f93154}.link-danger:focus,.link-danger:hover{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:focus,.link-light:hover{color:#fafafa}.link-dark{color:#262626}.link-dark:focus,.link-dark:hover{color:#1e1e1e}.link-white,.link-white:focus,.link-white:hover{color:#fff}.link-black,.link-black:focus,.link-black:hover{color:#000}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--mdb-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio:100%}.ratio-4x3{--mdb-aspect-ratio:75%}.ratio-16x9{--mdb-aspect-ratio:56.25%}.ratio-21x9{--mdb-aspect-ratio:42.8571428571%}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{flex-direction:row;align-items:center}.hstack,.vstack{display:flex;align-self:stretch}.vstack{flex:1 1 auto;flex-direction:column}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-30{opacity:.3!important}.opacity-35{opacity:.35!important}.opacity-40{opacity:.4!important}.opacity-45{opacity:.45!important}.opacity-50{opacity:.5!important}.opacity-55{opacity:.55!important}.opacity-60{opacity:.6!important}.opacity-65{opacity:.65!important}.opacity-70{opacity:.7!important}.opacity-75{opacity:.75!important}.opacity-80{opacity:.8!important}.opacity-85{opacity:.85!important}.opacity-90{opacity:.9!important}.opacity-95{opacity:.95!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-0,.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07)!important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05)!important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05)!important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)!important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05)!important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21)!important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05)!important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05)!important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05)!important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05)!important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05)!important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05)!important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21)!important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21)!important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21)!important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21)!important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21)!important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21)!important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!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}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #e0e0e0!important}.border-0{border:0!important}.border-top{border-top:1px solid #e0e0e0!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #e0e0e0!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #e0e0e0!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #e0e0e0!important}.border-start-0{border-left:0!important}.border-success{border-color:#00b74a!important}.border-info{border-color:#39c0ed!important}.border-warning{border-color:#ffa900!important}.border-danger{border-color:#f93154!important}.border-light{border-color:#f9f9f9!important}.border-dark{border-color:#262626!important}.border-white{border-color:#fff!important}.border-black{border-color:#000!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!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}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!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}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.mb-6{margin-bottom:3.5rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.mb-9{margin-bottom:6rem!important}.mb-10{margin-bottom:8rem!important}.mb-11{margin-bottom:10rem!important}.mb-12{margin-bottom:12rem!important}.mb-13{margin-bottom:14rem!important}.mb-14{margin-bottom:16rem!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-1rem!important}.m-n4{margin:-1.5rem!important}.m-n5{margin:-3rem!important}.mx-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-1rem!important}.mt-n4{margin-top:-1.5rem!important}.mt-n5{margin-top:-3rem!important}.me-n1{margin-right:-.25rem!important}.me-n2{margin-right:-.5rem!important}.me-n3{margin-right:-1rem!important}.me-n4{margin-right:-1.5rem!important}.me-n5{margin-right:-3rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-1rem!important}.mb-n4{margin-bottom:-1.5rem!important}.mb-n5{margin-bottom:-3rem!important}.ms-n1{margin-left:-.25rem!important}.ms-n2{margin-left:-.5rem!important}.ms-n3{margin-left:-1rem!important}.ms-n4{margin-left:-1.5rem!important}.ms-n5{margin-left:-3rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--mdb-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.6!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}/*!rtl:begin:remove*/.text-break{word-wrap:break-word!important;word-break:break-word!important}/*!rtl:end:remove*/.text-primary{--mdb-text-opacity:1;color:rgba(var(--mdb-primary-rgb),var(--mdb-text-opacity))!important}.text-secondary{--mdb-text-opacity:1;color:rgba(var(--mdb-secondary-rgb),var(--mdb-text-opacity))!important}.text-success{--mdb-text-opacity:1;color:rgba(var(--mdb-success-rgb),var(--mdb-text-opacity))!important}.text-info{--mdb-text-opacity:1;color:rgba(var(--mdb-info-rgb),var(--mdb-text-opacity))!important}.text-warning{--mdb-text-opacity:1;color:rgba(var(--mdb-warning-rgb),var(--mdb-text-opacity))!important}.text-danger{--mdb-text-opacity:1;color:rgba(var(--mdb-danger-rgb),var(--mdb-text-opacity))!important}.text-light{--mdb-text-opacity:1;color:rgba(var(--mdb-light-rgb),var(--mdb-text-opacity))!important}.text-dark{--mdb-text-opacity:1;color:rgba(var(--mdb-dark-rgb),var(--mdb-text-opacity))!important}.text-white{--mdb-text-opacity:1;color:rgba(var(--mdb-white-rgb),var(--mdb-text-opacity))!important}.text-black{--mdb-text-opacity:1;color:rgba(var(--mdb-black-rgb),var(--mdb-text-opacity))!important}.text-body{--mdb-text-opacity:1;color:rgba(var(--mdb-body-color-rgb),var(--mdb-text-opacity))!important}.text-muted{--mdb-text-opacity:1;color:#757575!important}.text-black-50{--mdb-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--mdb-text-opacity:1;color:hsla(0,0%,100%,.5)!important}.text-reset{--mdb-text-opacity:1;color:inherit!important}.text-opacity-25{--mdb-text-opacity:0.25}.text-opacity-50{--mdb-text-opacity:0.5}.text-opacity-75{--mdb-text-opacity:0.75}.text-opacity-100{--mdb-text-opacity:1}.bg-primary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-primary-rgb),var(--mdb-bg-opacity))!important}.bg-secondary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-secondary-rgb),var(--mdb-bg-opacity))!important}.bg-success{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-success-rgb),var(--mdb-bg-opacity))!important}.bg-info{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-info-rgb),var(--mdb-bg-opacity))!important}.bg-warning{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-warning-rgb),var(--mdb-bg-opacity))!important}.bg-danger{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-danger-rgb),var(--mdb-bg-opacity))!important}.bg-light{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-light-rgb),var(--mdb-bg-opacity))!important}.bg-dark{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-dark-rgb),var(--mdb-bg-opacity))!important}.bg-white{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-white-rgb),var(--mdb-bg-opacity))!important}.bg-black{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-black-rgb),var(--mdb-bg-opacity))!important}.bg-body{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-body-bg-rgb),var(--mdb-bg-opacity))!important}.bg-transparent{--mdb-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--mdb-bg-opacity:0.1}.bg-opacity-25{--mdb-bg-opacity:0.25}.bg-opacity-50{--mdb-bg-opacity:0.5}.bg-opacity-75{--mdb-bg-opacity:0.75}.bg-opacity-100{--mdb-bg-opacity:1}.bg-gradient{background-image:var(--mdb-gradient)!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;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-4{border-radius:.375rem!important}.rounded-5{border-radius:.5rem!important}.rounded-6{border-radius:.75rem!important}.rounded-7{border-radius:1rem!important}.rounded-8{border-radius:1.25rem!important}.rounded-9{border-radius:1.5rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-end,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-end{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-start{border-bottom-left-radius:.25rem!important}.rounded-start{border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.ls-tighter{letter-spacing:-.05em!important}.ls-tight{letter-spacing:-.025em!important}.ls-normal{letter-spacing:0!important}.ls-wide{letter-spacing:.025em!important}.ls-wider{letter-spacing:.05em!important}.ls-widest{letter-spacing:.1em!important}@media(min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!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:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.mb-sm-6{margin-bottom:3.5rem!important}.mb-sm-7{margin-bottom:4rem!important}.mb-sm-8{margin-bottom:5rem!important}.mb-sm-9{margin-bottom:6rem!important}.mb-sm-10{margin-bottom:8rem!important}.mb-sm-11{margin-bottom:10rem!important}.mb-sm-12{margin-bottom:12rem!important}.mb-sm-13{margin-bottom:14rem!important}.mb-sm-14{margin-bottom:16rem!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.m-sm-n1{margin:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.m-sm-n3{margin:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mx-sm-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-sm-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-sm-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-sm-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-sm-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-sm-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-sm-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-sm-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-sm-n1{margin-top:-.25rem!important}.mt-sm-n2{margin-top:-.5rem!important}.mt-sm-n3{margin-top:-1rem!important}.mt-sm-n4{margin-top:-1.5rem!important}.mt-sm-n5{margin-top:-3rem!important}.me-sm-n1{margin-right:-.25rem!important}.me-sm-n2{margin-right:-.5rem!important}.me-sm-n3{margin-right:-1rem!important}.me-sm-n4{margin-right:-1.5rem!important}.me-sm-n5{margin-right:-3rem!important}.mb-sm-n1{margin-bottom:-.25rem!important}.mb-sm-n2{margin-bottom:-.5rem!important}.mb-sm-n3{margin-bottom:-1rem!important}.mb-sm-n4{margin-bottom:-1.5rem!important}.mb-sm-n5{margin-bottom:-3rem!important}.ms-sm-n1{margin-left:-.25rem!important}.ms-sm-n2{margin-left:-.5rem!important}.ms-sm-n3{margin-left:-1rem!important}.ms-sm-n4{margin-left:-1.5rem!important}.ms-sm-n5{margin-left:-3rem!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!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:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.mb-md-6{margin-bottom:3.5rem!important}.mb-md-7{margin-bottom:4rem!important}.mb-md-8{margin-bottom:5rem!important}.mb-md-9{margin-bottom:6rem!important}.mb-md-10{margin-bottom:8rem!important}.mb-md-11{margin-bottom:10rem!important}.mb-md-12{margin-bottom:12rem!important}.mb-md-13{margin-bottom:14rem!important}.mb-md-14{margin-bottom:16rem!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.m-md-n1{margin:-.25rem!important}.m-md-n2{margin:-.5rem!important}.m-md-n3{margin:-1rem!important}.m-md-n4{margin:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mx-md-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-md-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-md-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-md-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-md-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-md-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-md-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-md-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-md-n1{margin-top:-.25rem!important}.mt-md-n2{margin-top:-.5rem!important}.mt-md-n3{margin-top:-1rem!important}.mt-md-n4{margin-top:-1.5rem!important}.mt-md-n5{margin-top:-3rem!important}.me-md-n1{margin-right:-.25rem!important}.me-md-n2{margin-right:-.5rem!important}.me-md-n3{margin-right:-1rem!important}.me-md-n4{margin-right:-1.5rem!important}.me-md-n5{margin-right:-3rem!important}.mb-md-n1{margin-bottom:-.25rem!important}.mb-md-n2{margin-bottom:-.5rem!important}.mb-md-n3{margin-bottom:-1rem!important}.mb-md-n4{margin-bottom:-1.5rem!important}.mb-md-n5{margin-bottom:-3rem!important}.ms-md-n1{margin-left:-.25rem!important}.ms-md-n2{margin-left:-.5rem!important}.ms-md-n3{margin-left:-1rem!important}.ms-md-n4{margin-left:-1.5rem!important}.ms-md-n5{margin-left:-3rem!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!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:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.mb-lg-6{margin-bottom:3.5rem!important}.mb-lg-7{margin-bottom:4rem!important}.mb-lg-8{margin-bottom:5rem!important}.mb-lg-9{margin-bottom:6rem!important}.mb-lg-10{margin-bottom:8rem!important}.mb-lg-11{margin-bottom:10rem!important}.mb-lg-12{margin-bottom:12rem!important}.mb-lg-13{margin-bottom:14rem!important}.mb-lg-14{margin-bottom:16rem!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.m-lg-n1{margin:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.m-lg-n3{margin:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mx-lg-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-lg-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-lg-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-lg-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-lg-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-lg-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-lg-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-lg-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-lg-n1{margin-top:-.25rem!important}.mt-lg-n2{margin-top:-.5rem!important}.mt-lg-n3{margin-top:-1rem!important}.mt-lg-n4{margin-top:-1.5rem!important}.mt-lg-n5{margin-top:-3rem!important}.me-lg-n1{margin-right:-.25rem!important}.me-lg-n2{margin-right:-.5rem!important}.me-lg-n3{margin-right:-1rem!important}.me-lg-n4{margin-right:-1.5rem!important}.me-lg-n5{margin-right:-3rem!important}.mb-lg-n1{margin-bottom:-.25rem!important}.mb-lg-n2{margin-bottom:-.5rem!important}.mb-lg-n3{margin-bottom:-1rem!important}.mb-lg-n4{margin-bottom:-1.5rem!important}.mb-lg-n5{margin-bottom:-3rem!important}.ms-lg-n1{margin-left:-.25rem!important}.ms-lg-n2{margin-left:-.5rem!important}.ms-lg-n3{margin-left:-1rem!important}.ms-lg-n4{margin-left:-1.5rem!important}.ms-lg-n5{margin-left:-3rem!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!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:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.mb-xl-6{margin-bottom:3.5rem!important}.mb-xl-7{margin-bottom:4rem!important}.mb-xl-8{margin-bottom:5rem!important}.mb-xl-9{margin-bottom:6rem!important}.mb-xl-10{margin-bottom:8rem!important}.mb-xl-11{margin-bottom:10rem!important}.mb-xl-12{margin-bottom:12rem!important}.mb-xl-13{margin-bottom:14rem!important}.mb-xl-14{margin-bottom:16rem!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.m-xl-n1{margin:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.m-xl-n3{margin:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mx-xl-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-xl-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-xl-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-xl-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-xl-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xl-n1{margin-top:-.25rem!important}.mt-xl-n2{margin-top:-.5rem!important}.mt-xl-n3{margin-top:-1rem!important}.mt-xl-n4{margin-top:-1.5rem!important}.mt-xl-n5{margin-top:-3rem!important}.me-xl-n1{margin-right:-.25rem!important}.me-xl-n2{margin-right:-.5rem!important}.me-xl-n3{margin-right:-1rem!important}.me-xl-n4{margin-right:-1.5rem!important}.me-xl-n5{margin-right:-3rem!important}.mb-xl-n1{margin-bottom:-.25rem!important}.mb-xl-n2{margin-bottom:-.5rem!important}.mb-xl-n3{margin-bottom:-1rem!important}.mb-xl-n4{margin-bottom:-1.5rem!important}.mb-xl-n5{margin-bottom:-3rem!important}.ms-xl-n1{margin-left:-.25rem!important}.ms-xl-n2{margin-left:-.5rem!important}.ms-xl-n3{margin-left:-1rem!important}.ms-xl-n4{margin-left:-1.5rem!important}.ms-xl-n5{margin-left:-3rem!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media(min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.mb-xxl-6{margin-bottom:3.5rem!important}.mb-xxl-7{margin-bottom:4rem!important}.mb-xxl-8{margin-bottom:5rem!important}.mb-xxl-9{margin-bottom:6rem!important}.mb-xxl-10{margin-bottom:8rem!important}.mb-xxl-11{margin-bottom:10rem!important}.mb-xxl-12{margin-bottom:12rem!important}.mb-xxl-13{margin-bottom:14rem!important}.mb-xxl-14{margin-bottom:16rem!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.m-xxl-n1{margin:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.m-xxl-n3{margin:-1rem!important}.m-xxl-n4{margin:-1.5rem!important}.m-xxl-n5{margin:-3rem!important}.mx-xxl-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-xxl-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-xxl-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-xxl-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-xxl-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-xxl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xxl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xxl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xxl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xxl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xxl-n1{margin-top:-.25rem!important}.mt-xxl-n2{margin-top:-.5rem!important}.mt-xxl-n3{margin-top:-1rem!important}.mt-xxl-n4{margin-top:-1.5rem!important}.mt-xxl-n5{margin-top:-3rem!important}.me-xxl-n1{margin-right:-.25rem!important}.me-xxl-n2{margin-right:-.5rem!important}.me-xxl-n3{margin-right:-1rem!important}.me-xxl-n4{margin-right:-1.5rem!important}.me-xxl-n5{margin-right:-3rem!important}.mb-xxl-n1{margin-bottom:-.25rem!important}.mb-xxl-n2{margin-bottom:-.5rem!important}.mb-xxl-n3{margin-bottom:-1rem!important}.mb-xxl-n4{margin-bottom:-1.5rem!important}.mb-xxl-n5{margin-bottom:-3rem!important}.ms-xxl-n1{margin-left:-.25rem!important}.ms-xxl-n2{margin-left:-.5rem!important}.ms-xxl-n3{margin-left:-1rem!important}.ms-xxl-n4{margin-left:-1.5rem!important}.ms-xxl-n5{margin-left:-3rem!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media(min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!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:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto:"Roboto",sans-serif;--mdb-bg-opacity:1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-left:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width:1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18,102,241,var(--mdb-bg-opacity))!important}.bg-secondary{background-color:rgba(178,60,253,var(--mdb-bg-opacity))!important}.bg-success{background-color:rgba(0,183,74,var(--mdb-bg-opacity))!important}.bg-info{background-color:rgba(57,192,237,var(--mdb-bg-opacity))!important}.bg-warning{background-color:rgba(255,169,0,var(--mdb-bg-opacity))!important}.bg-danger{background-color:rgba(249,49,84,var(--mdb-bg-opacity))!important}.bg-light{background-color:rgba(249,249,249,var(--mdb-bg-opacity))!important}.bg-dark{background-color:rgba(38,38,38,var(--mdb-bg-opacity))!important}.bg-white{background-color:rgba(255,255,255,var(--mdb-bg-opacity))!important}.bg-black{background-color:rgba(0,0,0,var(--mdb-bg-opacity))!important}/*! + * # Semantic UI 2.4.2 - Flag + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-left-radius:5px;border-top-right-radius:5px;text-align:center;max-width:150px;margin:10px auto 0}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){margin:0 .5em 0 0;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:before,i.flag:not(.icon){display:inline-block;width:16px;height:11px}i.flag:before{content:"";background:url(https://mdbootstrap.com/img/svg/flags.png) no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:0 0!important}i.flag-ae:before,i.flag-uae:before,i.flag-united-arab-emirates:before{background-position:0 -26px!important}i.flag-af:before,i.flag-afghanistan:before{background-position:0 -52px!important}i.flag-ag:before,i.flag-antigua:before{background-position:0 -78px!important}i.flag-ai:before,i.flag-anguilla:before{background-position:0 -104px!important}i.flag-al:before,i.flag-albania:before{background-position:0 -130px!important}i.flag-am:before,i.flag-armenia:before{background-position:0 -156px!important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:0 -182px!important}i.flag-angola:before,i.flag-ao:before{background-position:0 -208px!important}i.flag-ar:before,i.flag-argentina:before{background-position:0 -234px!important}i.flag-american-samoa:before,i.flag-as:before{background-position:0 -260px!important}i.flag-at:before,i.flag-austria:before{background-position:0 -286px!important}i.flag-au:before,i.flag-australia:before{background-position:0 -312px!important}i.flag-aruba:before,i.flag-aw:before{background-position:0 -338px!important}i.flag-aland-islands:before,i.flag-ax:before{background-position:0 -364px!important}i.flag-az:before,i.flag-azerbaijan:before{background-position:0 -390px!important}i.flag-ba:before,i.flag-bosnia:before{background-position:0 -416px!important}i.flag-barbados:before,i.flag-bb:before{background-position:0 -442px!important}i.flag-bangladesh:before,i.flag-bd:before{background-position:0 -468px!important}i.flag-be:before,i.flag-belgium:before{background-position:0 -494px!important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:0 -520px!important}i.flag-bg:before,i.flag-bulgaria:before{background-position:0 -546px!important}i.flag-bahrain:before,i.flag-bh:before{background-position:0 -572px!important}i.flag-bi:before,i.flag-burundi:before{background-position:0 -598px!important}i.flag-benin:before,i.flag-bj:before{background-position:0 -624px!important}i.flag-bermuda:before,i.flag-bm:before{background-position:0 -650px!important}i.flag-bn:before,i.flag-brunei:before{background-position:0 -676px!important}i.flag-bo:before,i.flag-bolivia:before{background-position:0 -702px!important}i.flag-br:before,i.flag-brazil:before{background-position:0 -728px!important}i.flag-bahamas:before,i.flag-bs:before{background-position:0 -754px!important}i.flag-bhutan:before,i.flag-bt:before{background-position:0 -780px!important}i.flag-bouvet-island:before,i.flag-bv:before{background-position:0 -806px!important}i.flag-botswana:before,i.flag-bw:before{background-position:0 -832px!important}i.flag-belarus:before,i.flag-by:before{background-position:0 -858px!important}i.flag-belize:before,i.flag-bz:before{background-position:0 -884px!important}i.flag-ca:before,i.flag-canada:before{background-position:0 -910px!important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:0 -962px!important}i.flag-cd:before,i.flag-congo:before{background-position:0 -988px!important}i.flag-central-african-republic:before,i.flag-cf:before{background-position:0 -1014px!important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:0 -1040px!important}i.flag-ch:before,i.flag-switzerland:before{background-position:0 -1066px!important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:0 -1092px!important}i.flag-ck:before,i.flag-cook-islands:before{background-position:0 -1118px!important}i.flag-chile:before,i.flag-cl:before{background-position:0 -1144px!important}i.flag-cameroon:before,i.flag-cm:before{background-position:0 -1170px!important}i.flag-china:before,i.flag-cn:before{background-position:0 -1196px!important}i.flag-co:before,i.flag-colombia:before{background-position:0 -1222px!important}i.flag-costa-rica:before,i.flag-cr:before{background-position:0 -1248px!important}i.flag-cs:before,i.flag-serbia:before{background-position:0 -1274px!important}i.flag-cu:before,i.flag-cuba:before{background-position:0 -1300px!important}i.flag-cape-verde:before,i.flag-cv:before{background-position:0 -1326px!important}i.flag-christmas-island:before,i.flag-cx:before{background-position:0 -1352px!important}i.flag-cy:before,i.flag-cyprus:before{background-position:0 -1378px!important}i.flag-cz:before,i.flag-czech-republic:before{background-position:0 -1404px!important}i.flag-de:before,i.flag-germany:before{background-position:0 -1430px!important}i.flag-dj:before,i.flag-djibouti:before{background-position:0 -1456px!important}i.flag-denmark:before,i.flag-dk:before{background-position:0 -1482px!important}i.flag-dm:before,i.flag-dominica:before{background-position:0 -1508px!important}i.flag-do:before,i.flag-dominican-republic:before{background-position:0 -1534px!important}i.flag-algeria:before,i.flag-dz:before{background-position:0 -1560px!important}i.flag-ec:before,i.flag-ecuador:before{background-position:0 -1586px!important}i.flag-ee:before,i.flag-estonia:before{background-position:0 -1612px!important}i.flag-eg:before,i.flag-egypt:before{background-position:0 -1638px!important}i.flag-eh:before,i.flag-western-sahara:before{background-position:0 -1664px!important}i.flag-england:before,i.flag-gb-eng:before{background-position:0 -1690px!important}i.flag-er:before,i.flag-eritrea:before{background-position:0 -1716px!important}i.flag-es:before,i.flag-spain:before{background-position:0 -1742px!important}i.flag-et:before,i.flag-ethiopia:before{background-position:0 -1768px!important}i.flag-eu:before,i.flag-european-union:before{background-position:0 -1794px!important}i.flag-fi:before,i.flag-finland:before{background-position:0 -1846px!important}i.flag-fiji:before,i.flag-fj:before{background-position:0 -1872px!important}i.flag-falkland-islands:before,i.flag-fk:before{background-position:0 -1898px!important}i.flag-fm:before,i.flag-micronesia:before{background-position:0 -1924px!important}i.flag-faroe-islands:before,i.flag-fo:before{background-position:0 -1950px!important}i.flag-fr:before,i.flag-france:before{background-position:0 -1976px!important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0!important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px!important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px!important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px!important}i.flag-french-guiana:before,i.flag-gf:before{background-position:-36px -104px!important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px!important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px!important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px!important}i.flag-gambia:before,i.flag-gm:before{background-position:-36px -208px!important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px!important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px!important}i.flag-equatorial-guinea:before,i.flag-gq:before{background-position:-36px -286px!important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px!important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px!important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px!important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px!important}i.flag-guinea-bissau:before,i.flag-gw:before{background-position:-36px -416px!important}i.flag-guyana:before,i.flag-gy:before{background-position:-36px -442px!important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px!important}i.flag-heard-island:before,i.flag-hm:before{background-position:-36px -494px!important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px!important}i.flag-croatia:before,i.flag-hr:before{background-position:-36px -546px!important}i.flag-haiti:before,i.flag-ht:before{background-position:-36px -572px!important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px!important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px!important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px!important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px!important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px!important}i.flag-indian-ocean-territory:before,i.flag-io:before{background-position:-36px -728px!important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px!important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px!important}i.flag-iceland:before,i.flag-is:before{background-position:-36px -806px!important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px!important}i.flag-jamaica:before,i.flag-jm:before{background-position:-36px -858px!important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px!important}i.flag-japan:before,i.flag-jp:before{background-position:-36px -910px!important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px!important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px!important}i.flag-cambodia:before,i.flag-kh:before{background-position:-36px -988px!important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px!important}i.flag-comoros:before,i.flag-km:before{background-position:-36px -1040px!important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px!important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px!important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px!important}i.flag-kuwait:before,i.flag-kw:before{background-position:-36px -1144px!important}i.flag-cayman-islands:before,i.flag-ky:before{background-position:-36px -1170px!important}i.flag-kazakhstan:before,i.flag-kz:before{background-position:-36px -1196px!important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px!important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px!important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px!important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px!important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px!important}i.flag-liberia:before,i.flag-lr:before{background-position:-36px -1352px!important}i.flag-lesotho:before,i.flag-ls:before{background-position:-36px -1378px!important}i.flag-lithuania:before,i.flag-lt:before{background-position:-36px -1404px!important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px!important}i.flag-latvia:before,i.flag-lv:before{background-position:-36px -1456px!important}i.flag-libya:before,i.flag-ly:before{background-position:-36px -1482px!important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px!important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px!important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px!important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px!important}i.flag-madagascar:before,i.flag-mg:before{background-position:-36px -1613px!important}i.flag-marshall-islands:before,i.flag-mh:before{background-position:-36px -1639px!important}i.flag-macedonia:before,i.flag-mk:before{background-position:-36px -1665px!important}i.flag-mali:before,i.flag-ml:before{background-position:-36px -1691px!important}i.flag-burma:before,i.flag-mm:before,i.flag-myanmar:before{background-position:-73px -1821px!important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px!important}i.flag-macau:before,i.flag-mo:before{background-position:-36px -1769px!important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px!important}i.flag-martinique:before,i.flag-mq:before{background-position:-36px -1821px!important}i.flag-mauritania:before,i.flag-mr:before{background-position:-36px -1847px!important}i.flag-montserrat:before,i.flag-ms:before{background-position:-36px -1873px!important}i.flag-malta:before,i.flag-mt:before{background-position:-36px -1899px!important}i.flag-mauritius:before,i.flag-mu:before{background-position:-36px -1925px!important}i.flag-maldives:before,i.flag-mv:before{background-position:-36px -1951px!important}i.flag-malawi:before,i.flag-mw:before{background-position:-36px -1977px!important}i.flag-mexico:before,i.flag-mx:before{background-position:-72px 0!important}i.flag-malaysia:before,i.flag-my:before{background-position:-72px -26px!important}i.flag-mozambique:before,i.flag-mz:before{background-position:-72px -52px!important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px!important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px!important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px!important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px!important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px!important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px!important}i.flag-netherlands:before,i.flag-nl:before{background-position:-72px -234px!important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px!important}i.flag-nepal:before,i.flag-np:before{background-position:-72px -286px!important}i.flag-nauru:before,i.flag-nr:before{background-position:-72px -312px!important}i.flag-niue:before,i.flag-nu:before{background-position:-72px -338px!important}i.flag-new-zealand:before,i.flag-nz:before{background-position:-72px -364px!important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px!important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px!important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px!important}i.flag-french-polynesia:before,i.flag-pf:before{background-position:-72px -468px!important}i.flag-new-guinea:before,i.flag-pg:before{background-position:-72px -494px!important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px!important}i.flag-pakistan:before,i.flag-pk:before{background-position:-72px -546px!important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px!important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px!important}i.flag-pitcairn-islands:before,i.flag-pn:before{background-position:-72px -624px!important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px!important}i.flag-palestine:before,i.flag-ps:before{background-position:-72px -676px!important}i.flag-portugal:before,i.flag-pt:before{background-position:-72px -702px!important}i.flag-palau:before,i.flag-pw:before{background-position:-72px -728px!important}i.flag-paraguay:before,i.flag-py:before{background-position:-72px -754px!important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px!important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px!important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px!important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px!important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px!important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px!important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px!important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px!important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px!important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px!important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px!important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px!important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px!important}i.flag-saint-helena:before,i.flag-sh:before{background-position:-72px -1118px!important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px!important}i.flag-jan-mayen:before,i.flag-sj:before,i.flag-svalbard:before{background-position:-72px -1170px!important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px!important}i.flag-sierra-leone:before,i.flag-sl:before{background-position:-72px -1222px!important}i.flag-san-marino:before,i.flag-sm:before{background-position:-72px -1248px!important}i.flag-senegal:before,i.flag-sn:before{background-position:-72px -1274px!important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px!important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px!important}i.flag-sao-tome:before,i.flag-st:before{background-position:-72px -1352px!important}i.flag-el-salvador:before,i.flag-sv:before{background-position:-72px -1378px!important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px!important}i.flag-swaziland:before,i.flag-sz:before{background-position:-72px -1430px!important}i.flag-caicos-islands:before,i.flag-tc:before{background-position:-72px -1456px!important}i.flag-chad:before,i.flag-td:before{background-position:-72px -1482px!important}i.flag-french-territories:before,i.flag-tf:before{background-position:-72px -1508px!important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px!important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px!important}i.flag-tajikistan:before,i.flag-tj:before{background-position:-72px -1586px!important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px!important}i.flag-timorleste:before,i.flag-tl:before{background-position:-72px -1638px!important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px!important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px!important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px!important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px!important}i.flag-trinidad:before,i.flag-tt:before{background-position:-72px -1768px!important}i.flag-tuvalu:before,i.flag-tv:before{background-position:-72px -1794px!important}i.flag-taiwan:before,i.flag-tw:before{background-position:-72px -1820px!important}i.flag-tanzania:before,i.flag-tz:before{background-position:-72px -1846px!important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px!important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px!important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px!important}i.flag-america:before,i.flag-united-states:before,i.flag-us:before{background-position:-72px -1950px!important}i.flag-uruguay:before,i.flag-uy:before{background-position:-72px -1976px!important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0!important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px!important}i.flag-saint-vincent:before,i.flag-vc:before{background-position:-108px -52px!important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px!important}i.flag-british-virgin-islands:before,i.flag-vg:before{background-position:-108px -104px!important}i.flag-us-virgin-islands:before,i.flag-vi:before{background-position:-108px -130px!important}i.flag-vietnam:before,i.flag-vn:before{background-position:-108px -156px!important}i.flag-vanuatu:before,i.flag-vu:before{background-position:-108px -182px!important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px!important}i.flag-wallis-and-futuna:before,i.flag-wf:before{background-position:-108px -234px!important}i.flag-samoa:before,i.flag-ws:before{background-position:-108px -260px!important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px!important}i.flag-mayotte:before,i.flag-yt:before{background-position:-108px -312px!important}i.flag-south-africa:before,i.flag-za:before{background-position:-108px -338px!important}i.flag-zambia:before,i.flag-zm:before{background-position:-108px -364px!important}i.flag-zimbabwe:before,i.flag-zw:before{background-position:-108px -390px!important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:50%}.mask{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.card.hover-shadow,.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow:hover,.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.card.hover-shadow-soft,.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow-soft:hover,.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:right}.form-outline .trailing{position:absolute;right:10px;left:auto;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-right:2rem!important}.form-outline .form-control{min-height:auto;padding:.33em .75em;border:0;transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;left:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:0 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;left:0;top:0;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid #bdbdbd;box-sizing:border-box;transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{left:0;top:0;height:100%;width:.5rem;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-right:none;border-left:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control.active::-moz-placeholder,.form-outline .form-control:focus::-moz-placeholder{opacity:1}.form-outline .form-control.active::placeholder,.form-outline .form-control:focus::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none!important}.form-outline .form-control.active~.form-label,.form-outline .form-control:focus~.form-label{transform:translateY(-1rem) translateY(.1rem) scale(.8)}.form-outline .form-control.active~.form-notch .form-notch-middle,.form-outline .form-control:focus~.form-notch .form-notch-middle{border-right:none;border-left:none;border-top:1px solid transparent}.form-outline .form-control.active~.form-notch .form-notch-leading,.form-outline .form-control:focus~.form-notch .form-notch-leading{border-right:none}.form-outline .form-control.active~.form-notch .form-notch-trailing,.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-left:none}.form-outline .form-control.disabled,.form-outline .form-control:disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-left:.75em;padding-right:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg.active~.form-label,.form-outline .form-control.form-control-lg:focus~.form-label{transform:translateY(-1.25rem) translateY(.1rem) scale(.8)}.form-outline .form-control.form-control-sm{padding:.43em .99em .35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm.active~.form-label,.form-outline .form-control.form-control-sm:focus~.form-label{transform:translateY(-.85rem) translateY(.1rem) scale(.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid transparent}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control::placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control[readonly]{background-color:hsla(0,0%,100%,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:transparent}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:"";position:absolute;border-radius:50%;width:.875rem;height:.875rem;opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0 0 0 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0 0 0 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:"";position:absolute}.form-check-input:checked:focus:before{transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-right:8px}.form-check-input[type=checkbox]:focus:after{content:"";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg) /*!rtl:ignore*/;width:.375rem;height:.8125rem;border:.125rem solid #fff;border-top:0;border-left:0 /*!rtl:ignore*/;margin-left:.25rem;margin-top:-1px}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-right:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:"";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;transition:border-color;transform:translate(-50%,-50%);position:absolute;left:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-left:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-right:8px}.form-switch .form-check-input:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked,.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-left:1.0625rem;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;margin-top:-3px;margin-left:1.0625rem;transition:background-color .2s,transform .2s}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,.form-control[type=file]::-webkit-file-upload-button{background-color:transparent}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;outline:0}.input-group-text{padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-left:1px;margin-right:1px}.input-group-text>.form-check-input[type=radio]{margin-right:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-left:0}.input-group.form-outline input+.input-group-text{border:0;border-left:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child),.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.input-group .form-outline:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child),.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-left:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.input-group .invalid-feedback,.input-group .valid-feedback,.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{width:auto;color:#00b74a;margin-top:-.75rem}.valid-feedback,.valid-tooltip{position:absolute;display:none;font-size:.875rem}.valid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(0,183,74,.9);border-radius:.25rem!important;color:#fff}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{margin-bottom:1rem;background-image:none;border-color:#00b74a}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-outline .form-control.is-valid~.form-label,.was-validated .form-outline .form-control:valid~.form-label{color:#00b74a}.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing{border-color:#00b74a}.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid transparent}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-select.is-valid,.was-validated .form-select:valid{border-color:#00b74a}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-select.is-valid~.valid-feedback,.was-validated .form-select:valid~.valid-feedback{margin-top:0}.input-group .form-control.is-valid,.was-validated .input-group .form-control:valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text{border-color:#00b74a}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#00b74a}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#00b74a}.form-check-input.is-valid:checked:focus:before,.was-validated .form-check-input:valid:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:none}.form-check-input.is-valid:focus:before,.was-validated .form-check-input:valid:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.form-check-input.is-valid[type=checkbox]:checked:focus,.was-validated .form-check-input:valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.form-check-input.is-valid[type=radio]:checked,.was-validated .form-check-input:valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.form-check-input.is-valid[type=radio]:checked:focus:before,.was-validated .form-check-input:valid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid[type=radio]:checked:after,.was-validated .form-check-input:valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.form-switch .form-check-input.is-valid:focus:before,.was-validated .form-switch .form-check-input:valid:focus:before{box-shadow:3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-valid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-valid:checked:focus:before,.was-validated .form-switch .form-check-input:valid:checked:focus:before{box-shadow:3px -1px 0 13px #00b74a}.invalid-feedback{width:auto;color:#f93154;margin-top:-.75rem}.invalid-feedback,.invalid-tooltip{position:absolute;display:none;font-size:.875rem}.invalid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(249,49,84,.9);border-radius:.25rem!important;color:#fff}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{margin-bottom:1rem;background-image:none;border-color:#f93154}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-outline .form-control.is-invalid~.form-label,.was-validated .form-outline .form-control:invalid~.form-label{color:#f93154}.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing{border-color:#f93154}.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid transparent}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#f93154}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-select.is-invalid~.invalid-feedback,.was-validated .form-select:invalid~.invalid-feedback{margin-top:0}.input-group .form-control.is-invalid,.was-validated .input-group .form-control:invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text{border-color:#f93154}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#f93154}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#f93154}.form-check-input.is-invalid:checked:focus:before,.was-validated .form-check-input:invalid:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:none}.form-check-input.is-invalid:focus:before,.was-validated .form-check-input:invalid:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.form-check-input.is-invalid[type=checkbox]:checked:focus,.was-validated .form-check-input:invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.form-check-input.is-invalid[type=radio]:checked,.was-validated .form-check-input:invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.form-check-input.is-invalid[type=radio]:checked:focus:before,.was-validated .form-check-input:invalid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid[type=radio]:checked:after,.was-validated .form-check-input:invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.form-switch .form-check-input.is-invalid:focus:before,.was-validated .form-switch .form-check-input:invalid:focus:before{box-shadow:3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-invalid:checked:focus:before,.was-validated .form-switch .form-check-input:invalid:checked:focus:before{box-shadow:3px -1px 0 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg:transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem;font-size:.75rem;line-height:1.5}.btn.active,.btn.active:focus,.btn.focus,.btn:active,.btn:active:focus,.btn:focus,.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem}[class*=btn-outline-].focus,[class*=btn-outline-]:focus,[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-].active,[class*=btn-outline-].active:focus,[class*=btn-outline-].disabled,[class*=btn-outline-]:active,[class*=btn-outline-]:active:focus,[class*=btn-outline-]:disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}.btn-group-lg>[class*=btn-outline-].btn,[class*=btn-outline-].btn-lg{padding:.625rem 1.5625rem .5625rem}.btn-group-sm>[class*=btn-outline-].btn,[class*=btn-outline-].btn-sm{padding:.25rem .875rem .1875rem}.btn-check:active+.btn-primary:focus,.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-primary:focus,.btn-check:checked+.btn-secondary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-primary.dropdown-toggle:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success{color:#fff;background-color:#00b74a}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#00913b}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#fff;background-color:#d99000}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light.disabled,.btn-light:disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#131313}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white.focus,.btn-white:focus,.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white.disabled,.btn-white:disabled{color:#4f4f4f;background-color:#fff}.btn-black,.btn-black.active,.btn-black.focus,.btn-black:active,.btn-black:focus,.btn-black:hover,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black.disabled,.btn-black:disabled{color:#fff;background-color:#000}.btn-outline-primary:hover{background-color:rgba(0,0,0,.02)}.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:focus{background-color:transparent}.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:none}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary:hover{background-color:rgba(0,0,0,.02)}.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:focus{background-color:transparent}.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:none}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success.focus,.btn-outline-success:active,.btn-outline-success:focus{color:#00b74a;background-color:transparent}.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:none}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#00b74a}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info.focus,.btn-outline-info:active,.btn-outline-info:focus{color:#39c0ed;background-color:transparent}.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:none}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#39c0ed}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning.focus,.btn-outline-warning:active,.btn-outline-warning:focus{color:#ffa900;background-color:transparent}.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:none}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffa900}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger.focus,.btn-outline-danger:active,.btn-outline-danger:focus{color:#f93154;background-color:transparent}.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:none}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#f93154}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light.focus,.btn-outline-light:active,.btn-outline-light:focus{color:#f9f9f9;background-color:transparent}.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:none}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f9f9f9}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark.focus,.btn-outline-dark:active,.btn-outline-dark:focus{color:#262626;background-color:transparent}.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:none}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#262626}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white.focus,.btn-outline-white:active,.btn-outline-white:focus{color:#fff;background-color:transparent}.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:none}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black.focus,.btn-outline-black:active,.btn-outline-black:focus{color:#000;background-color:transparent}.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:none}.btn-outline-black.disabled,.btn-outline-black:disabled{color:#000}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black{color:#fff;background-color:#000}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.6875rem .6875rem;font-size:.875rem;line-height:1.6}.btn-group-sm>.btn,.btn-sm{padding:.375rem 1rem .3125rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link.focus,.btn-link:focus,.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link.active,.btn-link.active:focus,.btn-link:active,.btn-link:active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link.disabled,.btn-link:disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fab,.btn-floating .far,.btn-floating .fas{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fab,.btn-floating.btn-lg .far,.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fab,.btn-group-lg>.btn-floating.btn .far,.btn-group-lg>.btn-floating.btn .fas{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fab,.btn-floating.btn-sm .far,.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fab,.btn-group-sm>.btn-floating.btn .far,.btn-group-sm>.btn-floating.btn .fas{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fab,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fas{width:2.0625rem;line-height:2.0625rem}.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .fab,[class*=btn-outline-].btn-floating.btn-lg .far,[class*=btn-outline-].btn-floating.btn-lg .fas{width:2.5625rem;line-height:2.5625rem}.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .fab,[class*=btn-outline-].btn-floating.btn-sm .far,[class*=btn-outline-].btn-floating.btn-sm .fas{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;right:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;left:0;right:0;display:flex;flex-direction:column;padding:0;margin:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn.active ul,.fixed-action-btn ul a.btn.shown{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child,.dropdown-menu>li:first-child .dropdown-item{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child,.dropdown-menu>li:last-child .dropdown-item{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item.active,.dropdown-item:active,.dropdown-item:focus,.dropdown-item:hover{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none!important;-webkit-animation:unset!important;animation:unset!important}}@-webkit-keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{0%{opacity:1}to{opacity:0}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group-vertical.active,.btn-group-vertical.active:focus,.btn-group-vertical.focus,.btn-group-vertical:active,.btn-group-vertical:active:focus,.btn-group-vertical:focus,.btn-group-vertical:hover,.btn-group.active,.btn-group.active:focus,.btn-group.focus,.btn-group:active,.btn-group:active:focus,.btn-group:focus,.btn-group:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group-vertical.disabled,.btn-group-vertical:disabled,.btn-group.disabled,.btn-group:disabled,fieldset:disabled .btn-group,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group>.btn,.btn-group>.btn-group{box-shadow:none}.btn-group-vertical>.btn-link:first-child,.btn-group>.btn-link:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-link:last-child,.btn-group>.btn-link:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border:solid transparent;border-width:0 0 2px;border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px}.nav-tabs .nav-link:hover{background-color:#f5f5f5}.nav-pills{margin-left:-.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-right:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-dark .navbar-toggler-icon,.navbar-light .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.card-header{background-color:hsla(0,0%,100%,0)}.card-body[class*=bg-]{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.card-footer{background-color:hsla(0,0%,100%,0)}.card-img-left{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.navbar .breadcrumb{background-color:transparent;margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:focus,.navbar .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{font-size:.9rem;background-color:transparent;border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link,.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:not(:first-child) .page-link{margin-left:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-circle .page-item:first-child .page-link,.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-left:.841rem;padding-right:.841rem}.pagination-circle.pagination-lg .page-link{padding-left:1.399414rem;padding-right:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-left:.696rem;padding-right:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-left:-.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-.1rem;margin-left:-.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action,.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:focus,.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content,.toast{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:transparent;color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:none;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:transparent;box-shadow:none;color:#1266f1;font-weight:600;border-left:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0,0,.15,1),cubic-bezier(0,0,.15,1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle,rgba(178,60,253,.2) 0,rgba(178,60,253,.3) 40%,rgba(178,60,253,.4) 50%,rgba(178,60,253,.5) 60%,rgba(178,60,253,0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle,rgba(0,183,74,.2) 0,rgba(0,183,74,.3) 40%,rgba(0,183,74,.4) 50%,rgba(0,183,74,.5) 60%,rgba(0,183,74,0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle,rgba(57,192,237,.2) 0,rgba(57,192,237,.3) 40%,rgba(57,192,237,.4) 50%,rgba(57,192,237,.5) 60%,rgba(57,192,237,0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle,rgba(255,169,0,.2) 0,rgba(255,169,0,.3) 40%,rgba(255,169,0,.4) 50%,rgba(255,169,0,.5) 60%,rgba(255,169,0,0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle,rgba(249,49,84,.2) 0,rgba(249,49,84,.3) 40%,rgba(249,49,84,.4) 50%,rgba(249,49,84,.5) 60%,rgba(249,49,84,0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,97.6%,.2) 0,hsla(0,0%,97.6%,.3) 40%,hsla(0,0%,97.6%,.4) 50%,hsla(0,0%,97.6%,.5) 60%,hsla(0,0%,97.6%,0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle,rgba(38,38,38,.2) 0,rgba(38,38,38,.3) 40%,rgba(38,38,38,.4) 50%,rgba(38,38,38,.5) 60%,rgba(38,38,38,0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%)}.range{position:relative}.range .thumb{height:30px;width:30px;top:-35px;margin-left:-15px;text-align:center;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb,.range .thumb:after{position:absolute;display:block;border-radius:50% 50% 50% 0}.range .thumb:after{content:"";transform:translateX(-50%);width:100%;height:100%;top:0;transform:rotate(-45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-prev-icon:after{content:""}.carousel-control-next-icon:after,.carousel-control-prev-icon:after{font-weight:700;font-family:Font Awesome\ 6 Pro,Font Awesome\ 6 Free;font-size:1.7rem}.carousel-control-next-icon:after{content:""}body{background-color:#303030;color:#fff}.bg-body{background-color:#303030!important}.bg-primary{background-color:#1266f1!important;color:#fff}.bg-secondary{background-color:#b23cfd!important;color:#fff}.border,.border-bottom,.border-left,.border-right,.border-top{border-color:hsla(0,0%,100%,.12)!important}.border-primary{border-color:#1266f1!important}.border-secondary{border-color:#b23cfd!important}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-prev):not(.carousel-control-next){color:#72a4f7}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-prev):not(.carousel-control-next):hover{color:#5a95f5}.text-primary{color:#1266f1!important}.text-secondary{color:#b23cfd!important}.note{color:#424242}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.btn-primary{background-color:#1266f1;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#0c56d0;color:#fff}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{background-color:#093d94;color:#fff}.btn-primary.disabled,.btn-primary:disabled{background-color:#1266f1;color:#fff}.btn-secondary{background-color:#b23cfd;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#a316fd;color:#fff}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{background-color:#8102d1;color:#fff}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#b23cfd;color:#fff}.btn-outline-primary,.btn-outline-primary:hover{color:#1266f1;border-color:#1266f1}.btn-outline-primary.active,.btn-outline-primary.disabled,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:disabled,.btn-outline-primary:focus{color:#1266f1}.btn-outline-secondary,.btn-outline-secondary:hover{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary.active,.btn-outline-secondary.disabled,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:disabled,.btn-outline-secondary:focus{color:#b23cfd}.btn-link{color:#72a4f7}.btn-link:hover{color:#5a95f5}.btn-link.active,.btn-link.active:focus,.btn-link.focus,.btn-link:active,.btn-link:active:focus,.btn-link:focus,.btn-link:hover{background-color:rgba(0,0,0,.15)}.list-group-item{background-color:#424242;border-color:hsla(0,0%,100%,.12)}.list-group-item.active{background-color:#1266f1;border-color:#1266f1}.list-group-item.disabled,.list-group-item:disabled{background-color:#424242}.list-group-item-action.active:focus,.list-group-item-action.active:hover{background-color:#1266f1;border-color:#1266f1}.list-group-item-action{color:#fff}.list-group-item-action:active,.list-group-item-action:focus,.list-group-item-action:hover{color:#fff;background:hsla(0,0%,100%,.3)}.list-group-item-action.list-group-item-primary{color:#8ab4f8}.list-group-item-action.list-group-item-primary:hover{color:#5a95f5;background-color:#d3e2fc}.list-group-item-action.list-group-item-secondary:hover{color:#9002ea;background-color:#daa1fe}.list-group-item-primary{color:#1266f1}.list-group-item-secondary{color:#b23cfd}.card{background-color:#424242;box-shadow:0 10px 20px 0 rgba(0,0,0,.25)}.card-header{border-bottom-color:hsla(0,0%,100%,.12)}.card-footer,.card-header{background-color:#424242!important}.card-footer{border-top-color:hsla(0,0%,100%,.12)}.card-link{color:#72a4f7}.card-link:hover{color:#5a95f5}.modal-content{background-color:#424242}.modal-header{border-bottom-color:hsla(0,0%,100%,.12);color:#fff}.modal-footer{border-top-color:hsla(0,0%,100%,.12)}.btn-close{filter:invert(1) grayscale(100%) brightness(200%);width:20px}.dropdown-menu{color:#fff;background-color:#424242;box-shadow:0 5px 15px 0 rgba(0,0,0,.25)}.dropdown-item{color:#fff}.dropdown-item.active,.dropdown-item:active,.dropdown-item:focus,.dropdown-item:hover{color:#fff;background:hsla(0,0%,100%,.3)}.dropdown-divider{border-color:hsla(0,0%,100%,.12)}.dropdown-header,.dropdown-item-text{color:#dee2e6}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before,.navbar .breadcrumb .breadcrumb-item a,.navbar .breadcrumb .breadcrumb-item a:focus,.navbar .breadcrumb .breadcrumb-item a:hover{color:#fff}.nav-tabs .nav-link{border-color:transparent;color:#dee2e6}.nav-tabs .nav-link:hover{background-color:transparent;border-color:transparent}.nav-tabs .nav-link:focus{border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#1266f1;border-color:#1266f1;background-color:transparent}.nav-pills:not(.menu-sidebar) .nav-link{background-color:#424242;color:#fff}.nav-pills:not(.menu-sidebar) .nav-link.active,.nav-pills:not(.menu-sidebar) .show>.nav-link{color:#fff;background-color:#1266f1}.navbar-brand,.navbar-brand:hover,.navbar-nav .nav-link,.navbar-nav .nav-link:focus,.navbar-nav .nav-link:hover,.navbar-scroll .fa-bars,.navbar-scroll .nav-link,.navbar-scrolled .fa-bars,.navbar-scrolled .nav-link{color:#fff}.navbar-scrolled{background-color:#1266f1}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{color:#fff}.page-link:hover{color:#fff;background:rgba(0,0,0,.15)}.page-link:focus{color:#fff;background-color:rgba(0,0,0,.15)}.page-item.active .page-link{background-color:#1266f1}.page-item.disabled .page-link{background-color:rgba(0,0,0,.15)}.popover{background-color:#424242}.popover-body{color:#fff}.popover-header{background-color:#424242;border-bottom-color:hsla(0,0%,100%,.12)}.progress-bar{background-color:#1266f1}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle,rgba(18,102,241,.2) 0,rgba(18,102,241,.3) 40%,rgba(18,102,241,.4) 50%,rgba(18,102,241,.5) 60%,rgba(18,102,241,0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle,rgba(178,60,253,.2) 0,rgba(178,60,253,.3) 40%,rgba(178,60,253,.4) 50%,rgba(178,60,253,.5) 60%,rgba(18,102,241,0) 70%)}.nav-pills.menu-sidebar .nav-link{color:#fff}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{color:#72a4f7;border-left-color:#72a4f7}.accordion-item{background-color:#424242;border:1px solid hsla(0,0%,100%,.2)}.accordion-button,.accordion-button:not(.collapsed){background-color:#424242;color:#fff}.accordion-button:not(.collapsed){box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.2)}.accordion-button:after,.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E")}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.2)}.shadow-1-primary{box-shadow:0 2px 5px 0 rgba(18,102,241,.25),0 3px 10px 0 rgba(18,102,241,.2)}.shadow-2-primary{box-shadow:0 4px 8px 0 rgba(18,102,241,.25),0 5px 15px 2px rgba(18,102,241,.2)}.shadow-3-primary{box-shadow:0 6px 11px 0 rgba(18,102,241,.25),0 7px 20px 3px rgba(18,102,241,.2)}.shadow-4-primary{box-shadow:0 6px 14px 0 rgba(18,102,241,.25),0 10px 30px 4px rgba(18,102,241,.2)}.shadow-5-primary{box-shadow:0 6px 20px 0 rgba(18,102,241,.25),0 12px 40px 5px rgba(18,102,241,.2)}.shadow-1-secondary{box-shadow:0 2px 5px 0 rgba(178,60,253,.25),0 3px 10px 0 rgba(178,60,253,.2)}.shadow-2-secondary{box-shadow:0 4px 8px 0 rgba(178,60,253,.25),0 5px 15px 2px rgba(178,60,253,.2)}.shadow-3-secondary{box-shadow:0 6px 11px 0 rgba(178,60,253,.25),0 7px 20px 3px rgba(178,60,253,.2)}.shadow-4-secondary{box-shadow:0 6px 14px 0 rgba(178,60,253,.25),0 10px 30px 4px rgba(178,60,253,.2)}.shadow-5-secondary{box-shadow:0 6px 20px 0 rgba(178,60,253,.25),0 12px 40px 5px rgba(178,60,253,.2)}.table{background:#424242;color:#fff;border-color:hsla(0,0%,100%,.12)}.table>:not(:last-child)>:last-child>*{border-bottom-color:hsla(0,0%,100%,.12)}.text-muted{color:#a3a3a3!important}td,th{border-color:hsla(0,0%,100%,.12)}.table-active,.table-hover>tbody>tr:hover,.table-striped>tbody>tr:nth-of-type(odd){color:#fff}.table-light{background-color:#323232;color:#fff}caption{color:#dee2e6}.link-primary{color:#72a4f7}.link-primary:hover{color:#5a95f5}.link-secondary{color:#daa1fe}.link-secondary:hover{color:#d088fe}.tooltip-inner{color:#fff;background-color:#757575}.form-check-input{background-color:transparent;border-color:hsla(0,0%,100%,.7)}.form-check-input:before{background-color:transparent;box-shadow:0 0 0 13px transparent}.form-check-input:hover:before{box-shadow:transparent}.form-check-input:focus{border-color:hsla(0,0%,100%,.7)}.form-check-input:focus:before{box-shadow:0 0 0 13px hsla(0,0%,100%,.6)}.form-check-input:checked,.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0 0 0 13px #1266f1}.form-check-input:indeterminate:focus:before{box-shadow:0 0 0 13px #1266f1}.form-check-input[type=checkbox]:focus:after{background-color:#303030}.form-check-input[type=checkbox]:checked{background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{border-color:#fff;background-color:transparent}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{background-color:transparent;border-color:hsla(0,0%,100%,.7)}.form-check-input[type=checkbox]:indeterminate:after{border-color:#fff}.form-check-input[type=checkbox]:indeterminate:focus{background-color:#1266f1;border-color:#1266f1}.form-check-input[type=radio]:after,.form-check-input[type=radio]:checked{background-color:transparent}.form-check-input[type=radio]:checked:after{border-color:#1266f1;background-color:#1266f1}.form-check-input[type=radio]:checked:focus{background-color:transparent}.form-switch .form-check-input{background-color:hsla(0,0%,100%,.38)}.form-switch .form-check-input:after{background-color:#dee2e6;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input:focus:before{box-shadow:3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input[type=checkbox]:focus:after{background-color:#dee2e6}.form-switch .form-check-input:checked{background-color:#1266f1}.form-switch .form-check-input:checked:focus:before{box-shadow:3px -1px 0 13px #1266f1}.form-switch .form-check-input:checked[type=checkbox]:after{background-color:#1266f1;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-label{color:hsla(0,0%,100%,.7)}.form-control,.form-control:focus{background-color:transparent}.form-control:focus{color:hsla(0,0%,100%,.7)}.form-control::-moz-placeholder{color:#6c757d}.form-control::placeholder{color:#6c757d}.form-control{color:hsla(0,0%,100%,.7)}.form-control:focus{border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.form-outline .form-control{background:transparent;color:hsla(0,0%,100%,.7)}.form-outline .form-control~.form-label{color:hsla(0,0%,100%,.7)}.form-outline .form-control~.form-notch div{border-color:hsla(0,0%,100%,.7);background:transparent}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid transparent}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control.disabled,.form-outline .form-control:disabled,.form-outline .form-control[readonly]:not(.select-input){background-color:hsla(0,0%,100%,.2)}.select-input.focused~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.select-input.focused~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid transparent}.select-input.focused~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-range::-webkit-slider-thumb{background-color:#1266f1}.form-range::-moz-range-thumb{background-color:#1266f1}.form-range::-ms-thumb{background-color:#1266f1}.form-range:focus::-webkit-slider-thumb{background-color:#1266f1}.form-range:focus::-moz-range-thumb{background-color:#1266f1}.form-range:focus::-ms-thumb{background-color:#1266f1}.form-file-input:focus-within~.form-file-label{border-color:#1266f1;box-shadow:0 0 0 1px #1266f1}.form-file-input:disabled~.form-file-label .form-file-button,.form-file-input:disabled~.form-file-label .form-file-text,.form-file-input[disabled]~.form-file-label .form-file-button,.form-file-input[disabled]~.form-file-label .form-file-text{background-color:hsla(0,0%,100%,.2)}.form-file-label{border-color:hsla(0,0%,100%,.7)}.form-file-button,.form-file-text{background-color:transparent;color:hsla(0,0%,100%,.7)}.form-control::-webkit-file-upload-button{color:hsla(0,0%,100%,.7)}.input-group>.form-control:focus{border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:transparent;color:hsla(0,0%,100%,.7)}.input-group.form-outline input+.input-group-text{border-left-color:hsla(0,0%,100%,.7)}.loading-spinner{color:#1266f1} \ No newline at end of file diff --git a/css/mdb.dark.min.css.map b/css/mdb.dark.min.css.map new file mode 100644 index 000000000..52982ffab --- /dev/null +++ b/css/mdb.dark.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src!./node_modules/sass-loader/dist/cjs.js!./src/scss/mdb.dark.free.scss"],"names":[],"mappings":"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","file":"mdb.dark.min.css","sourcesContent":[":root{--mdb-blue: #0d6efd;--mdb-indigo: #6610f2;--mdb-purple: #6f42c1;--mdb-pink: #d63384;--mdb-red: #dc3545;--mdb-orange: #fd7e14;--mdb-yellow: #ffc107;--mdb-green: #198754;--mdb-teal: #20c997;--mdb-cyan: #0dcaf0;--mdb-white: #fff;--mdb-gray: #757575;--mdb-gray-dark: #4f4f4f;--mdb-gray-100: #f5f5f5;--mdb-gray-200: #eeeeee;--mdb-gray-300: #e0e0e0;--mdb-gray-400: #bdbdbd;--mdb-gray-500: #9e9e9e;--mdb-gray-600: #757575;--mdb-gray-700: #616161;--mdb-gray-800: #4f4f4f;--mdb-gray-900: #262626;--mdb-primary: #1266f1;--mdb-secondary: #b23cfd;--mdb-success: #00b74a;--mdb-info: #39c0ed;--mdb-warning: #ffa900;--mdb-danger: #f93154;--mdb-light: #f9f9f9;--mdb-dark: #262626;--mdb-white: #fff;--mdb-black: #000;--mdb-primary-rgb: 18, 102, 241;--mdb-secondary-rgb: 178, 60, 253;--mdb-success-rgb: 0, 183, 74;--mdb-info-rgb: 57, 192, 237;--mdb-warning-rgb: 255, 169, 0;--mdb-danger-rgb: 249, 49, 84;--mdb-light-rgb: 249, 249, 249;--mdb-dark-rgb: 38, 38, 38;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-body-color-rgb: 79, 79, 79;--mdb-body-bg-rgb: 255, 255, 255;--mdb-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--mdb-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--mdb-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--mdb-body-font-family: var(--mdb-font-roboto);--mdb-body-font-size: 1rem;--mdb-body-font-weight: 400;--mdb-body-line-height: 1.6;--mdb-body-color: #4f4f4f;--mdb-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + 0.6vw)}@media(min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + 0.3vw)}@media(min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-mdb-original-title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}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,.small{font-size:0.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--mdb-font-monospace);font-size:1em;/*!rtl:ignore*/direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:0.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}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,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}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}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}/*!rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.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:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#757575}.blockquote-footer::before{content:\"— \"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:#757575}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:var(--mdb-gutter-x, 0.75rem);padding-left:var(--mdb-gutter-x, 0.75rem);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--mdb-gutter-x: 1.5rem;--mdb-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--mdb-gutter-y));margin-right:calc(-0.5*var(--mdb-gutter-x));margin-left:calc(-0.5*var(--mdb-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--mdb-gutter-x)*.5);padding-left:calc(var(--mdb-gutter-x)*.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--mdb-gutter-x: 0}.g-0,.gy-0{--mdb-gutter-y: 0}.g-1,.gx-1{--mdb-gutter-x: 0.25rem}.g-1,.gy-1{--mdb-gutter-y: 0.25rem}.g-2,.gx-2{--mdb-gutter-x: 0.5rem}.g-2,.gy-2{--mdb-gutter-y: 0.5rem}.g-3,.gx-3{--mdb-gutter-x: 1rem}.g-3,.gy-3{--mdb-gutter-y: 1rem}.g-4,.gx-4{--mdb-gutter-x: 1.5rem}.g-4,.gy-4{--mdb-gutter-y: 1.5rem}.g-5,.gx-5{--mdb-gutter-x: 3rem}.g-5,.gy-5{--mdb-gutter-y: 3rem}@media(min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x: 0}.g-sm-0,.gy-sm-0{--mdb-gutter-y: 0}.g-sm-1,.gx-sm-1{--mdb-gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y: 3rem}}@media(min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x: 0}.g-md-0,.gy-md-0{--mdb-gutter-y: 0}.g-md-1,.gx-md-1{--mdb-gutter-x: 0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y: 0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x: 0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y: 0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x: 1rem}.g-md-3,.gy-md-3{--mdb-gutter-y: 1rem}.g-md-4,.gx-md-4{--mdb-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x: 3rem}.g-md-5,.gy-md-5{--mdb-gutter-y: 3rem}}@media(min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x: 0}.g-lg-0,.gy-lg-0{--mdb-gutter-y: 0}.g-lg-1,.gx-lg-1{--mdb-gutter-x: 0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y: 0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x: 0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y: 0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y: 3rem}}@media(min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x: 0}.g-xl-0,.gy-xl-0{--mdb-gutter-y: 0}.g-xl-1,.gx-xl-1{--mdb-gutter-x: 0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y: 0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x: 0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y: 0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y: 3rem}}@media(min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x: 0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y: 0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x: 0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y: 0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y: 3rem}}.table{--mdb-table-bg: transparent;--mdb-table-accent-bg: transparent;--mdb-table-striped-color: #212529;--mdb-table-striped-bg: rgba(0, 0, 0, 0.02);--mdb-table-active-color: #212529;--mdb-table-active-bg: rgba(0, 0, 0, 0.1);--mdb-table-hover-color: #212529;--mdb-table-hover-bg: rgba(0, 0, 0, 0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{padding:1rem 1.4rem;background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg: var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg: var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg: var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg: #d0e0fc;--mdb-table-striped-bg: #c6d5ef;--mdb-table-striped-color: #000;--mdb-table-active-bg: #bbcae3;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c0cfe9;--mdb-table-hover-color: #000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg: #f0d8ff;--mdb-table-striped-bg: #e4cdf2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #d8c2e6;--mdb-table-active-color: #000;--mdb-table-hover-bg: #dec8ec;--mdb-table-hover-color: #000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg: #ccf1db;--mdb-table-striped-bg: #c2e5d0;--mdb-table-striped-color: #000;--mdb-table-active-bg: #b8d9c5;--mdb-table-active-color: #000;--mdb-table-hover-bg: #bddfcb;--mdb-table-hover-color: #000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg: #d7f2fb;--mdb-table-striped-bg: #cce6ee;--mdb-table-striped-color: #000;--mdb-table-active-bg: #c2dae2;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c7e0e8;--mdb-table-hover-color: #000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg: #ffeecc;--mdb-table-striped-bg: #f2e2c2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e6d6b8;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ecdcbd;--mdb-table-hover-color: #000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg: #fed6dd;--mdb-table-striped-bg: #f1cbd2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e5c1c7;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ebc6cc;--mdb-table-hover-color: #000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg: #f9f9f9;--mdb-table-striped-bg: #ededed;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e0e0e0;--mdb-table-active-color: #000;--mdb-table-hover-bg: #e6e6e6;--mdb-table-hover-color: #000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg: #262626;--mdb-table-striped-bg: #313131;--mdb-table-striped-color: #fff;--mdb-table-active-bg: #3c3c3c;--mdb-table-active-color: #fff;--mdb-table-hover-bg: #363636;--mdb-table-hover-color: #fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.775rem}.form-text{margin-top:.25rem;font-size:0.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);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{min-height:calc(1.6em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + 0.75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + 0.5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;transition:all .2s linear;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size=\"1\"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1;border-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\")}.form-check-input:checked[type=radio]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%231266f1'/%3e%3c/svg%3e\")}.form-switch .form-check-input:checked{background-position:right center;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:rgba(0,0,0,0);-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#1266f1;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1266f1;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#00b74a}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(0,183,74,.9);border-radius:.25rem}.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:#00b74a;padding-right:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size=\"1\"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#f93154}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(249,49,84,.9);border-radius:.25rem}.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:#f93154;padding-right:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size=\"1\"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:rgba(0,0,0,0);border:.125rem solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:0.75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0e52c1;border-color:#0e4db5}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-secondary{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#000;background-color:#be59fd;border-color:#ba50fd;box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-success{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#26c265;border-color:#1abe5c;box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success:disabled,.btn-success.disabled{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-info{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#57c9f0;border-color:#4dc6ef;box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-warning{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffb626;border-color:#ffb21a;box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-danger{color:#000;background-color:#f93154;border-color:#f93154}.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#fa506e;border-color:#fa4665;box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#000;background-color:#f93154;border-color:#f93154}.btn-light{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#fafafa;border-color:#fafafa;box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626;border-color:#262626}.btn-dark:hover{color:#fff;background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#202020;border-color:#1e1e1e;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626;border-color:#262626}.btn-white{color:#000;background-color:#fff;border-color:#fff}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-white:disabled,.btn-white.disabled{color:#000;background-color:#fff;border-color:#fff}.btn-black{color:#fff;background-color:#000;border-color:#000}.btn-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-black,.btn-black:focus{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#262626;border-color:#262626}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white,.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-outline-white:focus,.btn-check:active+.btn-outline-white:focus,.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black,.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-outline-black:focus,.btn-check:active+.btn-outline-black:focus,.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000;background-color:rgba(0,0,0,0)}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link:disabled,.btn-link.disabled{color:#757575}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:0.875rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.75rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:0.875rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-mdb-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-mdb-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\"}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.5rem 1rem;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:#222;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:0.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;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:-0.125rem}.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:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;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:-0.125rem}.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~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid rgba(0,0,0,0);border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;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}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(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,.55)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.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.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem 1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-0.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.5rem - 1px) calc(0.5rem - 1px)}.card-header-tabs{margin-right:-0.75rem;margin-bottom:-0.75rem;margin-left:-0.75rem;border-bottom:0}.card-header-pills{margin-right:-0.75rem;margin-left:-0.75rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.5rem;border-radius:calc(0.5rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{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}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider, \"/\") /*!rtl: var(--mdb-breadcrumb-divider, \"/\") */}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#212529;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0;transition:all .3s linear}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#212529;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#1266f1;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:0.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.27rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:.5rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.5625rem 1.5rem}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:\"\";background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#1266f1;outline:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{display:flex;height:4px;overflow:hidden;font-size:0.75rem;background-color:#eee;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1266f1;transition:width .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:4px 4px}.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}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:\"\"}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, \".\") \". \";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(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:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1266f1;border-color:#1266f1}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.5rem;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}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.5rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:hover,.list-group-item-white.list-group-item-action:focus{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:hover,.list-group-item-black.list-group-item-action:focus{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:0.875rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-color:#fff;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.toast-header .btn-close{margin-right:-0.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #e0e0e0;border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-0.5rem -0.5rem -0.5rem auto}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;/*!rtl:ignore*/left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:\"\";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}/*!rtl:begin:ignore*/.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}/*!rtl:end:ignore*/.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .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:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}/*!rtl:options:{\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n}*/.carousel-control-prev-icon{background-image:none}.carousel-control-next-icon{background-image:none}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(360deg)}}@keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentColor;border-right-color:rgba(0,0,0,0);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:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-0.5rem;margin-right:-0.5rem;margin-bottom:-0.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.clearfix::after{display:block;clear:both;content:\"\"}.link-primary{color:#1266f1}.link-primary:hover,.link-primary:focus{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:hover,.link-secondary:focus{color:#c163fd}.link-success{color:#00b74a}.link-success:hover,.link-success:focus{color:#33c56e}.link-info{color:#39c0ed}.link-info:hover,.link-info:focus{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:hover,.link-warning:focus{color:#ffba33}.link-danger{color:#f93154}.link-danger:hover,.link-danger:focus{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:hover,.link-light:focus{color:#fafafa}.link-dark{color:#262626}.link-dark:hover,.link-dark:focus{color:#1e1e1e}.link-white{color:#fff}.link-white:hover,.link-white:focus{color:#fff}.link-black{color:#000}.link-black:hover,.link-black:focus{color:#000}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--mdb-aspect-ratio);content:\"\"}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio: 100%}.ratio-4x3{--mdb-aspect-ratio: 75%}.ratio-16x9{--mdb-aspect-ratio: 56.25%}.ratio-21x9{--mdb-aspect-ratio: 42.8571428571%}.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}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:\"\"}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}.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}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-5{opacity:.05 !important}.opacity-10{opacity:.1 !important}.opacity-15{opacity:.15 !important}.opacity-20{opacity:.2 !important}.opacity-25{opacity:.25 !important}.opacity-30{opacity:.3 !important}.opacity-35{opacity:.35 !important}.opacity-40{opacity:.4 !important}.opacity-45{opacity:.45 !important}.opacity-50{opacity:.5 !important}.opacity-55{opacity:.55 !important}.opacity-60{opacity:.6 !important}.opacity-65{opacity:.65 !important}.opacity-70{opacity:.7 !important}.opacity-75{opacity:.75 !important}.opacity-80{opacity:.8 !important}.opacity-85{opacity:.85 !important}.opacity-90{opacity:.9 !important}.opacity-95{opacity:.95 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.shadow-0{box-shadow:none !important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07) !important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05) !important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05) !important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05) !important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05) !important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21) !important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05) !important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05) !important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05) !important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05) !important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05) !important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05) !important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21) !important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21) !important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21) !important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21) !important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21) !important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21) !important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06) !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}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #e0e0e0 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #e0e0e0 !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #e0e0e0 !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #e0e0e0 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #e0e0e0 !important}.border-start-0{border-left:0 !important}.border-primary{border-color:#1266f1 !important}.border-secondary{border-color:#b23cfd !important}.border-success{border-color:#00b74a !important}.border-info{border-color:#39c0ed !important}.border-warning{border-color:#ffa900 !important}.border-danger{border-color:#f93154 !important}.border-light{border-color:#f9f9f9 !important}.border-dark{border-color:#262626 !important}.border-white{border-color:#fff !important}.border-black{border-color:#000 !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !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}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !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}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.mb-6{margin-bottom:3.5rem !important}.mb-7{margin-bottom:4rem !important}.mb-8{margin-bottom:5rem !important}.mb-9{margin-bottom:6rem !important}.mb-10{margin-bottom:8rem !important}.mb-11{margin-bottom:10rem !important}.mb-12{margin-bottom:12rem !important}.mb-13{margin-bottom:14rem !important}.mb-14{margin-bottom:16rem !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.m-n1{margin:-0.25rem !important}.m-n2{margin:-0.5rem !important}.m-n3{margin:-1rem !important}.m-n4{margin:-1.5rem !important}.m-n5{margin:-3rem !important}.mx-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-n1{margin-top:-0.25rem !important}.mt-n2{margin-top:-0.5rem !important}.mt-n3{margin-top:-1rem !important}.mt-n4{margin-top:-1.5rem !important}.mt-n5{margin-top:-3rem !important}.me-n1{margin-right:-0.25rem !important}.me-n2{margin-right:-0.5rem !important}.me-n3{margin-right:-1rem !important}.me-n4{margin-right:-1.5rem !important}.me-n5{margin-right:-3rem !important}.mb-n1{margin-bottom:-0.25rem !important}.mb-n2{margin-bottom:-0.5rem !important}.mb-n3{margin-bottom:-1rem !important}.mb-n4{margin-bottom:-1.5rem !important}.mb-n5{margin-bottom:-3rem !important}.ms-n1{margin-left:-0.25rem !important}.ms-n2{margin-left:-0.5rem !important}.ms-n3{margin-left:-1rem !important}.ms-n4{margin-left:-1.5rem !important}.ms-n5{margin-left:-3rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.font-monospace{font-family:var(--mdb-font-monospace) !important}.fs-1{font-size:calc(1.375rem + 1.5vw) !important}.fs-2{font-size:calc(1.325rem + 0.9vw) !important}.fs-3{font-size:calc(1.3rem + 0.6vw) !important}.fs-4{font-size:calc(1.275rem + 0.3vw) !important}.fs-5{font-size:1.25rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.6 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}/*!rtl:begin:remove*/.text-break{word-wrap:break-word !important;word-break:break-word !important}/*!rtl:end:remove*/.text-primary{--mdb-text-opacity: 1;color:rgba(var(--mdb-primary-rgb), var(--mdb-text-opacity)) !important}.text-secondary{--mdb-text-opacity: 1;color:rgba(var(--mdb-secondary-rgb), var(--mdb-text-opacity)) !important}.text-success{--mdb-text-opacity: 1;color:rgba(var(--mdb-success-rgb), var(--mdb-text-opacity)) !important}.text-info{--mdb-text-opacity: 1;color:rgba(var(--mdb-info-rgb), var(--mdb-text-opacity)) !important}.text-warning{--mdb-text-opacity: 1;color:rgba(var(--mdb-warning-rgb), var(--mdb-text-opacity)) !important}.text-danger{--mdb-text-opacity: 1;color:rgba(var(--mdb-danger-rgb), var(--mdb-text-opacity)) !important}.text-light{--mdb-text-opacity: 1;color:rgba(var(--mdb-light-rgb), var(--mdb-text-opacity)) !important}.text-dark{--mdb-text-opacity: 1;color:rgba(var(--mdb-dark-rgb), var(--mdb-text-opacity)) !important}.text-white{--mdb-text-opacity: 1;color:rgba(var(--mdb-white-rgb), var(--mdb-text-opacity)) !important}.text-black{--mdb-text-opacity: 1;color:rgba(var(--mdb-black-rgb), var(--mdb-text-opacity)) !important}.text-body{--mdb-text-opacity: 1;color:rgba(var(--mdb-body-color-rgb), var(--mdb-text-opacity)) !important}.text-muted{--mdb-text-opacity: 1;color:#757575 !important}.text-black-50{--mdb-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--mdb-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-reset{--mdb-text-opacity: 1;color:inherit !important}.text-opacity-25{--mdb-text-opacity: 0.25}.text-opacity-50{--mdb-text-opacity: 0.5}.text-opacity-75{--mdb-text-opacity: 0.75}.text-opacity-100{--mdb-text-opacity: 1}.bg-primary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-primary-rgb), var(--mdb-bg-opacity)) !important}.bg-secondary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-secondary-rgb), var(--mdb-bg-opacity)) !important}.bg-success{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-success-rgb), var(--mdb-bg-opacity)) !important}.bg-info{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-info-rgb), var(--mdb-bg-opacity)) !important}.bg-warning{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-warning-rgb), var(--mdb-bg-opacity)) !important}.bg-danger{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-danger-rgb), var(--mdb-bg-opacity)) !important}.bg-light{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important}.bg-dark{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-dark-rgb), var(--mdb-bg-opacity)) !important}.bg-white{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-white-rgb), var(--mdb-bg-opacity)) !important}.bg-black{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-black-rgb), var(--mdb-bg-opacity)) !important}.bg-body{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-body-bg-rgb), var(--mdb-bg-opacity)) !important}.bg-transparent{--mdb-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-opacity-10{--mdb-bg-opacity: 0.1}.bg-opacity-25{--mdb-bg-opacity: 0.25}.bg-opacity-50{--mdb-bg-opacity: 0.5}.bg-opacity-75{--mdb-bg-opacity: 0.75}.bg-opacity-100{--mdb-bg-opacity: 1}.bg-gradient{background-image:var(--mdb-gradient) !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;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2rem !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-4{border-radius:.375rem !important}.rounded-5{border-radius:.5rem !important}.rounded-6{border-radius:.75rem !important}.rounded-7{border-radius:1rem !important}.rounded-8{border-radius:1.25rem !important}.rounded-9{border-radius:1.5rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-end{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-start{border-bottom-left-radius:.25rem !important;border-top-left-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.ls-tighter{letter-spacing:-0.05em !important}.ls-tight{letter-spacing:-0.025em !important}.ls-normal{letter-spacing:0em !important}.ls-wide{letter-spacing:.025em !important}.ls-wider{letter-spacing:.05em !important}.ls-widest{letter-spacing:.1em !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !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:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.mb-sm-6{margin-bottom:3.5rem !important}.mb-sm-7{margin-bottom:4rem !important}.mb-sm-8{margin-bottom:5rem !important}.mb-sm-9{margin-bottom:6rem !important}.mb-sm-10{margin-bottom:8rem !important}.mb-sm-11{margin-bottom:10rem !important}.mb-sm-12{margin-bottom:12rem !important}.mb-sm-13{margin-bottom:14rem !important}.mb-sm-14{margin-bottom:16rem !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.m-sm-n1{margin:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mx-sm-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-sm-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-sm-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-sm-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-sm-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-sm-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-sm-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-sm-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-sm-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-sm-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-sm-n1{margin-top:-0.25rem !important}.mt-sm-n2{margin-top:-0.5rem !important}.mt-sm-n3{margin-top:-1rem !important}.mt-sm-n4{margin-top:-1.5rem !important}.mt-sm-n5{margin-top:-3rem !important}.me-sm-n1{margin-right:-0.25rem !important}.me-sm-n2{margin-right:-0.5rem !important}.me-sm-n3{margin-right:-1rem !important}.me-sm-n4{margin-right:-1.5rem !important}.me-sm-n5{margin-right:-3rem !important}.mb-sm-n1{margin-bottom:-0.25rem !important}.mb-sm-n2{margin-bottom:-0.5rem !important}.mb-sm-n3{margin-bottom:-1rem !important}.mb-sm-n4{margin-bottom:-1.5rem !important}.mb-sm-n5{margin-bottom:-3rem !important}.ms-sm-n1{margin-left:-0.25rem !important}.ms-sm-n2{margin-left:-0.5rem !important}.ms-sm-n3{margin-left:-1rem !important}.ms-sm-n4{margin-left:-1.5rem !important}.ms-sm-n5{margin-left:-3rem !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !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:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.mb-md-6{margin-bottom:3.5rem !important}.mb-md-7{margin-bottom:4rem !important}.mb-md-8{margin-bottom:5rem !important}.mb-md-9{margin-bottom:6rem !important}.mb-md-10{margin-bottom:8rem !important}.mb-md-11{margin-bottom:10rem !important}.mb-md-12{margin-bottom:12rem !important}.mb-md-13{margin-bottom:14rem !important}.mb-md-14{margin-bottom:16rem !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.m-md-n1{margin:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.m-md-n3{margin:-1rem !important}.m-md-n4{margin:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mx-md-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-md-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-md-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-md-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-md-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-md-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-md-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-md-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-md-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-md-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-md-n1{margin-top:-0.25rem !important}.mt-md-n2{margin-top:-0.5rem !important}.mt-md-n3{margin-top:-1rem !important}.mt-md-n4{margin-top:-1.5rem !important}.mt-md-n5{margin-top:-3rem !important}.me-md-n1{margin-right:-0.25rem !important}.me-md-n2{margin-right:-0.5rem !important}.me-md-n3{margin-right:-1rem !important}.me-md-n4{margin-right:-1.5rem !important}.me-md-n5{margin-right:-3rem !important}.mb-md-n1{margin-bottom:-0.25rem !important}.mb-md-n2{margin-bottom:-0.5rem !important}.mb-md-n3{margin-bottom:-1rem !important}.mb-md-n4{margin-bottom:-1.5rem !important}.mb-md-n5{margin-bottom:-3rem !important}.ms-md-n1{margin-left:-0.25rem !important}.ms-md-n2{margin-left:-0.5rem !important}.ms-md-n3{margin-left:-1rem !important}.ms-md-n4{margin-left:-1.5rem !important}.ms-md-n5{margin-left:-3rem !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !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:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.mb-lg-6{margin-bottom:3.5rem !important}.mb-lg-7{margin-bottom:4rem !important}.mb-lg-8{margin-bottom:5rem !important}.mb-lg-9{margin-bottom:6rem !important}.mb-lg-10{margin-bottom:8rem !important}.mb-lg-11{margin-bottom:10rem !important}.mb-lg-12{margin-bottom:12rem !important}.mb-lg-13{margin-bottom:14rem !important}.mb-lg-14{margin-bottom:16rem !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.m-lg-n1{margin:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mx-lg-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-lg-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-lg-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-lg-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-lg-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-lg-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-lg-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-lg-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-lg-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-lg-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-lg-n1{margin-top:-0.25rem !important}.mt-lg-n2{margin-top:-0.5rem !important}.mt-lg-n3{margin-top:-1rem !important}.mt-lg-n4{margin-top:-1.5rem !important}.mt-lg-n5{margin-top:-3rem !important}.me-lg-n1{margin-right:-0.25rem !important}.me-lg-n2{margin-right:-0.5rem !important}.me-lg-n3{margin-right:-1rem !important}.me-lg-n4{margin-right:-1.5rem !important}.me-lg-n5{margin-right:-3rem !important}.mb-lg-n1{margin-bottom:-0.25rem !important}.mb-lg-n2{margin-bottom:-0.5rem !important}.mb-lg-n3{margin-bottom:-1rem !important}.mb-lg-n4{margin-bottom:-1.5rem !important}.mb-lg-n5{margin-bottom:-3rem !important}.ms-lg-n1{margin-left:-0.25rem !important}.ms-lg-n2{margin-left:-0.5rem !important}.ms-lg-n3{margin-left:-1rem !important}.ms-lg-n4{margin-left:-1.5rem !important}.ms-lg-n5{margin-left:-3rem !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !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:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.mb-xl-6{margin-bottom:3.5rem !important}.mb-xl-7{margin-bottom:4rem !important}.mb-xl-8{margin-bottom:5rem !important}.mb-xl-9{margin-bottom:6rem !important}.mb-xl-10{margin-bottom:8rem !important}.mb-xl-11{margin-bottom:10rem !important}.mb-xl-12{margin-bottom:12rem !important}.mb-xl-13{margin-bottom:14rem !important}.mb-xl-14{margin-bottom:16rem !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.m-xl-n1{margin:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mx-xl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xl-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-xl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xl-n1{margin-top:-0.25rem !important}.mt-xl-n2{margin-top:-0.5rem !important}.mt-xl-n3{margin-top:-1rem !important}.mt-xl-n4{margin-top:-1.5rem !important}.mt-xl-n5{margin-top:-3rem !important}.me-xl-n1{margin-right:-0.25rem !important}.me-xl-n2{margin-right:-0.5rem !important}.me-xl-n3{margin-right:-1rem !important}.me-xl-n4{margin-right:-1.5rem !important}.me-xl-n5{margin-right:-3rem !important}.mb-xl-n1{margin-bottom:-0.25rem !important}.mb-xl-n2{margin-bottom:-0.5rem !important}.mb-xl-n3{margin-bottom:-1rem !important}.mb-xl-n4{margin-bottom:-1.5rem !important}.mb-xl-n5{margin-bottom:-3rem !important}.ms-xl-n1{margin-left:-0.25rem !important}.ms-xl-n2{margin-left:-0.5rem !important}.ms-xl-n3{margin-left:-1rem !important}.ms-xl-n4{margin-left:-1.5rem !important}.ms-xl-n5{margin-left:-3rem !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.mb-xxl-6{margin-bottom:3.5rem !important}.mb-xxl-7{margin-bottom:4rem !important}.mb-xxl-8{margin-bottom:5rem !important}.mb-xxl-9{margin-bottom:6rem !important}.mb-xxl-10{margin-bottom:8rem !important}.mb-xxl-11{margin-bottom:10rem !important}.mb-xxl-12{margin-bottom:12rem !important}.mb-xxl-13{margin-bottom:14rem !important}.mb-xxl-14{margin-bottom:16rem !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.m-xxl-n1{margin:-0.25rem !important}.m-xxl-n2{margin:-0.5rem !important}.m-xxl-n3{margin:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.m-xxl-n5{margin:-3rem !important}.mx-xxl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xxl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xxl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xxl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xxl-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-xxl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xxl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xxl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xxl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xxl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xxl-n1{margin-top:-0.25rem !important}.mt-xxl-n2{margin-top:-0.5rem !important}.mt-xxl-n3{margin-top:-1rem !important}.mt-xxl-n4{margin-top:-1.5rem !important}.mt-xxl-n5{margin-top:-3rem !important}.me-xxl-n1{margin-right:-0.25rem !important}.me-xxl-n2{margin-right:-0.5rem !important}.me-xxl-n3{margin-right:-1rem !important}.me-xxl-n4{margin-right:-1.5rem !important}.me-xxl-n5{margin-right:-3rem !important}.mb-xxl-n1{margin-bottom:-0.25rem !important}.mb-xxl-n2{margin-bottom:-0.5rem !important}.mb-xxl-n3{margin-bottom:-1rem !important}.mb-xxl-n4{margin-bottom:-1.5rem !important}.mb-xxl-n5{margin-bottom:-3rem !important}.ms-xxl-n1{margin-left:-0.25rem !important}.ms-xxl-n2{margin-left:-0.5rem !important}.ms-xxl-n3{margin-left:-1rem !important}.ms-xxl-n4{margin-left:-1.5rem !important}.ms-xxl-n5{margin-left:-3rem !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}@media(min-width: 1200px){.fs-1{font-size:2.5rem !important}.fs-2{font-size:2rem !important}.fs-3{font-size:1.75rem !important}.fs-4{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !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:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto: \"Roboto\", sans-serif;--mdb-bg-opacity: 1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-left:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width: 1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18, 102, 241, var(--mdb-bg-opacity)) !important}.bg-secondary{background-color:rgba(178, 60, 253, var(--mdb-bg-opacity)) !important}.bg-success{background-color:rgba(0, 183, 74, var(--mdb-bg-opacity)) !important}.bg-info{background-color:rgba(57, 192, 237, var(--mdb-bg-opacity)) !important}.bg-warning{background-color:rgba(255, 169, 0, var(--mdb-bg-opacity)) !important}.bg-danger{background-color:rgba(249, 49, 84, var(--mdb-bg-opacity)) !important}.bg-light{background-color:rgba(249, 249, 249, var(--mdb-bg-opacity)) !important}.bg-dark{background-color:rgba(38, 38, 38, var(--mdb-bg-opacity)) !important}.bg-white{background-color:rgba(255, 255, 255, var(--mdb-bg-opacity)) !important}.bg-black{background-color:rgba(0, 0, 0, var(--mdb-bg-opacity)) !important}/*!\n * # Semantic UI 2.4.2 - Flag\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-left-radius:5px;border-top-right-radius:5px;text-align:center;max-width:150px;margin:0 auto;margin-top:10px}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){display:inline-block;width:16px;height:11px;margin:0 .5em 0 0;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag::before{display:inline-block;width:16px;height:11px;content:\"\";background:url(\"https://mdbootstrap.com/img/svg/flags.png\") no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:0 0 !important}i.flag-ae:before,i.flag-united-arab-emirates:before,i.flag-uae:before{background-position:0 -26px !important}i.flag-af:before,i.flag-afghanistan:before{background-position:0 -52px !important}i.flag-ag:before,i.flag-antigua:before{background-position:0 -78px !important}i.flag-ai:before,i.flag-anguilla:before{background-position:0 -104px !important}i.flag-al:before,i.flag-albania:before{background-position:0 -130px !important}i.flag-am:before,i.flag-armenia:before{background-position:0 -156px !important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:0 -182px !important}i.flag-ao:before,i.flag-angola:before{background-position:0 -208px !important}i.flag-ar:before,i.flag-argentina:before{background-position:0 -234px !important}i.flag-as:before,i.flag-american-samoa:before{background-position:0 -260px !important}i.flag-at:before,i.flag-austria:before{background-position:0 -286px !important}i.flag-au:before,i.flag-australia:before{background-position:0 -312px !important}i.flag-aw:before,i.flag-aruba:before{background-position:0 -338px !important}i.flag-ax:before,i.flag-aland-islands:before{background-position:0 -364px !important}i.flag-az:before,i.flag-azerbaijan:before{background-position:0 -390px !important}i.flag-ba:before,i.flag-bosnia:before{background-position:0 -416px !important}i.flag-bb:before,i.flag-barbados:before{background-position:0 -442px !important}i.flag-bd:before,i.flag-bangladesh:before{background-position:0 -468px !important}i.flag-be:before,i.flag-belgium:before{background-position:0 -494px !important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:0 -520px !important}i.flag-bg:before,i.flag-bulgaria:before{background-position:0 -546px !important}i.flag-bh:before,i.flag-bahrain:before{background-position:0 -572px !important}i.flag-bi:before,i.flag-burundi:before{background-position:0 -598px !important}i.flag-bj:before,i.flag-benin:before{background-position:0 -624px !important}i.flag-bm:before,i.flag-bermuda:before{background-position:0 -650px !important}i.flag-bn:before,i.flag-brunei:before{background-position:0 -676px !important}i.flag-bo:before,i.flag-bolivia:before{background-position:0 -702px !important}i.flag-br:before,i.flag-brazil:before{background-position:0 -728px !important}i.flag-bs:before,i.flag-bahamas:before{background-position:0 -754px !important}i.flag-bt:before,i.flag-bhutan:before{background-position:0 -780px !important}i.flag-bv:before,i.flag-bouvet-island:before{background-position:0 -806px !important}i.flag-bw:before,i.flag-botswana:before{background-position:0 -832px !important}i.flag-by:before,i.flag-belarus:before{background-position:0 -858px !important}i.flag-bz:before,i.flag-belize:before{background-position:0 -884px !important}i.flag-ca:before,i.flag-canada:before{background-position:0 -910px !important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:0 -962px !important}i.flag-cd:before,i.flag-congo:before{background-position:0 -988px !important}i.flag-cf:before,i.flag-central-african-republic:before{background-position:0 -1014px !important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:0 -1040px !important}i.flag-ch:before,i.flag-switzerland:before{background-position:0 -1066px !important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:0 -1092px !important}i.flag-ck:before,i.flag-cook-islands:before{background-position:0 -1118px !important}i.flag-cl:before,i.flag-chile:before{background-position:0 -1144px !important}i.flag-cm:before,i.flag-cameroon:before{background-position:0 -1170px !important}i.flag-cn:before,i.flag-china:before{background-position:0 -1196px !important}i.flag-co:before,i.flag-colombia:before{background-position:0 -1222px !important}i.flag-cr:before,i.flag-costa-rica:before{background-position:0 -1248px !important}i.flag-cs:before,i.flag-serbia:before{background-position:0 -1274px !important}i.flag-cu:before,i.flag-cuba:before{background-position:0 -1300px !important}i.flag-cv:before,i.flag-cape-verde:before{background-position:0 -1326px !important}i.flag-cx:before,i.flag-christmas-island:before{background-position:0 -1352px !important}i.flag-cy:before,i.flag-cyprus:before{background-position:0 -1378px !important}i.flag-cz:before,i.flag-czech-republic:before{background-position:0 -1404px !important}i.flag-de:before,i.flag-germany:before{background-position:0 -1430px !important}i.flag-dj:before,i.flag-djibouti:before{background-position:0 -1456px !important}i.flag-dk:before,i.flag-denmark:before{background-position:0 -1482px !important}i.flag-dm:before,i.flag-dominica:before{background-position:0 -1508px !important}i.flag-do:before,i.flag-dominican-republic:before{background-position:0 -1534px !important}i.flag-dz:before,i.flag-algeria:before{background-position:0 -1560px !important}i.flag-ec:before,i.flag-ecuador:before{background-position:0 -1586px !important}i.flag-ee:before,i.flag-estonia:before{background-position:0 -1612px !important}i.flag-eg:before,i.flag-egypt:before{background-position:0 -1638px !important}i.flag-eh:before,i.flag-western-sahara:before{background-position:0 -1664px !important}i.flag-gb-eng:before,i.flag-england:before{background-position:0 -1690px !important}i.flag-er:before,i.flag-eritrea:before{background-position:0 -1716px !important}i.flag-es:before,i.flag-spain:before{background-position:0 -1742px !important}i.flag-et:before,i.flag-ethiopia:before{background-position:0 -1768px !important}i.flag-eu:before,i.flag-european-union:before{background-position:0 -1794px !important}i.flag-fi:before,i.flag-finland:before{background-position:0 -1846px !important}i.flag-fj:before,i.flag-fiji:before{background-position:0 -1872px !important}i.flag-fk:before,i.flag-falkland-islands:before{background-position:0 -1898px !important}i.flag-fm:before,i.flag-micronesia:before{background-position:0 -1924px !important}i.flag-fo:before,i.flag-faroe-islands:before{background-position:0 -1950px !important}i.flag-fr:before,i.flag-france:before{background-position:0 -1976px !important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0 !important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px !important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px !important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px !important}i.flag-gf:before,i.flag-french-guiana:before{background-position:-36px -104px !important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px !important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px !important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px !important}i.flag-gm:before,i.flag-gambia:before{background-position:-36px -208px !important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px !important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px !important}i.flag-gq:before,i.flag-equatorial-guinea:before{background-position:-36px -286px !important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px !important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px !important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px !important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px !important}i.flag-gw:before,i.flag-guinea-bissau:before{background-position:-36px -416px !important}i.flag-gy:before,i.flag-guyana:before{background-position:-36px -442px !important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px !important}i.flag-hm:before,i.flag-heard-island:before{background-position:-36px -494px !important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px !important}i.flag-hr:before,i.flag-croatia:before{background-position:-36px -546px !important}i.flag-ht:before,i.flag-haiti:before{background-position:-36px -572px !important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px !important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px !important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px !important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px !important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px !important}i.flag-io:before,i.flag-indian-ocean-territory:before{background-position:-36px -728px !important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px !important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px !important}i.flag-is:before,i.flag-iceland:before{background-position:-36px -806px !important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px !important}i.flag-jm:before,i.flag-jamaica:before{background-position:-36px -858px !important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px !important}i.flag-jp:before,i.flag-japan:before{background-position:-36px -910px !important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px !important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px !important}i.flag-kh:before,i.flag-cambodia:before{background-position:-36px -988px !important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px !important}i.flag-km:before,i.flag-comoros:before{background-position:-36px -1040px !important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px !important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px !important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px !important}i.flag-kw:before,i.flag-kuwait:before{background-position:-36px -1144px !important}i.flag-ky:before,i.flag-cayman-islands:before{background-position:-36px -1170px !important}i.flag-kz:before,i.flag-kazakhstan:before{background-position:-36px -1196px !important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px !important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px !important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px !important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px !important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px !important}i.flag-lr:before,i.flag-liberia:before{background-position:-36px -1352px !important}i.flag-ls:before,i.flag-lesotho:before{background-position:-36px -1378px !important}i.flag-lt:before,i.flag-lithuania:before{background-position:-36px -1404px !important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px !important}i.flag-lv:before,i.flag-latvia:before{background-position:-36px -1456px !important}i.flag-ly:before,i.flag-libya:before{background-position:-36px -1482px !important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px !important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px !important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px !important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px !important}i.flag-mg:before,i.flag-madagascar:before{background-position:-36px -1613px !important}i.flag-mh:before,i.flag-marshall-islands:before{background-position:-36px -1639px !important}i.flag-mk:before,i.flag-macedonia:before{background-position:-36px -1665px !important}i.flag-ml:before,i.flag-mali:before{background-position:-36px -1691px !important}i.flag-mm:before,i.flag-myanmar:before,i.flag-burma:before{background-position:-73px -1821px !important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px !important}i.flag-mo:before,i.flag-macau:before{background-position:-36px -1769px !important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px !important}i.flag-mq:before,i.flag-martinique:before{background-position:-36px -1821px !important}i.flag-mr:before,i.flag-mauritania:before{background-position:-36px -1847px !important}i.flag-ms:before,i.flag-montserrat:before{background-position:-36px -1873px !important}i.flag-mt:before,i.flag-malta:before{background-position:-36px -1899px !important}i.flag-mu:before,i.flag-mauritius:before{background-position:-36px -1925px !important}i.flag-mv:before,i.flag-maldives:before{background-position:-36px -1951px !important}i.flag-mw:before,i.flag-malawi:before{background-position:-36px -1977px !important}i.flag-mx:before,i.flag-mexico:before{background-position:-72px 0 !important}i.flag-my:before,i.flag-malaysia:before{background-position:-72px -26px !important}i.flag-mz:before,i.flag-mozambique:before{background-position:-72px -52px !important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px !important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px !important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px !important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px !important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px !important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px !important}i.flag-nl:before,i.flag-netherlands:before{background-position:-72px -234px !important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px !important}i.flag-np:before,i.flag-nepal:before{background-position:-72px -286px !important}i.flag-nr:before,i.flag-nauru:before{background-position:-72px -312px !important}i.flag-nu:before,i.flag-niue:before{background-position:-72px -338px !important}i.flag-nz:before,i.flag-new-zealand:before{background-position:-72px -364px !important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px !important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px !important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px !important}i.flag-pf:before,i.flag-french-polynesia:before{background-position:-72px -468px !important}i.flag-pg:before,i.flag-new-guinea:before{background-position:-72px -494px !important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px !important}i.flag-pk:before,i.flag-pakistan:before{background-position:-72px -546px !important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px !important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px !important}i.flag-pn:before,i.flag-pitcairn-islands:before{background-position:-72px -624px !important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px !important}i.flag-ps:before,i.flag-palestine:before{background-position:-72px -676px !important}i.flag-pt:before,i.flag-portugal:before{background-position:-72px -702px !important}i.flag-pw:before,i.flag-palau:before{background-position:-72px -728px !important}i.flag-py:before,i.flag-paraguay:before{background-position:-72px -754px !important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px !important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px !important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px !important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px !important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px !important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px !important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px !important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px !important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px !important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px !important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px !important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px !important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px !important}i.flag-sh:before,i.flag-saint-helena:before{background-position:-72px -1118px !important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px !important}i.flag-sj:before,i.flag-svalbard:before,i.flag-jan-mayen:before{background-position:-72px -1170px !important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px !important}i.flag-sl:before,i.flag-sierra-leone:before{background-position:-72px -1222px !important}i.flag-sm:before,i.flag-san-marino:before{background-position:-72px -1248px !important}i.flag-sn:before,i.flag-senegal:before{background-position:-72px -1274px !important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px !important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px !important}i.flag-st:before,i.flag-sao-tome:before{background-position:-72px -1352px !important}i.flag-sv:before,i.flag-el-salvador:before{background-position:-72px -1378px !important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px !important}i.flag-sz:before,i.flag-swaziland:before{background-position:-72px -1430px !important}i.flag-tc:before,i.flag-caicos-islands:before{background-position:-72px -1456px !important}i.flag-td:before,i.flag-chad:before{background-position:-72px -1482px !important}i.flag-tf:before,i.flag-french-territories:before{background-position:-72px -1508px !important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px !important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px !important}i.flag-tj:before,i.flag-tajikistan:before{background-position:-72px -1586px !important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px !important}i.flag-tl:before,i.flag-timorleste:before{background-position:-72px -1638px !important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px !important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px !important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px !important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px !important}i.flag-tt:before,i.flag-trinidad:before{background-position:-72px -1768px !important}i.flag-tv:before,i.flag-tuvalu:before{background-position:-72px -1794px !important}i.flag-tw:before,i.flag-taiwan:before{background-position:-72px -1820px !important}i.flag-tz:before,i.flag-tanzania:before{background-position:-72px -1846px !important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px !important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px !important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px !important}i.flag-us:before,i.flag-america:before,i.flag-united-states:before{background-position:-72px -1950px !important}i.flag-uy:before,i.flag-uruguay:before{background-position:-72px -1976px !important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0 !important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px !important}i.flag-vc:before,i.flag-saint-vincent:before{background-position:-108px -52px !important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px !important}i.flag-vg:before,i.flag-british-virgin-islands:before{background-position:-108px -104px !important}i.flag-vi:before,i.flag-us-virgin-islands:before{background-position:-108px -130px !important}i.flag-vn:before,i.flag-vietnam:before{background-position:-108px -156px !important}i.flag-vu:before,i.flag-vanuatu:before{background-position:-108px -182px !important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px !important}i.flag-wf:before,i.flag-wallis-and-futuna:before{background-position:-108px -234px !important}i.flag-ws:before,i.flag-samoa:before{background-position:-108px -260px !important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px !important}i.flag-yt:before,i.flag-mayotte:before{background-position:-108px -312px !important}i.flag-za:before,i.flag-south-africa:before{background-position:-108px -338px !important}i.flag-zm:before,i.flag-zambia:before{background-position:-108px -364px !important}i.flag-zw:before,i.flag-zimbabwe:before{background-position:-108px -390px !important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:center center}.mask{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.hover-shadow,.card.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow:hover,.card.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.hover-shadow-soft,.card.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow-soft:hover,.card.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear;border-color:#1266f1;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:right}.form-outline .trailing{position:absolute;right:10px;left:initial;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-right:2rem !important}.form-outline .form-control{min-height:auto;padding-top:.33em;padding-bottom:.33em;padding-left:.75em;padding-right:.75em;border:0;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;left:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:0 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;left:0;top:0;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid;border-color:#bdbdbd;box-sizing:border-box;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{left:0;top:0;height:100%;width:.5rem;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-right:none;border-left:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control:focus::-moz-placeholder, .form-outline .form-control.active::-moz-placeholder{opacity:1}.form-outline .form-control:focus::placeholder,.form-outline .form-control.active::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none !important}.form-outline .form-control:focus~.form-label,.form-outline .form-control.active~.form-label{transform:translateY(-1rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle,.form-outline .form-control.active~.form-notch .form-notch-middle{border-right:none;border-left:none;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-leading,.form-outline .form-control.active~.form-notch .form-notch-leading{border-right:none}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing,.form-outline .form-control.active~.form-notch .form-notch-trailing{border-left:none}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control:disabled,.form-outline .form-control.disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-left:.75em;padding-right:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg:focus~.form-label,.form-outline .form-control.form-control-lg.active~.form-label{transform:translateY(-1.25rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control.form-control-sm{padding-left:.99em;padding-right:.99em;padding-top:.43em;padding-bottom:.35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm:focus~.form-label,.form-outline .form-control.form-control-sm.active~.form-label{transform:translateY(-0.85rem) translateY(0.1rem) scale(0.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid rgba(0,0,0,0)}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control::placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control[readonly]{background-color:rgba(255,255,255,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:rgba(0,0,0,0)}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:\"\";position:absolute;box-shadow:0px 0px 0px 13px rgba(0,0,0,0);border-radius:50%;width:.875rem;height:.875rem;background-color:rgba(0,0,0,0);opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:\"\";position:absolute}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0px 0px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:indeterminate:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-right:8px}.form-check-input[type=checkbox]:focus:after{content:\"\";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none;background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg) /*!rtl:ignore*/;border-width:.125rem;border-color:#fff;width:.375rem;height:.8125rem;border-style:solid;border-top:0;border-left:0 /*!rtl:ignore*/;margin-left:.25rem;margin-top:-1px;background-color:rgba(0,0,0,0)}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-right:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:\"\";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;border-color:#1266f1;background-color:#1266f1;transition:border-color;transform:translate(-50%, -50%);position:absolute;left:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-left:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-right:8px}.form-switch .form-check-input:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-0.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked{background-image:none}.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-left:1.0625rem;box-shadow:3px -1px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#1266f1;margin-top:-3px;margin-left:1.0625rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);transition:background-color .2s,transform .2s}.form-control[type=file]::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:rgba(0,0,0,0);padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-left:1px;margin-right:1px}.input-group-text>.form-check-input[type=radio]{margin-right:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-left:0}.input-group.form-outline input+.input-group-text{border:0;border-left:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .select-wrapper:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.input-group .form-outline:not(:last-child),.input-group .select-wrapper:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-left:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.input-group .invalid-feedback,.input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#00b74a;margin-top:-0.75rem}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(0,183,74,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#00b74a}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-outline .form-control:valid~.form-label,.form-outline .form-control.is-valid~.form-label{color:#00b74a}.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing{border-color:#00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-select:valid~.valid-feedback,.form-select.is-valid~.valid-feedback{margin-top:0}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button{border-color:#00b74a}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:checked:focus:before,.form-check-input.is-valid:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:none}.was-validated .form-check-input:valid:focus:before,.form-check-input.is-valid:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.was-validated .form-check-input:valid[type=checkbox]:checked:focus,.form-check-input.is-valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.was-validated .form-check-input:valid[type=radio]:checked,.form-check-input.is-valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.was-validated .form-check-input:valid[type=radio]:checked:focus:before,.form-check-input.is-valid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid[type=radio]:checked:after,.form-check-input.is-valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .form-switch .form-check-input:valid:focus:before,.form-switch .form-check-input.is-valid:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after,.form-switch .form-check-input.is-valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:valid:checked:focus:before,.form-switch .form-check-input.is-valid:checked:focus:before{box-shadow:3px -1px 0px 13px #00b74a}.invalid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#f93154;margin-top:-0.75rem}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(249,49,84,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#f93154}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-outline .form-control:invalid~.form-label,.form-outline .form-control.is-invalid~.form-label{color:#f93154}.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing{border-color:#f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-select:invalid~.invalid-feedback,.form-select.is-invalid~.invalid-feedback{margin-top:0}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button{border-color:#f93154}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:checked:focus:before,.form-check-input.is-invalid:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:none}.was-validated .form-check-input:invalid:focus:before,.form-check-input.is-invalid:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.was-validated .form-check-input:invalid[type=checkbox]:checked:focus,.form-check-input.is-invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.was-validated .form-check-input:invalid[type=radio]:checked,.form-check-input.is-invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.was-validated .form-check-input:invalid[type=radio]:checked:focus:before,.form-check-input.is-invalid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid[type=radio]:checked:after,.form-check-input.is-invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .form-switch .form-check-input:invalid:focus:before,.form-switch .form-check-input.is-invalid:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after,.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:invalid:checked:focus:before,.form-switch .form-check-input.is-invalid:checked:focus:before{box-shadow:3px -1px 0px 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg: transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem 1.5rem;font-size:.75rem;line-height:1.5}.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:focus,.btn.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active,.btn.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active:focus,.btn.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem 1.375rem}[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-]:focus,[class*=btn-outline-].focus{box-shadow:none;text-decoration:none}[class*=btn-outline-]:active,[class*=btn-outline-].active{box-shadow:none}[class*=btn-outline-]:active:focus,[class*=btn-outline-].active:focus{box-shadow:none}[class*=btn-outline-]:disabled,[class*=btn-outline-].disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}[class*=btn-outline-].btn-lg,.btn-group-lg>[class*=btn-outline-].btn{padding:.625rem 1.5625rem .5625rem 1.5625rem}[class*=btn-outline-].btn-sm,.btn-group-sm>[class*=btn-outline-].btn{padding:.25rem .875rem .1875rem .875rem}.btn-primary{color:#fff;background-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0c56d0}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0c56d0}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#093d94}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1}.btn-secondary{color:#fff;background-color:#b23cfd}.btn-secondary:hover{color:#fff;background-color:#a316fd}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#a316fd}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#8102d1}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#b23cfd}.btn-success{color:#fff;background-color:#00b74a}.btn-success:hover{color:#fff;background-color:#00913b}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#00913b}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#16b5ea}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info:disabled,.btn-info.disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning:hover{color:#fff;background-color:#d99000}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d99000}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning:disabled,.btn-warning.disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#f80c35}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-light:focus,.btn-light.focus{color:#4f4f4f;background-color:#e6e6e6}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light:disabled,.btn-light.disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark:hover{color:#fff;background-color:#131313}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#131313}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-white:focus,.btn-white.focus{color:#4f4f4f;background-color:#ececec}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white:disabled,.btn-white.disabled{color:#4f4f4f;background-color:#fff}.btn-black{color:#fff;background-color:#000}.btn-black:hover{color:#fff;background-color:#000}.btn-black:focus,.btn-black.focus{color:#fff;background-color:#000}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;background-color:rgba(0,0,0,.02)}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;background-color:rgba(0,0,0,.02)}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success:focus,.btn-outline-success.focus{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info:focus,.btn-outline-info.focus{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning:focus,.btn-outline-warning.focus{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger:focus,.btn-outline-danger.focus{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light:focus,.btn-outline-light.focus{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark:focus,.btn-outline-dark.focus{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white:focus,.btn-outline-white.focus{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black:focus,.btn-outline-black.focus{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black{color:#fff;background-color:#000}.btn-lg,.btn-group-lg>.btn{padding:.75rem 1.6875rem .6875rem 1.6875rem;font-size:.875rem;line-height:1.6}.btn-sm,.btn-group-sm>.btn{padding:.375rem 1rem .3125rem 1rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:focus,.btn-link.focus{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:active,.btn-link.active{box-shadow:none;background-color:#f5f5f5}.btn-link:active:focus,.btn-link.active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link:disabled,.btn-link.disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fas,.btn-floating .far,.btn-floating .fab{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fas,.btn-floating.btn-lg .far,.btn-group-lg>.btn-floating.btn .far,.btn-floating.btn-lg .fab,.btn-group-lg>.btn-floating.btn .fab{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fas,.btn-floating.btn-sm .far,.btn-group-sm>.btn-floating.btn .far,.btn-floating.btn-sm .fab,.btn-group-sm>.btn-floating.btn .fab{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fas,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fab{width:2.0625rem;line-height:2.0625rem}[class*=btn-outline-].btn-floating.btn-lg .fas,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-lg .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab{width:2.5625rem;line-height:2.5625rem}[class*=btn-outline-].btn-floating.btn-sm .fas,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-sm .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;right:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;left:0;right:0;display:flex;flex-direction:column;padding:0;margin:0;margin-bottom:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn ul a.btn.shown{opacity:1}.fixed-action-btn.active ul{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:first-child .dropdown-item{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu>li:last-child .dropdown-item{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none !important;-webkit-animation:unset !important;animation:unset !important}}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{from{opacity:1}to{opacity:0}}@keyframes fade-out{from{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group:hover,.btn-group-vertical:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:focus,.btn-group.focus,.btn-group-vertical:focus,.btn-group-vertical.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active,.btn-group.active,.btn-group-vertical:active,.btn-group-vertical.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active:focus,.btn-group.active:focus,.btn-group-vertical:active:focus,.btn-group-vertical.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:disabled,.btn-group.disabled,fieldset:disabled .btn-group,.btn-group-vertical:disabled,.btn-group-vertical.disabled,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group>.btn,.btn-group-vertical>.btn{box-shadow:none}.btn-group>.btn-group,.btn-group-vertical>.btn-group{box-shadow:none}.btn-group>.btn-link:first-child,.btn-group-vertical>.btn-link:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-link:last-child,.btn-group-vertical>.btn-link:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border-width:0 0 2px 0;border-style:solid;border-color:rgba(0,0,0,0);border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px 29px}.nav-tabs .nav-link:hover{background-color:#f5f5f5;border-color:rgba(0,0,0,0)}.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#1266f1;border-color:#1266f1}.nav-pills{margin-left:-0.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px 29px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-right:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-light .navbar-toggler-icon{background-image:none}.navbar-dark .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.card-header{background-color:rgba(255,255,255,0)}.card-body[class*=bg-]{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.card-footer{background-color:rgba(255,255,255,0)}.card-img-left{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.navbar .breadcrumb{background-color:rgba(0,0,0,0);margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:hover,.navbar .breadcrumb .breadcrumb-item a:focus{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{border:0;font-size:.9rem;color:#212529;background-color:rgba(0,0,0,0);border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{background-color:#1266f1;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:not(:first-child) .page-link{margin-left:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-circle .page-item:first-child .page-link{border-radius:50%}.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-left:.841rem;padding-right:.841rem}.pagination-circle.pagination-lg .page-link{padding-left:1.399414rem;padding-right:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-left:.696rem;padding-right:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-left:-0.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-0.1rem;margin-left:-0.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action{transition:.5s}.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-light .list-group-item-action:focus{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{color:#fff;padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:rgba(0,0,0,0);color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:initial;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:rgba(0,0,0,0);box-shadow:none;color:#1266f1;font-weight:600;border-left:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0, 0, 0.15, 1),cubic-bezier(0, 0, 0.15, 1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle, rgba(18, 102, 241, 0.2) 0, rgba(18, 102, 241, 0.3) 40%, rgba(18, 102, 241, 0.4) 50%, rgba(18, 102, 241, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle, rgba(178, 60, 253, 0.2) 0, rgba(178, 60, 253, 0.3) 40%, rgba(178, 60, 253, 0.4) 50%, rgba(178, 60, 253, 0.5) 60%, rgba(178, 60, 253, 0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle, rgba(0, 183, 74, 0.2) 0, rgba(0, 183, 74, 0.3) 40%, rgba(0, 183, 74, 0.4) 50%, rgba(0, 183, 74, 0.5) 60%, rgba(0, 183, 74, 0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle, rgba(57, 192, 237, 0.2) 0, rgba(57, 192, 237, 0.3) 40%, rgba(57, 192, 237, 0.4) 50%, rgba(57, 192, 237, 0.5) 60%, rgba(57, 192, 237, 0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle, rgba(255, 169, 0, 0.2) 0, rgba(255, 169, 0, 0.3) 40%, rgba(255, 169, 0, 0.4) 50%, rgba(255, 169, 0, 0.5) 60%, rgba(255, 169, 0, 0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle, rgba(249, 49, 84, 0.2) 0, rgba(249, 49, 84, 0.3) 40%, rgba(249, 49, 84, 0.4) 50%, rgba(249, 49, 84, 0.5) 60%, rgba(249, 49, 84, 0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle, rgba(249, 249, 249, 0.2) 0, rgba(249, 249, 249, 0.3) 40%, rgba(249, 249, 249, 0.4) 50%, rgba(249, 249, 249, 0.5) 60%, rgba(249, 249, 249, 0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle, rgba(38, 38, 38, 0.2) 0, rgba(38, 38, 38, 0.3) 40%, rgba(38, 38, 38, 0.4) 50%, rgba(38, 38, 38, 0.5) 60%, rgba(38, 38, 38, 0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%)}.range{position:relative}.range .thumb{position:absolute;display:block;height:30px;width:30px;top:-35px;margin-left:-15px;text-align:center;border-radius:50% 50% 50% 0;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb:after{position:absolute;display:block;content:\"\";transform:translateX(-50%);width:100%;height:100%;top:0;border-radius:50% 50% 50% 0;transform:rotate(-45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-prev-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}.carousel-control-next-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}body{background-color:#303030;color:#fff}.bg-body{background-color:#303030 !important}.bg-primary{background-color:#1266f1 !important;color:#fff}.bg-secondary{background-color:#b23cfd !important;color:#fff}.border-top,.border-right,.border-bottom,.border-left,.border{border-color:rgba(255,255,255,.12) !important}.border-primary{border-color:#1266f1 !important}.border-secondary{border-color:#b23cfd !important}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-prev):not(.carousel-control-next){color:#72a4f7}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-prev):not(.carousel-control-next):hover{color:#5a95f5}.text-primary{color:#1266f1 !important}.text-secondary{color:#b23cfd !important}.note{color:#424242}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.btn-primary{background-color:#1266f1;color:#fff}.btn-primary:hover{background-color:#0c56d0;color:#fff}.btn-primary:focus,.btn-primary.focus{background-color:#0c56d0;color:#fff}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{background-color:#093d94;color:#fff}.btn-primary:disabled,.btn-primary.disabled{background-color:#1266f1;color:#fff}.btn-secondary{background-color:#b23cfd;color:#fff}.btn-secondary:hover{background-color:#a316fd;color:#fff}.btn-secondary:focus,.btn-secondary.focus{background-color:#a316fd;color:#fff}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{background-color:#8102d1;color:#fff}.btn-secondary:disabled,.btn-secondary.disabled{background-color:#b23cfd;color:#fff}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;border-color:#1266f1}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#1266f1}.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#1266f1}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#b23cfd}.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#b23cfd}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd}.btn-link{color:#72a4f7}.btn-link:hover{background-color:rgba(0,0,0,.15);color:#5a95f5}.btn-link:focus,.btn-link.focus{background-color:rgba(0,0,0,.15)}.btn-link:active,.btn-link.active{background-color:rgba(0,0,0,.15)}.btn-link:active:focus,.btn-link.active:focus{background-color:rgba(0,0,0,.15)}.list-group-item{background-color:#424242;border-color:rgba(255,255,255,.12)}.list-group-item.active{background-color:#1266f1;border-color:#1266f1}.list-group-item.disabled,.list-group-item:disabled{background-color:#424242}.list-group-item-action.active:hover,.list-group-item-action.active:focus{background-color:#1266f1;border-color:#1266f1}.list-group-item-action{color:#fff}.list-group-item-action:hover,.list-group-item-action:focus{color:#fff;background:rgba(255,255,255,.3)}.list-group-item-action:active{color:#fff;background:rgba(255,255,255,.3)}.list-group-item-action.list-group-item-primary{color:#8ab4f8}.list-group-item-action.list-group-item-primary:hover{color:#5a95f5;background-color:#d3e2fc}.list-group-item-action.list-group-item-secondary:hover{color:#9002ea;background-color:#daa1fe}.list-group-item-primary{color:#1266f1}.list-group-item-secondary{color:#b23cfd}.card{background-color:#424242;box-shadow:0 10px 20px 0 rgba(0,0,0,.25)}.card-header{background-color:#424242 !important;border-bottom-color:rgba(255,255,255,.12)}.card-footer{border-top-color:rgba(255,255,255,.12);background-color:#424242 !important}.card-link{color:#72a4f7}.card-link:hover{color:#5a95f5}.modal-content{background-color:#424242}.modal-header{border-bottom-color:rgba(255,255,255,.12);color:#fff}.modal-footer{border-top-color:rgba(255,255,255,.12)}.btn-close{filter:invert(1) grayscale(100%) brightness(200%);width:20px}.dropdown-menu{color:#fff;background-color:#424242;box-shadow:0 5px 15px 0 rgba(0,0,0,.25)}.dropdown-item{color:#fff}.dropdown-item:hover,.dropdown-item:focus{color:#fff;background:rgba(255,255,255,.3)}.dropdown-item.active,.dropdown-item:active{color:#fff;background:rgba(255,255,255,.3)}.dropdown-divider{border-color:rgba(255,255,255,.12)}.dropdown-item-text{color:#dee2e6}.dropdown-header{color:#dee2e6}.navbar .breadcrumb .breadcrumb-item a{color:#fff}.navbar .breadcrumb .breadcrumb-item a:hover,.navbar .breadcrumb .breadcrumb-item a:focus{color:#fff}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:#fff}.nav-tabs .nav-link{border-color:rgba(0,0,0,0);color:#dee2e6}.nav-tabs .nav-link:hover{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#1266f1;border-color:#1266f1;background-color:rgba(0,0,0,0)}.nav-pills:not(.menu-sidebar) .nav-link{background-color:#424242;color:#fff}.nav-pills:not(.menu-sidebar) .nav-link.active,.nav-pills:not(.menu-sidebar) .show>.nav-link{color:#fff;background-color:#1266f1}.navbar-brand{color:#fff}.navbar-brand:hover{color:#fff}.navbar-nav .nav-link{color:#fff}.navbar-nav .nav-link:hover,.navbar-nav .nav-link:focus{color:#fff}.navbar-scroll .nav-link,.navbar-scroll .fa-bars{color:#fff}.navbar-scrolled .nav-link,.navbar-scrolled .fa-bars{color:#fff}.navbar-scrolled{background-color:#1266f1}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{color:#fff}.page-link:hover{color:#fff;background:rgba(0,0,0,.15)}.page-link:focus{color:#fff;background-color:rgba(0,0,0,.15)}.page-item.active .page-link{background-color:#1266f1}.page-item.disabled .page-link{background-color:rgba(0,0,0,.15)}.popover{background-color:#424242}.popover-body{color:#fff}.popover-header{background-color:#424242;border-bottom-color:rgba(255,255,255,.12)}.progress-bar{background-color:#1266f1}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle, rgba(18, 102, 241, 0.2) 0, rgba(18, 102, 241, 0.3) 40%, rgba(18, 102, 241, 0.4) 50%, rgba(18, 102, 241, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle, rgba(178, 60, 253, 0.2) 0, rgba(178, 60, 253, 0.3) 40%, rgba(178, 60, 253, 0.4) 50%, rgba(178, 60, 253, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.nav-pills.menu-sidebar .nav-link{color:#fff}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{color:#72a4f7;border-left-color:#72a4f7}.accordion-item{background-color:#424242;border:1px solid rgba(255,255,255,.2)}.accordion-button{background-color:#424242;color:#fff}.accordion-button:not(.collapsed){color:#fff;background-color:#424242;box-shadow:inset 0 -1px 0 rgba(255,255,255,.2)}.accordion-button:after{background-image:url(\"data:image/svg+xml;charset=utf-8,\")}.accordion-button:not(.collapsed):after{background-image:url(\"data:image/svg+xml;charset=utf-8,\")}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(255,255,255,.2)}.shadow-1-primary{box-shadow:0px 2px 5px 0px rgba(18,102,241,.25),0px 3px 10px 0px rgba(18,102,241,.2)}.shadow-2-primary{box-shadow:0px 4px 8px 0px rgba(18,102,241,.25),0px 5px 15px 2px rgba(18,102,241,.2)}.shadow-3-primary{box-shadow:0px 6px 11px 0px rgba(18,102,241,.25),0px 7px 20px 3px rgba(18,102,241,.2)}.shadow-4-primary{box-shadow:0px 6px 14px 0px rgba(18,102,241,.25),0px 10px 30px 4px rgba(18,102,241,.2)}.shadow-5-primary{box-shadow:0px 6px 20px 0px rgba(18,102,241,.25),0px 12px 40px 5px rgba(18,102,241,.2)}.shadow-1-secondary{box-shadow:0px 2px 5px 0px rgba(178,60,253,.25),0px 3px 10px 0px rgba(178,60,253,.2)}.shadow-2-secondary{box-shadow:0px 4px 8px 0px rgba(178,60,253,.25),0px 5px 15px 2px rgba(178,60,253,.2)}.shadow-3-secondary{box-shadow:0px 6px 11px 0px rgba(178,60,253,.25),0px 7px 20px 3px rgba(178,60,253,.2)}.shadow-4-secondary{box-shadow:0px 6px 14px 0px rgba(178,60,253,.25),0px 10px 30px 4px rgba(178,60,253,.2)}.shadow-5-secondary{box-shadow:0px 6px 20px 0px rgba(178,60,253,.25),0px 12px 40px 5px rgba(178,60,253,.2)}.table{background:#424242;color:#fff;border-color:rgba(255,255,255,.12)}.table>:not(:last-child)>:last-child>*{border-bottom-color:rgba(255,255,255,.12)}.text-muted{color:#a3a3a3 !important}th,td{border-color:rgba(255,255,255,.12)}.table-active{color:#fff}.table-striped>tbody>tr:nth-of-type(odd){color:#fff}.table-hover>tbody>tr:hover{color:#fff}.table-light{background-color:#323232;color:#fff}caption{color:#dee2e6}.link-primary{color:#72a4f7}.link-primary:hover{color:#5a95f5}.link-secondary{color:#daa1fe}.link-secondary:hover{color:#d088fe}.tooltip-inner{color:#fff;background-color:#757575}.form-check-input{background-color:rgba(0,0,0,0);border-color:rgba(255,255,255,.7)}.form-check-input:before{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 13px rgba(0,0,0,0)}.form-check-input:hover:before{box-shadow:rgba(0,0,0,0)}.form-check-input:focus{border-color:rgba(255,255,255,.7)}.form-check-input:focus:before{box-shadow:0px 0px 0px 13px rgba(255,255,255,.6)}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input:indeterminate:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input[type=checkbox]:focus:after{background-color:#303030}.form-check-input[type=checkbox]:checked{background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{border-color:#fff;background-color:rgba(0,0,0,0)}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{background-color:rgba(0,0,0,0);border-color:rgba(255,255,255,.7)}.form-check-input[type=checkbox]:indeterminate:after{border-color:#fff}.form-check-input[type=checkbox]:indeterminate:focus{background-color:#1266f1;border-color:#1266f1}.form-check-input[type=radio]:after{background-color:rgba(0,0,0,0)}.form-check-input[type=radio]:checked{background-color:rgba(0,0,0,0)}.form-check-input[type=radio]:checked:after{border-color:#1266f1;background-color:#1266f1}.form-check-input[type=radio]:checked:focus{background-color:rgba(0,0,0,0)}.form-switch .form-check-input{background-color:rgba(255,255,255,.38)}.form-switch .form-check-input:after{background-color:#dee2e6;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6)}.form-switch .form-check-input[type=checkbox]:focus:after{background-color:#dee2e6}.form-switch .form-check-input:checked{background-color:#1266f1}.form-switch .form-check-input:checked:focus:before{box-shadow:3px -1px 0px 13px #1266f1}.form-switch .form-check-input:checked[type=checkbox]:after{background-color:#1266f1;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-label{color:rgba(255,255,255,.7)}.form-control{background-color:rgba(0,0,0,0)}.form-control:focus{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-control::-moz-placeholder{color:#6c757d}.form-control::placeholder{color:#6c757d}.form-control{color:rgba(255,255,255,.7)}.form-control:focus{border-color:#1266f1;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-outline .form-control{background:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-outline .form-control~.form-label{color:rgba(255,255,255,.7)}.form-outline .form-control~.form-notch div{border-color:rgba(255,255,255,.7);background:rgba(0,0,0,0)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control:disabled,.form-outline .form-control.disabled,.form-outline .form-control[readonly]:not(.select-input){background-color:rgba(255,255,255,.2)}.select-input.focused~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.select-input.focused~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.select-input.focused~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-range::-webkit-slider-thumb{background-color:#1266f1}.form-range::-moz-range-thumb{background-color:#1266f1}.form-range::-ms-thumb{background-color:#1266f1}.form-range:focus::-webkit-slider-thumb{background-color:#1266f1}.form-range:focus::-moz-range-thumb{background-color:#1266f1}.form-range:focus::-ms-thumb{background-color:#1266f1}.form-file-input:focus-within~.form-file-label{border-color:#1266f1;box-shadow:0px 0px 0px 1px #1266f1}.form-file-input[disabled]~.form-file-label .form-file-text,.form-file-input:disabled~.form-file-label .form-file-text,.form-file-input[disabled]~.form-file-label .form-file-button,.form-file-input:disabled~.form-file-label .form-file-button{background-color:rgba(255,255,255,.2)}.form-file-label{border-color:rgba(255,255,255,.7)}.form-file-button{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-file-text{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-control::-webkit-file-upload-button{color:rgba(255,255,255,.7)}.input-group>.form-control:focus{border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.input-group.form-outline input+.input-group-text{border-left-color:rgba(255,255,255,.7)}.loading-spinner{color:#1266f1}"]} \ No newline at end of file diff --git a/css/mdb.dark.rtl.min.css b/css/mdb.dark.rtl.min.css new file mode 100644 index 000000000..aaf25aaca --- /dev/null +++ b/css/mdb.dark.rtl.min.css @@ -0,0 +1,10 @@ +:root{--mdb-blue:#0d6efd;--mdb-indigo:#6610f2;--mdb-purple:#6f42c1;--mdb-pink:#d63384;--mdb-red:#dc3545;--mdb-orange:#fd7e14;--mdb-yellow:#ffc107;--mdb-green:#198754;--mdb-teal:#20c997;--mdb-cyan:#0dcaf0;--mdb-gray:#757575;--mdb-gray-dark:#4f4f4f;--mdb-gray-100:#f5f5f5;--mdb-gray-200:#eee;--mdb-gray-300:#e0e0e0;--mdb-gray-400:#bdbdbd;--mdb-gray-500:#9e9e9e;--mdb-gray-600:#757575;--mdb-gray-700:#616161;--mdb-gray-800:#4f4f4f;--mdb-gray-900:#262626;--mdb-primary:#1266f1;--mdb-secondary:#b23cfd;--mdb-success:#00b74a;--mdb-info:#39c0ed;--mdb-warning:#ffa900;--mdb-danger:#f93154;--mdb-light:#f9f9f9;--mdb-dark:#262626;--mdb-white:#fff;--mdb-black:#000;--mdb-primary-rgb:18,102,241;--mdb-secondary-rgb:178,60,253;--mdb-success-rgb:0,183,74;--mdb-info-rgb:57,192,237;--mdb-warning-rgb:255,169,0;--mdb-danger-rgb:249,49,84;--mdb-light-rgb:249,249,249;--mdb-dark-rgb:38,38,38;--mdb-white-rgb:255,255,255;--mdb-black-rgb:0,0,0;--mdb-body-color-rgb:79,79,79;--mdb-body-bg-rgb:255,255,255;--mdb-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--mdb-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--mdb-gradient:linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0));--mdb-body-font-family:var(--mdb-font-roboto);--mdb-body-font-size:1rem;--mdb-body-font-weight:400;--mdb-body-line-height:1.6;--mdb-body-color:#4f4f4f;--mdb-body-bg:#fff}*,:after,:before{box-sizing:border-box}@media(prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media(min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media(min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media(min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-mdb-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--mdb-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border:0 solid;border-color:inherit}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media(min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-6{font-size:2.5rem}}.list-inline,.list-unstyled{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#757575}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#757575}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--mdb-gutter-x,.75rem);padding-right:var(--mdb-gutter-x,.75rem);margin-left:auto;margin-right:auto}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media(min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--mdb-gutter-x:1.5rem;--mdb-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--mdb-gutter-y)*-1);margin-left:calc(var(--mdb-gutter-x)*-0.5);margin-right:calc(var(--mdb-gutter-x)*-0.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--mdb-gutter-x)*0.5);padding-right:calc(var(--mdb-gutter-x)*0.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--mdb-gutter-x:0}.g-0,.gy-0{--mdb-gutter-y:0}.g-1,.gx-1{--mdb-gutter-x:0.25rem}.g-1,.gy-1{--mdb-gutter-y:0.25rem}.g-2,.gx-2{--mdb-gutter-x:0.5rem}.g-2,.gy-2{--mdb-gutter-y:0.5rem}.g-3,.gx-3{--mdb-gutter-x:1rem}.g-3,.gy-3{--mdb-gutter-y:1rem}.g-4,.gx-4{--mdb-gutter-x:1.5rem}.g-4,.gy-4{--mdb-gutter-y:1.5rem}.g-5,.gx-5{--mdb-gutter-x:3rem}.g-5,.gy-5{--mdb-gutter-y:3rem}@media(min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x:0}.g-sm-0,.gy-sm-0{--mdb-gutter-y:0}.g-sm-1,.gx-sm-1{--mdb-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x:1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y:1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x:3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y:3rem}}@media(min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x:0}.g-md-0,.gy-md-0{--mdb-gutter-y:0}.g-md-1,.gx-md-1{--mdb-gutter-x:0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y:0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x:0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y:0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x:1rem}.g-md-3,.gy-md-3{--mdb-gutter-y:1rem}.g-md-4,.gx-md-4{--mdb-gutter-x:1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y:1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x:3rem}.g-md-5,.gy-md-5{--mdb-gutter-y:3rem}}@media(min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x:0}.g-lg-0,.gy-lg-0{--mdb-gutter-y:0}.g-lg-1,.gx-lg-1{--mdb-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x:1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y:1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x:3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y:3rem}}@media(min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x:0}.g-xl-0,.gy-xl-0{--mdb-gutter-y:0}.g-xl-1,.gx-xl-1{--mdb-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x:1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y:1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x:3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y:3rem}}@media(min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x:0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y:0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y:3rem}}.table{--mdb-table-bg:transparent;--mdb-table-accent-bg:transparent;--mdb-table-striped-color:#212529;--mdb-table-striped-bg:rgba(0,0,0,0.02);--mdb-table-active-color:#212529;--mdb-table-active-bg:rgba(0,0,0,0.1);--mdb-table-hover-color:#212529;--mdb-table-hover-bg:rgba(0,0,0,0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg:var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg:var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg:var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg:#d0e0fc;--mdb-table-striped-bg:#c6d5ef;--mdb-table-striped-color:#000;--mdb-table-active-bg:#bbcae3;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c0cfe9;--mdb-table-hover-color:#000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg:#f0d8ff;--mdb-table-striped-bg:#e4cdf2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#d8c2e6;--mdb-table-active-color:#000;--mdb-table-hover-bg:#dec8ec;--mdb-table-hover-color:#000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg:#ccf1db;--mdb-table-striped-bg:#c2e5d0;--mdb-table-striped-color:#000;--mdb-table-active-bg:#b8d9c5;--mdb-table-active-color:#000;--mdb-table-hover-bg:#bddfcb;--mdb-table-hover-color:#000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg:#d7f2fb;--mdb-table-striped-bg:#cce6ee;--mdb-table-striped-color:#000;--mdb-table-active-bg:#c2dae2;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c7e0e8;--mdb-table-hover-color:#000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg:#fec;--mdb-table-striped-bg:#f2e2c2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e6d6b8;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ecdcbd;--mdb-table-hover-color:#000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg:#fed6dd;--mdb-table-striped-bg:#f1cbd2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e5c1c7;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ebc6cc;--mdb-table-hover-color:#000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg:#f9f9f9;--mdb-table-striped-bg:#ededed;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e0e0e0;--mdb-table-active-color:#000;--mdb-table-hover-bg:#e6e6e6;--mdb-table-hover-color:#000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg:#262626;--mdb-table-striped-bg:#313131;--mdb-table-striped-color:#fff;--mdb-table-active-bg:#3c3c3c;--mdb-table-active-color:#fff;--mdb-table-hover-bg:#363636;--mdb-table-hover-color:#fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.775rem}.form-text{margin-top:.25rem;font-size:.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{min-height:calc(1.6em + .5rem + 2px);padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem .75rem .375rem 2.25rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-left:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-right:.5rem;font-size:.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-right:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-right:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:right;margin-right:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-repeat:no-repeat;background-position:50%;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-right:2.5em}.form-switch .form-check-input{width:2em;margin-right:-2.5em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");background-position:100%;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%231266f1'/%3E%3C/svg%3E")}.form-switch .form-check-input:checked{background-position:0;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.form-check-inline{display:inline-block;margin-left:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;right:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:100% 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-left:3rem}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.valid-tooltip{color:#000;border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{padding-left:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) left calc(.4em + .1875rem)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-left:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.invalid-tooltip{color:#000;border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{padding-left:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) left calc(.4em + .1875rem)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-left:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:.125rem solid transparent;padding:.375rem .75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{border-color:#1266f1}.btn-primary:hover{background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{background-color:#0e52c1;border-color:#0e4db5}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary.disabled,.btn-primary:disabled{border-color:#1266f1}.btn-secondary{color:#000;border-color:#b23cfd}.btn-check:focus+.btn-secondary,.btn-secondary:focus,.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#000;border-color:#b23cfd}.btn-success{color:#000;border-color:#00b74a}.btn-check:focus+.btn-success,.btn-success:focus,.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success.disabled,.btn-success:disabled{color:#000;border-color:#00b74a}.btn-info{color:#000;border-color:#39c0ed}.btn-check:focus+.btn-info,.btn-info:focus,.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;border-color:#39c0ed}.btn-warning{color:#000;border-color:#ffa900}.btn-check:focus+.btn-warning,.btn-warning:focus,.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;border-color:#ffa900}.btn-danger{color:#000;border-color:#f93154}.btn-check:focus+.btn-danger,.btn-danger:focus,.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#000;border-color:#f93154}.btn-light{color:#000;border-color:#f9f9f9}.btn-check:focus+.btn-light,.btn-light:focus,.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;border-color:#f9f9f9}.btn-dark{border-color:#262626}.btn-check:focus+.btn-dark,.btn-dark:focus,.btn-dark:hover{background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark.disabled,.btn-dark:disabled{border-color:#262626}.btn-white{color:#000;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus,.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-white.disabled,.btn-white:disabled{color:#000;border-color:#fff}.btn-black,.btn-black:hover{border-color:#000}.btn-black:focus,.btn-check:focus+.btn-black{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.active,.btn-black:active,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{border-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.disabled,.btn-black:disabled{border-color:#000}.btn-outline-primary:hover{color:#fff;background-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#262626;border-color:#262626}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-white:focus,.btn-check:checked+.btn-outline-white:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{background-color:transparent}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black:active{color:#fff;background-color:#000;border-color:#000}.btn-check:active+.btn-outline-black:focus,.btn-check:checked+.btn-outline-black:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black.disabled,.btn-outline-black:disabled{background-color:transparent}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link.disabled,.btn-link:disabled{color:#757575}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-left:.3em solid transparent;border-bottom:0;border-right:.3em solid transparent}.dropdown-toggle:empty:after{margin-right:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;right:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-mdb-popper]{left:0;right:auto}@media(min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-mdb-popper]{left:0;right:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-left:.3em solid transparent;border-bottom:.3em solid;border-right:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-right:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropend .dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:0;border-bottom:.3em solid transparent;border-right:.3em solid}.dropend .dropdown-toggle:empty:after{margin-right:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropstart .dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-right:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#222}.dropdown-item.active,.dropdown-item:active{text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:hsla(0,0%,100%,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-right:-.125rem}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-right:0}.dropstart .dropdown-toggle-split:before{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-.125rem}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-right-radius:0;border-top-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{background:none;border:0}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-left:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:50%;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height,75vh);overflow-y:auto}@media(min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler,.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler,.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler,.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler,.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler,.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler,.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.55);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-right:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.5rem - 1px) calc(.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.5rem - 1px) calc(.5rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-left:-.75rem;margin-right:-.75rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1.5rem;border-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-right-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:right;padding-left:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider,"/")}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-right:0;list-style:none}.page-link{position:relative;display:block;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0}@media(prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-right:-1px}.page-item.active .page-link{z-index:3;color:#fff;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid transparent}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-left:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;left:0;z-index:2;padding:1.5625rem 1.5rem}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:right;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");transform:rotate(180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-right:auto;content:"";background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion:reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-left:0;border-right:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{height:4px;font-size:.75rem;background-color:#eee;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:4px 4px}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn:before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}@keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}.list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:inherit;border-top-left-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media(min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:focus,.list-group-item-black.list-group-item-action:hover{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.toast-header .btn-close{margin-left:-.375rem;margin-right:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;right:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #e0e0e0;border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem auto -.5rem -.5rem}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:after,.popover .popover-arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,.bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,.bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,.bs-popover-end>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,.bs-popover-end>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,.bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,.bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,.bs-popover-start>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,.bs-popover-start>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:right;width:100%;margin-left:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{right:0}.carousel-control-next{left:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-next-icon,.carousel-control-prev-icon{background-image:none}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:2;display:flex;justify-content:center;padding:0;margin-left:15%;margin-bottom:1rem;margin-right:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:1.25rem;right:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid;border-left:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem}.offcanvas-header .btn-close{padding:.5rem;margin-top:-.5rem;margin-left:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem;overflow-y:auto}.offcanvas-start{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-end{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-top{top:0;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom,.offcanvas-top{left:0;right:0;height:30vh;max-height:100%}.offcanvas-bottom{border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,.bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,.bs-tooltip-end .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,.bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,.bs-tooltip-start .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;text-align:center;background-color:#000}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#1266f1}.link-primary:focus,.link-primary:hover{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:focus,.link-secondary:hover{color:#c163fd}.link-success{color:#00b74a}.link-success:focus,.link-success:hover{color:#33c56e}.link-info{color:#39c0ed}.link-info:focus,.link-info:hover{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:focus,.link-warning:hover{color:#ffba33}.link-danger{color:#f93154}.link-danger:focus,.link-danger:hover{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:focus,.link-light:hover{color:#fafafa}.link-dark{color:#262626}.link-dark:focus,.link-dark:hover{color:#1e1e1e}.link-white,.link-white:focus,.link-white:hover{color:#fff}.link-black,.link-black:focus,.link-black:hover{color:#000}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--mdb-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio:100%}.ratio-4x3{--mdb-aspect-ratio:75%}.ratio-16x9{--mdb-aspect-ratio:56.25%}.ratio-21x9{--mdb-aspect-ratio:42.8571428571%}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;left:0;right:0;z-index:1030}.fixed-bottom{bottom:0}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{flex-direction:row;align-items:center}.hstack,.vstack{display:flex;align-self:stretch}.vstack{flex:1 1 auto;flex-direction:column}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.float-start{float:right!important}.float-end{float:left!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-30{opacity:.3!important}.opacity-35{opacity:.35!important}.opacity-40{opacity:.4!important}.opacity-45{opacity:.45!important}.opacity-50{opacity:.5!important}.opacity-55{opacity:.55!important}.opacity-60{opacity:.6!important}.opacity-65{opacity:.65!important}.opacity-70{opacity:.7!important}.opacity-75{opacity:.75!important}.opacity-80{opacity:.8!important}.opacity-85{opacity:.85!important}.opacity-90{opacity:.9!important}.opacity-95{opacity:.95!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-0,.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07)!important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05)!important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05)!important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)!important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05)!important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21)!important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05)!important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05)!important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05)!important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05)!important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05)!important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05)!important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21)!important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21)!important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21)!important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21)!important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21)!important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21)!important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!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}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{right:0!important}.start-50{right:50%!important}.start-100{right:100%!important}.end-0{left:0!important}.end-50{left:50%!important}.end-100{left:100%!important}.translate-middle{transform:translate(50%,-50%)!important}.translate-middle-x{transform:translateX(50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #e0e0e0!important}.border-0{border:0!important}.border-top{border-top:1px solid #e0e0e0!important}.border-top-0{border-top:0!important}.border-end{border-left:1px solid #e0e0e0!important}.border-end-0{border-left:0!important}.border-bottom{border-bottom:1px solid #e0e0e0!important}.border-bottom-0{border-bottom:0!important}.border-start{border-right:1px solid #e0e0e0!important}.border-start-0{border-right:0!important}.border-success{border-color:#00b74a!important}.border-info{border-color:#39c0ed!important}.border-warning{border-color:#ffa900!important}.border-danger{border-color:#f93154!important}.border-light{border-color:#f9f9f9!important}.border-dark{border-color:#262626!important}.border-white{border-color:#fff!important}.border-black{border-color:#000!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!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}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!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}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.mb-6{margin-bottom:3.5rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.mb-9{margin-bottom:6rem!important}.mb-10{margin-bottom:8rem!important}.mb-11{margin-bottom:10rem!important}.mb-12{margin-bottom:12rem!important}.mb-13{margin-bottom:14rem!important}.mb-14{margin-bottom:16rem!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-1rem!important}.m-n4{margin:-1.5rem!important}.m-n5{margin:-3rem!important}.mx-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-1rem!important}.mt-n4{margin-top:-1.5rem!important}.mt-n5{margin-top:-3rem!important}.me-n1{margin-left:-.25rem!important}.me-n2{margin-left:-.5rem!important}.me-n3{margin-left:-1rem!important}.me-n4{margin-left:-1.5rem!important}.me-n5{margin-left:-3rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-1rem!important}.mb-n4{margin-bottom:-1.5rem!important}.mb-n5{margin-bottom:-3rem!important}.ms-n1{margin-right:-.25rem!important}.ms-n2{margin-right:-.5rem!important}.ms-n3{margin-right:-1rem!important}.ms-n4{margin-right:-1.5rem!important}.ms-n5{margin-right:-3rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}.font-monospace{font-family:var(--mdb-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.6!important}.lh-lg{line-height:2!important}.text-start{text-align:right!important}.text-end{text-align:left!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-primary{--mdb-text-opacity:1;color:rgba(var(--mdb-primary-rgb),var(--mdb-text-opacity))!important}.text-secondary{--mdb-text-opacity:1;color:rgba(var(--mdb-secondary-rgb),var(--mdb-text-opacity))!important}.text-success{--mdb-text-opacity:1;color:rgba(var(--mdb-success-rgb),var(--mdb-text-opacity))!important}.text-info{--mdb-text-opacity:1;color:rgba(var(--mdb-info-rgb),var(--mdb-text-opacity))!important}.text-warning{--mdb-text-opacity:1;color:rgba(var(--mdb-warning-rgb),var(--mdb-text-opacity))!important}.text-danger{--mdb-text-opacity:1;color:rgba(var(--mdb-danger-rgb),var(--mdb-text-opacity))!important}.text-light{--mdb-text-opacity:1;color:rgba(var(--mdb-light-rgb),var(--mdb-text-opacity))!important}.text-dark{--mdb-text-opacity:1;color:rgba(var(--mdb-dark-rgb),var(--mdb-text-opacity))!important}.text-white{--mdb-text-opacity:1;color:rgba(var(--mdb-white-rgb),var(--mdb-text-opacity))!important}.text-black{--mdb-text-opacity:1;color:rgba(var(--mdb-black-rgb),var(--mdb-text-opacity))!important}.text-body{--mdb-text-opacity:1;color:rgba(var(--mdb-body-color-rgb),var(--mdb-text-opacity))!important}.text-muted{--mdb-text-opacity:1;color:#757575!important}.text-black-50{--mdb-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--mdb-text-opacity:1;color:hsla(0,0%,100%,.5)!important}.text-reset{--mdb-text-opacity:1;color:inherit!important}.text-opacity-25{--mdb-text-opacity:0.25}.text-opacity-50{--mdb-text-opacity:0.5}.text-opacity-75{--mdb-text-opacity:0.75}.text-opacity-100{--mdb-text-opacity:1}.bg-primary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-primary-rgb),var(--mdb-bg-opacity))!important}.bg-secondary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-secondary-rgb),var(--mdb-bg-opacity))!important}.bg-success{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-success-rgb),var(--mdb-bg-opacity))!important}.bg-info{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-info-rgb),var(--mdb-bg-opacity))!important}.bg-warning{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-warning-rgb),var(--mdb-bg-opacity))!important}.bg-danger{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-danger-rgb),var(--mdb-bg-opacity))!important}.bg-light{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-light-rgb),var(--mdb-bg-opacity))!important}.bg-dark{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-dark-rgb),var(--mdb-bg-opacity))!important}.bg-white{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-white-rgb),var(--mdb-bg-opacity))!important}.bg-black{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-black-rgb),var(--mdb-bg-opacity))!important}.bg-body{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-body-bg-rgb),var(--mdb-bg-opacity))!important}.bg-transparent{--mdb-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--mdb-bg-opacity:0.1}.bg-opacity-25{--mdb-bg-opacity:0.25}.bg-opacity-50{--mdb-bg-opacity:0.5}.bg-opacity-75{--mdb-bg-opacity:0.75}.bg-opacity-100{--mdb-bg-opacity:1}.bg-gradient{background-image:var(--mdb-gradient)!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;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-4{border-radius:.375rem!important}.rounded-5{border-radius:.5rem!important}.rounded-6{border-radius:.75rem!important}.rounded-7{border-radius:1rem!important}.rounded-8{border-radius:1.25rem!important}.rounded-9{border-radius:1.5rem!important}.rounded-top{border-top-right-radius:.25rem!important}.rounded-end,.rounded-top{border-top-left-radius:.25rem!important}.rounded-bottom,.rounded-end{border-bottom-left-radius:.25rem!important}.rounded-bottom,.rounded-start{border-bottom-right-radius:.25rem!important}.rounded-start{border-top-right-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.ls-tighter{letter-spacing:-.05em!important}.ls-tight{letter-spacing:-.025em!important}.ls-normal{letter-spacing:0!important}.ls-wide{letter-spacing:.025em!important}.ls-wider{letter-spacing:.05em!important}.ls-widest{letter-spacing:.1em!important}@media(min-width:576px){.float-sm-start{float:right!important}.float-sm-end{float:left!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!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:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.mb-sm-6{margin-bottom:3.5rem!important}.mb-sm-7{margin-bottom:4rem!important}.mb-sm-8{margin-bottom:5rem!important}.mb-sm-9{margin-bottom:6rem!important}.mb-sm-10{margin-bottom:8rem!important}.mb-sm-11{margin-bottom:10rem!important}.mb-sm-12{margin-bottom:12rem!important}.mb-sm-13{margin-bottom:14rem!important}.mb-sm-14{margin-bottom:16rem!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.m-sm-n1{margin:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.m-sm-n3{margin:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mx-sm-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-sm-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-sm-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-sm-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-sm-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-sm-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-sm-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-sm-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-sm-n1{margin-top:-.25rem!important}.mt-sm-n2{margin-top:-.5rem!important}.mt-sm-n3{margin-top:-1rem!important}.mt-sm-n4{margin-top:-1.5rem!important}.mt-sm-n5{margin-top:-3rem!important}.me-sm-n1{margin-left:-.25rem!important}.me-sm-n2{margin-left:-.5rem!important}.me-sm-n3{margin-left:-1rem!important}.me-sm-n4{margin-left:-1.5rem!important}.me-sm-n5{margin-left:-3rem!important}.mb-sm-n1{margin-bottom:-.25rem!important}.mb-sm-n2{margin-bottom:-.5rem!important}.mb-sm-n3{margin-bottom:-1rem!important}.mb-sm-n4{margin-bottom:-1.5rem!important}.mb-sm-n5{margin-bottom:-3rem!important}.ms-sm-n1{margin-right:-.25rem!important}.ms-sm-n2{margin-right:-.5rem!important}.ms-sm-n3{margin-right:-1rem!important}.ms-sm-n4{margin-right:-1.5rem!important}.ms-sm-n5{margin-right:-3rem!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}.text-sm-start{text-align:right!important}.text-sm-end{text-align:left!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.float-md-start{float:right!important}.float-md-end{float:left!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!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:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.mb-md-6{margin-bottom:3.5rem!important}.mb-md-7{margin-bottom:4rem!important}.mb-md-8{margin-bottom:5rem!important}.mb-md-9{margin-bottom:6rem!important}.mb-md-10{margin-bottom:8rem!important}.mb-md-11{margin-bottom:10rem!important}.mb-md-12{margin-bottom:12rem!important}.mb-md-13{margin-bottom:14rem!important}.mb-md-14{margin-bottom:16rem!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.m-md-n1{margin:-.25rem!important}.m-md-n2{margin:-.5rem!important}.m-md-n3{margin:-1rem!important}.m-md-n4{margin:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mx-md-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-md-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-md-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-md-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-md-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-md-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-md-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-md-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-md-n1{margin-top:-.25rem!important}.mt-md-n2{margin-top:-.5rem!important}.mt-md-n3{margin-top:-1rem!important}.mt-md-n4{margin-top:-1.5rem!important}.mt-md-n5{margin-top:-3rem!important}.me-md-n1{margin-left:-.25rem!important}.me-md-n2{margin-left:-.5rem!important}.me-md-n3{margin-left:-1rem!important}.me-md-n4{margin-left:-1.5rem!important}.me-md-n5{margin-left:-3rem!important}.mb-md-n1{margin-bottom:-.25rem!important}.mb-md-n2{margin-bottom:-.5rem!important}.mb-md-n3{margin-bottom:-1rem!important}.mb-md-n4{margin-bottom:-1.5rem!important}.mb-md-n5{margin-bottom:-3rem!important}.ms-md-n1{margin-right:-.25rem!important}.ms-md-n2{margin-right:-.5rem!important}.ms-md-n3{margin-right:-1rem!important}.ms-md-n4{margin-right:-1.5rem!important}.ms-md-n5{margin-right:-3rem!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}.text-md-start{text-align:right!important}.text-md-end{text-align:left!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.float-lg-start{float:right!important}.float-lg-end{float:left!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!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:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.mb-lg-6{margin-bottom:3.5rem!important}.mb-lg-7{margin-bottom:4rem!important}.mb-lg-8{margin-bottom:5rem!important}.mb-lg-9{margin-bottom:6rem!important}.mb-lg-10{margin-bottom:8rem!important}.mb-lg-11{margin-bottom:10rem!important}.mb-lg-12{margin-bottom:12rem!important}.mb-lg-13{margin-bottom:14rem!important}.mb-lg-14{margin-bottom:16rem!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.m-lg-n1{margin:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.m-lg-n3{margin:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mx-lg-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-lg-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-lg-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-lg-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-lg-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-lg-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-lg-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-lg-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-lg-n1{margin-top:-.25rem!important}.mt-lg-n2{margin-top:-.5rem!important}.mt-lg-n3{margin-top:-1rem!important}.mt-lg-n4{margin-top:-1.5rem!important}.mt-lg-n5{margin-top:-3rem!important}.me-lg-n1{margin-left:-.25rem!important}.me-lg-n2{margin-left:-.5rem!important}.me-lg-n3{margin-left:-1rem!important}.me-lg-n4{margin-left:-1.5rem!important}.me-lg-n5{margin-left:-3rem!important}.mb-lg-n1{margin-bottom:-.25rem!important}.mb-lg-n2{margin-bottom:-.5rem!important}.mb-lg-n3{margin-bottom:-1rem!important}.mb-lg-n4{margin-bottom:-1.5rem!important}.mb-lg-n5{margin-bottom:-3rem!important}.ms-lg-n1{margin-right:-.25rem!important}.ms-lg-n2{margin-right:-.5rem!important}.ms-lg-n3{margin-right:-1rem!important}.ms-lg-n4{margin-right:-1.5rem!important}.ms-lg-n5{margin-right:-3rem!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}.text-lg-start{text-align:right!important}.text-lg-end{text-align:left!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.float-xl-start{float:right!important}.float-xl-end{float:left!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!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:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.mb-xl-6{margin-bottom:3.5rem!important}.mb-xl-7{margin-bottom:4rem!important}.mb-xl-8{margin-bottom:5rem!important}.mb-xl-9{margin-bottom:6rem!important}.mb-xl-10{margin-bottom:8rem!important}.mb-xl-11{margin-bottom:10rem!important}.mb-xl-12{margin-bottom:12rem!important}.mb-xl-13{margin-bottom:14rem!important}.mb-xl-14{margin-bottom:16rem!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.m-xl-n1{margin:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.m-xl-n3{margin:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mx-xl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xl-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xl-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xl-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xl-n1{margin-top:-.25rem!important}.mt-xl-n2{margin-top:-.5rem!important}.mt-xl-n3{margin-top:-1rem!important}.mt-xl-n4{margin-top:-1.5rem!important}.mt-xl-n5{margin-top:-3rem!important}.me-xl-n1{margin-left:-.25rem!important}.me-xl-n2{margin-left:-.5rem!important}.me-xl-n3{margin-left:-1rem!important}.me-xl-n4{margin-left:-1.5rem!important}.me-xl-n5{margin-left:-3rem!important}.mb-xl-n1{margin-bottom:-.25rem!important}.mb-xl-n2{margin-bottom:-.5rem!important}.mb-xl-n3{margin-bottom:-1rem!important}.mb-xl-n4{margin-bottom:-1.5rem!important}.mb-xl-n5{margin-bottom:-3rem!important}.ms-xl-n1{margin-right:-.25rem!important}.ms-xl-n2{margin-right:-.5rem!important}.ms-xl-n3{margin-right:-1rem!important}.ms-xl-n4{margin-right:-1.5rem!important}.ms-xl-n5{margin-right:-3rem!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}.text-xl-start{text-align:right!important}.text-xl-end{text-align:left!important}.text-xl-center{text-align:center!important}}@media(min-width:1400px){.float-xxl-start{float:right!important}.float-xxl-end{float:left!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.mb-xxl-6{margin-bottom:3.5rem!important}.mb-xxl-7{margin-bottom:4rem!important}.mb-xxl-8{margin-bottom:5rem!important}.mb-xxl-9{margin-bottom:6rem!important}.mb-xxl-10{margin-bottom:8rem!important}.mb-xxl-11{margin-bottom:10rem!important}.mb-xxl-12{margin-bottom:12rem!important}.mb-xxl-13{margin-bottom:14rem!important}.mb-xxl-14{margin-bottom:16rem!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.m-xxl-n1{margin:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.m-xxl-n3{margin:-1rem!important}.m-xxl-n4{margin:-1.5rem!important}.m-xxl-n5{margin:-3rem!important}.mx-xxl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xxl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xxl-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xxl-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xxl-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-xxl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xxl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xxl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xxl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xxl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xxl-n1{margin-top:-.25rem!important}.mt-xxl-n2{margin-top:-.5rem!important}.mt-xxl-n3{margin-top:-1rem!important}.mt-xxl-n4{margin-top:-1.5rem!important}.mt-xxl-n5{margin-top:-3rem!important}.me-xxl-n1{margin-left:-.25rem!important}.me-xxl-n2{margin-left:-.5rem!important}.me-xxl-n3{margin-left:-1rem!important}.me-xxl-n4{margin-left:-1.5rem!important}.me-xxl-n5{margin-left:-3rem!important}.mb-xxl-n1{margin-bottom:-.25rem!important}.mb-xxl-n2{margin-bottom:-.5rem!important}.mb-xxl-n3{margin-bottom:-1rem!important}.mb-xxl-n4{margin-bottom:-1.5rem!important}.mb-xxl-n5{margin-bottom:-3rem!important}.ms-xxl-n1{margin-right:-.25rem!important}.ms-xxl-n2{margin-right:-.5rem!important}.ms-xxl-n3{margin-right:-1rem!important}.ms-xxl-n4{margin-right:-1.5rem!important}.ms-xxl-n5{margin-right:-3rem!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}.text-xxl-start{text-align:right!important}.text-xxl-end{text-align:left!important}.text-xxl-center{text-align:center!important}}@media(min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!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:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto:"Roboto",sans-serif;--mdb-bg-opacity:1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-right:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width:1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18,102,241,var(--mdb-bg-opacity))!important}.bg-secondary{background-color:rgba(178,60,253,var(--mdb-bg-opacity))!important}.bg-success{background-color:rgba(0,183,74,var(--mdb-bg-opacity))!important}.bg-info{background-color:rgba(57,192,237,var(--mdb-bg-opacity))!important}.bg-warning{background-color:rgba(255,169,0,var(--mdb-bg-opacity))!important}.bg-danger{background-color:rgba(249,49,84,var(--mdb-bg-opacity))!important}.bg-light{background-color:rgba(249,249,249,var(--mdb-bg-opacity))!important}.bg-dark{background-color:rgba(38,38,38,var(--mdb-bg-opacity))!important}.bg-white{background-color:rgba(255,255,255,var(--mdb-bg-opacity))!important}.bg-black{background-color:rgba(0,0,0,var(--mdb-bg-opacity))!important}/*! + * # Semantic UI 2.4.2 - Flag + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-right-radius:5px;border-top-left-radius:5px;text-align:center;max-width:150px;margin:10px auto 0}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){margin:0 0 0 .5em;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:before,i.flag:not(.icon){display:inline-block;width:16px;height:11px}i.flag:before{content:"";background:url(https://mdbootstrap.com/img/svg/flags.png) no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:100% 0!important}i.flag-ae:before,i.flag-uae:before,i.flag-united-arab-emirates:before{background-position:100% -26px!important}i.flag-af:before,i.flag-afghanistan:before{background-position:100% -52px!important}i.flag-ag:before,i.flag-antigua:before{background-position:100% -78px!important}i.flag-ai:before,i.flag-anguilla:before{background-position:100% -104px!important}i.flag-al:before,i.flag-albania:before{background-position:100% -130px!important}i.flag-am:before,i.flag-armenia:before{background-position:100% -156px!important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:100% -182px!important}i.flag-angola:before,i.flag-ao:before{background-position:100% -208px!important}i.flag-ar:before,i.flag-argentina:before{background-position:100% -234px!important}i.flag-american-samoa:before,i.flag-as:before{background-position:100% -260px!important}i.flag-at:before,i.flag-austria:before{background-position:100% -286px!important}i.flag-au:before,i.flag-australia:before{background-position:100% -312px!important}i.flag-aruba:before,i.flag-aw:before{background-position:100% -338px!important}i.flag-aland-islands:before,i.flag-ax:before{background-position:100% -364px!important}i.flag-az:before,i.flag-azerbaijan:before{background-position:100% -390px!important}i.flag-ba:before,i.flag-bosnia:before{background-position:100% -416px!important}i.flag-barbados:before,i.flag-bb:before{background-position:100% -442px!important}i.flag-bangladesh:before,i.flag-bd:before{background-position:100% -468px!important}i.flag-be:before,i.flag-belgium:before{background-position:100% -494px!important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:100% -520px!important}i.flag-bg:before,i.flag-bulgaria:before{background-position:100% -546px!important}i.flag-bahrain:before,i.flag-bh:before{background-position:100% -572px!important}i.flag-bi:before,i.flag-burundi:before{background-position:100% -598px!important}i.flag-benin:before,i.flag-bj:before{background-position:100% -624px!important}i.flag-bermuda:before,i.flag-bm:before{background-position:100% -650px!important}i.flag-bn:before,i.flag-brunei:before{background-position:100% -676px!important}i.flag-bo:before,i.flag-bolivia:before{background-position:100% -702px!important}i.flag-br:before,i.flag-brazil:before{background-position:100% -728px!important}i.flag-bahamas:before,i.flag-bs:before{background-position:100% -754px!important}i.flag-bhutan:before,i.flag-bt:before{background-position:100% -780px!important}i.flag-bouvet-island:before,i.flag-bv:before{background-position:100% -806px!important}i.flag-botswana:before,i.flag-bw:before{background-position:100% -832px!important}i.flag-belarus:before,i.flag-by:before{background-position:100% -858px!important}i.flag-belize:before,i.flag-bz:before{background-position:100% -884px!important}i.flag-ca:before,i.flag-canada:before{background-position:100% -910px!important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:100% -962px!important}i.flag-cd:before,i.flag-congo:before{background-position:100% -988px!important}i.flag-central-african-republic:before,i.flag-cf:before{background-position:100% -1014px!important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:100% -1040px!important}i.flag-ch:before,i.flag-switzerland:before{background-position:100% -1066px!important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:100% -1092px!important}i.flag-ck:before,i.flag-cook-islands:before{background-position:100% -1118px!important}i.flag-chile:before,i.flag-cl:before{background-position:100% -1144px!important}i.flag-cameroon:before,i.flag-cm:before{background-position:100% -1170px!important}i.flag-china:before,i.flag-cn:before{background-position:100% -1196px!important}i.flag-co:before,i.flag-colombia:before{background-position:100% -1222px!important}i.flag-costa-rica:before,i.flag-cr:before{background-position:100% -1248px!important}i.flag-cs:before,i.flag-serbia:before{background-position:100% -1274px!important}i.flag-cu:before,i.flag-cuba:before{background-position:100% -1300px!important}i.flag-cape-verde:before,i.flag-cv:before{background-position:100% -1326px!important}i.flag-christmas-island:before,i.flag-cx:before{background-position:100% -1352px!important}i.flag-cy:before,i.flag-cyprus:before{background-position:100% -1378px!important}i.flag-cz:before,i.flag-czech-republic:before{background-position:100% -1404px!important}i.flag-de:before,i.flag-germany:before{background-position:100% -1430px!important}i.flag-dj:before,i.flag-djibouti:before{background-position:100% -1456px!important}i.flag-denmark:before,i.flag-dk:before{background-position:100% -1482px!important}i.flag-dm:before,i.flag-dominica:before{background-position:100% -1508px!important}i.flag-do:before,i.flag-dominican-republic:before{background-position:100% -1534px!important}i.flag-algeria:before,i.flag-dz:before{background-position:100% -1560px!important}i.flag-ec:before,i.flag-ecuador:before{background-position:100% -1586px!important}i.flag-ee:before,i.flag-estonia:before{background-position:100% -1612px!important}i.flag-eg:before,i.flag-egypt:before{background-position:100% -1638px!important}i.flag-eh:before,i.flag-western-sahara:before{background-position:100% -1664px!important}i.flag-england:before,i.flag-gb-eng:before{background-position:100% -1690px!important}i.flag-er:before,i.flag-eritrea:before{background-position:100% -1716px!important}i.flag-es:before,i.flag-spain:before{background-position:100% -1742px!important}i.flag-et:before,i.flag-ethiopia:before{background-position:100% -1768px!important}i.flag-eu:before,i.flag-european-union:before{background-position:100% -1794px!important}i.flag-fi:before,i.flag-finland:before{background-position:100% -1846px!important}i.flag-fiji:before,i.flag-fj:before{background-position:100% -1872px!important}i.flag-falkland-islands:before,i.flag-fk:before{background-position:100% -1898px!important}i.flag-fm:before,i.flag-micronesia:before{background-position:100% -1924px!important}i.flag-faroe-islands:before,i.flag-fo:before{background-position:100% -1950px!important}i.flag-fr:before,i.flag-france:before{background-position:100% -1976px!important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0!important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px!important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px!important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px!important}i.flag-french-guiana:before,i.flag-gf:before{background-position:-36px -104px!important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px!important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px!important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px!important}i.flag-gambia:before,i.flag-gm:before{background-position:-36px -208px!important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px!important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px!important}i.flag-equatorial-guinea:before,i.flag-gq:before{background-position:-36px -286px!important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px!important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px!important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px!important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px!important}i.flag-guinea-bissau:before,i.flag-gw:before{background-position:-36px -416px!important}i.flag-guyana:before,i.flag-gy:before{background-position:-36px -442px!important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px!important}i.flag-heard-island:before,i.flag-hm:before{background-position:-36px -494px!important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px!important}i.flag-croatia:before,i.flag-hr:before{background-position:-36px -546px!important}i.flag-haiti:before,i.flag-ht:before{background-position:-36px -572px!important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px!important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px!important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px!important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px!important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px!important}i.flag-indian-ocean-territory:before,i.flag-io:before{background-position:-36px -728px!important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px!important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px!important}i.flag-iceland:before,i.flag-is:before{background-position:-36px -806px!important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px!important}i.flag-jamaica:before,i.flag-jm:before{background-position:-36px -858px!important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px!important}i.flag-japan:before,i.flag-jp:before{background-position:-36px -910px!important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px!important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px!important}i.flag-cambodia:before,i.flag-kh:before{background-position:-36px -988px!important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px!important}i.flag-comoros:before,i.flag-km:before{background-position:-36px -1040px!important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px!important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px!important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px!important}i.flag-kuwait:before,i.flag-kw:before{background-position:-36px -1144px!important}i.flag-cayman-islands:before,i.flag-ky:before{background-position:-36px -1170px!important}i.flag-kazakhstan:before,i.flag-kz:before{background-position:-36px -1196px!important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px!important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px!important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px!important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px!important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px!important}i.flag-liberia:before,i.flag-lr:before{background-position:-36px -1352px!important}i.flag-lesotho:before,i.flag-ls:before{background-position:-36px -1378px!important}i.flag-lithuania:before,i.flag-lt:before{background-position:-36px -1404px!important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px!important}i.flag-latvia:before,i.flag-lv:before{background-position:-36px -1456px!important}i.flag-libya:before,i.flag-ly:before{background-position:-36px -1482px!important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px!important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px!important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px!important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px!important}i.flag-madagascar:before,i.flag-mg:before{background-position:-36px -1613px!important}i.flag-marshall-islands:before,i.flag-mh:before{background-position:-36px -1639px!important}i.flag-macedonia:before,i.flag-mk:before{background-position:-36px -1665px!important}i.flag-mali:before,i.flag-ml:before{background-position:-36px -1691px!important}i.flag-burma:before,i.flag-mm:before,i.flag-myanmar:before{background-position:-73px -1821px!important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px!important}i.flag-macau:before,i.flag-mo:before{background-position:-36px -1769px!important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px!important}i.flag-martinique:before,i.flag-mq:before{background-position:-36px -1821px!important}i.flag-mauritania:before,i.flag-mr:before{background-position:-36px -1847px!important}i.flag-montserrat:before,i.flag-ms:before{background-position:-36px -1873px!important}i.flag-malta:before,i.flag-mt:before{background-position:-36px -1899px!important}i.flag-mauritius:before,i.flag-mu:before{background-position:-36px -1925px!important}i.flag-maldives:before,i.flag-mv:before{background-position:-36px -1951px!important}i.flag-malawi:before,i.flag-mw:before{background-position:-36px -1977px!important}i.flag-mexico:before,i.flag-mx:before{background-position:-72px 0!important}i.flag-malaysia:before,i.flag-my:before{background-position:-72px -26px!important}i.flag-mozambique:before,i.flag-mz:before{background-position:-72px -52px!important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px!important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px!important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px!important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px!important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px!important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px!important}i.flag-netherlands:before,i.flag-nl:before{background-position:-72px -234px!important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px!important}i.flag-nepal:before,i.flag-np:before{background-position:-72px -286px!important}i.flag-nauru:before,i.flag-nr:before{background-position:-72px -312px!important}i.flag-niue:before,i.flag-nu:before{background-position:-72px -338px!important}i.flag-new-zealand:before,i.flag-nz:before{background-position:-72px -364px!important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px!important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px!important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px!important}i.flag-french-polynesia:before,i.flag-pf:before{background-position:-72px -468px!important}i.flag-new-guinea:before,i.flag-pg:before{background-position:-72px -494px!important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px!important}i.flag-pakistan:before,i.flag-pk:before{background-position:-72px -546px!important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px!important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px!important}i.flag-pitcairn-islands:before,i.flag-pn:before{background-position:-72px -624px!important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px!important}i.flag-palestine:before,i.flag-ps:before{background-position:-72px -676px!important}i.flag-portugal:before,i.flag-pt:before{background-position:-72px -702px!important}i.flag-palau:before,i.flag-pw:before{background-position:-72px -728px!important}i.flag-paraguay:before,i.flag-py:before{background-position:-72px -754px!important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px!important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px!important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px!important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px!important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px!important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px!important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px!important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px!important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px!important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px!important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px!important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px!important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px!important}i.flag-saint-helena:before,i.flag-sh:before{background-position:-72px -1118px!important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px!important}i.flag-jan-mayen:before,i.flag-sj:before,i.flag-svalbard:before{background-position:-72px -1170px!important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px!important}i.flag-sierra-leone:before,i.flag-sl:before{background-position:-72px -1222px!important}i.flag-san-marino:before,i.flag-sm:before{background-position:-72px -1248px!important}i.flag-senegal:before,i.flag-sn:before{background-position:-72px -1274px!important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px!important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px!important}i.flag-sao-tome:before,i.flag-st:before{background-position:-72px -1352px!important}i.flag-el-salvador:before,i.flag-sv:before{background-position:-72px -1378px!important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px!important}i.flag-swaziland:before,i.flag-sz:before{background-position:-72px -1430px!important}i.flag-caicos-islands:before,i.flag-tc:before{background-position:-72px -1456px!important}i.flag-chad:before,i.flag-td:before{background-position:-72px -1482px!important}i.flag-french-territories:before,i.flag-tf:before{background-position:-72px -1508px!important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px!important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px!important}i.flag-tajikistan:before,i.flag-tj:before{background-position:-72px -1586px!important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px!important}i.flag-timorleste:before,i.flag-tl:before{background-position:-72px -1638px!important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px!important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px!important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px!important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px!important}i.flag-trinidad:before,i.flag-tt:before{background-position:-72px -1768px!important}i.flag-tuvalu:before,i.flag-tv:before{background-position:-72px -1794px!important}i.flag-taiwan:before,i.flag-tw:before{background-position:-72px -1820px!important}i.flag-tanzania:before,i.flag-tz:before{background-position:-72px -1846px!important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px!important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px!important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px!important}i.flag-america:before,i.flag-united-states:before,i.flag-us:before{background-position:-72px -1950px!important}i.flag-uruguay:before,i.flag-uy:before{background-position:-72px -1976px!important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0!important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px!important}i.flag-saint-vincent:before,i.flag-vc:before{background-position:-108px -52px!important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px!important}i.flag-british-virgin-islands:before,i.flag-vg:before{background-position:-108px -104px!important}i.flag-us-virgin-islands:before,i.flag-vi:before{background-position:-108px -130px!important}i.flag-vietnam:before,i.flag-vn:before{background-position:-108px -156px!important}i.flag-vanuatu:before,i.flag-vu:before{background-position:-108px -182px!important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px!important}i.flag-wallis-and-futuna:before,i.flag-wf:before{background-position:-108px -234px!important}i.flag-samoa:before,i.flag-ws:before{background-position:-108px -260px!important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px!important}i.flag-mayotte:before,i.flag-yt:before{background-position:-108px -312px!important}i.flag-south-africa:before,i.flag-za:before{background-position:-108px -338px!important}i.flag-zambia:before,i.flag-zm:before{background-position:-108px -364px!important}i.flag-zimbabwe:before,i.flag-zw:before{background-position:-108px -390px!important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:50%}.mask{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.card.hover-shadow,.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow:hover,.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.card.hover-shadow-soft,.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow-soft:hover,.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:left}.form-outline .trailing{position:absolute;left:10px;right:auto;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-left:2rem!important}.form-outline .form-control{min-height:auto;padding:.33em .75em;border:0;transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;right:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:100% 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;right:0;top:0;width:100%;max-width:100%;height:100%;text-align:right;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid #bdbdbd;box-sizing:border-box;transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{right:0;top:0;height:100%;width:.5rem;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-left:none;border-right:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control.active::-moz-placeholder,.form-outline .form-control:focus::-moz-placeholder{opacity:1}.form-outline .form-control.active::placeholder,.form-outline .form-control:focus::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none!important}.form-outline .form-control.active~.form-label,.form-outline .form-control:focus~.form-label{transform:translateY(-1rem) translateY(.1rem) scale(.8)}.form-outline .form-control.active~.form-notch .form-notch-middle,.form-outline .form-control:focus~.form-notch .form-notch-middle{border-left:none;border-right:none;border-top:1px solid transparent}.form-outline .form-control.active~.form-notch .form-notch-leading,.form-outline .form-control:focus~.form-notch .form-notch-leading{border-left:none}.form-outline .form-control.active~.form-notch .form-notch-trailing,.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-right:none}.form-outline .form-control.disabled,.form-outline .form-control:disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-right:.75em;padding-left:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg.active~.form-label,.form-outline .form-control.form-control-lg:focus~.form-label{transform:translateY(-1.25rem) translateY(.1rem) scale(.8)}.form-outline .form-control.form-control-sm{padding:.43em .99em .35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm.active~.form-label,.form-outline .form-control.form-control-sm:focus~.form-label{transform:translateY(-.85rem) translateY(.1rem) scale(.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid transparent}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control::placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control[readonly]{background-color:hsla(0,0%,100%,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:transparent}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:"";position:absolute;border-radius:50%;width:.875rem;height:.875rem;opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0 0 0 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0 0 0 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:"";position:absolute}.form-check-input:checked:focus:before{transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-left:8px}.form-check-input[type=checkbox]:focus:after{content:"";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg);width:.375rem;height:.8125rem;border:.125rem solid #fff;border-top:0;border-left:0;margin-right:.25rem;margin-top:-1px}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-left:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:"";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;transition:border-color;transform:translate(50%,-50%);position:absolute;right:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-right:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-left:8px}.form-switch .form-check-input:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked,.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-right:1.0625rem;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;margin-top:-3px;margin-right:1.0625rem;transition:background-color .2s,transform .2s}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,.form-control[type=file]::-webkit-file-upload-button{background-color:transparent}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;outline:0}.input-group-text{padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-right:1px;margin-left:1px}.input-group-text>.form-check-input[type=radio]{margin-left:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-right:0}.input-group.form-outline input+.input-group-text{border:0;border-right:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child),.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.input-group .form-outline:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child),.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-right:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.input-group .invalid-feedback,.input-group .valid-feedback,.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{width:auto;color:#00b74a;margin-top:-.75rem}.valid-feedback,.valid-tooltip{position:absolute;display:none;font-size:.875rem}.valid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(0,183,74,.9);border-radius:.25rem!important;color:#fff}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{margin-bottom:1rem;background-image:none;border-color:#00b74a}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-outline .form-control.is-valid~.form-label,.was-validated .form-outline .form-control:valid~.form-label{color:#00b74a}.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing{border-color:#00b74a}.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid transparent}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-select.is-valid,.was-validated .form-select:valid{border-color:#00b74a}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-select.is-valid~.valid-feedback,.was-validated .form-select:valid~.valid-feedback{margin-top:0}.input-group .form-control.is-valid,.was-validated .input-group .form-control:valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text{border-color:#00b74a}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#00b74a}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#00b74a}.form-check-input.is-valid:checked:focus:before,.was-validated .form-check-input:valid:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:none}.form-check-input.is-valid:focus:before,.was-validated .form-check-input:valid:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.form-check-input.is-valid[type=checkbox]:checked:focus,.was-validated .form-check-input:valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.form-check-input.is-valid[type=radio]:checked,.was-validated .form-check-input:valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.form-check-input.is-valid[type=radio]:checked:focus:before,.was-validated .form-check-input:valid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid[type=radio]:checked:after,.was-validated .form-check-input:valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.form-switch .form-check-input.is-valid:focus:before,.was-validated .form-switch .form-check-input:valid:focus:before{box-shadow:-3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-valid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-valid:checked:focus:before,.was-validated .form-switch .form-check-input:valid:checked:focus:before{box-shadow:-3px -1px 0 13px #00b74a}.invalid-feedback{width:auto;color:#f93154;margin-top:-.75rem}.invalid-feedback,.invalid-tooltip{position:absolute;display:none;font-size:.875rem}.invalid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(249,49,84,.9);border-radius:.25rem!important;color:#fff}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{margin-bottom:1rem;background-image:none;border-color:#f93154}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-outline .form-control.is-invalid~.form-label,.was-validated .form-outline .form-control:invalid~.form-label{color:#f93154}.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing{border-color:#f93154}.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid transparent}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#f93154}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-select.is-invalid~.invalid-feedback,.was-validated .form-select:invalid~.invalid-feedback{margin-top:0}.input-group .form-control.is-invalid,.was-validated .input-group .form-control:invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text{border-color:#f93154}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#f93154}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#f93154}.form-check-input.is-invalid:checked:focus:before,.was-validated .form-check-input:invalid:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:none}.form-check-input.is-invalid:focus:before,.was-validated .form-check-input:invalid:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.form-check-input.is-invalid[type=checkbox]:checked:focus,.was-validated .form-check-input:invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.form-check-input.is-invalid[type=radio]:checked,.was-validated .form-check-input:invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.form-check-input.is-invalid[type=radio]:checked:focus:before,.was-validated .form-check-input:invalid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid[type=radio]:checked:after,.was-validated .form-check-input:invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.form-switch .form-check-input.is-invalid:focus:before,.was-validated .form-switch .form-check-input:invalid:focus:before{box-shadow:-3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-invalid:checked:focus:before,.was-validated .form-switch .form-check-input:invalid:checked:focus:before{box-shadow:-3px -1px 0 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg:transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem;font-size:.75rem;line-height:1.5}.btn.active,.btn.active:focus,.btn.focus,.btn:active,.btn:active:focus,.btn:focus,.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem}[class*=btn-outline-].focus,[class*=btn-outline-]:focus,[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-].active,[class*=btn-outline-].active:focus,[class*=btn-outline-].disabled,[class*=btn-outline-]:active,[class*=btn-outline-]:active:focus,[class*=btn-outline-]:disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}.btn-group-lg>[class*=btn-outline-].btn,[class*=btn-outline-].btn-lg{padding:.625rem 1.5625rem .5625rem}.btn-group-sm>[class*=btn-outline-].btn,[class*=btn-outline-].btn-sm{padding:.25rem .875rem .1875rem}.btn-check:active+.btn-primary:focus,.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-primary:focus,.btn-check:checked+.btn-secondary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-primary.dropdown-toggle:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success{color:#fff;background-color:#00b74a}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#00913b}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#fff;background-color:#d99000}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light.disabled,.btn-light:disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#131313}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white.focus,.btn-white:focus,.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white.disabled,.btn-white:disabled{color:#4f4f4f;background-color:#fff}.btn-black,.btn-black.active,.btn-black.focus,.btn-black:active,.btn-black:focus,.btn-black:hover,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black.disabled,.btn-black:disabled{color:#fff;background-color:#000}.btn-outline-primary:hover{background-color:rgba(0,0,0,.02)}.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:focus{background-color:transparent}.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:none}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary:hover{background-color:rgba(0,0,0,.02)}.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:focus{background-color:transparent}.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:none}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success.focus,.btn-outline-success:active,.btn-outline-success:focus{color:#00b74a;background-color:transparent}.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:none}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#00b74a}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info.focus,.btn-outline-info:active,.btn-outline-info:focus{color:#39c0ed;background-color:transparent}.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:none}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#39c0ed}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning.focus,.btn-outline-warning:active,.btn-outline-warning:focus{color:#ffa900;background-color:transparent}.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:none}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffa900}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger.focus,.btn-outline-danger:active,.btn-outline-danger:focus{color:#f93154;background-color:transparent}.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:none}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#f93154}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light.focus,.btn-outline-light:active,.btn-outline-light:focus{color:#f9f9f9;background-color:transparent}.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:none}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f9f9f9}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark.focus,.btn-outline-dark:active,.btn-outline-dark:focus{color:#262626;background-color:transparent}.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:none}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#262626}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white.focus,.btn-outline-white:active,.btn-outline-white:focus{color:#fff;background-color:transparent}.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:none}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black.focus,.btn-outline-black:active,.btn-outline-black:focus{color:#000;background-color:transparent}.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:none}.btn-outline-black.disabled,.btn-outline-black:disabled{color:#000}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black{color:#fff;background-color:#000}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.6875rem .6875rem;font-size:.875rem;line-height:1.6}.btn-group-sm>.btn,.btn-sm{padding:.375rem 1rem .3125rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link.focus,.btn-link:focus,.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link.active,.btn-link.active:focus,.btn-link:active,.btn-link:active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link.disabled,.btn-link:disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fab,.btn-floating .far,.btn-floating .fas{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fab,.btn-floating.btn-lg .far,.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fab,.btn-group-lg>.btn-floating.btn .far,.btn-group-lg>.btn-floating.btn .fas{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fab,.btn-floating.btn-sm .far,.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fab,.btn-group-sm>.btn-floating.btn .far,.btn-group-sm>.btn-floating.btn .fas{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fab,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fas{width:2.0625rem;line-height:2.0625rem}.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .fab,[class*=btn-outline-].btn-floating.btn-lg .far,[class*=btn-outline-].btn-floating.btn-lg .fas{width:2.5625rem;line-height:2.5625rem}.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .fab,[class*=btn-outline-].btn-floating.btn-sm .far,[class*=btn-outline-].btn-floating.btn-sm .fas{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;left:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;right:0;left:0;display:flex;flex-direction:column;padding:0;margin:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-left:auto;margin-bottom:1.5rem;margin-right:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn.active ul,.fixed-action-btn ul a.btn.shown{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child,.dropdown-menu>li:first-child .dropdown-item{border-top-right-radius:.5rem;border-top-left-radius:.5rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child,.dropdown-menu>li:last-child .dropdown-item{border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item.active,.dropdown-item:active,.dropdown-item:focus,.dropdown-item:hover{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none!important;-webkit-animation:unset!important;animation:unset!important}}@-webkit-keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{0%{opacity:1}to{opacity:0}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group-vertical.active,.btn-group-vertical.active:focus,.btn-group-vertical.focus,.btn-group-vertical:active,.btn-group-vertical:active:focus,.btn-group-vertical:focus,.btn-group-vertical:hover,.btn-group.active,.btn-group.active:focus,.btn-group.focus,.btn-group:active,.btn-group:active:focus,.btn-group:focus,.btn-group:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group-vertical.disabled,.btn-group-vertical:disabled,.btn-group.disabled,.btn-group:disabled,fieldset:disabled .btn-group,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group>.btn,.btn-group>.btn-group{box-shadow:none}.btn-group-vertical>.btn-link:first-child,.btn-group>.btn-link:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-link:last-child,.btn-group>.btn-link:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border:solid transparent;border-width:0 0 2px;border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px}.nav-tabs .nav-link:hover{background-color:#f5f5f5}.nav-pills{margin-right:-.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-left:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-dark .navbar-toggler-icon,.navbar-light .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.card-header{background-color:hsla(0,0%,100%,0)}.card-body[class*=bg-]{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.card-footer{background-color:hsla(0,0%,100%,0)}.card-img-left{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.navbar .breadcrumb{background-color:transparent;margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:focus,.navbar .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{font-size:.9rem;background-color:transparent;border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link,.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:not(:first-child) .page-link{margin-right:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-circle .page-item:first-child .page-link,.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-right:.841rem;padding-left:.841rem}.pagination-circle.pagination-lg .page-link{padding-right:1.399414rem;padding-left:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-right:.696rem;padding-left:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-right:-.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-.1rem;margin-right:-.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action,.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:focus,.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content,.toast{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:transparent;color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:none;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:transparent;box-shadow:none;color:#1266f1;font-weight:600;border-right:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0,0,.15,1),cubic-bezier(0,0,.15,1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle,rgba(178,60,253,.2) 0,rgba(178,60,253,.3) 40%,rgba(178,60,253,.4) 50%,rgba(178,60,253,.5) 60%,rgba(178,60,253,0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle,rgba(0,183,74,.2) 0,rgba(0,183,74,.3) 40%,rgba(0,183,74,.4) 50%,rgba(0,183,74,.5) 60%,rgba(0,183,74,0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle,rgba(57,192,237,.2) 0,rgba(57,192,237,.3) 40%,rgba(57,192,237,.4) 50%,rgba(57,192,237,.5) 60%,rgba(57,192,237,0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle,rgba(255,169,0,.2) 0,rgba(255,169,0,.3) 40%,rgba(255,169,0,.4) 50%,rgba(255,169,0,.5) 60%,rgba(255,169,0,0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle,rgba(249,49,84,.2) 0,rgba(249,49,84,.3) 40%,rgba(249,49,84,.4) 50%,rgba(249,49,84,.5) 60%,rgba(249,49,84,0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,97.6%,.2) 0,hsla(0,0%,97.6%,.3) 40%,hsla(0,0%,97.6%,.4) 50%,hsla(0,0%,97.6%,.5) 60%,hsla(0,0%,97.6%,0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle,rgba(38,38,38,.2) 0,rgba(38,38,38,.3) 40%,rgba(38,38,38,.4) 50%,rgba(38,38,38,.5) 60%,rgba(38,38,38,0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%)}.range{position:relative}.range .thumb{height:30px;width:30px;top:-35px;margin-right:-15px;text-align:center;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb,.range .thumb:after{position:absolute;display:block;border-radius:50% 50% 0 50%}.range .thumb:after{content:"";transform:translateX(50%);width:100%;height:100%;top:0;transform:rotate(45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-next-icon:after{content:""}.carousel-control-next-icon:after,.carousel-control-prev-icon:after{font-weight:700;font-family:Font Awesome\ 6 Pro,Font Awesome\ 6 Free;font-size:1.7rem}.carousel-control-prev-icon:after{content:""}body{background-color:#303030;color:#fff}.bg-body{background-color:#303030!important}.bg-primary{background-color:#1266f1!important;color:#fff}.bg-secondary{background-color:#b23cfd!important;color:#fff}.border,.border-bottom,.border-left,.border-right,.border-top{border-color:hsla(0,0%,100%,.12)!important}.border-primary{border-color:#1266f1!important}.border-secondary{border-color:#b23cfd!important}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-next):not(.carousel-control-prev){color:#72a4f7}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-next):not(.carousel-control-prev):hover{color:#5a95f5}.text-primary{color:#1266f1!important}.text-secondary{color:#b23cfd!important}.note{color:#424242}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.btn-primary{background-color:#1266f1;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#0c56d0;color:#fff}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{background-color:#093d94;color:#fff}.btn-primary.disabled,.btn-primary:disabled{background-color:#1266f1;color:#fff}.btn-secondary{background-color:#b23cfd;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#a316fd;color:#fff}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{background-color:#8102d1;color:#fff}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#b23cfd;color:#fff}.btn-outline-primary,.btn-outline-primary:hover{color:#1266f1;border-color:#1266f1}.btn-outline-primary.active,.btn-outline-primary.disabled,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:disabled,.btn-outline-primary:focus{color:#1266f1}.btn-outline-secondary,.btn-outline-secondary:hover{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary.active,.btn-outline-secondary.disabled,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:disabled,.btn-outline-secondary:focus{color:#b23cfd}.btn-link{color:#72a4f7}.btn-link:hover{color:#5a95f5}.btn-link.active,.btn-link.active:focus,.btn-link.focus,.btn-link:active,.btn-link:active:focus,.btn-link:focus,.btn-link:hover{background-color:rgba(0,0,0,.15)}.list-group-item{background-color:#424242;border-color:hsla(0,0%,100%,.12)}.list-group-item.active{background-color:#1266f1;border-color:#1266f1}.list-group-item.disabled,.list-group-item:disabled{background-color:#424242}.list-group-item-action.active:focus,.list-group-item-action.active:hover{background-color:#1266f1;border-color:#1266f1}.list-group-item-action{color:#fff}.list-group-item-action:active,.list-group-item-action:focus,.list-group-item-action:hover{color:#fff;background:hsla(0,0%,100%,.3)}.list-group-item-action.list-group-item-primary{color:#8ab4f8}.list-group-item-action.list-group-item-primary:hover{color:#5a95f5;background-color:#d3e2fc}.list-group-item-action.list-group-item-secondary:hover{color:#9002ea;background-color:#daa1fe}.list-group-item-primary{color:#1266f1}.list-group-item-secondary{color:#b23cfd}.card{background-color:#424242;box-shadow:0 10px 20px 0 rgba(0,0,0,.25)}.card-header{border-bottom-color:hsla(0,0%,100%,.12)}.card-footer,.card-header{background-color:#424242!important}.card-footer{border-top-color:hsla(0,0%,100%,.12)}.card-link{color:#72a4f7}.card-link:hover{color:#5a95f5}.modal-content{background-color:#424242}.modal-header{border-bottom-color:hsla(0,0%,100%,.12);color:#fff}.modal-footer{border-top-color:hsla(0,0%,100%,.12)}.btn-close{filter:invert(1) grayscale(100%) brightness(200%);width:20px}.dropdown-menu{color:#fff;background-color:#424242;box-shadow:0 5px 15px 0 rgba(0,0,0,.25)}.dropdown-item{color:#fff}.dropdown-item.active,.dropdown-item:active,.dropdown-item:focus,.dropdown-item:hover{color:#fff;background:hsla(0,0%,100%,.3)}.dropdown-divider{border-color:hsla(0,0%,100%,.12)}.dropdown-header,.dropdown-item-text{color:#dee2e6}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before,.navbar .breadcrumb .breadcrumb-item a,.navbar .breadcrumb .breadcrumb-item a:focus,.navbar .breadcrumb .breadcrumb-item a:hover{color:#fff}.nav-tabs .nav-link{border-color:transparent;color:#dee2e6}.nav-tabs .nav-link:hover{background-color:transparent;border-color:transparent}.nav-tabs .nav-link:focus{border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#1266f1;border-color:#1266f1;background-color:transparent}.nav-pills:not(.menu-sidebar) .nav-link{background-color:#424242;color:#fff}.nav-pills:not(.menu-sidebar) .nav-link.active,.nav-pills:not(.menu-sidebar) .show>.nav-link{color:#fff;background-color:#1266f1}.navbar-brand,.navbar-brand:hover,.navbar-nav .nav-link,.navbar-nav .nav-link:focus,.navbar-nav .nav-link:hover,.navbar-scroll .fa-bars,.navbar-scroll .nav-link,.navbar-scrolled .fa-bars,.navbar-scrolled .nav-link{color:#fff}.navbar-scrolled{background-color:#1266f1}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{color:#fff}.page-link:hover{color:#fff;background:rgba(0,0,0,.15)}.page-link:focus{color:#fff;background-color:rgba(0,0,0,.15)}.page-item.active .page-link{background-color:#1266f1}.page-item.disabled .page-link{background-color:rgba(0,0,0,.15)}.popover{background-color:#424242}.popover-body{color:#fff}.popover-header{background-color:#424242;border-bottom-color:hsla(0,0%,100%,.12)}.progress-bar{background-color:#1266f1}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle,rgba(18,102,241,.2) 0,rgba(18,102,241,.3) 40%,rgba(18,102,241,.4) 50%,rgba(18,102,241,.5) 60%,rgba(18,102,241,0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle,rgba(178,60,253,.2) 0,rgba(178,60,253,.3) 40%,rgba(178,60,253,.4) 50%,rgba(178,60,253,.5) 60%,rgba(18,102,241,0) 70%)}.nav-pills.menu-sidebar .nav-link{color:#fff}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{color:#72a4f7;border-right-color:#72a4f7}.accordion-item{background-color:#424242;border:1px solid hsla(0,0%,100%,.2)}.accordion-button,.accordion-button:not(.collapsed){background-color:#424242;color:#fff}.accordion-button:not(.collapsed){box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.2)}.accordion-button:after,.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E")}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.2)}.shadow-1-primary{box-shadow:0 2px 5px 0 rgba(18,102,241,.25),0 3px 10px 0 rgba(18,102,241,.2)}.shadow-2-primary{box-shadow:0 4px 8px 0 rgba(18,102,241,.25),0 5px 15px 2px rgba(18,102,241,.2)}.shadow-3-primary{box-shadow:0 6px 11px 0 rgba(18,102,241,.25),0 7px 20px 3px rgba(18,102,241,.2)}.shadow-4-primary{box-shadow:0 6px 14px 0 rgba(18,102,241,.25),0 10px 30px 4px rgba(18,102,241,.2)}.shadow-5-primary{box-shadow:0 6px 20px 0 rgba(18,102,241,.25),0 12px 40px 5px rgba(18,102,241,.2)}.shadow-1-secondary{box-shadow:0 2px 5px 0 rgba(178,60,253,.25),0 3px 10px 0 rgba(178,60,253,.2)}.shadow-2-secondary{box-shadow:0 4px 8px 0 rgba(178,60,253,.25),0 5px 15px 2px rgba(178,60,253,.2)}.shadow-3-secondary{box-shadow:0 6px 11px 0 rgba(178,60,253,.25),0 7px 20px 3px rgba(178,60,253,.2)}.shadow-4-secondary{box-shadow:0 6px 14px 0 rgba(178,60,253,.25),0 10px 30px 4px rgba(178,60,253,.2)}.shadow-5-secondary{box-shadow:0 6px 20px 0 rgba(178,60,253,.25),0 12px 40px 5px rgba(178,60,253,.2)}.table{background:#424242;color:#fff;border-color:hsla(0,0%,100%,.12)}.table>:not(:last-child)>:last-child>*{border-bottom-color:hsla(0,0%,100%,.12)}.text-muted{color:#a3a3a3!important}td,th{border-color:hsla(0,0%,100%,.12)}.table-active,.table-hover>tbody>tr:hover,.table-striped>tbody>tr:nth-of-type(odd){color:#fff}.table-light{background-color:#323232;color:#fff}caption{color:#dee2e6}.link-primary{color:#72a4f7}.link-primary:hover{color:#5a95f5}.link-secondary{color:#daa1fe}.link-secondary:hover{color:#d088fe}.tooltip-inner{color:#fff;background-color:#757575}.form-check-input{background-color:transparent;border-color:hsla(0,0%,100%,.7)}.form-check-input:before{background-color:transparent;box-shadow:0 0 0 13px transparent}.form-check-input:hover:before{box-shadow:transparent}.form-check-input:focus{border-color:hsla(0,0%,100%,.7)}.form-check-input:focus:before{box-shadow:0 0 0 13px hsla(0,0%,100%,.6)}.form-check-input:checked,.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0 0 0 13px #1266f1}.form-check-input:indeterminate:focus:before{box-shadow:0 0 0 13px #1266f1}.form-check-input[type=checkbox]:focus:after{background-color:#303030}.form-check-input[type=checkbox]:checked{background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{border-color:#fff;background-color:transparent}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{background-color:transparent;border-color:hsla(0,0%,100%,.7)}.form-check-input[type=checkbox]:indeterminate:after{border-color:#fff}.form-check-input[type=checkbox]:indeterminate:focus{background-color:#1266f1;border-color:#1266f1}.form-check-input[type=radio]:after,.form-check-input[type=radio]:checked{background-color:transparent}.form-check-input[type=radio]:checked:after{border-color:#1266f1;background-color:#1266f1}.form-check-input[type=radio]:checked:focus{background-color:transparent}.form-switch .form-check-input{background-color:hsla(0,0%,100%,.38)}.form-switch .form-check-input:after{background-color:#dee2e6;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input:focus:before{box-shadow:-3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input[type=checkbox]:focus:after{background-color:#dee2e6}.form-switch .form-check-input:checked{background-color:#1266f1}.form-switch .form-check-input:checked:focus:before{box-shadow:-3px -1px 0 13px #1266f1}.form-switch .form-check-input:checked[type=checkbox]:after{background-color:#1266f1;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-label{color:hsla(0,0%,100%,.7)}.form-control,.form-control:focus{background-color:transparent}.form-control:focus{color:hsla(0,0%,100%,.7)}.form-control::-moz-placeholder{color:#6c757d}.form-control::placeholder{color:#6c757d}.form-control{color:hsla(0,0%,100%,.7)}.form-control:focus{border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.form-outline .form-control{background:transparent;color:hsla(0,0%,100%,.7)}.form-outline .form-control~.form-label{color:hsla(0,0%,100%,.7)}.form-outline .form-control~.form-notch div{border-color:hsla(0,0%,100%,.7);background:transparent}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid transparent}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control.disabled,.form-outline .form-control:disabled,.form-outline .form-control[readonly]:not(.select-input){background-color:hsla(0,0%,100%,.2)}.select-input.focused~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.select-input.focused~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid transparent}.select-input.focused~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-range::-webkit-slider-thumb{background-color:#1266f1}.form-range::-moz-range-thumb{background-color:#1266f1}.form-range::-ms-thumb{background-color:#1266f1}.form-range:focus::-webkit-slider-thumb{background-color:#1266f1}.form-range:focus::-moz-range-thumb{background-color:#1266f1}.form-range:focus::-ms-thumb{background-color:#1266f1}.form-file-input:focus-within~.form-file-label{border-color:#1266f1;box-shadow:0 0 0 1px #1266f1}.form-file-input:disabled~.form-file-label .form-file-button,.form-file-input:disabled~.form-file-label .form-file-text,.form-file-input[disabled]~.form-file-label .form-file-button,.form-file-input[disabled]~.form-file-label .form-file-text{background-color:hsla(0,0%,100%,.2)}.form-file-label{border-color:hsla(0,0%,100%,.7)}.form-file-button,.form-file-text{background-color:transparent;color:hsla(0,0%,100%,.7)}.form-control::-webkit-file-upload-button{color:hsla(0,0%,100%,.7)}.input-group>.form-control:focus{border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:transparent;color:hsla(0,0%,100%,.7)}.input-group.form-outline input+.input-group-text{border-right-color:hsla(0,0%,100%,.7)}.loading-spinner{color:#1266f1} +/*# sourceMappingURL=mdb.dark.rtl.min.css.map */ \ No newline at end of file diff --git a/css/mdb.dark.rtl.min.css.map b/css/mdb.dark.rtl.min.css.map new file mode 100644 index 000000000..1820e9b03 --- /dev/null +++ b/css/mdb.dark.rtl.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["","mdb.dark.rtl.min.css"],"names":[],"mappings":"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","file":"mdb.dark.rtl.min.css","sourcesContent":["\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}",":root{--mdb-blue: #0d6efd;--mdb-indigo: #6610f2;--mdb-purple: #6f42c1;--mdb-pink: #d63384;--mdb-red: #dc3545;--mdb-orange: #fd7e14;--mdb-yellow: #ffc107;--mdb-green: #198754;--mdb-teal: #20c997;--mdb-cyan: #0dcaf0;--mdb-white: #fff;--mdb-gray: #757575;--mdb-gray-dark: #4f4f4f;--mdb-gray-100: #f5f5f5;--mdb-gray-200: #eeeeee;--mdb-gray-300: #e0e0e0;--mdb-gray-400: #bdbdbd;--mdb-gray-500: #9e9e9e;--mdb-gray-600: #757575;--mdb-gray-700: #616161;--mdb-gray-800: #4f4f4f;--mdb-gray-900: #262626;--mdb-primary: #1266f1;--mdb-secondary: #b23cfd;--mdb-success: #00b74a;--mdb-info: #39c0ed;--mdb-warning: #ffa900;--mdb-danger: #f93154;--mdb-light: #f9f9f9;--mdb-dark: #262626;--mdb-white: #fff;--mdb-black: #000;--mdb-primary-rgb: 18, 102, 241;--mdb-secondary-rgb: 178, 60, 253;--mdb-success-rgb: 0, 183, 74;--mdb-info-rgb: 57, 192, 237;--mdb-warning-rgb: 255, 169, 0;--mdb-danger-rgb: 249, 49, 84;--mdb-light-rgb: 249, 249, 249;--mdb-dark-rgb: 38, 38, 38;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-body-color-rgb: 79, 79, 79;--mdb-body-bg-rgb: 255, 255, 255;--mdb-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--mdb-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--mdb-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--mdb-body-font-family: var(--mdb-font-roboto);--mdb-body-font-size: 1rem;--mdb-body-font-weight: 400;--mdb-body-line-height: 1.6;--mdb-body-color: #4f4f4f;--mdb-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + 0.6vw)}@media(min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + 0.3vw)}@media(min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-mdb-original-title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}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-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--mdb-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:0.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}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,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}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}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#757575}.blockquote-footer::before{content:\"— \"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:#757575}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-left:var(--mdb-gutter-x, 0.75rem);padding-right:var(--mdb-gutter-x, 0.75rem);margin-left:auto;margin-right:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--mdb-gutter-x: 1.5rem;--mdb-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--mdb-gutter-y));margin-left:calc(-0.5*var(--mdb-gutter-x));margin-right:calc(-0.5*var(--mdb-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--mdb-gutter-x)*.5);padding-right:calc(var(--mdb-gutter-x)*.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--mdb-gutter-x: 0}.g-0,.gy-0{--mdb-gutter-y: 0}.g-1,.gx-1{--mdb-gutter-x: 0.25rem}.g-1,.gy-1{--mdb-gutter-y: 0.25rem}.g-2,.gx-2{--mdb-gutter-x: 0.5rem}.g-2,.gy-2{--mdb-gutter-y: 0.5rem}.g-3,.gx-3{--mdb-gutter-x: 1rem}.g-3,.gy-3{--mdb-gutter-y: 1rem}.g-4,.gx-4{--mdb-gutter-x: 1.5rem}.g-4,.gy-4{--mdb-gutter-y: 1.5rem}.g-5,.gx-5{--mdb-gutter-x: 3rem}.g-5,.gy-5{--mdb-gutter-y: 3rem}@media(min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x: 0}.g-sm-0,.gy-sm-0{--mdb-gutter-y: 0}.g-sm-1,.gx-sm-1{--mdb-gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y: 3rem}}@media(min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x: 0}.g-md-0,.gy-md-0{--mdb-gutter-y: 0}.g-md-1,.gx-md-1{--mdb-gutter-x: 0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y: 0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x: 0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y: 0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x: 1rem}.g-md-3,.gy-md-3{--mdb-gutter-y: 1rem}.g-md-4,.gx-md-4{--mdb-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x: 3rem}.g-md-5,.gy-md-5{--mdb-gutter-y: 3rem}}@media(min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x: 0}.g-lg-0,.gy-lg-0{--mdb-gutter-y: 0}.g-lg-1,.gx-lg-1{--mdb-gutter-x: 0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y: 0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x: 0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y: 0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y: 3rem}}@media(min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x: 0}.g-xl-0,.gy-xl-0{--mdb-gutter-y: 0}.g-xl-1,.gx-xl-1{--mdb-gutter-x: 0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y: 0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x: 0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y: 0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y: 3rem}}@media(min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x: 0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y: 0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x: 0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y: 0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y: 3rem}}.table{--mdb-table-bg: transparent;--mdb-table-accent-bg: transparent;--mdb-table-striped-color: #212529;--mdb-table-striped-bg: rgba(0, 0, 0, 0.02);--mdb-table-active-color: #212529;--mdb-table-active-bg: rgba(0, 0, 0, 0.1);--mdb-table-hover-color: #212529;--mdb-table-hover-bg: rgba(0, 0, 0, 0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{padding:1rem 1.4rem;background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg: var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg: var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg: var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg: #d0e0fc;--mdb-table-striped-bg: #c6d5ef;--mdb-table-striped-color: #000;--mdb-table-active-bg: #bbcae3;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c0cfe9;--mdb-table-hover-color: #000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg: #f0d8ff;--mdb-table-striped-bg: #e4cdf2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #d8c2e6;--mdb-table-active-color: #000;--mdb-table-hover-bg: #dec8ec;--mdb-table-hover-color: #000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg: #ccf1db;--mdb-table-striped-bg: #c2e5d0;--mdb-table-striped-color: #000;--mdb-table-active-bg: #b8d9c5;--mdb-table-active-color: #000;--mdb-table-hover-bg: #bddfcb;--mdb-table-hover-color: #000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg: #d7f2fb;--mdb-table-striped-bg: #cce6ee;--mdb-table-striped-color: #000;--mdb-table-active-bg: #c2dae2;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c7e0e8;--mdb-table-hover-color: #000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg: #ffeecc;--mdb-table-striped-bg: #f2e2c2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e6d6b8;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ecdcbd;--mdb-table-hover-color: #000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg: #fed6dd;--mdb-table-striped-bg: #f1cbd2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e5c1c7;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ebc6cc;--mdb-table-hover-color: #000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg: #f9f9f9;--mdb-table-striped-bg: #ededed;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e0e0e0;--mdb-table-active-color: #000;--mdb-table-hover-bg: #e6e6e6;--mdb-table-hover-color: #000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg: #262626;--mdb-table-striped-bg: #313131;--mdb-table-striped-color: #fff;--mdb-table-active-bg: #3c3c3c;--mdb-table-active-color: #fff;--mdb-table-hover-bg: #363636;--mdb-table-hover-color: #fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.775rem}.form-text{margin-top:.25rem;font-size:0.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-left:0;padding-right:0}.form-control-sm{min-height:calc(1.6em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + 0.75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + 0.5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem .75rem .375rem 2.25rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:left .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;transition:all .2s linear;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size=\"1\"]){padding-left:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-right:.5rem;font-size:0.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-right:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-right:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:right;margin-right:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1;border-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\")}.form-check-input:checked[type=radio]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-right:2.5em}.form-switch .form-check-input{width:2em;margin-right:-2.5em;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");background-position:right center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%231266f1'/%3e%3c/svg%3e\")}.form-switch .form-check-input:checked{background-position:left center;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-inline{display:inline-block;margin-left:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:rgba(0,0,0,0);-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#1266f1;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1266f1;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;right:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:100% 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(-0.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(-0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(-0.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-left:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#00b74a}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(0,183,74,.9);border-radius:.25rem}.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:#00b74a;padding-left:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:left calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) left calc(0.4em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size=\"1\"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size=\"1\"]{padding-left:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#f93154}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(249,49,84,.9);border-radius:.25rem}.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:#f93154;padding-left:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:left calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) left calc(0.4em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size=\"1\"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size=\"1\"]{padding-left:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:rgba(0,0,0,0);border:.125rem solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:0.75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0e52c1;border-color:#0e4db5}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-secondary{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#000;background-color:#be59fd;border-color:#ba50fd;box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-success{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#26c265;border-color:#1abe5c;box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success:disabled,.btn-success.disabled{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-info{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#57c9f0;border-color:#4dc6ef;box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-warning{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffb626;border-color:#ffb21a;box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-danger{color:#000;background-color:#f93154;border-color:#f93154}.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#fa506e;border-color:#fa4665;box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#000;background-color:#f93154;border-color:#f93154}.btn-light{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#fafafa;border-color:#fafafa;box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626;border-color:#262626}.btn-dark:hover{color:#fff;background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#202020;border-color:#1e1e1e;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626;border-color:#262626}.btn-white{color:#000;background-color:#fff;border-color:#fff}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-white:disabled,.btn-white.disabled{color:#000;background-color:#fff;border-color:#fff}.btn-black{color:#fff;background-color:#000;border-color:#000}.btn-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-black,.btn-black:focus{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#262626;border-color:#262626}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white,.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-outline-white:focus,.btn-check:active+.btn-outline-white:focus,.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black,.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-outline-black:focus,.btn-check:active+.btn-outline-black:focus,.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000;background-color:rgba(0,0,0,0)}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link:disabled,.btn-link.disabled{color:#757575}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:0.875rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.75rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-left:.3em solid rgba(0,0,0,0);border-bottom:0;border-right:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-right:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:0.875rem;color:#212529;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;right:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-mdb-popper]{left:0;right:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-mdb-popper]{left:0;right:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:0;border-left:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-right:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-left:0;border-bottom:.3em solid rgba(0,0,0,0);border-right:.3em solid}.dropend .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\"}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-left:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-right:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.5rem 1rem;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:#222;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:0.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-right:-0.125rem}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-right:0}.dropstart .dropdown-toggle-split::before{margin-left:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;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:-0.125rem}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-top-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid rgba(0,0,0,0);border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-left:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(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,.55)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem 1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-0.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-right:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.5rem - 1px) calc(0.5rem - 1px)}.card-header-tabs{margin-left:-0.75rem;margin-bottom:-0.75rem;margin-right:-0.75rem;border-bottom:0}.card-header-pills{margin-left:-0.75rem;margin-right:-0.75rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1.5rem;border-radius:calc(0.5rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-left-radius:0}.card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-right-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:right;padding-left:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider, \"/\")}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-right:0;list-style:none}.page-link{position:relative;display:block;color:#212529;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0;transition:all .3s linear}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#212529;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-right:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#1266f1;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:0.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.27rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:.5rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-left:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;left:0;z-index:2;padding:1.5625rem 1.5rem}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:right;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-right:auto;content:\"\";background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#1266f1;outline:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-left:0;border-right:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{display:flex;height:4px;overflow:hidden;font-size:0.75rem;background-color:#eee;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1266f1;transition:width .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:4px 4px}.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}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:\"\"}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, \".\") \". \";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:inherit;border-top-left-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1266f1;border-color:#1266f1}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:hover,.list-group-item-white.list-group-item-action:focus{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:hover,.list-group-item-black.list-group-item-action:focus{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:0.875rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-color:#fff;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.toast-header .btn-close{margin-left:-0.375rem;margin-right:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;right:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #e0e0e0;border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-0.5rem auto -0.5rem -0.5rem}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-0.5rem;content:\"\";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:right;width:100%;margin-left:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .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-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .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:.9}.carousel-control-prev{right:0}.carousel-control-next{left:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-next-icon{background-image:none}.carousel-control-prev-icon{background-image:none}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:2;display:flex;justify-content:center;padding:0;margin-left:15%;margin-bottom:1rem;margin-right:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:1.25rem;right:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentColor;border-left-color:rgba(0,0,0,0);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:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-0.5rem;margin-left:-0.5rem;margin-bottom:-0.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-end{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-top{top:0;left:0;right:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{left:0;right:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.clearfix::after{display:block;clear:both;content:\"\"}.link-primary{color:#1266f1}.link-primary:hover,.link-primary:focus{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:hover,.link-secondary:focus{color:#c163fd}.link-success{color:#00b74a}.link-success:hover,.link-success:focus{color:#33c56e}.link-info{color:#39c0ed}.link-info:hover,.link-info:focus{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:hover,.link-warning:focus{color:#ffba33}.link-danger{color:#f93154}.link-danger:hover,.link-danger:focus{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:hover,.link-light:focus{color:#fafafa}.link-dark{color:#262626}.link-dark:hover,.link-dark:focus{color:#1e1e1e}.link-white{color:#fff}.link-white:hover,.link-white:focus{color:#fff}.link-black{color:#000}.link-black:hover,.link-black:focus{color:#000}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--mdb-aspect-ratio);content:\"\"}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio: 100%}.ratio-4x3{--mdb-aspect-ratio: 75%}.ratio-16x9{--mdb-aspect-ratio: 56.25%}.ratio-21x9{--mdb-aspect-ratio: 42.8571428571%}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:\"\"}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}.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}.float-start{float:right !important}.float-end{float:left !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-5{opacity:.05 !important}.opacity-10{opacity:.1 !important}.opacity-15{opacity:.15 !important}.opacity-20{opacity:.2 !important}.opacity-25{opacity:.25 !important}.opacity-30{opacity:.3 !important}.opacity-35{opacity:.35 !important}.opacity-40{opacity:.4 !important}.opacity-45{opacity:.45 !important}.opacity-50{opacity:.5 !important}.opacity-55{opacity:.55 !important}.opacity-60{opacity:.6 !important}.opacity-65{opacity:.65 !important}.opacity-70{opacity:.7 !important}.opacity-75{opacity:.75 !important}.opacity-80{opacity:.8 !important}.opacity-85{opacity:.85 !important}.opacity-90{opacity:.9 !important}.opacity-95{opacity:.95 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.shadow-0{box-shadow:none !important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07) !important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05) !important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05) !important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05) !important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05) !important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21) !important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05) !important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05) !important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05) !important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05) !important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05) !important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05) !important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21) !important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21) !important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21) !important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21) !important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21) !important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21) !important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06) !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}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{right:0 !important}.start-50{right:50% !important}.start-100{right:100% !important}.end-0{left:0 !important}.end-50{left:50% !important}.end-100{left:100% !important}.translate-middle{transform:translate(50%, -50%) !important}.translate-middle-x{transform:translateX(50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #e0e0e0 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #e0e0e0 !important}.border-top-0{border-top:0 !important}.border-end{border-left:1px solid #e0e0e0 !important}.border-end-0{border-left:0 !important}.border-bottom{border-bottom:1px solid #e0e0e0 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-right:1px solid #e0e0e0 !important}.border-start-0{border-right:0 !important}.border-primary{border-color:#1266f1 !important}.border-secondary{border-color:#b23cfd !important}.border-success{border-color:#00b74a !important}.border-info{border-color:#39c0ed !important}.border-warning{border-color:#ffa900 !important}.border-danger{border-color:#f93154 !important}.border-light{border-color:#f9f9f9 !important}.border-dark{border-color:#262626 !important}.border-white{border-color:#fff !important}.border-black{border-color:#000 !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !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}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !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}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-3{margin-left:1rem !important;margin-right:1rem !important}.mx-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-5{margin-left:3rem !important;margin-right:3rem !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-left:0 !important}.me-1{margin-left:.25rem !important}.me-2{margin-left:.5rem !important}.me-3{margin-left:1rem !important}.me-4{margin-left:1.5rem !important}.me-5{margin-left:3rem !important}.me-auto{margin-left:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.mb-6{margin-bottom:3.5rem !important}.mb-7{margin-bottom:4rem !important}.mb-8{margin-bottom:5rem !important}.mb-9{margin-bottom:6rem !important}.mb-10{margin-bottom:8rem !important}.mb-11{margin-bottom:10rem !important}.mb-12{margin-bottom:12rem !important}.mb-13{margin-bottom:14rem !important}.mb-14{margin-bottom:16rem !important}.ms-0{margin-right:0 !important}.ms-1{margin-right:.25rem !important}.ms-2{margin-right:.5rem !important}.ms-3{margin-right:1rem !important}.ms-4{margin-right:1.5rem !important}.ms-5{margin-right:3rem !important}.ms-auto{margin-right:auto !important}.m-n1{margin:-0.25rem !important}.m-n2{margin:-0.5rem !important}.m-n3{margin:-1rem !important}.m-n4{margin:-1.5rem !important}.m-n5{margin:-3rem !important}.mx-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-n1{margin-top:-0.25rem !important}.mt-n2{margin-top:-0.5rem !important}.mt-n3{margin-top:-1rem !important}.mt-n4{margin-top:-1.5rem !important}.mt-n5{margin-top:-3rem !important}.me-n1{margin-left:-0.25rem !important}.me-n2{margin-left:-0.5rem !important}.me-n3{margin-left:-1rem !important}.me-n4{margin-left:-1.5rem !important}.me-n5{margin-left:-3rem !important}.mb-n1{margin-bottom:-0.25rem !important}.mb-n2{margin-bottom:-0.5rem !important}.mb-n3{margin-bottom:-1rem !important}.mb-n4{margin-bottom:-1.5rem !important}.mb-n5{margin-bottom:-3rem !important}.ms-n1{margin-right:-0.25rem !important}.ms-n2{margin-right:-0.5rem !important}.ms-n3{margin-right:-1rem !important}.ms-n4{margin-right:-1.5rem !important}.ms-n5{margin-right:-3rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-left:0 !important;padding-right:0 !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-3{padding-left:1rem !important;padding-right:1rem !important}.px-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-5{padding-left:3rem !important;padding-right:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-left:0 !important}.pe-1{padding-left:.25rem !important}.pe-2{padding-left:.5rem !important}.pe-3{padding-left:1rem !important}.pe-4{padding-left:1.5rem !important}.pe-5{padding-left:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-right:0 !important}.ps-1{padding-right:.25rem !important}.ps-2{padding-right:.5rem !important}.ps-3{padding-right:1rem !important}.ps-4{padding-right:1.5rem !important}.ps-5{padding-right:3rem !important}.font-monospace{font-family:var(--mdb-font-monospace) !important}.fs-1{font-size:calc(1.375rem + 1.5vw) !important}.fs-2{font-size:calc(1.325rem + 0.9vw) !important}.fs-3{font-size:calc(1.3rem + 0.6vw) !important}.fs-4{font-size:calc(1.275rem + 0.3vw) !important}.fs-5{font-size:1.25rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.6 !important}.lh-lg{line-height:2 !important}.text-start{text-align:right !important}.text-end{text-align:left !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-primary{--mdb-text-opacity: 1;color:rgba(var(--mdb-primary-rgb), var(--mdb-text-opacity)) !important}.text-secondary{--mdb-text-opacity: 1;color:rgba(var(--mdb-secondary-rgb), var(--mdb-text-opacity)) !important}.text-success{--mdb-text-opacity: 1;color:rgba(var(--mdb-success-rgb), var(--mdb-text-opacity)) !important}.text-info{--mdb-text-opacity: 1;color:rgba(var(--mdb-info-rgb), var(--mdb-text-opacity)) !important}.text-warning{--mdb-text-opacity: 1;color:rgba(var(--mdb-warning-rgb), var(--mdb-text-opacity)) !important}.text-danger{--mdb-text-opacity: 1;color:rgba(var(--mdb-danger-rgb), var(--mdb-text-opacity)) !important}.text-light{--mdb-text-opacity: 1;color:rgba(var(--mdb-light-rgb), var(--mdb-text-opacity)) !important}.text-dark{--mdb-text-opacity: 1;color:rgba(var(--mdb-dark-rgb), var(--mdb-text-opacity)) !important}.text-white{--mdb-text-opacity: 1;color:rgba(var(--mdb-white-rgb), var(--mdb-text-opacity)) !important}.text-black{--mdb-text-opacity: 1;color:rgba(var(--mdb-black-rgb), var(--mdb-text-opacity)) !important}.text-body{--mdb-text-opacity: 1;color:rgba(var(--mdb-body-color-rgb), var(--mdb-text-opacity)) !important}.text-muted{--mdb-text-opacity: 1;color:#757575 !important}.text-black-50{--mdb-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--mdb-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-reset{--mdb-text-opacity: 1;color:inherit !important}.text-opacity-25{--mdb-text-opacity: 0.25}.text-opacity-50{--mdb-text-opacity: 0.5}.text-opacity-75{--mdb-text-opacity: 0.75}.text-opacity-100{--mdb-text-opacity: 1}.bg-primary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-primary-rgb), var(--mdb-bg-opacity)) !important}.bg-secondary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-secondary-rgb), var(--mdb-bg-opacity)) !important}.bg-success{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-success-rgb), var(--mdb-bg-opacity)) !important}.bg-info{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-info-rgb), var(--mdb-bg-opacity)) !important}.bg-warning{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-warning-rgb), var(--mdb-bg-opacity)) !important}.bg-danger{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-danger-rgb), var(--mdb-bg-opacity)) !important}.bg-light{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important}.bg-dark{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-dark-rgb), var(--mdb-bg-opacity)) !important}.bg-white{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-white-rgb), var(--mdb-bg-opacity)) !important}.bg-black{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-black-rgb), var(--mdb-bg-opacity)) !important}.bg-body{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-body-bg-rgb), var(--mdb-bg-opacity)) !important}.bg-transparent{--mdb-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-opacity-10{--mdb-bg-opacity: 0.1}.bg-opacity-25{--mdb-bg-opacity: 0.25}.bg-opacity-50{--mdb-bg-opacity: 0.5}.bg-opacity-75{--mdb-bg-opacity: 0.75}.bg-opacity-100{--mdb-bg-opacity: 1}.bg-gradient{background-image:var(--mdb-gradient) !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;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2rem !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-4{border-radius:.375rem !important}.rounded-5{border-radius:.5rem !important}.rounded-6{border-radius:.75rem !important}.rounded-7{border-radius:1rem !important}.rounded-8{border-radius:1.25rem !important}.rounded-9{border-radius:1.5rem !important}.rounded-top{border-top-right-radius:.25rem !important;border-top-left-radius:.25rem !important}.rounded-end{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-bottom{border-bottom-left-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-start{border-bottom-right-radius:.25rem !important;border-top-right-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.ls-tighter{letter-spacing:-0.05em !important}.ls-tight{letter-spacing:-0.025em !important}.ls-normal{letter-spacing:0em !important}.ls-wide{letter-spacing:.025em !important}.ls-wider{letter-spacing:.05em !important}.ls-widest{letter-spacing:.1em !important}@media(min-width: 576px){.float-sm-start{float:right !important}.float-sm-end{float:left !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !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:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-left:0 !important;margin-right:0 !important}.mx-sm-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-sm-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-sm-3{margin-left:1rem !important;margin-right:1rem !important}.mx-sm-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-sm-5{margin-left:3rem !important;margin-right:3rem !important}.mx-sm-auto{margin-left:auto !important;margin-right:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-left:0 !important}.me-sm-1{margin-left:.25rem !important}.me-sm-2{margin-left:.5rem !important}.me-sm-3{margin-left:1rem !important}.me-sm-4{margin-left:1.5rem !important}.me-sm-5{margin-left:3rem !important}.me-sm-auto{margin-left:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.mb-sm-6{margin-bottom:3.5rem !important}.mb-sm-7{margin-bottom:4rem !important}.mb-sm-8{margin-bottom:5rem !important}.mb-sm-9{margin-bottom:6rem !important}.mb-sm-10{margin-bottom:8rem !important}.mb-sm-11{margin-bottom:10rem !important}.mb-sm-12{margin-bottom:12rem !important}.mb-sm-13{margin-bottom:14rem !important}.mb-sm-14{margin-bottom:16rem !important}.ms-sm-0{margin-right:0 !important}.ms-sm-1{margin-right:.25rem !important}.ms-sm-2{margin-right:.5rem !important}.ms-sm-3{margin-right:1rem !important}.ms-sm-4{margin-right:1.5rem !important}.ms-sm-5{margin-right:3rem !important}.ms-sm-auto{margin-right:auto !important}.m-sm-n1{margin:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mx-sm-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-sm-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-sm-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-sm-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-sm-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-sm-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-sm-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-sm-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-sm-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-sm-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-sm-n1{margin-top:-0.25rem !important}.mt-sm-n2{margin-top:-0.5rem !important}.mt-sm-n3{margin-top:-1rem !important}.mt-sm-n4{margin-top:-1.5rem !important}.mt-sm-n5{margin-top:-3rem !important}.me-sm-n1{margin-left:-0.25rem !important}.me-sm-n2{margin-left:-0.5rem !important}.me-sm-n3{margin-left:-1rem !important}.me-sm-n4{margin-left:-1.5rem !important}.me-sm-n5{margin-left:-3rem !important}.mb-sm-n1{margin-bottom:-0.25rem !important}.mb-sm-n2{margin-bottom:-0.5rem !important}.mb-sm-n3{margin-bottom:-1rem !important}.mb-sm-n4{margin-bottom:-1.5rem !important}.mb-sm-n5{margin-bottom:-3rem !important}.ms-sm-n1{margin-right:-0.25rem !important}.ms-sm-n2{margin-right:-0.5rem !important}.ms-sm-n3{margin-right:-1rem !important}.ms-sm-n4{margin-right:-1.5rem !important}.ms-sm-n5{margin-right:-3rem !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-left:0 !important;padding-right:0 !important}.px-sm-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-sm-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-sm-3{padding-left:1rem !important;padding-right:1rem !important}.px-sm-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-sm-5{padding-left:3rem !important;padding-right:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-left:0 !important}.pe-sm-1{padding-left:.25rem !important}.pe-sm-2{padding-left:.5rem !important}.pe-sm-3{padding-left:1rem !important}.pe-sm-4{padding-left:1.5rem !important}.pe-sm-5{padding-left:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-right:0 !important}.ps-sm-1{padding-right:.25rem !important}.ps-sm-2{padding-right:.5rem !important}.ps-sm-3{padding-right:1rem !important}.ps-sm-4{padding-right:1.5rem !important}.ps-sm-5{padding-right:3rem !important}.text-sm-start{text-align:right !important}.text-sm-end{text-align:left !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:right !important}.float-md-end{float:left !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !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:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-left:0 !important;margin-right:0 !important}.mx-md-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-md-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-md-3{margin-left:1rem !important;margin-right:1rem !important}.mx-md-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-md-5{margin-left:3rem !important;margin-right:3rem !important}.mx-md-auto{margin-left:auto !important;margin-right:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-left:0 !important}.me-md-1{margin-left:.25rem !important}.me-md-2{margin-left:.5rem !important}.me-md-3{margin-left:1rem !important}.me-md-4{margin-left:1.5rem !important}.me-md-5{margin-left:3rem !important}.me-md-auto{margin-left:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.mb-md-6{margin-bottom:3.5rem !important}.mb-md-7{margin-bottom:4rem !important}.mb-md-8{margin-bottom:5rem !important}.mb-md-9{margin-bottom:6rem !important}.mb-md-10{margin-bottom:8rem !important}.mb-md-11{margin-bottom:10rem !important}.mb-md-12{margin-bottom:12rem !important}.mb-md-13{margin-bottom:14rem !important}.mb-md-14{margin-bottom:16rem !important}.ms-md-0{margin-right:0 !important}.ms-md-1{margin-right:.25rem !important}.ms-md-2{margin-right:.5rem !important}.ms-md-3{margin-right:1rem !important}.ms-md-4{margin-right:1.5rem !important}.ms-md-5{margin-right:3rem !important}.ms-md-auto{margin-right:auto !important}.m-md-n1{margin:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.m-md-n3{margin:-1rem !important}.m-md-n4{margin:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mx-md-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-md-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-md-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-md-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-md-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-md-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-md-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-md-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-md-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-md-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-md-n1{margin-top:-0.25rem !important}.mt-md-n2{margin-top:-0.5rem !important}.mt-md-n3{margin-top:-1rem !important}.mt-md-n4{margin-top:-1.5rem !important}.mt-md-n5{margin-top:-3rem !important}.me-md-n1{margin-left:-0.25rem !important}.me-md-n2{margin-left:-0.5rem !important}.me-md-n3{margin-left:-1rem !important}.me-md-n4{margin-left:-1.5rem !important}.me-md-n5{margin-left:-3rem !important}.mb-md-n1{margin-bottom:-0.25rem !important}.mb-md-n2{margin-bottom:-0.5rem !important}.mb-md-n3{margin-bottom:-1rem !important}.mb-md-n4{margin-bottom:-1.5rem !important}.mb-md-n5{margin-bottom:-3rem !important}.ms-md-n1{margin-right:-0.25rem !important}.ms-md-n2{margin-right:-0.5rem !important}.ms-md-n3{margin-right:-1rem !important}.ms-md-n4{margin-right:-1.5rem !important}.ms-md-n5{margin-right:-3rem !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-left:0 !important;padding-right:0 !important}.px-md-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-md-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-md-3{padding-left:1rem !important;padding-right:1rem !important}.px-md-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-md-5{padding-left:3rem !important;padding-right:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-left:0 !important}.pe-md-1{padding-left:.25rem !important}.pe-md-2{padding-left:.5rem !important}.pe-md-3{padding-left:1rem !important}.pe-md-4{padding-left:1.5rem !important}.pe-md-5{padding-left:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-right:0 !important}.ps-md-1{padding-right:.25rem !important}.ps-md-2{padding-right:.5rem !important}.ps-md-3{padding-right:1rem !important}.ps-md-4{padding-right:1.5rem !important}.ps-md-5{padding-right:3rem !important}.text-md-start{text-align:right !important}.text-md-end{text-align:left !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:right !important}.float-lg-end{float:left !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !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:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-left:0 !important;margin-right:0 !important}.mx-lg-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-lg-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-lg-3{margin-left:1rem !important;margin-right:1rem !important}.mx-lg-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-lg-5{margin-left:3rem !important;margin-right:3rem !important}.mx-lg-auto{margin-left:auto !important;margin-right:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-left:0 !important}.me-lg-1{margin-left:.25rem !important}.me-lg-2{margin-left:.5rem !important}.me-lg-3{margin-left:1rem !important}.me-lg-4{margin-left:1.5rem !important}.me-lg-5{margin-left:3rem !important}.me-lg-auto{margin-left:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.mb-lg-6{margin-bottom:3.5rem !important}.mb-lg-7{margin-bottom:4rem !important}.mb-lg-8{margin-bottom:5rem !important}.mb-lg-9{margin-bottom:6rem !important}.mb-lg-10{margin-bottom:8rem !important}.mb-lg-11{margin-bottom:10rem !important}.mb-lg-12{margin-bottom:12rem !important}.mb-lg-13{margin-bottom:14rem !important}.mb-lg-14{margin-bottom:16rem !important}.ms-lg-0{margin-right:0 !important}.ms-lg-1{margin-right:.25rem !important}.ms-lg-2{margin-right:.5rem !important}.ms-lg-3{margin-right:1rem !important}.ms-lg-4{margin-right:1.5rem !important}.ms-lg-5{margin-right:3rem !important}.ms-lg-auto{margin-right:auto !important}.m-lg-n1{margin:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mx-lg-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-lg-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-lg-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-lg-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-lg-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-lg-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-lg-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-lg-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-lg-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-lg-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-lg-n1{margin-top:-0.25rem !important}.mt-lg-n2{margin-top:-0.5rem !important}.mt-lg-n3{margin-top:-1rem !important}.mt-lg-n4{margin-top:-1.5rem !important}.mt-lg-n5{margin-top:-3rem !important}.me-lg-n1{margin-left:-0.25rem !important}.me-lg-n2{margin-left:-0.5rem !important}.me-lg-n3{margin-left:-1rem !important}.me-lg-n4{margin-left:-1.5rem !important}.me-lg-n5{margin-left:-3rem !important}.mb-lg-n1{margin-bottom:-0.25rem !important}.mb-lg-n2{margin-bottom:-0.5rem !important}.mb-lg-n3{margin-bottom:-1rem !important}.mb-lg-n4{margin-bottom:-1.5rem !important}.mb-lg-n5{margin-bottom:-3rem !important}.ms-lg-n1{margin-right:-0.25rem !important}.ms-lg-n2{margin-right:-0.5rem !important}.ms-lg-n3{margin-right:-1rem !important}.ms-lg-n4{margin-right:-1.5rem !important}.ms-lg-n5{margin-right:-3rem !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-left:0 !important;padding-right:0 !important}.px-lg-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-lg-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-lg-3{padding-left:1rem !important;padding-right:1rem !important}.px-lg-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-lg-5{padding-left:3rem !important;padding-right:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-left:0 !important}.pe-lg-1{padding-left:.25rem !important}.pe-lg-2{padding-left:.5rem !important}.pe-lg-3{padding-left:1rem !important}.pe-lg-4{padding-left:1.5rem !important}.pe-lg-5{padding-left:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-right:0 !important}.ps-lg-1{padding-right:.25rem !important}.ps-lg-2{padding-right:.5rem !important}.ps-lg-3{padding-right:1rem !important}.ps-lg-4{padding-right:1.5rem !important}.ps-lg-5{padding-right:3rem !important}.text-lg-start{text-align:right !important}.text-lg-end{text-align:left !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:right !important}.float-xl-end{float:left !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !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:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-left:0 !important;margin-right:0 !important}.mx-xl-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-xl-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-xl-3{margin-left:1rem !important;margin-right:1rem !important}.mx-xl-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-xl-5{margin-left:3rem !important;margin-right:3rem !important}.mx-xl-auto{margin-left:auto !important;margin-right:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-left:0 !important}.me-xl-1{margin-left:.25rem !important}.me-xl-2{margin-left:.5rem !important}.me-xl-3{margin-left:1rem !important}.me-xl-4{margin-left:1.5rem !important}.me-xl-5{margin-left:3rem !important}.me-xl-auto{margin-left:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.mb-xl-6{margin-bottom:3.5rem !important}.mb-xl-7{margin-bottom:4rem !important}.mb-xl-8{margin-bottom:5rem !important}.mb-xl-9{margin-bottom:6rem !important}.mb-xl-10{margin-bottom:8rem !important}.mb-xl-11{margin-bottom:10rem !important}.mb-xl-12{margin-bottom:12rem !important}.mb-xl-13{margin-bottom:14rem !important}.mb-xl-14{margin-bottom:16rem !important}.ms-xl-0{margin-right:0 !important}.ms-xl-1{margin-right:.25rem !important}.ms-xl-2{margin-right:.5rem !important}.ms-xl-3{margin-right:1rem !important}.ms-xl-4{margin-right:1.5rem !important}.ms-xl-5{margin-right:3rem !important}.ms-xl-auto{margin-right:auto !important}.m-xl-n1{margin:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mx-xl-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-xl-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-xl-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-xl-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-xl-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-xl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xl-n1{margin-top:-0.25rem !important}.mt-xl-n2{margin-top:-0.5rem !important}.mt-xl-n3{margin-top:-1rem !important}.mt-xl-n4{margin-top:-1.5rem !important}.mt-xl-n5{margin-top:-3rem !important}.me-xl-n1{margin-left:-0.25rem !important}.me-xl-n2{margin-left:-0.5rem !important}.me-xl-n3{margin-left:-1rem !important}.me-xl-n4{margin-left:-1.5rem !important}.me-xl-n5{margin-left:-3rem !important}.mb-xl-n1{margin-bottom:-0.25rem !important}.mb-xl-n2{margin-bottom:-0.5rem !important}.mb-xl-n3{margin-bottom:-1rem !important}.mb-xl-n4{margin-bottom:-1.5rem !important}.mb-xl-n5{margin-bottom:-3rem !important}.ms-xl-n1{margin-right:-0.25rem !important}.ms-xl-n2{margin-right:-0.5rem !important}.ms-xl-n3{margin-right:-1rem !important}.ms-xl-n4{margin-right:-1.5rem !important}.ms-xl-n5{margin-right:-3rem !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-left:0 !important;padding-right:0 !important}.px-xl-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-xl-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-xl-3{padding-left:1rem !important;padding-right:1rem !important}.px-xl-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-xl-5{padding-left:3rem !important;padding-right:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-left:0 !important}.pe-xl-1{padding-left:.25rem !important}.pe-xl-2{padding-left:.5rem !important}.pe-xl-3{padding-left:1rem !important}.pe-xl-4{padding-left:1.5rem !important}.pe-xl-5{padding-left:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-right:0 !important}.ps-xl-1{padding-right:.25rem !important}.ps-xl-2{padding-right:.5rem !important}.ps-xl-3{padding-right:1rem !important}.ps-xl-4{padding-right:1.5rem !important}.ps-xl-5{padding-right:3rem !important}.text-xl-start{text-align:right !important}.text-xl-end{text-align:left !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:right !important}.float-xxl-end{float:left !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-left:0 !important;margin-right:0 !important}.mx-xxl-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-xxl-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-xxl-3{margin-left:1rem !important;margin-right:1rem !important}.mx-xxl-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-xxl-5{margin-left:3rem !important;margin-right:3rem !important}.mx-xxl-auto{margin-left:auto !important;margin-right:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-left:0 !important}.me-xxl-1{margin-left:.25rem !important}.me-xxl-2{margin-left:.5rem !important}.me-xxl-3{margin-left:1rem !important}.me-xxl-4{margin-left:1.5rem !important}.me-xxl-5{margin-left:3rem !important}.me-xxl-auto{margin-left:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.mb-xxl-6{margin-bottom:3.5rem !important}.mb-xxl-7{margin-bottom:4rem !important}.mb-xxl-8{margin-bottom:5rem !important}.mb-xxl-9{margin-bottom:6rem !important}.mb-xxl-10{margin-bottom:8rem !important}.mb-xxl-11{margin-bottom:10rem !important}.mb-xxl-12{margin-bottom:12rem !important}.mb-xxl-13{margin-bottom:14rem !important}.mb-xxl-14{margin-bottom:16rem !important}.ms-xxl-0{margin-right:0 !important}.ms-xxl-1{margin-right:.25rem !important}.ms-xxl-2{margin-right:.5rem !important}.ms-xxl-3{margin-right:1rem !important}.ms-xxl-4{margin-right:1.5rem !important}.ms-xxl-5{margin-right:3rem !important}.ms-xxl-auto{margin-right:auto !important}.m-xxl-n1{margin:-0.25rem !important}.m-xxl-n2{margin:-0.5rem !important}.m-xxl-n3{margin:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.m-xxl-n5{margin:-3rem !important}.mx-xxl-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-xxl-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-xxl-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-xxl-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-xxl-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-xxl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xxl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xxl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xxl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xxl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xxl-n1{margin-top:-0.25rem !important}.mt-xxl-n2{margin-top:-0.5rem !important}.mt-xxl-n3{margin-top:-1rem !important}.mt-xxl-n4{margin-top:-1.5rem !important}.mt-xxl-n5{margin-top:-3rem !important}.me-xxl-n1{margin-left:-0.25rem !important}.me-xxl-n2{margin-left:-0.5rem !important}.me-xxl-n3{margin-left:-1rem !important}.me-xxl-n4{margin-left:-1.5rem !important}.me-xxl-n5{margin-left:-3rem !important}.mb-xxl-n1{margin-bottom:-0.25rem !important}.mb-xxl-n2{margin-bottom:-0.5rem !important}.mb-xxl-n3{margin-bottom:-1rem !important}.mb-xxl-n4{margin-bottom:-1.5rem !important}.mb-xxl-n5{margin-bottom:-3rem !important}.ms-xxl-n1{margin-right:-0.25rem !important}.ms-xxl-n2{margin-right:-0.5rem !important}.ms-xxl-n3{margin-right:-1rem !important}.ms-xxl-n4{margin-right:-1.5rem !important}.ms-xxl-n5{margin-right:-3rem !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-left:0 !important;padding-right:0 !important}.px-xxl-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-xxl-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-xxl-3{padding-left:1rem !important;padding-right:1rem !important}.px-xxl-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-xxl-5{padding-left:3rem !important;padding-right:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-left:0 !important}.pe-xxl-1{padding-left:.25rem !important}.pe-xxl-2{padding-left:.5rem !important}.pe-xxl-3{padding-left:1rem !important}.pe-xxl-4{padding-left:1.5rem !important}.pe-xxl-5{padding-left:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-right:0 !important}.ps-xxl-1{padding-right:.25rem !important}.ps-xxl-2{padding-right:.5rem !important}.ps-xxl-3{padding-right:1rem !important}.ps-xxl-4{padding-right:1.5rem !important}.ps-xxl-5{padding-right:3rem !important}.text-xxl-start{text-align:right !important}.text-xxl-end{text-align:left !important}.text-xxl-center{text-align:center !important}}@media(min-width: 1200px){.fs-1{font-size:2.5rem !important}.fs-2{font-size:2rem !important}.fs-3{font-size:1.75rem !important}.fs-4{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !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:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto: \"Roboto\", sans-serif;--mdb-bg-opacity: 1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-right:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width: 1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18, 102, 241, var(--mdb-bg-opacity)) !important}.bg-secondary{background-color:rgba(178, 60, 253, var(--mdb-bg-opacity)) !important}.bg-success{background-color:rgba(0, 183, 74, var(--mdb-bg-opacity)) !important}.bg-info{background-color:rgba(57, 192, 237, var(--mdb-bg-opacity)) !important}.bg-warning{background-color:rgba(255, 169, 0, var(--mdb-bg-opacity)) !important}.bg-danger{background-color:rgba(249, 49, 84, var(--mdb-bg-opacity)) !important}.bg-light{background-color:rgba(249, 249, 249, var(--mdb-bg-opacity)) !important}.bg-dark{background-color:rgba(38, 38, 38, var(--mdb-bg-opacity)) !important}.bg-white{background-color:rgba(255, 255, 255, var(--mdb-bg-opacity)) !important}.bg-black{background-color:rgba(0, 0, 0, var(--mdb-bg-opacity)) !important}/*!\n * # Semantic UI 2.4.2 - Flag\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-right-radius:5px;border-top-left-radius:5px;text-align:center;max-width:150px;margin:0 auto;margin-top:10px}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){display:inline-block;width:16px;height:11px;margin:0 0 0 .5em;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag::before{display:inline-block;width:16px;height:11px;content:\"\";background:url(\"https://mdbootstrap.com/img/svg/flags.png\") no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:100% 0 !important}i.flag-ae:before,i.flag-united-arab-emirates:before,i.flag-uae:before{background-position:100% -26px !important}i.flag-af:before,i.flag-afghanistan:before{background-position:100% -52px !important}i.flag-ag:before,i.flag-antigua:before{background-position:100% -78px !important}i.flag-ai:before,i.flag-anguilla:before{background-position:100% -104px !important}i.flag-al:before,i.flag-albania:before{background-position:100% -130px !important}i.flag-am:before,i.flag-armenia:before{background-position:100% -156px !important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:100% -182px !important}i.flag-ao:before,i.flag-angola:before{background-position:100% -208px !important}i.flag-ar:before,i.flag-argentina:before{background-position:100% -234px !important}i.flag-as:before,i.flag-american-samoa:before{background-position:100% -260px !important}i.flag-at:before,i.flag-austria:before{background-position:100% -286px !important}i.flag-au:before,i.flag-australia:before{background-position:100% -312px !important}i.flag-aw:before,i.flag-aruba:before{background-position:100% -338px !important}i.flag-ax:before,i.flag-aland-islands:before{background-position:100% -364px !important}i.flag-az:before,i.flag-azerbaijan:before{background-position:100% -390px !important}i.flag-ba:before,i.flag-bosnia:before{background-position:100% -416px !important}i.flag-bb:before,i.flag-barbados:before{background-position:100% -442px !important}i.flag-bd:before,i.flag-bangladesh:before{background-position:100% -468px !important}i.flag-be:before,i.flag-belgium:before{background-position:100% -494px !important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:100% -520px !important}i.flag-bg:before,i.flag-bulgaria:before{background-position:100% -546px !important}i.flag-bh:before,i.flag-bahrain:before{background-position:100% -572px !important}i.flag-bi:before,i.flag-burundi:before{background-position:100% -598px !important}i.flag-bj:before,i.flag-benin:before{background-position:100% -624px !important}i.flag-bm:before,i.flag-bermuda:before{background-position:100% -650px !important}i.flag-bn:before,i.flag-brunei:before{background-position:100% -676px !important}i.flag-bo:before,i.flag-bolivia:before{background-position:100% -702px !important}i.flag-br:before,i.flag-brazil:before{background-position:100% -728px !important}i.flag-bs:before,i.flag-bahamas:before{background-position:100% -754px !important}i.flag-bt:before,i.flag-bhutan:before{background-position:100% -780px !important}i.flag-bv:before,i.flag-bouvet-island:before{background-position:100% -806px !important}i.flag-bw:before,i.flag-botswana:before{background-position:100% -832px !important}i.flag-by:before,i.flag-belarus:before{background-position:100% -858px !important}i.flag-bz:before,i.flag-belize:before{background-position:100% -884px !important}i.flag-ca:before,i.flag-canada:before{background-position:100% -910px !important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:100% -962px !important}i.flag-cd:before,i.flag-congo:before{background-position:100% -988px !important}i.flag-cf:before,i.flag-central-african-republic:before{background-position:100% -1014px !important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:100% -1040px !important}i.flag-ch:before,i.flag-switzerland:before{background-position:100% -1066px !important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:100% -1092px !important}i.flag-ck:before,i.flag-cook-islands:before{background-position:100% -1118px !important}i.flag-cl:before,i.flag-chile:before{background-position:100% -1144px !important}i.flag-cm:before,i.flag-cameroon:before{background-position:100% -1170px !important}i.flag-cn:before,i.flag-china:before{background-position:100% -1196px !important}i.flag-co:before,i.flag-colombia:before{background-position:100% -1222px !important}i.flag-cr:before,i.flag-costa-rica:before{background-position:100% -1248px !important}i.flag-cs:before,i.flag-serbia:before{background-position:100% -1274px !important}i.flag-cu:before,i.flag-cuba:before{background-position:100% -1300px !important}i.flag-cv:before,i.flag-cape-verde:before{background-position:100% -1326px !important}i.flag-cx:before,i.flag-christmas-island:before{background-position:100% -1352px !important}i.flag-cy:before,i.flag-cyprus:before{background-position:100% -1378px !important}i.flag-cz:before,i.flag-czech-republic:before{background-position:100% -1404px !important}i.flag-de:before,i.flag-germany:before{background-position:100% -1430px !important}i.flag-dj:before,i.flag-djibouti:before{background-position:100% -1456px !important}i.flag-dk:before,i.flag-denmark:before{background-position:100% -1482px !important}i.flag-dm:before,i.flag-dominica:before{background-position:100% -1508px !important}i.flag-do:before,i.flag-dominican-republic:before{background-position:100% -1534px !important}i.flag-dz:before,i.flag-algeria:before{background-position:100% -1560px !important}i.flag-ec:before,i.flag-ecuador:before{background-position:100% -1586px !important}i.flag-ee:before,i.flag-estonia:before{background-position:100% -1612px !important}i.flag-eg:before,i.flag-egypt:before{background-position:100% -1638px !important}i.flag-eh:before,i.flag-western-sahara:before{background-position:100% -1664px !important}i.flag-gb-eng:before,i.flag-england:before{background-position:100% -1690px !important}i.flag-er:before,i.flag-eritrea:before{background-position:100% -1716px !important}i.flag-es:before,i.flag-spain:before{background-position:100% -1742px !important}i.flag-et:before,i.flag-ethiopia:before{background-position:100% -1768px !important}i.flag-eu:before,i.flag-european-union:before{background-position:100% -1794px !important}i.flag-fi:before,i.flag-finland:before{background-position:100% -1846px !important}i.flag-fj:before,i.flag-fiji:before{background-position:100% -1872px !important}i.flag-fk:before,i.flag-falkland-islands:before{background-position:100% -1898px !important}i.flag-fm:before,i.flag-micronesia:before{background-position:100% -1924px !important}i.flag-fo:before,i.flag-faroe-islands:before{background-position:100% -1950px !important}i.flag-fr:before,i.flag-france:before{background-position:100% -1976px !important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0 !important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px !important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px !important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px !important}i.flag-gf:before,i.flag-french-guiana:before{background-position:-36px -104px !important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px !important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px !important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px !important}i.flag-gm:before,i.flag-gambia:before{background-position:-36px -208px !important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px !important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px !important}i.flag-gq:before,i.flag-equatorial-guinea:before{background-position:-36px -286px !important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px !important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px !important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px !important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px !important}i.flag-gw:before,i.flag-guinea-bissau:before{background-position:-36px -416px !important}i.flag-gy:before,i.flag-guyana:before{background-position:-36px -442px !important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px !important}i.flag-hm:before,i.flag-heard-island:before{background-position:-36px -494px !important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px !important}i.flag-hr:before,i.flag-croatia:before{background-position:-36px -546px !important}i.flag-ht:before,i.flag-haiti:before{background-position:-36px -572px !important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px !important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px !important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px !important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px !important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px !important}i.flag-io:before,i.flag-indian-ocean-territory:before{background-position:-36px -728px !important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px !important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px !important}i.flag-is:before,i.flag-iceland:before{background-position:-36px -806px !important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px !important}i.flag-jm:before,i.flag-jamaica:before{background-position:-36px -858px !important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px !important}i.flag-jp:before,i.flag-japan:before{background-position:-36px -910px !important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px !important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px !important}i.flag-kh:before,i.flag-cambodia:before{background-position:-36px -988px !important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px !important}i.flag-km:before,i.flag-comoros:before{background-position:-36px -1040px !important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px !important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px !important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px !important}i.flag-kw:before,i.flag-kuwait:before{background-position:-36px -1144px !important}i.flag-ky:before,i.flag-cayman-islands:before{background-position:-36px -1170px !important}i.flag-kz:before,i.flag-kazakhstan:before{background-position:-36px -1196px !important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px !important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px !important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px !important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px !important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px !important}i.flag-lr:before,i.flag-liberia:before{background-position:-36px -1352px !important}i.flag-ls:before,i.flag-lesotho:before{background-position:-36px -1378px !important}i.flag-lt:before,i.flag-lithuania:before{background-position:-36px -1404px !important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px !important}i.flag-lv:before,i.flag-latvia:before{background-position:-36px -1456px !important}i.flag-ly:before,i.flag-libya:before{background-position:-36px -1482px !important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px !important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px !important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px !important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px !important}i.flag-mg:before,i.flag-madagascar:before{background-position:-36px -1613px !important}i.flag-mh:before,i.flag-marshall-islands:before{background-position:-36px -1639px !important}i.flag-mk:before,i.flag-macedonia:before{background-position:-36px -1665px !important}i.flag-ml:before,i.flag-mali:before{background-position:-36px -1691px !important}i.flag-mm:before,i.flag-myanmar:before,i.flag-burma:before{background-position:-73px -1821px !important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px !important}i.flag-mo:before,i.flag-macau:before{background-position:-36px -1769px !important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px !important}i.flag-mq:before,i.flag-martinique:before{background-position:-36px -1821px !important}i.flag-mr:before,i.flag-mauritania:before{background-position:-36px -1847px !important}i.flag-ms:before,i.flag-montserrat:before{background-position:-36px -1873px !important}i.flag-mt:before,i.flag-malta:before{background-position:-36px -1899px !important}i.flag-mu:before,i.flag-mauritius:before{background-position:-36px -1925px !important}i.flag-mv:before,i.flag-maldives:before{background-position:-36px -1951px !important}i.flag-mw:before,i.flag-malawi:before{background-position:-36px -1977px !important}i.flag-mx:before,i.flag-mexico:before{background-position:-72px 0 !important}i.flag-my:before,i.flag-malaysia:before{background-position:-72px -26px !important}i.flag-mz:before,i.flag-mozambique:before{background-position:-72px -52px !important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px !important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px !important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px !important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px !important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px !important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px !important}i.flag-nl:before,i.flag-netherlands:before{background-position:-72px -234px !important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px !important}i.flag-np:before,i.flag-nepal:before{background-position:-72px -286px !important}i.flag-nr:before,i.flag-nauru:before{background-position:-72px -312px !important}i.flag-nu:before,i.flag-niue:before{background-position:-72px -338px !important}i.flag-nz:before,i.flag-new-zealand:before{background-position:-72px -364px !important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px !important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px !important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px !important}i.flag-pf:before,i.flag-french-polynesia:before{background-position:-72px -468px !important}i.flag-pg:before,i.flag-new-guinea:before{background-position:-72px -494px !important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px !important}i.flag-pk:before,i.flag-pakistan:before{background-position:-72px -546px !important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px !important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px !important}i.flag-pn:before,i.flag-pitcairn-islands:before{background-position:-72px -624px !important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px !important}i.flag-ps:before,i.flag-palestine:before{background-position:-72px -676px !important}i.flag-pt:before,i.flag-portugal:before{background-position:-72px -702px !important}i.flag-pw:before,i.flag-palau:before{background-position:-72px -728px !important}i.flag-py:before,i.flag-paraguay:before{background-position:-72px -754px !important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px !important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px !important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px !important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px !important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px !important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px !important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px !important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px !important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px !important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px !important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px !important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px !important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px !important}i.flag-sh:before,i.flag-saint-helena:before{background-position:-72px -1118px !important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px !important}i.flag-sj:before,i.flag-svalbard:before,i.flag-jan-mayen:before{background-position:-72px -1170px !important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px !important}i.flag-sl:before,i.flag-sierra-leone:before{background-position:-72px -1222px !important}i.flag-sm:before,i.flag-san-marino:before{background-position:-72px -1248px !important}i.flag-sn:before,i.flag-senegal:before{background-position:-72px -1274px !important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px !important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px !important}i.flag-st:before,i.flag-sao-tome:before{background-position:-72px -1352px !important}i.flag-sv:before,i.flag-el-salvador:before{background-position:-72px -1378px !important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px !important}i.flag-sz:before,i.flag-swaziland:before{background-position:-72px -1430px !important}i.flag-tc:before,i.flag-caicos-islands:before{background-position:-72px -1456px !important}i.flag-td:before,i.flag-chad:before{background-position:-72px -1482px !important}i.flag-tf:before,i.flag-french-territories:before{background-position:-72px -1508px !important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px !important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px !important}i.flag-tj:before,i.flag-tajikistan:before{background-position:-72px -1586px !important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px !important}i.flag-tl:before,i.flag-timorleste:before{background-position:-72px -1638px !important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px !important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px !important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px !important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px !important}i.flag-tt:before,i.flag-trinidad:before{background-position:-72px -1768px !important}i.flag-tv:before,i.flag-tuvalu:before{background-position:-72px -1794px !important}i.flag-tw:before,i.flag-taiwan:before{background-position:-72px -1820px !important}i.flag-tz:before,i.flag-tanzania:before{background-position:-72px -1846px !important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px !important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px !important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px !important}i.flag-us:before,i.flag-america:before,i.flag-united-states:before{background-position:-72px -1950px !important}i.flag-uy:before,i.flag-uruguay:before{background-position:-72px -1976px !important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0 !important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px !important}i.flag-vc:before,i.flag-saint-vincent:before{background-position:-108px -52px !important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px !important}i.flag-vg:before,i.flag-british-virgin-islands:before{background-position:-108px -104px !important}i.flag-vi:before,i.flag-us-virgin-islands:before{background-position:-108px -130px !important}i.flag-vn:before,i.flag-vietnam:before{background-position:-108px -156px !important}i.flag-vu:before,i.flag-vanuatu:before{background-position:-108px -182px !important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px !important}i.flag-wf:before,i.flag-wallis-and-futuna:before{background-position:-108px -234px !important}i.flag-ws:before,i.flag-samoa:before{background-position:-108px -260px !important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px !important}i.flag-yt:before,i.flag-mayotte:before{background-position:-108px -312px !important}i.flag-za:before,i.flag-south-africa:before{background-position:-108px -338px !important}i.flag-zm:before,i.flag-zambia:before{background-position:-108px -364px !important}i.flag-zw:before,i.flag-zimbabwe:before{background-position:-108px -390px !important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:center center}.mask{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.hover-shadow,.card.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow:hover,.card.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.hover-shadow-soft,.card.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow-soft:hover,.card.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear;border-color:#1266f1;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:left}.form-outline .trailing{position:absolute;left:10px;right:initial;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-left:2rem !important}.form-outline .form-control{min-height:auto;padding-top:.33em;padding-bottom:.33em;padding-right:.75em;padding-left:.75em;border:0;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;right:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:100% 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;right:0;top:0;width:100%;max-width:100%;height:100%;text-align:right;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid;border-color:#bdbdbd;box-sizing:border-box;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{right:0;top:0;height:100%;width:.5rem;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-left:none;border-right:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control:focus::-moz-placeholder, .form-outline .form-control.active::-moz-placeholder{opacity:1}.form-outline .form-control:focus::placeholder,.form-outline .form-control.active::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none !important}.form-outline .form-control:focus~.form-label,.form-outline .form-control.active~.form-label{transform:translateY(-1rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle,.form-outline .form-control.active~.form-notch .form-notch-middle{border-left:none;border-right:none;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-leading,.form-outline .form-control.active~.form-notch .form-notch-leading{border-left:none}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing,.form-outline .form-control.active~.form-notch .form-notch-trailing{border-right:none}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control:disabled,.form-outline .form-control.disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-right:.75em;padding-left:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg:focus~.form-label,.form-outline .form-control.form-control-lg.active~.form-label{transform:translateY(-1.25rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control.form-control-sm{padding-right:.99em;padding-left:.99em;padding-top:.43em;padding-bottom:.35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm:focus~.form-label,.form-outline .form-control.form-control-sm.active~.form-label{transform:translateY(-0.85rem) translateY(0.1rem) scale(0.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid rgba(0,0,0,0)}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control::placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control[readonly]{background-color:rgba(255,255,255,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:rgba(0,0,0,0)}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:\"\";position:absolute;box-shadow:0px 0px 0px 13px rgba(0,0,0,0);border-radius:50%;width:.875rem;height:.875rem;background-color:rgba(0,0,0,0);opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:\"\";position:absolute}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0px 0px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:indeterminate:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-left:8px}.form-check-input[type=checkbox]:focus:after{content:\"\";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none;background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg) ;border-width:.125rem;border-color:#fff;width:.375rem;height:.8125rem;border-style:solid;border-top:0;border-left:0 ;margin-right:.25rem;margin-top:-1px;background-color:rgba(0,0,0,0)}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-left:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:\"\";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;border-color:#1266f1;background-color:#1266f1;transition:border-color;transform:translate(50%, -50%);position:absolute;right:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-right:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-left:8px}.form-switch .form-check-input:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-0.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{box-shadow:-3px -1px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked{background-image:none}.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-right:1.0625rem;box-shadow:-3px -1px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#1266f1;margin-top:-3px;margin-right:1.0625rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);transition:background-color .2s,transform .2s}.form-control[type=file]::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:rgba(0,0,0,0);padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-right:1px;margin-left:1px}.input-group-text>.form-check-input[type=radio]{margin-left:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-right:0}.input-group.form-outline input+.input-group-text{border:0;border-right:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .select-wrapper:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.input-group .form-outline:not(:last-child),.input-group .select-wrapper:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-right:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.input-group .invalid-feedback,.input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#00b74a;margin-top:-0.75rem}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(0,183,74,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#00b74a}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-outline .form-control:valid~.form-label,.form-outline .form-control.is-valid~.form-label{color:#00b74a}.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing{border-color:#00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-select:valid~.valid-feedback,.form-select.is-valid~.valid-feedback{margin-top:0}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button{border-color:#00b74a}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:checked:focus:before,.form-check-input.is-valid:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:none}.was-validated .form-check-input:valid:focus:before,.form-check-input.is-valid:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.was-validated .form-check-input:valid[type=checkbox]:checked:focus,.form-check-input.is-valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.was-validated .form-check-input:valid[type=radio]:checked,.form-check-input.is-valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.was-validated .form-check-input:valid[type=radio]:checked:focus:before,.form-check-input.is-valid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid[type=radio]:checked:after,.form-check-input.is-valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.was-validated .form-switch .form-check-input:valid:focus:before,.form-switch .form-check-input.is-valid:focus:before{box-shadow:-3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after,.form-switch .form-check-input.is-valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:valid:checked:focus:before,.form-switch .form-check-input.is-valid:checked:focus:before{box-shadow:-3px -1px 0px 13px #00b74a}.invalid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#f93154;margin-top:-0.75rem}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(249,49,84,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#f93154}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-outline .form-control:invalid~.form-label,.form-outline .form-control.is-invalid~.form-label{color:#f93154}.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing{border-color:#f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-select:invalid~.invalid-feedback,.form-select.is-invalid~.invalid-feedback{margin-top:0}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button{border-color:#f93154}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:checked:focus:before,.form-check-input.is-invalid:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:none}.was-validated .form-check-input:invalid:focus:before,.form-check-input.is-invalid:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.was-validated .form-check-input:invalid[type=checkbox]:checked:focus,.form-check-input.is-invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.was-validated .form-check-input:invalid[type=radio]:checked,.form-check-input.is-invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.was-validated .form-check-input:invalid[type=radio]:checked:focus:before,.form-check-input.is-invalid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid[type=radio]:checked:after,.form-check-input.is-invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.was-validated .form-switch .form-check-input:invalid:focus:before,.form-switch .form-check-input.is-invalid:focus:before{box-shadow:-3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after,.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:invalid:checked:focus:before,.form-switch .form-check-input.is-invalid:checked:focus:before{box-shadow:-3px -1px 0px 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg: transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem 1.5rem;font-size:.75rem;line-height:1.5}.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:focus,.btn.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active,.btn.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active:focus,.btn.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem 1.375rem}[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-]:focus,[class*=btn-outline-].focus{box-shadow:none;text-decoration:none}[class*=btn-outline-]:active,[class*=btn-outline-].active{box-shadow:none}[class*=btn-outline-]:active:focus,[class*=btn-outline-].active:focus{box-shadow:none}[class*=btn-outline-]:disabled,[class*=btn-outline-].disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}[class*=btn-outline-].btn-lg,.btn-group-lg>[class*=btn-outline-].btn{padding:.625rem 1.5625rem .5625rem 1.5625rem}[class*=btn-outline-].btn-sm,.btn-group-sm>[class*=btn-outline-].btn{padding:.25rem .875rem .1875rem .875rem}.btn-primary{color:#fff;background-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0c56d0}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0c56d0}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#093d94}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1}.btn-secondary{color:#fff;background-color:#b23cfd}.btn-secondary:hover{color:#fff;background-color:#a316fd}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#a316fd}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#8102d1}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#b23cfd}.btn-success{color:#fff;background-color:#00b74a}.btn-success:hover{color:#fff;background-color:#00913b}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#00913b}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#16b5ea}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info:disabled,.btn-info.disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning:hover{color:#fff;background-color:#d99000}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d99000}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning:disabled,.btn-warning.disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#f80c35}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-light:focus,.btn-light.focus{color:#4f4f4f;background-color:#e6e6e6}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light:disabled,.btn-light.disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark:hover{color:#fff;background-color:#131313}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#131313}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-white:focus,.btn-white.focus{color:#4f4f4f;background-color:#ececec}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white:disabled,.btn-white.disabled{color:#4f4f4f;background-color:#fff}.btn-black{color:#fff;background-color:#000}.btn-black:hover{color:#fff;background-color:#000}.btn-black:focus,.btn-black.focus{color:#fff;background-color:#000}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;background-color:rgba(0,0,0,.02)}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;background-color:rgba(0,0,0,.02)}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success:focus,.btn-outline-success.focus{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info:focus,.btn-outline-info.focus{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning:focus,.btn-outline-warning.focus{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger:focus,.btn-outline-danger.focus{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light:focus,.btn-outline-light.focus{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark:focus,.btn-outline-dark.focus{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white:focus,.btn-outline-white.focus{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black:focus,.btn-outline-black.focus{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black{color:#fff;background-color:#000}.btn-lg,.btn-group-lg>.btn{padding:.75rem 1.6875rem .6875rem 1.6875rem;font-size:.875rem;line-height:1.6}.btn-sm,.btn-group-sm>.btn{padding:.375rem 1rem .3125rem 1rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:focus,.btn-link.focus{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:active,.btn-link.active{box-shadow:none;background-color:#f5f5f5}.btn-link:active:focus,.btn-link.active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link:disabled,.btn-link.disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fas,.btn-floating .far,.btn-floating .fab{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fas,.btn-floating.btn-lg .far,.btn-group-lg>.btn-floating.btn .far,.btn-floating.btn-lg .fab,.btn-group-lg>.btn-floating.btn .fab{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fas,.btn-floating.btn-sm .far,.btn-group-sm>.btn-floating.btn .far,.btn-floating.btn-sm .fab,.btn-group-sm>.btn-floating.btn .fab{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fas,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fab{width:2.0625rem;line-height:2.0625rem}[class*=btn-outline-].btn-floating.btn-lg .fas,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-lg .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab{width:2.5625rem;line-height:2.5625rem}[class*=btn-outline-].btn-floating.btn-sm .fas,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-sm .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;left:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;right:0;left:0;display:flex;flex-direction:column;padding:0;margin:0;margin-bottom:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-left:auto;margin-bottom:1.5rem;margin-right:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn ul a.btn.shown{opacity:1}.fixed-action-btn.active ul{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child{border-top-right-radius:.5rem;border-top-left-radius:.5rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-menu>li:first-child .dropdown-item{border-top-right-radius:.5rem;border-top-left-radius:.5rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child{border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.dropdown-menu>li:last-child .dropdown-item{border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none !important;-webkit-animation:unset !important;animation:unset !important}}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{from{opacity:1}to{opacity:0}}@keyframes fade-out{from{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group:hover,.btn-group-vertical:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:focus,.btn-group.focus,.btn-group-vertical:focus,.btn-group-vertical.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active,.btn-group.active,.btn-group-vertical:active,.btn-group-vertical.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active:focus,.btn-group.active:focus,.btn-group-vertical:active:focus,.btn-group-vertical.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:disabled,.btn-group.disabled,fieldset:disabled .btn-group,.btn-group-vertical:disabled,.btn-group-vertical.disabled,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group>.btn,.btn-group-vertical>.btn{box-shadow:none}.btn-group>.btn-group,.btn-group-vertical>.btn-group{box-shadow:none}.btn-group>.btn-link:first-child,.btn-group-vertical>.btn-link:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-link:last-child,.btn-group-vertical>.btn-link:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border-width:0 0 2px 0;border-style:solid;border-color:rgba(0,0,0,0);border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px 29px}.nav-tabs .nav-link:hover{background-color:#f5f5f5;border-color:rgba(0,0,0,0)}.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#1266f1;border-color:#1266f1}.nav-pills{margin-right:-0.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px 29px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-left:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-light .navbar-toggler-icon{background-image:none}.navbar-dark .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.card-header{background-color:rgba(255,255,255,0)}.card-body[class*=bg-]{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.card-footer{background-color:rgba(255,255,255,0)}.card-img-left{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.navbar .breadcrumb{background-color:rgba(0,0,0,0);margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:hover,.navbar .breadcrumb .breadcrumb-item a:focus{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{border:0;font-size:.9rem;color:#212529;background-color:rgba(0,0,0,0);border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{background-color:#1266f1;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:not(:first-child) .page-link{margin-right:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-circle .page-item:first-child .page-link{border-radius:50%}.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-right:.841rem;padding-left:.841rem}.pagination-circle.pagination-lg .page-link{padding-right:1.399414rem;padding-left:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-right:.696rem;padding-left:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-right:-0.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-0.1rem;margin-right:-0.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action{transition:.5s}.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-light .list-group-item-action:focus{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{color:#fff;padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:rgba(0,0,0,0);color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:initial;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:rgba(0,0,0,0);box-shadow:none;color:#1266f1;font-weight:600;border-right:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0, 0, 0.15, 1),cubic-bezier(0, 0, 0.15, 1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle, rgba(18, 102, 241, 0.2) 0, rgba(18, 102, 241, 0.3) 40%, rgba(18, 102, 241, 0.4) 50%, rgba(18, 102, 241, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle, rgba(178, 60, 253, 0.2) 0, rgba(178, 60, 253, 0.3) 40%, rgba(178, 60, 253, 0.4) 50%, rgba(178, 60, 253, 0.5) 60%, rgba(178, 60, 253, 0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle, rgba(0, 183, 74, 0.2) 0, rgba(0, 183, 74, 0.3) 40%, rgba(0, 183, 74, 0.4) 50%, rgba(0, 183, 74, 0.5) 60%, rgba(0, 183, 74, 0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle, rgba(57, 192, 237, 0.2) 0, rgba(57, 192, 237, 0.3) 40%, rgba(57, 192, 237, 0.4) 50%, rgba(57, 192, 237, 0.5) 60%, rgba(57, 192, 237, 0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle, rgba(255, 169, 0, 0.2) 0, rgba(255, 169, 0, 0.3) 40%, rgba(255, 169, 0, 0.4) 50%, rgba(255, 169, 0, 0.5) 60%, rgba(255, 169, 0, 0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle, rgba(249, 49, 84, 0.2) 0, rgba(249, 49, 84, 0.3) 40%, rgba(249, 49, 84, 0.4) 50%, rgba(249, 49, 84, 0.5) 60%, rgba(249, 49, 84, 0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle, rgba(249, 249, 249, 0.2) 0, rgba(249, 249, 249, 0.3) 40%, rgba(249, 249, 249, 0.4) 50%, rgba(249, 249, 249, 0.5) 60%, rgba(249, 249, 249, 0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle, rgba(38, 38, 38, 0.2) 0, rgba(38, 38, 38, 0.3) 40%, rgba(38, 38, 38, 0.4) 50%, rgba(38, 38, 38, 0.5) 60%, rgba(38, 38, 38, 0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%)}.range{position:relative}.range .thumb{position:absolute;display:block;height:30px;width:30px;top:-35px;margin-right:-15px;text-align:center;border-radius:50% 50% 0 50%;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb:after{position:absolute;display:block;content:\"\";transform:translateX(50%);width:100%;height:100%;top:0;border-radius:50% 50% 0 50%;transform:rotate(45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-next-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}.carousel-control-prev-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}body{background-color:#303030;color:#fff}.bg-body{background-color:#303030 !important}.bg-primary{background-color:#1266f1 !important;color:#fff}.bg-secondary{background-color:#b23cfd !important;color:#fff}.border-top,.border-left,.border-bottom,.border-right,.border{border-color:rgba(255,255,255,.12) !important}.border-primary{border-color:#1266f1 !important}.border-secondary{border-color:#b23cfd !important}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-next):not(.carousel-control-prev){color:#72a4f7}a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-next):not(.carousel-control-prev):hover{color:#5a95f5}.text-primary{color:#1266f1 !important}.text-secondary{color:#b23cfd !important}.note{color:#424242}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.btn-primary{background-color:#1266f1;color:#fff}.btn-primary:hover{background-color:#0c56d0;color:#fff}.btn-primary:focus,.btn-primary.focus{background-color:#0c56d0;color:#fff}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{background-color:#093d94;color:#fff}.btn-primary:disabled,.btn-primary.disabled{background-color:#1266f1;color:#fff}.btn-secondary{background-color:#b23cfd;color:#fff}.btn-secondary:hover{background-color:#a316fd;color:#fff}.btn-secondary:focus,.btn-secondary.focus{background-color:#a316fd;color:#fff}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{background-color:#8102d1;color:#fff}.btn-secondary:disabled,.btn-secondary.disabled{background-color:#b23cfd;color:#fff}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;border-color:#1266f1}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#1266f1}.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#1266f1}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#b23cfd}.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#b23cfd}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd}.btn-link{color:#72a4f7}.btn-link:hover{background-color:rgba(0,0,0,.15);color:#5a95f5}.btn-link:focus,.btn-link.focus{background-color:rgba(0,0,0,.15)}.btn-link:active,.btn-link.active{background-color:rgba(0,0,0,.15)}.btn-link:active:focus,.btn-link.active:focus{background-color:rgba(0,0,0,.15)}.list-group-item{background-color:#424242;border-color:rgba(255,255,255,.12)}.list-group-item.active{background-color:#1266f1;border-color:#1266f1}.list-group-item.disabled,.list-group-item:disabled{background-color:#424242}.list-group-item-action.active:hover,.list-group-item-action.active:focus{background-color:#1266f1;border-color:#1266f1}.list-group-item-action{color:#fff}.list-group-item-action:hover,.list-group-item-action:focus{color:#fff;background:rgba(255,255,255,.3)}.list-group-item-action:active{color:#fff;background:rgba(255,255,255,.3)}.list-group-item-action.list-group-item-primary{color:#8ab4f8}.list-group-item-action.list-group-item-primary:hover{color:#5a95f5;background-color:#d3e2fc}.list-group-item-action.list-group-item-secondary:hover{color:#9002ea;background-color:#daa1fe}.list-group-item-primary{color:#1266f1}.list-group-item-secondary{color:#b23cfd}.card{background-color:#424242;box-shadow:0 10px 20px 0 rgba(0,0,0,.25)}.card-header{background-color:#424242 !important;border-bottom-color:rgba(255,255,255,.12)}.card-footer{border-top-color:rgba(255,255,255,.12);background-color:#424242 !important}.card-link{color:#72a4f7}.card-link:hover{color:#5a95f5}.modal-content{background-color:#424242}.modal-header{border-bottom-color:rgba(255,255,255,.12);color:#fff}.modal-footer{border-top-color:rgba(255,255,255,.12)}.btn-close{filter:invert(1) grayscale(100%) brightness(200%);width:20px}.dropdown-menu{color:#fff;background-color:#424242;box-shadow:0 5px 15px 0 rgba(0,0,0,.25)}.dropdown-item{color:#fff}.dropdown-item:hover,.dropdown-item:focus{color:#fff;background:rgba(255,255,255,.3)}.dropdown-item.active,.dropdown-item:active{color:#fff;background:rgba(255,255,255,.3)}.dropdown-divider{border-color:rgba(255,255,255,.12)}.dropdown-item-text{color:#dee2e6}.dropdown-header{color:#dee2e6}.navbar .breadcrumb .breadcrumb-item a{color:#fff}.navbar .breadcrumb .breadcrumb-item a:hover,.navbar .breadcrumb .breadcrumb-item a:focus{color:#fff}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:#fff}.nav-tabs .nav-link{border-color:rgba(0,0,0,0);color:#dee2e6}.nav-tabs .nav-link:hover{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#1266f1;border-color:#1266f1;background-color:rgba(0,0,0,0)}.nav-pills:not(.menu-sidebar) .nav-link{background-color:#424242;color:#fff}.nav-pills:not(.menu-sidebar) .nav-link.active,.nav-pills:not(.menu-sidebar) .show>.nav-link{color:#fff;background-color:#1266f1}.navbar-brand{color:#fff}.navbar-brand:hover{color:#fff}.navbar-nav .nav-link{color:#fff}.navbar-nav .nav-link:hover,.navbar-nav .nav-link:focus{color:#fff}.navbar-scroll .nav-link,.navbar-scroll .fa-bars{color:#fff}.navbar-scrolled .nav-link,.navbar-scrolled .fa-bars{color:#fff}.navbar-scrolled{background-color:#1266f1}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar.navbar-light.bg-light .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{color:#fff}.page-link:hover{color:#fff;background:rgba(0,0,0,.15)}.page-link:focus{color:#fff;background-color:rgba(0,0,0,.15)}.page-item.active .page-link{background-color:#1266f1}.page-item.disabled .page-link{background-color:rgba(0,0,0,.15)}.popover{background-color:#424242}.popover-body{color:#fff}.popover-header{background-color:#424242;border-bottom-color:rgba(255,255,255,.12)}.progress-bar{background-color:#1266f1}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle, rgba(18, 102, 241, 0.2) 0, rgba(18, 102, 241, 0.3) 40%, rgba(18, 102, 241, 0.4) 50%, rgba(18, 102, 241, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle, rgba(178, 60, 253, 0.2) 0, rgba(178, 60, 253, 0.3) 40%, rgba(178, 60, 253, 0.4) 50%, rgba(178, 60, 253, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.nav-pills.menu-sidebar .nav-link{color:#fff}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{color:#72a4f7;border-right-color:#72a4f7}.accordion-item{background-color:#424242;border:1px solid rgba(255,255,255,.2)}.accordion-button{background-color:#424242;color:#fff}.accordion-button:not(.collapsed){color:#fff;background-color:#424242;box-shadow:inset 0 -1px 0 rgba(255,255,255,.2)}.accordion-button:after{background-image:url(\"data:image/svg+xml;charset=utf-8,\")}.accordion-button:not(.collapsed):after{background-image:url(\"data:image/svg+xml;charset=utf-8,\")}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(255,255,255,.2)}.shadow-1-primary{box-shadow:0px 2px 5px 0px rgba(18,102,241,.25),0px 3px 10px 0px rgba(18,102,241,.2)}.shadow-2-primary{box-shadow:0px 4px 8px 0px rgba(18,102,241,.25),0px 5px 15px 2px rgba(18,102,241,.2)}.shadow-3-primary{box-shadow:0px 6px 11px 0px rgba(18,102,241,.25),0px 7px 20px 3px rgba(18,102,241,.2)}.shadow-4-primary{box-shadow:0px 6px 14px 0px rgba(18,102,241,.25),0px 10px 30px 4px rgba(18,102,241,.2)}.shadow-5-primary{box-shadow:0px 6px 20px 0px rgba(18,102,241,.25),0px 12px 40px 5px rgba(18,102,241,.2)}.shadow-1-secondary{box-shadow:0px 2px 5px 0px rgba(178,60,253,.25),0px 3px 10px 0px rgba(178,60,253,.2)}.shadow-2-secondary{box-shadow:0px 4px 8px 0px rgba(178,60,253,.25),0px 5px 15px 2px rgba(178,60,253,.2)}.shadow-3-secondary{box-shadow:0px 6px 11px 0px rgba(178,60,253,.25),0px 7px 20px 3px rgba(178,60,253,.2)}.shadow-4-secondary{box-shadow:0px 6px 14px 0px rgba(178,60,253,.25),0px 10px 30px 4px rgba(178,60,253,.2)}.shadow-5-secondary{box-shadow:0px 6px 20px 0px rgba(178,60,253,.25),0px 12px 40px 5px rgba(178,60,253,.2)}.table{background:#424242;color:#fff;border-color:rgba(255,255,255,.12)}.table>:not(:last-child)>:last-child>*{border-bottom-color:rgba(255,255,255,.12)}.text-muted{color:#a3a3a3 !important}th,td{border-color:rgba(255,255,255,.12)}.table-active{color:#fff}.table-striped>tbody>tr:nth-of-type(odd){color:#fff}.table-hover>tbody>tr:hover{color:#fff}.table-light{background-color:#323232;color:#fff}caption{color:#dee2e6}.link-primary{color:#72a4f7}.link-primary:hover{color:#5a95f5}.link-secondary{color:#daa1fe}.link-secondary:hover{color:#d088fe}.tooltip-inner{color:#fff;background-color:#757575}.form-check-input{background-color:rgba(0,0,0,0);border-color:rgba(255,255,255,.7)}.form-check-input:before{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 13px rgba(0,0,0,0)}.form-check-input:hover:before{box-shadow:rgba(0,0,0,0)}.form-check-input:focus{border-color:rgba(255,255,255,.7)}.form-check-input:focus:before{box-shadow:0px 0px 0px 13px rgba(255,255,255,.6)}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input:indeterminate:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input[type=checkbox]:focus:after{background-color:#303030}.form-check-input[type=checkbox]:checked{background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{border-color:#fff;background-color:rgba(0,0,0,0)}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{background-color:rgba(0,0,0,0);border-color:rgba(255,255,255,.7)}.form-check-input[type=checkbox]:indeterminate:after{border-color:#fff}.form-check-input[type=checkbox]:indeterminate:focus{background-color:#1266f1;border-color:#1266f1}.form-check-input[type=radio]:after{background-color:rgba(0,0,0,0)}.form-check-input[type=radio]:checked{background-color:rgba(0,0,0,0)}.form-check-input[type=radio]:checked:after{border-color:#1266f1;background-color:#1266f1}.form-check-input[type=radio]:checked:focus{background-color:rgba(0,0,0,0)}.form-switch .form-check-input{background-color:rgba(255,255,255,.38)}.form-switch .form-check-input:after{background-color:#dee2e6;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input:focus:before{box-shadow:-3px -1px 0px 13px rgba(0,0,0,.6)}.form-switch .form-check-input[type=checkbox]:focus:after{background-color:#dee2e6}.form-switch .form-check-input:checked{background-color:#1266f1}.form-switch .form-check-input:checked:focus:before{box-shadow:-3px -1px 0px 13px #1266f1}.form-switch .form-check-input:checked[type=checkbox]:after{background-color:#1266f1;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-label{color:rgba(255,255,255,.7)}.form-control{background-color:rgba(0,0,0,0)}.form-control:focus{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-control::-moz-placeholder{color:#6c757d}.form-control::placeholder{color:#6c757d}.form-control{color:rgba(255,255,255,.7)}.form-control:focus{border-color:#1266f1;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-outline .form-control{background:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-outline .form-control~.form-label{color:rgba(255,255,255,.7)}.form-outline .form-control~.form-notch div{border-color:rgba(255,255,255,.7);background:rgba(0,0,0,0)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control:disabled,.form-outline .form-control.disabled,.form-outline .form-control[readonly]:not(.select-input){background-color:rgba(255,255,255,.2)}.select-input.focused~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.select-input.focused~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.select-input.focused~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-range::-webkit-slider-thumb{background-color:#1266f1}.form-range::-moz-range-thumb{background-color:#1266f1}.form-range::-ms-thumb{background-color:#1266f1}.form-range:focus::-webkit-slider-thumb{background-color:#1266f1}.form-range:focus::-moz-range-thumb{background-color:#1266f1}.form-range:focus::-ms-thumb{background-color:#1266f1}.form-file-input:focus-within~.form-file-label{border-color:#1266f1;box-shadow:0px 0px 0px 1px #1266f1}.form-file-input[disabled]~.form-file-label .form-file-text,.form-file-input:disabled~.form-file-label .form-file-text,.form-file-input[disabled]~.form-file-label .form-file-button,.form-file-input:disabled~.form-file-label .form-file-button{background-color:rgba(255,255,255,.2)}.form-file-label{border-color:rgba(255,255,255,.7)}.form-file-button{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-file-text{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.form-control::-webkit-file-upload-button{color:rgba(255,255,255,.7)}.input-group>.form-control:focus{border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.7)}.input-group.form-outline input+.input-group-text{border-right-color:rgba(255,255,255,.7)}.loading-spinner{color:#1266f1}\n\n/*# sourceMappingURL=data:application/json;base64,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QUE4QywwQ0FBdUMsQ0FBQyx1Q0FBdUMsMENBQXVDLENBQUMseUNBQXlDLDBDQUF1QyxDQUFDLHFDQUFxQywwQ0FBdUMsQ0FBQyw2Q0FBNkMsMENBQXVDLENBQUMsMENBQTBDLDBDQUF1QyxDQUFDLHNDQUFzQywwQ0FBdUMsQ0FBQyx3Q0FBd0MsMENBQXVDLENBQUMsMENBQTBDLDBDQUF1QyxDQUFDLHVDQUF1QywwQ0FBdUMsQ0FBQyw0Q0FBNEMsMENBQXVDLENBQUMsd0NBQXdDLDBDQUF1QyxDQUFDLHVDQUF1QywwQ0FBdUMsQ0FBQyx1Q0FBdUMsMENBQXVDLENBQUMscUNBQXFDLDBDQUF1QyxDQUFDLHVDQUF1QywwQ0FBdUMsQ0FBQyxzQ0FBc0MsMENBQXVDLENBQUMsdUNBQXVDLDBDQUF1QyxDQUFDLHNDQUFzQywwQ0FBdUMsQ0FBQyx1Q0FBdUMsMENBQXVDLENBQUMsc0NBQXNDLDBDQUF1QyxDQUFDLDZDQUE2QywwQ0FBdUMsQ0FBQyx3Q0FBd0MsMENBQXVDLENBQUMsdUNBQXVDLDBDQUF1QyxDQUFDLHNDQUFzQywwQ0FBdUMsQ0FBQyxzQ0FBc0MsMENBQXVDLENBQUMsNkNBQTZDLDBDQUF1QyxDQUFDLHFDQUFxQywwQ0FBdUMsQ0FBQyx3REFBd0QsMkNBQXdDLENBQUMsaURBQWlELDJDQUF3QyxDQUFDLDJDQUEyQywyQ0FBd0MsQ0FBQyw0Q0FBNEMsMkNBQXdDLENBQUMsNENBQTRDLDJDQUF3QyxDQUFDLHFDQUFxQywyQ0FBd0MsQ0FBQyx3Q0FBd0MsMkNBQXdDLENBQUMscUNBQXFDLDJDQUF3QyxDQUFDLHdDQUF3QywyQ0FBd0MsQ0FBQywwQ0FBMEMsMkNBQXdDLENBQUMsc0NBQXNDLDJDQUF3QyxDQUFDLG9DQUFvQywyQ0FBd0MsQ0FBQywwQ0FBMEMsMkNBQXdDLENBQUMsZ0RBQWdELDJDQUF3QyxDQUFDLHNDQUFzQywyQ0FBd0MsQ0FBQyw4Q0FBOEMsMkNBQXdDLENBQUMsdUNBQXVDLDJDQUF3QyxDQUFDLHdDQUF3QywyQ0FBd0MsQ0FBQyx1Q0FBdUMsMkNBQXdDLENBQUMsd0NBQXdDLDJDQUF3QyxDQUFDLGtEQUFrRCwyQ0FBd0MsQ0FBQyx1Q0FBdUMsMkNBQXdDLENBQUMsdUNBQXVDLDJDQUF3QyxDQUFDLHVDQUF1QywyQ0FBd0MsQ0FBQyxxQ0FBcUMsMkNBQXdDLENBQUMsOENBQThDLDJDQUF3QyxDQUFDLDJDQUEyQywyQ0FBd0MsQ0FBQyx1Q0FBdUMsMkNBQXdDLENBQUMscUNBQXFDLDJDQUF3QyxDQUFDLHdDQUF3QywyQ0FBd0MsQ0FBQyw4Q0FBOEMsMkNBQXdDLENBQUMsdUNBQXVDLDJDQUF3QyxDQUFDLG9DQUFvQywyQ0FBd0MsQ0FBQyxnREFBZ0QsMkNBQXdDLENBQUMsMENBQTBDLDJDQUF3QyxDQUFDLDZDQUE2QywyQ0FBd0MsQ0FBQyxzQ0FBc0MsMkNBQXdDLENBQUMscUNBQXFDLHNDQUFzQyxDQUFDLCtEQUErRCwwQ0FBMEMsQ0FBQyx1Q0FBdUMsMENBQTBDLENBQUMsdUNBQXVDLDBDQUEwQyxDQUFDLDZDQUE2QywyQ0FBMkMsQ0FBQyxxQ0FBcUMsMkNBQTJDLENBQUMseUNBQXlDLDJDQUEyQyxDQUFDLHlDQUF5QywyQ0FBMkMsQ0FBQyxzQ0FBc0MsMkNBQTJDLENBQUMsc0NBQXNDLDJDQUEyQyxDQUFDLDBDQUEwQywyQ0FBMkMsQ0FBQyxpREFBaUQsMkNBQTJDLENBQUMsc0NBQXNDLDJDQUEyQyxDQUFDLGdEQUFnRCwyQ0FBMkMsQ0FBQyx5Q0FBeUMsMkNBQTJDLENBQUMsb0NBQW9DLDJDQUEyQyxDQUFDLDZDQUE2QywyQ0FBMkMsQ0FBQyxzQ0FBc0MsMkNBQTJDLENBQUMseUNBQXlDLDJDQUEyQyxDQUFDLDRDQUE0QywyQ0FBMkMsQ0FBQyx3Q0FBd0MsMkNBQTJDLENBQUMsdUNBQXVDLDJDQUEyQyxDQUFDLHFDQUFxQywyQ0FBMkMsQ0FBQyx1Q0FBdUMsMkNBQTJDLENBQUMseUNBQXlDLDJDQUEyQyxDQUFDLHVDQUF1QywyQ0FBMkMsQ0FBQyxzQ0FBc0MsMkNBQTJDLENBQUMscUNBQXFDLDJDQUEyQyxDQUFDLHNEQUFzRCwyQ0FBMkMsQ0FBQyxvQ0FBb0MsMkNBQTJDLENBQUMsb0NBQW9DLDJDQUEyQyxDQUFDLHVDQUF1QywyQ0FBMkMsQ0FBQyxxQ0FBcUMsMkNBQTJDLENBQUMsdUNBQXVDLDJDQUEyQyxDQUFDLHNDQUFzQywyQ0FBMkMsQ0FBQyxxQ0FBcUMsMkNBQTJDLENBQUMscUNBQXFDLDJDQUEyQyxDQUFDLDBDQUEwQywyQ0FBMkMsQ0FBQyx3Q0FBd0MsMkNBQTJDLENBQUMsd0NBQXdDLDRDQUE0QyxDQUFDLHVDQUF1Qyw0Q0FBNEMsQ0FBQyxxREFBcUQsNENBQTRDLENBQUMsMkNBQTJDLDRDQUE0QyxDQUFDLDJDQUEyQyw0Q0FBNEMsQ0FBQyxzQ0FBc0MsNENBQTRDLENBQUMsOENBQThDLDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQyxvQ0FBb0MsNENBQTRDLENBQUMsdUNBQXVDLDRDQUE0QyxDQUFDLDJDQUEyQyw0Q0FBNEMsQ0FBQyw2Q0FBNkMsNENBQTRDLENBQUMseUNBQXlDLDRDQUE0QyxDQUFDLHVDQUF1Qyw0Q0FBNEMsQ0FBQyx1Q0FBdUMsNENBQTRDLENBQUMseUNBQXlDLDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQyxzQ0FBc0MsNENBQTRDLENBQUMscUNBQXFDLDRDQUE0QyxDQUFDLHVDQUF1Qyw0Q0FBNEMsQ0FBQyxzQ0FBc0MsNENBQTRDLENBQUMsdUNBQXVDLDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQywwQ0FBMEMsNENBQTRDLENBQUMsZ0RBQWdELDRDQUE0QyxDQUFDLHlDQUF5Qyw0Q0FBNEMsQ0FBQyxvQ0FBb0MsNENBQTRDLENBQUMsMkRBQTJELDRDQUE0QyxDQUFDLHdDQUF3Qyw0Q0FBNEMsQ0FBQyxxQ0FBcUMsNENBQTRDLENBQUMsd0RBQXdELDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQywwQ0FBMEMsNENBQTRDLENBQUMsMENBQTBDLDRDQUE0QyxDQUFDLHFDQUFxQyw0Q0FBNEMsQ0FBQyx5Q0FBeUMsNENBQTRDLENBQUMsd0NBQXdDLDRDQUE0QyxDQUFDLHNDQUFzQyw0Q0FBNEMsQ0FBQyxzQ0FB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QkFBcUIsd0NBQXdDLENBQUMsNEJBQTRCLHlCQUF5QiwwQkFBMEIsQ0FBQyx3Q0FBd0MsMEJBQTBCLENBQUMsNENBQTRDLGtDQUFrQyx3QkFBd0IsQ0FBQyw4Q0FBOEMsYUFBYSxDQUFDLGlFQUFpRSxxQkFBcUIsNkJBQTZCLGtDQUFrQyxDQUFDLGtFQUFrRSxxQkFBcUIsaUVBQWtFLENBQUMsbUVBQW1FLHFCQUFxQixrRUFBaUUsQ0FBQyxtSUFBbUkscUNBQXFDLENBQUMsc0RBQXNELHFCQUFxQixpRUFBa0UsQ0FBQyxxREFBcUQscUJBQXFCLDZCQUE2QixrQ0FBa0MsQ0FBQyx1REFBdUQscUJBQXFCLGtFQUFpRSxDQUFDLGtDQUFrQyx3QkFBd0IsQ0FBQyw4QkFBOEIsd0JBQXdCLENBQUMsdUJBQXVCLHdCQUF3QixDQUFDLHdDQUF3Qyx3QkFBd0IsQ0FBQyxvQ0FBb0Msd0JBQXdCLENBQUMsNkJBQTZCLHdCQUF3QixDQUFDLCtDQUErQyxxQkFBcUIsa0NBQWtDLENBQUMsa1BBQWtQLHFDQUFxQyxDQUFDLGlCQUFpQixpQ0FBaUMsQ0FBQyxrQkFBa0IsK0JBQStCLDBCQUEwQixDQUFDLGdCQUFnQiwrQkFBK0IsMEJBQTBCLENBQUMsMENBQTBDLDBCQUEwQixDQUFDLGlDQUFpQyxxQkFBcUIsa0NBQWtDLENBQUMsa0JBQWtCLCtCQUErQiwwQkFBMEIsQ0FBQyxrREFBa0QsdUNBQXNDLENBQUMsaUJBQWlCLGFBQWEsQ0FBQyIsImZpbGUiOiJ0by5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyJcblt0eXBlPVwidGVsXCJdLFxuW3R5cGU9XCJ1cmxcIl0sXG5bdHlwZT1cImVtYWlsXCJdLFxuW3R5cGU9XCJudW1iZXJcIl0ge1xuICBkaXJlY3Rpb246IGx0cjtcbn0iXX0= */"]} \ No newline at end of file diff --git a/css/mdb.min.css b/css/mdb.min.css new file mode 100644 index 000000000..96a103c86 --- /dev/null +++ b/css/mdb.min.css @@ -0,0 +1,40 @@ +/*! + * MDB5 + * Version: FREE 4.1.0 + * + * + * Copyright: Material Design for Bootstrap + * https://mdbootstrap.com/ + * + * Read the license: https://mdbootstrap.com/general/license/ + * + * + * Documentation: https://mdbootstrap.com/docs/standard/ + * + * Support: https://mdbootstrap.com/support/ + * + * Contact: office@mdbootstrap.com + * + */:root{--mdb-blue:#0d6efd;--mdb-indigo:#6610f2;--mdb-purple:#6f42c1;--mdb-pink:#d63384;--mdb-red:#dc3545;--mdb-orange:#fd7e14;--mdb-yellow:#ffc107;--mdb-green:#198754;--mdb-teal:#20c997;--mdb-cyan:#0dcaf0;--mdb-gray:#757575;--mdb-gray-dark:#4f4f4f;--mdb-gray-100:#f5f5f5;--mdb-gray-200:#eee;--mdb-gray-300:#e0e0e0;--mdb-gray-400:#bdbdbd;--mdb-gray-500:#9e9e9e;--mdb-gray-600:#757575;--mdb-gray-700:#616161;--mdb-gray-800:#4f4f4f;--mdb-gray-900:#262626;--mdb-primary:#1266f1;--mdb-secondary:#b23cfd;--mdb-success:#00b74a;--mdb-info:#39c0ed;--mdb-warning:#ffa900;--mdb-danger:#f93154;--mdb-light:#f9f9f9;--mdb-dark:#262626;--mdb-white:#fff;--mdb-black:#000;--mdb-primary-rgb:18,102,241;--mdb-secondary-rgb:178,60,253;--mdb-success-rgb:0,183,74;--mdb-info-rgb:57,192,237;--mdb-warning-rgb:255,169,0;--mdb-danger-rgb:249,49,84;--mdb-light-rgb:249,249,249;--mdb-dark-rgb:38,38,38;--mdb-white-rgb:255,255,255;--mdb-black-rgb:0,0,0;--mdb-body-color-rgb:79,79,79;--mdb-body-bg-rgb:255,255,255;--mdb-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--mdb-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--mdb-gradient:linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0));--mdb-body-font-family:var(--mdb-font-roboto);--mdb-body-font-size:1rem;--mdb-body-font-weight:400;--mdb-body-line-height:1.6;--mdb-body-color:#4f4f4f;--mdb-body-bg:#fff}*,:after,:before{box-sizing:border-box}@media(prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media(min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media(min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media(min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-mdb-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{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,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--mdb-font-monospace);font-size:1em;/*!rtl:ignore*/direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border:0 solid;border-color:inherit}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media(min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}/*!rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-6{font-size:2.5rem}}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#757575}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#757575}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--mdb-gutter-x,.75rem);padding-left:var(--mdb-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media(min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--mdb-gutter-x:1.5rem;--mdb-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--mdb-gutter-y)*-1);margin-right:calc(var(--mdb-gutter-x)*-0.5);margin-left:calc(var(--mdb-gutter-x)*-0.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--mdb-gutter-x)*0.5);padding-left:calc(var(--mdb-gutter-x)*0.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--mdb-gutter-x:0}.g-0,.gy-0{--mdb-gutter-y:0}.g-1,.gx-1{--mdb-gutter-x:0.25rem}.g-1,.gy-1{--mdb-gutter-y:0.25rem}.g-2,.gx-2{--mdb-gutter-x:0.5rem}.g-2,.gy-2{--mdb-gutter-y:0.5rem}.g-3,.gx-3{--mdb-gutter-x:1rem}.g-3,.gy-3{--mdb-gutter-y:1rem}.g-4,.gx-4{--mdb-gutter-x:1.5rem}.g-4,.gy-4{--mdb-gutter-y:1.5rem}.g-5,.gx-5{--mdb-gutter-x:3rem}.g-5,.gy-5{--mdb-gutter-y:3rem}@media(min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x:0}.g-sm-0,.gy-sm-0{--mdb-gutter-y:0}.g-sm-1,.gx-sm-1{--mdb-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x:1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y:1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x:3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y:3rem}}@media(min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x:0}.g-md-0,.gy-md-0{--mdb-gutter-y:0}.g-md-1,.gx-md-1{--mdb-gutter-x:0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y:0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x:0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y:0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x:1rem}.g-md-3,.gy-md-3{--mdb-gutter-y:1rem}.g-md-4,.gx-md-4{--mdb-gutter-x:1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y:1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x:3rem}.g-md-5,.gy-md-5{--mdb-gutter-y:3rem}}@media(min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x:0}.g-lg-0,.gy-lg-0{--mdb-gutter-y:0}.g-lg-1,.gx-lg-1{--mdb-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x:1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y:1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x:3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y:3rem}}@media(min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x:0}.g-xl-0,.gy-xl-0{--mdb-gutter-y:0}.g-xl-1,.gx-xl-1{--mdb-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x:1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y:1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x:3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y:3rem}}@media(min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x:0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y:0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y:3rem}}.table{--mdb-table-bg:transparent;--mdb-table-accent-bg:transparent;--mdb-table-striped-color:#212529;--mdb-table-striped-bg:rgba(0,0,0,0.02);--mdb-table-active-color:#212529;--mdb-table-active-bg:rgba(0,0,0,0.1);--mdb-table-hover-color:#212529;--mdb-table-hover-bg:rgba(0,0,0,0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg:var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg:var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg:var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg:#d0e0fc;--mdb-table-striped-bg:#c6d5ef;--mdb-table-striped-color:#000;--mdb-table-active-bg:#bbcae3;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c0cfe9;--mdb-table-hover-color:#000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg:#f0d8ff;--mdb-table-striped-bg:#e4cdf2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#d8c2e6;--mdb-table-active-color:#000;--mdb-table-hover-bg:#dec8ec;--mdb-table-hover-color:#000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg:#ccf1db;--mdb-table-striped-bg:#c2e5d0;--mdb-table-striped-color:#000;--mdb-table-active-bg:#b8d9c5;--mdb-table-active-color:#000;--mdb-table-hover-bg:#bddfcb;--mdb-table-hover-color:#000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg:#d7f2fb;--mdb-table-striped-bg:#cce6ee;--mdb-table-striped-color:#000;--mdb-table-active-bg:#c2dae2;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c7e0e8;--mdb-table-hover-color:#000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg:#fec;--mdb-table-striped-bg:#f2e2c2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e6d6b8;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ecdcbd;--mdb-table-hover-color:#000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg:#fed6dd;--mdb-table-striped-bg:#f1cbd2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e5c1c7;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ebc6cc;--mdb-table-hover-color:#000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg:#f9f9f9;--mdb-table-striped-bg:#ededed;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e0e0e0;--mdb-table-active-color:#000;--mdb-table-hover-bg:#e6e6e6;--mdb-table-hover-color:#000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg:#262626;--mdb-table-striped-bg:#313131;--mdb-table-striped-color:#fff;--mdb-table-active-bg:#3c3c3c;--mdb-table-active-color:#fff;--mdb-table-hover-bg:#363636;--mdb-table-hover-color:#fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.775rem}.form-text{margin-top:.25rem;font-size:.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.6em + .5rem + 2px);padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-repeat:no-repeat;background-position:50%;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");background-position:0;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%231266f1'/%3E%3C/svg%3E")}.form-switch .form-check-input:checked{background-position:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1266f1;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1266f1;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.valid-tooltip{color:#000;border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{padding-right:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) right calc(.4em + .1875rem)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.invalid-tooltip{color:#000;border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{padding-right:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) right calc(.4em + .1875rem)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:.125rem solid transparent;padding:.375rem .75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{border-color:#1266f1}.btn-primary:hover{background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{background-color:#0e52c1;border-color:#0e4db5}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary.disabled,.btn-primary:disabled{border-color:#1266f1}.btn-secondary{color:#000;border-color:#b23cfd}.btn-check:focus+.btn-secondary,.btn-secondary:focus,.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#000;border-color:#b23cfd}.btn-success{color:#000;border-color:#00b74a}.btn-check:focus+.btn-success,.btn-success:focus,.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success.disabled,.btn-success:disabled{color:#000;border-color:#00b74a}.btn-info{color:#000;border-color:#39c0ed}.btn-check:focus+.btn-info,.btn-info:focus,.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;border-color:#39c0ed}.btn-warning{color:#000;border-color:#ffa900}.btn-check:focus+.btn-warning,.btn-warning:focus,.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;border-color:#ffa900}.btn-danger{color:#000;border-color:#f93154}.btn-check:focus+.btn-danger,.btn-danger:focus,.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#000;border-color:#f93154}.btn-light{color:#000;border-color:#f9f9f9}.btn-check:focus+.btn-light,.btn-light:focus,.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;border-color:#f9f9f9}.btn-dark{border-color:#262626}.btn-check:focus+.btn-dark,.btn-dark:focus,.btn-dark:hover{background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark.disabled,.btn-dark:disabled{border-color:#262626}.btn-white{color:#000;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus,.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-white.disabled,.btn-white:disabled{color:#000;border-color:#fff}.btn-black,.btn-black:hover{border-color:#000}.btn-black:focus,.btn-check:focus+.btn-black{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.active,.btn-black:active,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{border-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.disabled,.btn-black:disabled{border-color:#000}.btn-outline-primary:hover{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#262626;border-color:#262626}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-white:focus,.btn-check:checked+.btn-outline-white:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{background-color:transparent}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black:active{color:#fff;background-color:#000;border-color:#000}.btn-check:active+.btn-outline-black:focus,.btn-check:checked+.btn-outline-black:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black.disabled,.btn-outline-black:disabled{background-color:transparent}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link.disabled,.btn-link:disabled{color:#757575}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-mdb-popper]{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-mdb-popper]{right:0;left:auto}}@media(min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-mdb-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-left:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#222}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:hsla(0,0%,100%,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-.125rem}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropstart .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-.125rem}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;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}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:50%;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height,75vh);overflow-y:auto}@media(min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler,.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler,.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler,.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler,.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler,.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler,.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.55);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.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(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.5rem - 1px) calc(.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.5rem - 1px) calc(.5rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.75rem;margin-left:-.75rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.5rem;border-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{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-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{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-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider,"/") /*!rtl: var(--mdb-breadcrumb-divider, "/") */}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0}@media(prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid transparent}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.5625rem 1.5rem}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");transform:rotate(-180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion:reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{height:4px;font-size:.75rem;background-color:#eee;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#1266f1;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:4px 4px}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn:before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}@keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(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:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1266f1;border-color:#1266f1}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.5rem;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}}@media(min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.5rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:focus,.list-group-item-black.list-group-item-action:hover{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #e0e0e0;border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;/*!rtl:ignore*/left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:after,.popover .popover-arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,.bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,.bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,.bs-popover-end>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,.bs-popover-end>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,.bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,.bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,.bs-popover-start>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,.bs-popover-start>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}/*!rtl:begin:ignore*/.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}/*!rtl:end:ignore*/.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}/*!rtl:options:{ + "autoRename": true, + "stringMap":[ { + "name" : "prev-next", + "search" : "prev", + "replace" : "next" + } ] +}*/.carousel-control-next-icon,.carousel-control-prev-icon{background-image:none}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(1turn)}}@keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem}.offcanvas-header .btn-close{padding:.5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom,.offcanvas-top{right:0;left:0;height:30vh;max-height:100%}.offcanvas-bottom{border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,.bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,.bs-tooltip-end .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,.bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,.bs-tooltip-start .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;text-align:center;background-color:#000}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#1266f1}.link-primary:focus,.link-primary:hover{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:focus,.link-secondary:hover{color:#c163fd}.link-success{color:#00b74a}.link-success:focus,.link-success:hover{color:#33c56e}.link-info{color:#39c0ed}.link-info:focus,.link-info:hover{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:focus,.link-warning:hover{color:#ffba33}.link-danger{color:#f93154}.link-danger:focus,.link-danger:hover{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:focus,.link-light:hover{color:#fafafa}.link-dark{color:#262626}.link-dark:focus,.link-dark:hover{color:#1e1e1e}.link-white,.link-white:focus,.link-white:hover{color:#fff}.link-black,.link-black:focus,.link-black:hover{color:#000}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--mdb-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio:100%}.ratio-4x3{--mdb-aspect-ratio:75%}.ratio-16x9{--mdb-aspect-ratio:56.25%}.ratio-21x9{--mdb-aspect-ratio:42.8571428571%}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{flex-direction:row;align-items:center}.hstack,.vstack{display:flex;align-self:stretch}.vstack{flex:1 1 auto;flex-direction:column}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-30{opacity:.3!important}.opacity-35{opacity:.35!important}.opacity-40{opacity:.4!important}.opacity-45{opacity:.45!important}.opacity-50{opacity:.5!important}.opacity-55{opacity:.55!important}.opacity-60{opacity:.6!important}.opacity-65{opacity:.65!important}.opacity-70{opacity:.7!important}.opacity-75{opacity:.75!important}.opacity-80{opacity:.8!important}.opacity-85{opacity:.85!important}.opacity-90{opacity:.9!important}.opacity-95{opacity:.95!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-0,.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07)!important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05)!important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05)!important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)!important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05)!important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21)!important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05)!important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05)!important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05)!important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05)!important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05)!important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05)!important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21)!important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21)!important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21)!important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21)!important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21)!important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21)!important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!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}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #e0e0e0!important}.border-0{border:0!important}.border-top{border-top:1px solid #e0e0e0!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #e0e0e0!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #e0e0e0!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #e0e0e0!important}.border-start-0{border-left:0!important}.border-primary{border-color:#1266f1!important}.border-secondary{border-color:#b23cfd!important}.border-success{border-color:#00b74a!important}.border-info{border-color:#39c0ed!important}.border-warning{border-color:#ffa900!important}.border-danger{border-color:#f93154!important}.border-light{border-color:#f9f9f9!important}.border-dark{border-color:#262626!important}.border-white{border-color:#fff!important}.border-black{border-color:#000!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!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}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!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}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.mb-6{margin-bottom:3.5rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.mb-9{margin-bottom:6rem!important}.mb-10{margin-bottom:8rem!important}.mb-11{margin-bottom:10rem!important}.mb-12{margin-bottom:12rem!important}.mb-13{margin-bottom:14rem!important}.mb-14{margin-bottom:16rem!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-1rem!important}.m-n4{margin:-1.5rem!important}.m-n5{margin:-3rem!important}.mx-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-1rem!important}.mt-n4{margin-top:-1.5rem!important}.mt-n5{margin-top:-3rem!important}.me-n1{margin-right:-.25rem!important}.me-n2{margin-right:-.5rem!important}.me-n3{margin-right:-1rem!important}.me-n4{margin-right:-1.5rem!important}.me-n5{margin-right:-3rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-1rem!important}.mb-n4{margin-bottom:-1.5rem!important}.mb-n5{margin-bottom:-3rem!important}.ms-n1{margin-left:-.25rem!important}.ms-n2{margin-left:-.5rem!important}.ms-n3{margin-left:-1rem!important}.ms-n4{margin-left:-1.5rem!important}.ms-n5{margin-left:-3rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--mdb-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.6!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}/*!rtl:begin:remove*/.text-break{word-wrap:break-word!important;word-break:break-word!important}/*!rtl:end:remove*/.text-primary{--mdb-text-opacity:1;color:rgba(var(--mdb-primary-rgb),var(--mdb-text-opacity))!important}.text-secondary{--mdb-text-opacity:1;color:rgba(var(--mdb-secondary-rgb),var(--mdb-text-opacity))!important}.text-success{--mdb-text-opacity:1;color:rgba(var(--mdb-success-rgb),var(--mdb-text-opacity))!important}.text-info{--mdb-text-opacity:1;color:rgba(var(--mdb-info-rgb),var(--mdb-text-opacity))!important}.text-warning{--mdb-text-opacity:1;color:rgba(var(--mdb-warning-rgb),var(--mdb-text-opacity))!important}.text-danger{--mdb-text-opacity:1;color:rgba(var(--mdb-danger-rgb),var(--mdb-text-opacity))!important}.text-light{--mdb-text-opacity:1;color:rgba(var(--mdb-light-rgb),var(--mdb-text-opacity))!important}.text-dark{--mdb-text-opacity:1;color:rgba(var(--mdb-dark-rgb),var(--mdb-text-opacity))!important}.text-white{--mdb-text-opacity:1;color:rgba(var(--mdb-white-rgb),var(--mdb-text-opacity))!important}.text-black{--mdb-text-opacity:1;color:rgba(var(--mdb-black-rgb),var(--mdb-text-opacity))!important}.text-body{--mdb-text-opacity:1;color:rgba(var(--mdb-body-color-rgb),var(--mdb-text-opacity))!important}.text-muted{--mdb-text-opacity:1;color:#757575!important}.text-black-50{--mdb-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--mdb-text-opacity:1;color:hsla(0,0%,100%,.5)!important}.text-reset{--mdb-text-opacity:1;color:inherit!important}.text-opacity-25{--mdb-text-opacity:0.25}.text-opacity-50{--mdb-text-opacity:0.5}.text-opacity-75{--mdb-text-opacity:0.75}.text-opacity-100{--mdb-text-opacity:1}.bg-primary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-primary-rgb),var(--mdb-bg-opacity))!important}.bg-secondary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-secondary-rgb),var(--mdb-bg-opacity))!important}.bg-success{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-success-rgb),var(--mdb-bg-opacity))!important}.bg-info{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-info-rgb),var(--mdb-bg-opacity))!important}.bg-warning{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-warning-rgb),var(--mdb-bg-opacity))!important}.bg-danger{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-danger-rgb),var(--mdb-bg-opacity))!important}.bg-light{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-light-rgb),var(--mdb-bg-opacity))!important}.bg-dark{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-dark-rgb),var(--mdb-bg-opacity))!important}.bg-white{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-white-rgb),var(--mdb-bg-opacity))!important}.bg-black{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-black-rgb),var(--mdb-bg-opacity))!important}.bg-body{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-body-bg-rgb),var(--mdb-bg-opacity))!important}.bg-transparent{--mdb-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--mdb-bg-opacity:0.1}.bg-opacity-25{--mdb-bg-opacity:0.25}.bg-opacity-50{--mdb-bg-opacity:0.5}.bg-opacity-75{--mdb-bg-opacity:0.75}.bg-opacity-100{--mdb-bg-opacity:1}.bg-gradient{background-image:var(--mdb-gradient)!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;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-4{border-radius:.375rem!important}.rounded-5{border-radius:.5rem!important}.rounded-6{border-radius:.75rem!important}.rounded-7{border-radius:1rem!important}.rounded-8{border-radius:1.25rem!important}.rounded-9{border-radius:1.5rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-end,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-end{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-start{border-bottom-left-radius:.25rem!important}.rounded-start{border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.ls-tighter{letter-spacing:-.05em!important}.ls-tight{letter-spacing:-.025em!important}.ls-normal{letter-spacing:0!important}.ls-wide{letter-spacing:.025em!important}.ls-wider{letter-spacing:.05em!important}.ls-widest{letter-spacing:.1em!important}@media(min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!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:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.mb-sm-6{margin-bottom:3.5rem!important}.mb-sm-7{margin-bottom:4rem!important}.mb-sm-8{margin-bottom:5rem!important}.mb-sm-9{margin-bottom:6rem!important}.mb-sm-10{margin-bottom:8rem!important}.mb-sm-11{margin-bottom:10rem!important}.mb-sm-12{margin-bottom:12rem!important}.mb-sm-13{margin-bottom:14rem!important}.mb-sm-14{margin-bottom:16rem!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.m-sm-n1{margin:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.m-sm-n3{margin:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mx-sm-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-sm-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-sm-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-sm-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-sm-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-sm-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-sm-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-sm-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-sm-n1{margin-top:-.25rem!important}.mt-sm-n2{margin-top:-.5rem!important}.mt-sm-n3{margin-top:-1rem!important}.mt-sm-n4{margin-top:-1.5rem!important}.mt-sm-n5{margin-top:-3rem!important}.me-sm-n1{margin-right:-.25rem!important}.me-sm-n2{margin-right:-.5rem!important}.me-sm-n3{margin-right:-1rem!important}.me-sm-n4{margin-right:-1.5rem!important}.me-sm-n5{margin-right:-3rem!important}.mb-sm-n1{margin-bottom:-.25rem!important}.mb-sm-n2{margin-bottom:-.5rem!important}.mb-sm-n3{margin-bottom:-1rem!important}.mb-sm-n4{margin-bottom:-1.5rem!important}.mb-sm-n5{margin-bottom:-3rem!important}.ms-sm-n1{margin-left:-.25rem!important}.ms-sm-n2{margin-left:-.5rem!important}.ms-sm-n3{margin-left:-1rem!important}.ms-sm-n4{margin-left:-1.5rem!important}.ms-sm-n5{margin-left:-3rem!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!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:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.mb-md-6{margin-bottom:3.5rem!important}.mb-md-7{margin-bottom:4rem!important}.mb-md-8{margin-bottom:5rem!important}.mb-md-9{margin-bottom:6rem!important}.mb-md-10{margin-bottom:8rem!important}.mb-md-11{margin-bottom:10rem!important}.mb-md-12{margin-bottom:12rem!important}.mb-md-13{margin-bottom:14rem!important}.mb-md-14{margin-bottom:16rem!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.m-md-n1{margin:-.25rem!important}.m-md-n2{margin:-.5rem!important}.m-md-n3{margin:-1rem!important}.m-md-n4{margin:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mx-md-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-md-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-md-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-md-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-md-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-md-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-md-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-md-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-md-n1{margin-top:-.25rem!important}.mt-md-n2{margin-top:-.5rem!important}.mt-md-n3{margin-top:-1rem!important}.mt-md-n4{margin-top:-1.5rem!important}.mt-md-n5{margin-top:-3rem!important}.me-md-n1{margin-right:-.25rem!important}.me-md-n2{margin-right:-.5rem!important}.me-md-n3{margin-right:-1rem!important}.me-md-n4{margin-right:-1.5rem!important}.me-md-n5{margin-right:-3rem!important}.mb-md-n1{margin-bottom:-.25rem!important}.mb-md-n2{margin-bottom:-.5rem!important}.mb-md-n3{margin-bottom:-1rem!important}.mb-md-n4{margin-bottom:-1.5rem!important}.mb-md-n5{margin-bottom:-3rem!important}.ms-md-n1{margin-left:-.25rem!important}.ms-md-n2{margin-left:-.5rem!important}.ms-md-n3{margin-left:-1rem!important}.ms-md-n4{margin-left:-1.5rem!important}.ms-md-n5{margin-left:-3rem!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!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:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.mb-lg-6{margin-bottom:3.5rem!important}.mb-lg-7{margin-bottom:4rem!important}.mb-lg-8{margin-bottom:5rem!important}.mb-lg-9{margin-bottom:6rem!important}.mb-lg-10{margin-bottom:8rem!important}.mb-lg-11{margin-bottom:10rem!important}.mb-lg-12{margin-bottom:12rem!important}.mb-lg-13{margin-bottom:14rem!important}.mb-lg-14{margin-bottom:16rem!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.m-lg-n1{margin:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.m-lg-n3{margin:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mx-lg-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-lg-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-lg-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-lg-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-lg-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-lg-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-lg-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-lg-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-lg-n1{margin-top:-.25rem!important}.mt-lg-n2{margin-top:-.5rem!important}.mt-lg-n3{margin-top:-1rem!important}.mt-lg-n4{margin-top:-1.5rem!important}.mt-lg-n5{margin-top:-3rem!important}.me-lg-n1{margin-right:-.25rem!important}.me-lg-n2{margin-right:-.5rem!important}.me-lg-n3{margin-right:-1rem!important}.me-lg-n4{margin-right:-1.5rem!important}.me-lg-n5{margin-right:-3rem!important}.mb-lg-n1{margin-bottom:-.25rem!important}.mb-lg-n2{margin-bottom:-.5rem!important}.mb-lg-n3{margin-bottom:-1rem!important}.mb-lg-n4{margin-bottom:-1.5rem!important}.mb-lg-n5{margin-bottom:-3rem!important}.ms-lg-n1{margin-left:-.25rem!important}.ms-lg-n2{margin-left:-.5rem!important}.ms-lg-n3{margin-left:-1rem!important}.ms-lg-n4{margin-left:-1.5rem!important}.ms-lg-n5{margin-left:-3rem!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!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:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.mb-xl-6{margin-bottom:3.5rem!important}.mb-xl-7{margin-bottom:4rem!important}.mb-xl-8{margin-bottom:5rem!important}.mb-xl-9{margin-bottom:6rem!important}.mb-xl-10{margin-bottom:8rem!important}.mb-xl-11{margin-bottom:10rem!important}.mb-xl-12{margin-bottom:12rem!important}.mb-xl-13{margin-bottom:14rem!important}.mb-xl-14{margin-bottom:16rem!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.m-xl-n1{margin:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.m-xl-n3{margin:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mx-xl-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-xl-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-xl-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-xl-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-xl-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xl-n1{margin-top:-.25rem!important}.mt-xl-n2{margin-top:-.5rem!important}.mt-xl-n3{margin-top:-1rem!important}.mt-xl-n4{margin-top:-1.5rem!important}.mt-xl-n5{margin-top:-3rem!important}.me-xl-n1{margin-right:-.25rem!important}.me-xl-n2{margin-right:-.5rem!important}.me-xl-n3{margin-right:-1rem!important}.me-xl-n4{margin-right:-1.5rem!important}.me-xl-n5{margin-right:-3rem!important}.mb-xl-n1{margin-bottom:-.25rem!important}.mb-xl-n2{margin-bottom:-.5rem!important}.mb-xl-n3{margin-bottom:-1rem!important}.mb-xl-n4{margin-bottom:-1.5rem!important}.mb-xl-n5{margin-bottom:-3rem!important}.ms-xl-n1{margin-left:-.25rem!important}.ms-xl-n2{margin-left:-.5rem!important}.ms-xl-n3{margin-left:-1rem!important}.ms-xl-n4{margin-left:-1.5rem!important}.ms-xl-n5{margin-left:-3rem!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media(min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.mb-xxl-6{margin-bottom:3.5rem!important}.mb-xxl-7{margin-bottom:4rem!important}.mb-xxl-8{margin-bottom:5rem!important}.mb-xxl-9{margin-bottom:6rem!important}.mb-xxl-10{margin-bottom:8rem!important}.mb-xxl-11{margin-bottom:10rem!important}.mb-xxl-12{margin-bottom:12rem!important}.mb-xxl-13{margin-bottom:14rem!important}.mb-xxl-14{margin-bottom:16rem!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.m-xxl-n1{margin:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.m-xxl-n3{margin:-1rem!important}.m-xxl-n4{margin:-1.5rem!important}.m-xxl-n5{margin:-3rem!important}.mx-xxl-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-xxl-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-xxl-n3{margin-right:-1rem!important;margin-left:-1rem!important}.mx-xxl-n4{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-xxl-n5{margin-right:-3rem!important;margin-left:-3rem!important}.my-xxl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xxl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xxl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xxl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xxl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xxl-n1{margin-top:-.25rem!important}.mt-xxl-n2{margin-top:-.5rem!important}.mt-xxl-n3{margin-top:-1rem!important}.mt-xxl-n4{margin-top:-1.5rem!important}.mt-xxl-n5{margin-top:-3rem!important}.me-xxl-n1{margin-right:-.25rem!important}.me-xxl-n2{margin-right:-.5rem!important}.me-xxl-n3{margin-right:-1rem!important}.me-xxl-n4{margin-right:-1.5rem!important}.me-xxl-n5{margin-right:-3rem!important}.mb-xxl-n1{margin-bottom:-.25rem!important}.mb-xxl-n2{margin-bottom:-.5rem!important}.mb-xxl-n3{margin-bottom:-1rem!important}.mb-xxl-n4{margin-bottom:-1.5rem!important}.mb-xxl-n5{margin-bottom:-3rem!important}.ms-xxl-n1{margin-left:-.25rem!important}.ms-xxl-n2{margin-left:-.5rem!important}.ms-xxl-n3{margin-left:-1rem!important}.ms-xxl-n4{margin-left:-1.5rem!important}.ms-xxl-n5{margin-left:-3rem!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media(min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!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:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto:"Roboto",sans-serif;--mdb-bg-opacity:1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-left:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width:1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18,102,241,var(--mdb-bg-opacity))!important}.bg-secondary{background-color:rgba(178,60,253,var(--mdb-bg-opacity))!important}.bg-success{background-color:rgba(0,183,74,var(--mdb-bg-opacity))!important}.bg-info{background-color:rgba(57,192,237,var(--mdb-bg-opacity))!important}.bg-warning{background-color:rgba(255,169,0,var(--mdb-bg-opacity))!important}.bg-danger{background-color:rgba(249,49,84,var(--mdb-bg-opacity))!important}.bg-light{background-color:rgba(249,249,249,var(--mdb-bg-opacity))!important}.bg-dark{background-color:rgba(38,38,38,var(--mdb-bg-opacity))!important}.bg-white{background-color:rgba(255,255,255,var(--mdb-bg-opacity))!important}.bg-black{background-color:rgba(0,0,0,var(--mdb-bg-opacity))!important}/*! + * # Semantic UI 2.4.2 - Flag + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-left-radius:5px;border-top-right-radius:5px;text-align:center;max-width:150px;margin:10px auto 0}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){margin:0 .5em 0 0;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:before,i.flag:not(.icon){display:inline-block;width:16px;height:11px}i.flag:before{content:"";background:url(https://mdbootstrap.com/img/svg/flags.png) no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:0 0!important}i.flag-ae:before,i.flag-uae:before,i.flag-united-arab-emirates:before{background-position:0 -26px!important}i.flag-af:before,i.flag-afghanistan:before{background-position:0 -52px!important}i.flag-ag:before,i.flag-antigua:before{background-position:0 -78px!important}i.flag-ai:before,i.flag-anguilla:before{background-position:0 -104px!important}i.flag-al:before,i.flag-albania:before{background-position:0 -130px!important}i.flag-am:before,i.flag-armenia:before{background-position:0 -156px!important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:0 -182px!important}i.flag-angola:before,i.flag-ao:before{background-position:0 -208px!important}i.flag-ar:before,i.flag-argentina:before{background-position:0 -234px!important}i.flag-american-samoa:before,i.flag-as:before{background-position:0 -260px!important}i.flag-at:before,i.flag-austria:before{background-position:0 -286px!important}i.flag-au:before,i.flag-australia:before{background-position:0 -312px!important}i.flag-aruba:before,i.flag-aw:before{background-position:0 -338px!important}i.flag-aland-islands:before,i.flag-ax:before{background-position:0 -364px!important}i.flag-az:before,i.flag-azerbaijan:before{background-position:0 -390px!important}i.flag-ba:before,i.flag-bosnia:before{background-position:0 -416px!important}i.flag-barbados:before,i.flag-bb:before{background-position:0 -442px!important}i.flag-bangladesh:before,i.flag-bd:before{background-position:0 -468px!important}i.flag-be:before,i.flag-belgium:before{background-position:0 -494px!important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:0 -520px!important}i.flag-bg:before,i.flag-bulgaria:before{background-position:0 -546px!important}i.flag-bahrain:before,i.flag-bh:before{background-position:0 -572px!important}i.flag-bi:before,i.flag-burundi:before{background-position:0 -598px!important}i.flag-benin:before,i.flag-bj:before{background-position:0 -624px!important}i.flag-bermuda:before,i.flag-bm:before{background-position:0 -650px!important}i.flag-bn:before,i.flag-brunei:before{background-position:0 -676px!important}i.flag-bo:before,i.flag-bolivia:before{background-position:0 -702px!important}i.flag-br:before,i.flag-brazil:before{background-position:0 -728px!important}i.flag-bahamas:before,i.flag-bs:before{background-position:0 -754px!important}i.flag-bhutan:before,i.flag-bt:before{background-position:0 -780px!important}i.flag-bouvet-island:before,i.flag-bv:before{background-position:0 -806px!important}i.flag-botswana:before,i.flag-bw:before{background-position:0 -832px!important}i.flag-belarus:before,i.flag-by:before{background-position:0 -858px!important}i.flag-belize:before,i.flag-bz:before{background-position:0 -884px!important}i.flag-ca:before,i.flag-canada:before{background-position:0 -910px!important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:0 -962px!important}i.flag-cd:before,i.flag-congo:before{background-position:0 -988px!important}i.flag-central-african-republic:before,i.flag-cf:before{background-position:0 -1014px!important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:0 -1040px!important}i.flag-ch:before,i.flag-switzerland:before{background-position:0 -1066px!important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:0 -1092px!important}i.flag-ck:before,i.flag-cook-islands:before{background-position:0 -1118px!important}i.flag-chile:before,i.flag-cl:before{background-position:0 -1144px!important}i.flag-cameroon:before,i.flag-cm:before{background-position:0 -1170px!important}i.flag-china:before,i.flag-cn:before{background-position:0 -1196px!important}i.flag-co:before,i.flag-colombia:before{background-position:0 -1222px!important}i.flag-costa-rica:before,i.flag-cr:before{background-position:0 -1248px!important}i.flag-cs:before,i.flag-serbia:before{background-position:0 -1274px!important}i.flag-cu:before,i.flag-cuba:before{background-position:0 -1300px!important}i.flag-cape-verde:before,i.flag-cv:before{background-position:0 -1326px!important}i.flag-christmas-island:before,i.flag-cx:before{background-position:0 -1352px!important}i.flag-cy:before,i.flag-cyprus:before{background-position:0 -1378px!important}i.flag-cz:before,i.flag-czech-republic:before{background-position:0 -1404px!important}i.flag-de:before,i.flag-germany:before{background-position:0 -1430px!important}i.flag-dj:before,i.flag-djibouti:before{background-position:0 -1456px!important}i.flag-denmark:before,i.flag-dk:before{background-position:0 -1482px!important}i.flag-dm:before,i.flag-dominica:before{background-position:0 -1508px!important}i.flag-do:before,i.flag-dominican-republic:before{background-position:0 -1534px!important}i.flag-algeria:before,i.flag-dz:before{background-position:0 -1560px!important}i.flag-ec:before,i.flag-ecuador:before{background-position:0 -1586px!important}i.flag-ee:before,i.flag-estonia:before{background-position:0 -1612px!important}i.flag-eg:before,i.flag-egypt:before{background-position:0 -1638px!important}i.flag-eh:before,i.flag-western-sahara:before{background-position:0 -1664px!important}i.flag-england:before,i.flag-gb-eng:before{background-position:0 -1690px!important}i.flag-er:before,i.flag-eritrea:before{background-position:0 -1716px!important}i.flag-es:before,i.flag-spain:before{background-position:0 -1742px!important}i.flag-et:before,i.flag-ethiopia:before{background-position:0 -1768px!important}i.flag-eu:before,i.flag-european-union:before{background-position:0 -1794px!important}i.flag-fi:before,i.flag-finland:before{background-position:0 -1846px!important}i.flag-fiji:before,i.flag-fj:before{background-position:0 -1872px!important}i.flag-falkland-islands:before,i.flag-fk:before{background-position:0 -1898px!important}i.flag-fm:before,i.flag-micronesia:before{background-position:0 -1924px!important}i.flag-faroe-islands:before,i.flag-fo:before{background-position:0 -1950px!important}i.flag-fr:before,i.flag-france:before{background-position:0 -1976px!important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0!important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px!important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px!important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px!important}i.flag-french-guiana:before,i.flag-gf:before{background-position:-36px -104px!important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px!important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px!important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px!important}i.flag-gambia:before,i.flag-gm:before{background-position:-36px -208px!important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px!important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px!important}i.flag-equatorial-guinea:before,i.flag-gq:before{background-position:-36px -286px!important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px!important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px!important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px!important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px!important}i.flag-guinea-bissau:before,i.flag-gw:before{background-position:-36px -416px!important}i.flag-guyana:before,i.flag-gy:before{background-position:-36px -442px!important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px!important}i.flag-heard-island:before,i.flag-hm:before{background-position:-36px -494px!important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px!important}i.flag-croatia:before,i.flag-hr:before{background-position:-36px -546px!important}i.flag-haiti:before,i.flag-ht:before{background-position:-36px -572px!important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px!important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px!important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px!important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px!important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px!important}i.flag-indian-ocean-territory:before,i.flag-io:before{background-position:-36px -728px!important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px!important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px!important}i.flag-iceland:before,i.flag-is:before{background-position:-36px -806px!important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px!important}i.flag-jamaica:before,i.flag-jm:before{background-position:-36px -858px!important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px!important}i.flag-japan:before,i.flag-jp:before{background-position:-36px -910px!important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px!important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px!important}i.flag-cambodia:before,i.flag-kh:before{background-position:-36px -988px!important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px!important}i.flag-comoros:before,i.flag-km:before{background-position:-36px -1040px!important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px!important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px!important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px!important}i.flag-kuwait:before,i.flag-kw:before{background-position:-36px -1144px!important}i.flag-cayman-islands:before,i.flag-ky:before{background-position:-36px -1170px!important}i.flag-kazakhstan:before,i.flag-kz:before{background-position:-36px -1196px!important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px!important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px!important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px!important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px!important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px!important}i.flag-liberia:before,i.flag-lr:before{background-position:-36px -1352px!important}i.flag-lesotho:before,i.flag-ls:before{background-position:-36px -1378px!important}i.flag-lithuania:before,i.flag-lt:before{background-position:-36px -1404px!important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px!important}i.flag-latvia:before,i.flag-lv:before{background-position:-36px -1456px!important}i.flag-libya:before,i.flag-ly:before{background-position:-36px -1482px!important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px!important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px!important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px!important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px!important}i.flag-madagascar:before,i.flag-mg:before{background-position:-36px -1613px!important}i.flag-marshall-islands:before,i.flag-mh:before{background-position:-36px -1639px!important}i.flag-macedonia:before,i.flag-mk:before{background-position:-36px -1665px!important}i.flag-mali:before,i.flag-ml:before{background-position:-36px -1691px!important}i.flag-burma:before,i.flag-mm:before,i.flag-myanmar:before{background-position:-73px -1821px!important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px!important}i.flag-macau:before,i.flag-mo:before{background-position:-36px -1769px!important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px!important}i.flag-martinique:before,i.flag-mq:before{background-position:-36px -1821px!important}i.flag-mauritania:before,i.flag-mr:before{background-position:-36px -1847px!important}i.flag-montserrat:before,i.flag-ms:before{background-position:-36px -1873px!important}i.flag-malta:before,i.flag-mt:before{background-position:-36px -1899px!important}i.flag-mauritius:before,i.flag-mu:before{background-position:-36px -1925px!important}i.flag-maldives:before,i.flag-mv:before{background-position:-36px -1951px!important}i.flag-malawi:before,i.flag-mw:before{background-position:-36px -1977px!important}i.flag-mexico:before,i.flag-mx:before{background-position:-72px 0!important}i.flag-malaysia:before,i.flag-my:before{background-position:-72px -26px!important}i.flag-mozambique:before,i.flag-mz:before{background-position:-72px -52px!important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px!important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px!important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px!important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px!important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px!important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px!important}i.flag-netherlands:before,i.flag-nl:before{background-position:-72px -234px!important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px!important}i.flag-nepal:before,i.flag-np:before{background-position:-72px -286px!important}i.flag-nauru:before,i.flag-nr:before{background-position:-72px -312px!important}i.flag-niue:before,i.flag-nu:before{background-position:-72px -338px!important}i.flag-new-zealand:before,i.flag-nz:before{background-position:-72px -364px!important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px!important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px!important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px!important}i.flag-french-polynesia:before,i.flag-pf:before{background-position:-72px -468px!important}i.flag-new-guinea:before,i.flag-pg:before{background-position:-72px -494px!important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px!important}i.flag-pakistan:before,i.flag-pk:before{background-position:-72px -546px!important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px!important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px!important}i.flag-pitcairn-islands:before,i.flag-pn:before{background-position:-72px -624px!important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px!important}i.flag-palestine:before,i.flag-ps:before{background-position:-72px -676px!important}i.flag-portugal:before,i.flag-pt:before{background-position:-72px -702px!important}i.flag-palau:before,i.flag-pw:before{background-position:-72px -728px!important}i.flag-paraguay:before,i.flag-py:before{background-position:-72px -754px!important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px!important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px!important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px!important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px!important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px!important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px!important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px!important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px!important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px!important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px!important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px!important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px!important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px!important}i.flag-saint-helena:before,i.flag-sh:before{background-position:-72px -1118px!important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px!important}i.flag-jan-mayen:before,i.flag-sj:before,i.flag-svalbard:before{background-position:-72px -1170px!important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px!important}i.flag-sierra-leone:before,i.flag-sl:before{background-position:-72px -1222px!important}i.flag-san-marino:before,i.flag-sm:before{background-position:-72px -1248px!important}i.flag-senegal:before,i.flag-sn:before{background-position:-72px -1274px!important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px!important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px!important}i.flag-sao-tome:before,i.flag-st:before{background-position:-72px -1352px!important}i.flag-el-salvador:before,i.flag-sv:before{background-position:-72px -1378px!important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px!important}i.flag-swaziland:before,i.flag-sz:before{background-position:-72px -1430px!important}i.flag-caicos-islands:before,i.flag-tc:before{background-position:-72px -1456px!important}i.flag-chad:before,i.flag-td:before{background-position:-72px -1482px!important}i.flag-french-territories:before,i.flag-tf:before{background-position:-72px -1508px!important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px!important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px!important}i.flag-tajikistan:before,i.flag-tj:before{background-position:-72px -1586px!important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px!important}i.flag-timorleste:before,i.flag-tl:before{background-position:-72px -1638px!important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px!important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px!important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px!important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px!important}i.flag-trinidad:before,i.flag-tt:before{background-position:-72px -1768px!important}i.flag-tuvalu:before,i.flag-tv:before{background-position:-72px -1794px!important}i.flag-taiwan:before,i.flag-tw:before{background-position:-72px -1820px!important}i.flag-tanzania:before,i.flag-tz:before{background-position:-72px -1846px!important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px!important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px!important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px!important}i.flag-america:before,i.flag-united-states:before,i.flag-us:before{background-position:-72px -1950px!important}i.flag-uruguay:before,i.flag-uy:before{background-position:-72px -1976px!important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0!important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px!important}i.flag-saint-vincent:before,i.flag-vc:before{background-position:-108px -52px!important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px!important}i.flag-british-virgin-islands:before,i.flag-vg:before{background-position:-108px -104px!important}i.flag-us-virgin-islands:before,i.flag-vi:before{background-position:-108px -130px!important}i.flag-vietnam:before,i.flag-vn:before{background-position:-108px -156px!important}i.flag-vanuatu:before,i.flag-vu:before{background-position:-108px -182px!important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px!important}i.flag-wallis-and-futuna:before,i.flag-wf:before{background-position:-108px -234px!important}i.flag-samoa:before,i.flag-ws:before{background-position:-108px -260px!important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px!important}i.flag-mayotte:before,i.flag-yt:before{background-position:-108px -312px!important}i.flag-south-africa:before,i.flag-za:before{background-position:-108px -338px!important}i.flag-zambia:before,i.flag-zm:before{background-position:-108px -364px!important}i.flag-zimbabwe:before,i.flag-zw:before{background-position:-108px -390px!important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:50%}.mask{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.card.hover-shadow,.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow:hover,.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.card.hover-shadow-soft,.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow-soft:hover,.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear;border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:right}.form-outline .trailing{position:absolute;right:10px;left:auto;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-right:2rem!important}.form-outline .form-control{min-height:auto;padding:.33em .75em;border:0;background:transparent;transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;left:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:0 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;left:0;top:0;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid #bdbdbd;box-sizing:border-box;background:transparent;transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{left:0;top:0;height:100%;width:.5rem;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-right:none;border-left:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control.active::-moz-placeholder,.form-outline .form-control:focus::-moz-placeholder{opacity:1}.form-outline .form-control.active::placeholder,.form-outline .form-control:focus::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none!important}.form-outline .form-control.active~.form-label,.form-outline .form-control:focus~.form-label{transform:translateY(-1rem) translateY(.1rem) scale(.8)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control.active~.form-notch .form-notch-middle,.form-outline .form-control:focus~.form-notch .form-notch-middle{border-right:none;border-left:none;border-top:1px solid transparent}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid transparent}.form-outline .form-control.active~.form-notch .form-notch-leading,.form-outline .form-control:focus~.form-notch .form-notch-leading{border-right:none}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control.active~.form-notch .form-notch-trailing,.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-left:none}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control.disabled,.form-outline .form-control:disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-left:.75em;padding-right:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg.active~.form-label,.form-outline .form-control.form-control-lg:focus~.form-label{transform:translateY(-1.25rem) translateY(.1rem) scale(.8)}.form-outline .form-control.form-control-sm{padding:.43em .99em .35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm.active~.form-label,.form-outline .form-control.form-control-sm:focus~.form-label{transform:translateY(-.85rem) translateY(.1rem) scale(.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid transparent}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control::placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control[readonly]{background-color:hsla(0,0%,100%,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:transparent}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:"";position:absolute;box-shadow:0 0 0 13px transparent;border-radius:50%;width:.875rem;height:.875rem;background-color:transparent;opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0 0 0 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0 0 0 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:"";position:absolute}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0 0 0 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:indeterminate:focus:before{box-shadow:0 0 0 13px #1266f1}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-right:8px}.form-check-input[type=checkbox]:focus:after{content:"";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none;background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg) /*!rtl:ignore*/;width:.375rem;height:.8125rem;border:.125rem solid #fff;border-top:0;border-left:0 /*!rtl:ignore*/;margin-left:.25rem;margin-top:-1px;background-color:transparent}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-right:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:"";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;border-color:#1266f1;background-color:#1266f1;transition:border-color;transform:translate(-50%,-50%);position:absolute;left:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-left:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-right:8px}.form-switch .form-check-input:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{box-shadow:3px -1px 0 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked,.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-left:1.0625rem;box-shadow:3px -1px 0 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#1266f1;margin-top:-3px;margin-left:1.0625rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);transition:background-color .2s,transform .2s}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,.form-control[type=file]::-webkit-file-upload-button{background-color:transparent}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:transparent;padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-left:1px;margin-right:1px}.input-group-text>.form-check-input[type=radio]{margin-right:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-left:0}.input-group.form-outline input+.input-group-text{border:0;border-left:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child),.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.input-group .form-outline:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child),.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-left:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.input-group .invalid-feedback,.input-group .valid-feedback,.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{width:auto;color:#00b74a;margin-top:-.75rem}.valid-feedback,.valid-tooltip{position:absolute;display:none;font-size:.875rem}.valid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(0,183,74,.9);border-radius:.25rem!important;color:#fff}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{margin-bottom:1rem;background-image:none;border-color:#00b74a}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-outline .form-control.is-valid~.form-label,.was-validated .form-outline .form-control:valid~.form-label{color:#00b74a}.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing{border-color:#00b74a}.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid transparent}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-select.is-valid,.was-validated .form-select:valid{border-color:#00b74a}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-select.is-valid~.valid-feedback,.was-validated .form-select:valid~.valid-feedback{margin-top:0}.input-group .form-control.is-valid,.was-validated .input-group .form-control:valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text{border-color:#00b74a}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#00b74a}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#00b74a}.form-check-input.is-valid:checked:focus:before,.was-validated .form-check-input:valid:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:none}.form-check-input.is-valid:focus:before,.was-validated .form-check-input:valid:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.form-check-input.is-valid[type=checkbox]:checked:focus,.was-validated .form-check-input:valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.form-check-input.is-valid[type=radio]:checked,.was-validated .form-check-input:valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.form-check-input.is-valid[type=radio]:checked:focus:before,.was-validated .form-check-input:valid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid[type=radio]:checked:after,.was-validated .form-check-input:valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.form-switch .form-check-input.is-valid:focus:before,.was-validated .form-switch .form-check-input:valid:focus:before{box-shadow:3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-valid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-valid:checked:focus:before,.was-validated .form-switch .form-check-input:valid:checked:focus:before{box-shadow:3px -1px 0 13px #00b74a}.invalid-feedback{width:auto;color:#f93154;margin-top:-.75rem}.invalid-feedback,.invalid-tooltip{position:absolute;display:none;font-size:.875rem}.invalid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(249,49,84,.9);border-radius:.25rem!important;color:#fff}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{margin-bottom:1rem;background-image:none;border-color:#f93154}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-outline .form-control.is-invalid~.form-label,.was-validated .form-outline .form-control:invalid~.form-label{color:#f93154}.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing{border-color:#f93154}.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid transparent}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#f93154}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-select.is-invalid~.invalid-feedback,.was-validated .form-select:invalid~.invalid-feedback{margin-top:0}.input-group .form-control.is-invalid,.was-validated .input-group .form-control:invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text{border-color:#f93154}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#f93154}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#f93154}.form-check-input.is-invalid:checked:focus:before,.was-validated .form-check-input:invalid:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:none}.form-check-input.is-invalid:focus:before,.was-validated .form-check-input:invalid:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.form-check-input.is-invalid[type=checkbox]:checked:focus,.was-validated .form-check-input:invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.form-check-input.is-invalid[type=radio]:checked,.was-validated .form-check-input:invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.form-check-input.is-invalid[type=radio]:checked:focus:before,.was-validated .form-check-input:invalid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid[type=radio]:checked:after,.was-validated .form-check-input:invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.form-switch .form-check-input.is-invalid:focus:before,.was-validated .form-switch .form-check-input:invalid:focus:before{box-shadow:3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-invalid:checked:focus:before,.was-validated .form-switch .form-check-input:invalid:checked:focus:before{box-shadow:3px -1px 0 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg:transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem;font-size:.75rem;line-height:1.5}.btn.active,.btn.active:focus,.btn.focus,.btn:active,.btn:active:focus,.btn:focus,.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem}[class*=btn-outline-].focus,[class*=btn-outline-]:focus,[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-].active,[class*=btn-outline-].active:focus,[class*=btn-outline-].disabled,[class*=btn-outline-]:active,[class*=btn-outline-]:active:focus,[class*=btn-outline-]:disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}.btn-group-lg>[class*=btn-outline-].btn,[class*=btn-outline-].btn-lg{padding:.625rem 1.5625rem .5625rem}.btn-group-sm>[class*=btn-outline-].btn,[class*=btn-outline-].btn-sm{padding:.25rem .875rem .1875rem}.btn-primary{color:#fff;background-color:#1266f1}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#0c56d0}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#093d94}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#1266f1}.btn-secondary{color:#fff;background-color:#b23cfd}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#a316fd}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#8102d1}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#b23cfd}.btn-success{color:#fff;background-color:#00b74a}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#00913b}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#fff;background-color:#d99000}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light.disabled,.btn-light:disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#131313}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white.focus,.btn-white:focus,.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white.disabled,.btn-white:disabled{color:#4f4f4f;background-color:#fff}.btn-black,.btn-black.active,.btn-black.focus,.btn-black:active,.btn-black:focus,.btn-black:hover,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black.disabled,.btn-black:disabled{color:#fff;background-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;background-color:rgba(0,0,0,.02)}.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:focus{color:#1266f1;background-color:transparent}.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:none}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#1266f1}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;background-color:rgba(0,0,0,.02)}.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:focus{color:#b23cfd;background-color:transparent}.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:none}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#b23cfd}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success.focus,.btn-outline-success:active,.btn-outline-success:focus{color:#00b74a;background-color:transparent}.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:none}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#00b74a}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info.focus,.btn-outline-info:active,.btn-outline-info:focus{color:#39c0ed;background-color:transparent}.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:none}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#39c0ed}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning.focus,.btn-outline-warning:active,.btn-outline-warning:focus{color:#ffa900;background-color:transparent}.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:none}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffa900}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger.focus,.btn-outline-danger:active,.btn-outline-danger:focus{color:#f93154;background-color:transparent}.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:none}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#f93154}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light.focus,.btn-outline-light:active,.btn-outline-light:focus{color:#f9f9f9;background-color:transparent}.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:none}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f9f9f9}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark.focus,.btn-outline-dark:active,.btn-outline-dark:focus{color:#262626;background-color:transparent}.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:none}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#262626}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white.focus,.btn-outline-white:active,.btn-outline-white:focus{color:#fff;background-color:transparent}.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:none}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black.focus,.btn-outline-black:active,.btn-outline-black:focus{color:#000;background-color:transparent}.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:none}.btn-outline-black.disabled,.btn-outline-black:disabled{color:#000}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black{color:#fff;background-color:#000}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.6875rem .6875rem;font-size:.875rem;line-height:1.6}.btn-group-sm>.btn,.btn-sm{padding:.375rem 1rem .3125rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link.focus,.btn-link:focus,.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link.active,.btn-link.active:focus,.btn-link:active,.btn-link:active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link.disabled,.btn-link:disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fab,.btn-floating .far,.btn-floating .fas{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fab,.btn-floating.btn-lg .far,.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fab,.btn-group-lg>.btn-floating.btn .far,.btn-group-lg>.btn-floating.btn .fas{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fab,.btn-floating.btn-sm .far,.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fab,.btn-group-sm>.btn-floating.btn .far,.btn-group-sm>.btn-floating.btn .fas{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fab,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fas{width:2.0625rem;line-height:2.0625rem}.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .fab,[class*=btn-outline-].btn-floating.btn-lg .far,[class*=btn-outline-].btn-floating.btn-lg .fas{width:2.5625rem;line-height:2.5625rem}.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .fab,[class*=btn-outline-].btn-floating.btn-sm .far,[class*=btn-outline-].btn-floating.btn-sm .fas{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;right:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;left:0;right:0;display:flex;flex-direction:column;padding:0;margin:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn.active ul,.fixed-action-btn ul a.btn.shown{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child,.dropdown-menu>li:first-child .dropdown-item{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child,.dropdown-menu>li:last-child .dropdown-item{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item.active,.dropdown-item:active,.dropdown-item:focus,.dropdown-item:hover{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none!important;-webkit-animation:unset!important;animation:unset!important}}@-webkit-keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{0%{opacity:1}to{opacity:0}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group-vertical.active,.btn-group-vertical.active:focus,.btn-group-vertical.focus,.btn-group-vertical:active,.btn-group-vertical:active:focus,.btn-group-vertical:focus,.btn-group-vertical:hover,.btn-group.active,.btn-group.active:focus,.btn-group.focus,.btn-group:active,.btn-group:active:focus,.btn-group:focus,.btn-group:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group-vertical.disabled,.btn-group-vertical:disabled,.btn-group.disabled,.btn-group:disabled,fieldset:disabled .btn-group,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group>.btn,.btn-group>.btn-group{box-shadow:none}.btn-group-vertical>.btn-link:first-child,.btn-group>.btn-link:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-link:last-child,.btn-group>.btn-link:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border:solid transparent;border-width:0 0 2px;border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px}.nav-tabs .nav-link:hover{background-color:#f5f5f5;border-color:transparent}.nav-tabs .nav-link:focus{border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#1266f1;border-color:#1266f1}.nav-pills{margin-left:-.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-right:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-dark .navbar-toggler-icon,.navbar-light .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.card-header{background-color:hsla(0,0%,100%,0)}.card-body[class*=bg-]{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.card-footer{background-color:hsla(0,0%,100%,0)}.card-img-left{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.navbar .breadcrumb{background-color:transparent;margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:focus,.navbar .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{font-size:.9rem;background-color:transparent;border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link,.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{background-color:#1266f1;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:not(:first-child) .page-link{margin-left:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-circle .page-item:first-child .page-link,.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-left:.841rem;padding-right:.841rem}.pagination-circle.pagination-lg .page-link{padding-left:1.399414rem;padding-right:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-left:.696rem;padding-right:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-left:-.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-.1rem;margin-left:-.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action,.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:focus,.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content,.toast{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{color:#fff;padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:transparent;color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:none;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:transparent;box-shadow:none;color:#1266f1;font-weight:600;border-left:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0,0,.15,1),cubic-bezier(0,0,.15,1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle,rgba(18,102,241,.2) 0,rgba(18,102,241,.3) 40%,rgba(18,102,241,.4) 50%,rgba(18,102,241,.5) 60%,rgba(18,102,241,0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle,rgba(178,60,253,.2) 0,rgba(178,60,253,.3) 40%,rgba(178,60,253,.4) 50%,rgba(178,60,253,.5) 60%,rgba(178,60,253,0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle,rgba(0,183,74,.2) 0,rgba(0,183,74,.3) 40%,rgba(0,183,74,.4) 50%,rgba(0,183,74,.5) 60%,rgba(0,183,74,0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle,rgba(57,192,237,.2) 0,rgba(57,192,237,.3) 40%,rgba(57,192,237,.4) 50%,rgba(57,192,237,.5) 60%,rgba(57,192,237,0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle,rgba(255,169,0,.2) 0,rgba(255,169,0,.3) 40%,rgba(255,169,0,.4) 50%,rgba(255,169,0,.5) 60%,rgba(255,169,0,0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle,rgba(249,49,84,.2) 0,rgba(249,49,84,.3) 40%,rgba(249,49,84,.4) 50%,rgba(249,49,84,.5) 60%,rgba(249,49,84,0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,97.6%,.2) 0,hsla(0,0%,97.6%,.3) 40%,hsla(0,0%,97.6%,.4) 50%,hsla(0,0%,97.6%,.5) 60%,hsla(0,0%,97.6%,0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle,rgba(38,38,38,.2) 0,rgba(38,38,38,.3) 40%,rgba(38,38,38,.4) 50%,rgba(38,38,38,.5) 60%,rgba(38,38,38,0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%)}.range{position:relative}.range .thumb{height:30px;width:30px;top:-35px;margin-left:-15px;text-align:center;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb,.range .thumb:after{position:absolute;display:block;border-radius:50% 50% 50% 0}.range .thumb:after{content:"";transform:translateX(-50%);width:100%;height:100%;top:0;transform:rotate(-45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-prev-icon:after{content:""}.carousel-control-next-icon:after,.carousel-control-prev-icon:after{font-weight:700;font-family:Font Awesome\ 6 Pro,Font Awesome\ 6 Free;font-size:1.7rem}.carousel-control-next-icon:after{content:""} \ No newline at end of file diff --git a/css/mdb.min.css.map b/css/mdb.min.css.map new file mode 100644 index 000000000..6ccac6c77 --- /dev/null +++ b/css/mdb.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["mdb.min.css","css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src!./node_modules/sass-loader/dist/cjs.js!./src/scss/mdb.free.scss"],"names":[],"mappings":"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","file":"mdb.min.css","sourcesContent":["/*!\n * MDB5\n * Version: FREE 4.1.0\n * \n * \n * Copyright: Material Design for Bootstrap\n * https://mdbootstrap.com/\n * \n * Read the license: https://mdbootstrap.com/general/license/\n * \n * \n * Documentation: https://mdbootstrap.com/docs/standard/\n * \n * Support: https://mdbootstrap.com/support/\n * \n * Contact: office@mdbootstrap.com\n * \n */\n:root{--mdb-blue: #0d6efd;--mdb-indigo: #6610f2;--mdb-purple: #6f42c1;--mdb-pink: #d63384;--mdb-red: #dc3545;--mdb-orange: #fd7e14;--mdb-yellow: #ffc107;--mdb-green: #198754;--mdb-teal: #20c997;--mdb-cyan: #0dcaf0;--mdb-white: #fff;--mdb-gray: #757575;--mdb-gray-dark: #4f4f4f;--mdb-gray-100: #f5f5f5;--mdb-gray-200: #eeeeee;--mdb-gray-300: #e0e0e0;--mdb-gray-400: #bdbdbd;--mdb-gray-500: #9e9e9e;--mdb-gray-600: #757575;--mdb-gray-700: #616161;--mdb-gray-800: #4f4f4f;--mdb-gray-900: #262626;--mdb-primary: #1266f1;--mdb-secondary: #b23cfd;--mdb-success: #00b74a;--mdb-info: #39c0ed;--mdb-warning: #ffa900;--mdb-danger: #f93154;--mdb-light: #f9f9f9;--mdb-dark: #262626;--mdb-white: #fff;--mdb-black: #000;--mdb-primary-rgb: 18, 102, 241;--mdb-secondary-rgb: 178, 60, 253;--mdb-success-rgb: 0, 183, 74;--mdb-info-rgb: 57, 192, 237;--mdb-warning-rgb: 255, 169, 0;--mdb-danger-rgb: 249, 49, 84;--mdb-light-rgb: 249, 249, 249;--mdb-dark-rgb: 38, 38, 38;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-body-color-rgb: 79, 79, 79;--mdb-body-bg-rgb: 255, 255, 255;--mdb-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--mdb-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--mdb-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--mdb-body-font-family: var(--mdb-font-roboto);--mdb-body-font-size: 1rem;--mdb-body-font-weight: 400;--mdb-body-line-height: 1.6;--mdb-body-color: #4f4f4f;--mdb-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + 0.6vw)}@media(min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + 0.3vw)}@media(min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-mdb-original-title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}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,.small{font-size:0.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--mdb-font-monospace);font-size:1em;/*!rtl:ignore*/direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:0.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}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,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}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}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}/*!rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.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:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#757575}.blockquote-footer::before{content:\"— \"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:#757575}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:var(--mdb-gutter-x, 0.75rem);padding-left:var(--mdb-gutter-x, 0.75rem);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--mdb-gutter-x: 1.5rem;--mdb-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--mdb-gutter-y));margin-right:calc(-0.5*var(--mdb-gutter-x));margin-left:calc(-0.5*var(--mdb-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--mdb-gutter-x)*.5);padding-left:calc(var(--mdb-gutter-x)*.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--mdb-gutter-x: 0}.g-0,.gy-0{--mdb-gutter-y: 0}.g-1,.gx-1{--mdb-gutter-x: 0.25rem}.g-1,.gy-1{--mdb-gutter-y: 0.25rem}.g-2,.gx-2{--mdb-gutter-x: 0.5rem}.g-2,.gy-2{--mdb-gutter-y: 0.5rem}.g-3,.gx-3{--mdb-gutter-x: 1rem}.g-3,.gy-3{--mdb-gutter-y: 1rem}.g-4,.gx-4{--mdb-gutter-x: 1.5rem}.g-4,.gy-4{--mdb-gutter-y: 1.5rem}.g-5,.gx-5{--mdb-gutter-x: 3rem}.g-5,.gy-5{--mdb-gutter-y: 3rem}@media(min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x: 0}.g-sm-0,.gy-sm-0{--mdb-gutter-y: 0}.g-sm-1,.gx-sm-1{--mdb-gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y: 3rem}}@media(min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x: 0}.g-md-0,.gy-md-0{--mdb-gutter-y: 0}.g-md-1,.gx-md-1{--mdb-gutter-x: 0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y: 0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x: 0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y: 0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x: 1rem}.g-md-3,.gy-md-3{--mdb-gutter-y: 1rem}.g-md-4,.gx-md-4{--mdb-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x: 3rem}.g-md-5,.gy-md-5{--mdb-gutter-y: 3rem}}@media(min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x: 0}.g-lg-0,.gy-lg-0{--mdb-gutter-y: 0}.g-lg-1,.gx-lg-1{--mdb-gutter-x: 0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y: 0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x: 0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y: 0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y: 3rem}}@media(min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x: 0}.g-xl-0,.gy-xl-0{--mdb-gutter-y: 0}.g-xl-1,.gx-xl-1{--mdb-gutter-x: 0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y: 0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x: 0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y: 0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y: 3rem}}@media(min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x: 0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y: 0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x: 0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y: 0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y: 3rem}}.table{--mdb-table-bg: transparent;--mdb-table-accent-bg: transparent;--mdb-table-striped-color: #212529;--mdb-table-striped-bg: rgba(0, 0, 0, 0.02);--mdb-table-active-color: #212529;--mdb-table-active-bg: rgba(0, 0, 0, 0.1);--mdb-table-hover-color: #212529;--mdb-table-hover-bg: rgba(0, 0, 0, 0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{padding:1rem 1.4rem;background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg: var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg: var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg: var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg: #d0e0fc;--mdb-table-striped-bg: #c6d5ef;--mdb-table-striped-color: #000;--mdb-table-active-bg: #bbcae3;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c0cfe9;--mdb-table-hover-color: #000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg: #f0d8ff;--mdb-table-striped-bg: #e4cdf2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #d8c2e6;--mdb-table-active-color: #000;--mdb-table-hover-bg: #dec8ec;--mdb-table-hover-color: #000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg: #ccf1db;--mdb-table-striped-bg: #c2e5d0;--mdb-table-striped-color: #000;--mdb-table-active-bg: #b8d9c5;--mdb-table-active-color: #000;--mdb-table-hover-bg: #bddfcb;--mdb-table-hover-color: #000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg: #d7f2fb;--mdb-table-striped-bg: #cce6ee;--mdb-table-striped-color: #000;--mdb-table-active-bg: #c2dae2;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c7e0e8;--mdb-table-hover-color: #000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg: #ffeecc;--mdb-table-striped-bg: #f2e2c2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e6d6b8;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ecdcbd;--mdb-table-hover-color: #000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg: #fed6dd;--mdb-table-striped-bg: #f1cbd2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e5c1c7;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ebc6cc;--mdb-table-hover-color: #000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg: #f9f9f9;--mdb-table-striped-bg: #ededed;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e0e0e0;--mdb-table-active-color: #000;--mdb-table-hover-bg: #e6e6e6;--mdb-table-hover-color: #000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg: #262626;--mdb-table-striped-bg: #313131;--mdb-table-striped-color: #fff;--mdb-table-active-bg: #3c3c3c;--mdb-table-active-color: #fff;--mdb-table-hover-bg: #363636;--mdb-table-hover-color: #fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.775rem}.form-text{margin-top:.25rem;font-size:0.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);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{min-height:calc(1.6em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + 0.75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + 0.5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;transition:all .2s linear;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size=\"1\"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1;border-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\")}.form-check-input:checked[type=radio]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%231266f1'/%3e%3c/svg%3e\")}.form-switch .form-check-input:checked{background-position:right center;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:rgba(0,0,0,0);-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#1266f1;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1266f1;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#00b74a}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(0,183,74,.9);border-radius:.25rem}.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:#00b74a;padding-right:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size=\"1\"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#f93154}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(249,49,84,.9);border-radius:.25rem}.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:#f93154;padding-right:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size=\"1\"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:rgba(0,0,0,0);border:.125rem solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:0.75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0e52c1;border-color:#0e4db5}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-secondary{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#000;background-color:#be59fd;border-color:#ba50fd;box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-success{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#26c265;border-color:#1abe5c;box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success:disabled,.btn-success.disabled{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-info{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#57c9f0;border-color:#4dc6ef;box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-warning{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffb626;border-color:#ffb21a;box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-danger{color:#000;background-color:#f93154;border-color:#f93154}.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#fa506e;border-color:#fa4665;box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#000;background-color:#f93154;border-color:#f93154}.btn-light{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#fafafa;border-color:#fafafa;box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626;border-color:#262626}.btn-dark:hover{color:#fff;background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#202020;border-color:#1e1e1e;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626;border-color:#262626}.btn-white{color:#000;background-color:#fff;border-color:#fff}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-white:disabled,.btn-white.disabled{color:#000;background-color:#fff;border-color:#fff}.btn-black{color:#fff;background-color:#000;border-color:#000}.btn-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-black,.btn-black:focus{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#262626;border-color:#262626}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white,.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-outline-white:focus,.btn-check:active+.btn-outline-white:focus,.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black,.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-outline-black:focus,.btn-check:active+.btn-outline-black:focus,.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000;background-color:rgba(0,0,0,0)}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link:disabled,.btn-link.disabled{color:#757575}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:0.875rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.75rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:0.875rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-mdb-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-mdb-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\"}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.5rem 1rem;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:#222;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:0.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;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:-0.125rem}.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:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;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:-0.125rem}.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~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid rgba(0,0,0,0);border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;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}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(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,.55)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.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.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem 1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-0.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.5rem - 1px) calc(0.5rem - 1px)}.card-header-tabs{margin-right:-0.75rem;margin-bottom:-0.75rem;margin-left:-0.75rem;border-bottom:0}.card-header-pills{margin-right:-0.75rem;margin-left:-0.75rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.5rem;border-radius:calc(0.5rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{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}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider, \"/\") /*!rtl: var(--mdb-breadcrumb-divider, \"/\") */}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#212529;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0;transition:all .3s linear}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#212529;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#1266f1;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:0.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.27rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:.5rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.5625rem 1.5rem}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:\"\";background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#1266f1;outline:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{display:flex;height:4px;overflow:hidden;font-size:0.75rem;background-color:#eee;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1266f1;transition:width .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:4px 4px}.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}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:\"\"}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, \".\") \". \";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(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:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1266f1;border-color:#1266f1}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.5rem;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}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.5rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:hover,.list-group-item-white.list-group-item-action:focus{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:hover,.list-group-item-black.list-group-item-action:focus{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:0.875rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-color:#fff;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.toast-header .btn-close{margin-right:-0.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #e0e0e0;border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-0.5rem -0.5rem -0.5rem auto}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;/*!rtl:ignore*/left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:\"\";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}/*!rtl:begin:ignore*/.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}/*!rtl:end:ignore*/.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .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:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}/*!rtl:options:{\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n}*/.carousel-control-prev-icon{background-image:none}.carousel-control-next-icon{background-image:none}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(360deg)}}@keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentColor;border-right-color:rgba(0,0,0,0);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:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-0.5rem;margin-right:-0.5rem;margin-bottom:-0.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.clearfix::after{display:block;clear:both;content:\"\"}.link-primary{color:#1266f1}.link-primary:hover,.link-primary:focus{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:hover,.link-secondary:focus{color:#c163fd}.link-success{color:#00b74a}.link-success:hover,.link-success:focus{color:#33c56e}.link-info{color:#39c0ed}.link-info:hover,.link-info:focus{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:hover,.link-warning:focus{color:#ffba33}.link-danger{color:#f93154}.link-danger:hover,.link-danger:focus{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:hover,.link-light:focus{color:#fafafa}.link-dark{color:#262626}.link-dark:hover,.link-dark:focus{color:#1e1e1e}.link-white{color:#fff}.link-white:hover,.link-white:focus{color:#fff}.link-black{color:#000}.link-black:hover,.link-black:focus{color:#000}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--mdb-aspect-ratio);content:\"\"}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio: 100%}.ratio-4x3{--mdb-aspect-ratio: 75%}.ratio-16x9{--mdb-aspect-ratio: 56.25%}.ratio-21x9{--mdb-aspect-ratio: 42.8571428571%}.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}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:\"\"}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}.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}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-5{opacity:.05 !important}.opacity-10{opacity:.1 !important}.opacity-15{opacity:.15 !important}.opacity-20{opacity:.2 !important}.opacity-25{opacity:.25 !important}.opacity-30{opacity:.3 !important}.opacity-35{opacity:.35 !important}.opacity-40{opacity:.4 !important}.opacity-45{opacity:.45 !important}.opacity-50{opacity:.5 !important}.opacity-55{opacity:.55 !important}.opacity-60{opacity:.6 !important}.opacity-65{opacity:.65 !important}.opacity-70{opacity:.7 !important}.opacity-75{opacity:.75 !important}.opacity-80{opacity:.8 !important}.opacity-85{opacity:.85 !important}.opacity-90{opacity:.9 !important}.opacity-95{opacity:.95 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.shadow-0{box-shadow:none !important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07) !important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05) !important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05) !important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05) !important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05) !important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21) !important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05) !important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05) !important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05) !important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05) !important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05) !important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05) !important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21) !important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21) !important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21) !important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21) !important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21) !important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21) !important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06) !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}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #e0e0e0 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #e0e0e0 !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #e0e0e0 !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #e0e0e0 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #e0e0e0 !important}.border-start-0{border-left:0 !important}.border-primary{border-color:#1266f1 !important}.border-secondary{border-color:#b23cfd !important}.border-success{border-color:#00b74a !important}.border-info{border-color:#39c0ed !important}.border-warning{border-color:#ffa900 !important}.border-danger{border-color:#f93154 !important}.border-light{border-color:#f9f9f9 !important}.border-dark{border-color:#262626 !important}.border-white{border-color:#fff !important}.border-black{border-color:#000 !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !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}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !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}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.mb-6{margin-bottom:3.5rem !important}.mb-7{margin-bottom:4rem !important}.mb-8{margin-bottom:5rem !important}.mb-9{margin-bottom:6rem !important}.mb-10{margin-bottom:8rem !important}.mb-11{margin-bottom:10rem !important}.mb-12{margin-bottom:12rem !important}.mb-13{margin-bottom:14rem !important}.mb-14{margin-bottom:16rem !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.m-n1{margin:-0.25rem !important}.m-n2{margin:-0.5rem !important}.m-n3{margin:-1rem !important}.m-n4{margin:-1.5rem !important}.m-n5{margin:-3rem !important}.mx-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-n1{margin-top:-0.25rem !important}.mt-n2{margin-top:-0.5rem !important}.mt-n3{margin-top:-1rem !important}.mt-n4{margin-top:-1.5rem !important}.mt-n5{margin-top:-3rem !important}.me-n1{margin-right:-0.25rem !important}.me-n2{margin-right:-0.5rem !important}.me-n3{margin-right:-1rem !important}.me-n4{margin-right:-1.5rem !important}.me-n5{margin-right:-3rem !important}.mb-n1{margin-bottom:-0.25rem !important}.mb-n2{margin-bottom:-0.5rem !important}.mb-n3{margin-bottom:-1rem !important}.mb-n4{margin-bottom:-1.5rem !important}.mb-n5{margin-bottom:-3rem !important}.ms-n1{margin-left:-0.25rem !important}.ms-n2{margin-left:-0.5rem !important}.ms-n3{margin-left:-1rem !important}.ms-n4{margin-left:-1.5rem !important}.ms-n5{margin-left:-3rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.font-monospace{font-family:var(--mdb-font-monospace) !important}.fs-1{font-size:calc(1.375rem + 1.5vw) !important}.fs-2{font-size:calc(1.325rem + 0.9vw) !important}.fs-3{font-size:calc(1.3rem + 0.6vw) !important}.fs-4{font-size:calc(1.275rem + 0.3vw) !important}.fs-5{font-size:1.25rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.6 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}/*!rtl:begin:remove*/.text-break{word-wrap:break-word !important;word-break:break-word !important}/*!rtl:end:remove*/.text-primary{--mdb-text-opacity: 1;color:rgba(var(--mdb-primary-rgb), var(--mdb-text-opacity)) !important}.text-secondary{--mdb-text-opacity: 1;color:rgba(var(--mdb-secondary-rgb), var(--mdb-text-opacity)) !important}.text-success{--mdb-text-opacity: 1;color:rgba(var(--mdb-success-rgb), var(--mdb-text-opacity)) !important}.text-info{--mdb-text-opacity: 1;color:rgba(var(--mdb-info-rgb), var(--mdb-text-opacity)) !important}.text-warning{--mdb-text-opacity: 1;color:rgba(var(--mdb-warning-rgb), var(--mdb-text-opacity)) !important}.text-danger{--mdb-text-opacity: 1;color:rgba(var(--mdb-danger-rgb), var(--mdb-text-opacity)) !important}.text-light{--mdb-text-opacity: 1;color:rgba(var(--mdb-light-rgb), var(--mdb-text-opacity)) !important}.text-dark{--mdb-text-opacity: 1;color:rgba(var(--mdb-dark-rgb), var(--mdb-text-opacity)) !important}.text-white{--mdb-text-opacity: 1;color:rgba(var(--mdb-white-rgb), var(--mdb-text-opacity)) !important}.text-black{--mdb-text-opacity: 1;color:rgba(var(--mdb-black-rgb), var(--mdb-text-opacity)) !important}.text-body{--mdb-text-opacity: 1;color:rgba(var(--mdb-body-color-rgb), var(--mdb-text-opacity)) !important}.text-muted{--mdb-text-opacity: 1;color:#757575 !important}.text-black-50{--mdb-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--mdb-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-reset{--mdb-text-opacity: 1;color:inherit !important}.text-opacity-25{--mdb-text-opacity: 0.25}.text-opacity-50{--mdb-text-opacity: 0.5}.text-opacity-75{--mdb-text-opacity: 0.75}.text-opacity-100{--mdb-text-opacity: 1}.bg-primary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-primary-rgb), var(--mdb-bg-opacity)) !important}.bg-secondary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-secondary-rgb), var(--mdb-bg-opacity)) !important}.bg-success{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-success-rgb), var(--mdb-bg-opacity)) !important}.bg-info{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-info-rgb), var(--mdb-bg-opacity)) !important}.bg-warning{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-warning-rgb), var(--mdb-bg-opacity)) !important}.bg-danger{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-danger-rgb), var(--mdb-bg-opacity)) !important}.bg-light{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important}.bg-dark{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-dark-rgb), var(--mdb-bg-opacity)) !important}.bg-white{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-white-rgb), var(--mdb-bg-opacity)) !important}.bg-black{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-black-rgb), var(--mdb-bg-opacity)) !important}.bg-body{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-body-bg-rgb), var(--mdb-bg-opacity)) !important}.bg-transparent{--mdb-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-opacity-10{--mdb-bg-opacity: 0.1}.bg-opacity-25{--mdb-bg-opacity: 0.25}.bg-opacity-50{--mdb-bg-opacity: 0.5}.bg-opacity-75{--mdb-bg-opacity: 0.75}.bg-opacity-100{--mdb-bg-opacity: 1}.bg-gradient{background-image:var(--mdb-gradient) !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;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2rem !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-4{border-radius:.375rem !important}.rounded-5{border-radius:.5rem !important}.rounded-6{border-radius:.75rem !important}.rounded-7{border-radius:1rem !important}.rounded-8{border-radius:1.25rem !important}.rounded-9{border-radius:1.5rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-end{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-start{border-bottom-left-radius:.25rem !important;border-top-left-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.ls-tighter{letter-spacing:-0.05em !important}.ls-tight{letter-spacing:-0.025em !important}.ls-normal{letter-spacing:0em !important}.ls-wide{letter-spacing:.025em !important}.ls-wider{letter-spacing:.05em !important}.ls-widest{letter-spacing:.1em !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !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:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.mb-sm-6{margin-bottom:3.5rem !important}.mb-sm-7{margin-bottom:4rem !important}.mb-sm-8{margin-bottom:5rem !important}.mb-sm-9{margin-bottom:6rem !important}.mb-sm-10{margin-bottom:8rem !important}.mb-sm-11{margin-bottom:10rem !important}.mb-sm-12{margin-bottom:12rem !important}.mb-sm-13{margin-bottom:14rem !important}.mb-sm-14{margin-bottom:16rem !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.m-sm-n1{margin:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mx-sm-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-sm-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-sm-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-sm-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-sm-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-sm-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-sm-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-sm-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-sm-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-sm-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-sm-n1{margin-top:-0.25rem !important}.mt-sm-n2{margin-top:-0.5rem !important}.mt-sm-n3{margin-top:-1rem !important}.mt-sm-n4{margin-top:-1.5rem !important}.mt-sm-n5{margin-top:-3rem !important}.me-sm-n1{margin-right:-0.25rem !important}.me-sm-n2{margin-right:-0.5rem !important}.me-sm-n3{margin-right:-1rem !important}.me-sm-n4{margin-right:-1.5rem !important}.me-sm-n5{margin-right:-3rem !important}.mb-sm-n1{margin-bottom:-0.25rem !important}.mb-sm-n2{margin-bottom:-0.5rem !important}.mb-sm-n3{margin-bottom:-1rem !important}.mb-sm-n4{margin-bottom:-1.5rem !important}.mb-sm-n5{margin-bottom:-3rem !important}.ms-sm-n1{margin-left:-0.25rem !important}.ms-sm-n2{margin-left:-0.5rem !important}.ms-sm-n3{margin-left:-1rem !important}.ms-sm-n4{margin-left:-1.5rem !important}.ms-sm-n5{margin-left:-3rem !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !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:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.mb-md-6{margin-bottom:3.5rem !important}.mb-md-7{margin-bottom:4rem !important}.mb-md-8{margin-bottom:5rem !important}.mb-md-9{margin-bottom:6rem !important}.mb-md-10{margin-bottom:8rem !important}.mb-md-11{margin-bottom:10rem !important}.mb-md-12{margin-bottom:12rem !important}.mb-md-13{margin-bottom:14rem !important}.mb-md-14{margin-bottom:16rem !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.m-md-n1{margin:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.m-md-n3{margin:-1rem !important}.m-md-n4{margin:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mx-md-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-md-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-md-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-md-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-md-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-md-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-md-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-md-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-md-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-md-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-md-n1{margin-top:-0.25rem !important}.mt-md-n2{margin-top:-0.5rem !important}.mt-md-n3{margin-top:-1rem !important}.mt-md-n4{margin-top:-1.5rem !important}.mt-md-n5{margin-top:-3rem !important}.me-md-n1{margin-right:-0.25rem !important}.me-md-n2{margin-right:-0.5rem !important}.me-md-n3{margin-right:-1rem !important}.me-md-n4{margin-right:-1.5rem !important}.me-md-n5{margin-right:-3rem !important}.mb-md-n1{margin-bottom:-0.25rem !important}.mb-md-n2{margin-bottom:-0.5rem !important}.mb-md-n3{margin-bottom:-1rem !important}.mb-md-n4{margin-bottom:-1.5rem !important}.mb-md-n5{margin-bottom:-3rem !important}.ms-md-n1{margin-left:-0.25rem !important}.ms-md-n2{margin-left:-0.5rem !important}.ms-md-n3{margin-left:-1rem !important}.ms-md-n4{margin-left:-1.5rem !important}.ms-md-n5{margin-left:-3rem !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !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:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.mb-lg-6{margin-bottom:3.5rem !important}.mb-lg-7{margin-bottom:4rem !important}.mb-lg-8{margin-bottom:5rem !important}.mb-lg-9{margin-bottom:6rem !important}.mb-lg-10{margin-bottom:8rem !important}.mb-lg-11{margin-bottom:10rem !important}.mb-lg-12{margin-bottom:12rem !important}.mb-lg-13{margin-bottom:14rem !important}.mb-lg-14{margin-bottom:16rem !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.m-lg-n1{margin:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mx-lg-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-lg-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-lg-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-lg-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-lg-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-lg-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-lg-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-lg-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-lg-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-lg-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-lg-n1{margin-top:-0.25rem !important}.mt-lg-n2{margin-top:-0.5rem !important}.mt-lg-n3{margin-top:-1rem !important}.mt-lg-n4{margin-top:-1.5rem !important}.mt-lg-n5{margin-top:-3rem !important}.me-lg-n1{margin-right:-0.25rem !important}.me-lg-n2{margin-right:-0.5rem !important}.me-lg-n3{margin-right:-1rem !important}.me-lg-n4{margin-right:-1.5rem !important}.me-lg-n5{margin-right:-3rem !important}.mb-lg-n1{margin-bottom:-0.25rem !important}.mb-lg-n2{margin-bottom:-0.5rem !important}.mb-lg-n3{margin-bottom:-1rem !important}.mb-lg-n4{margin-bottom:-1.5rem !important}.mb-lg-n5{margin-bottom:-3rem !important}.ms-lg-n1{margin-left:-0.25rem !important}.ms-lg-n2{margin-left:-0.5rem !important}.ms-lg-n3{margin-left:-1rem !important}.ms-lg-n4{margin-left:-1.5rem !important}.ms-lg-n5{margin-left:-3rem !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !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:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.mb-xl-6{margin-bottom:3.5rem !important}.mb-xl-7{margin-bottom:4rem !important}.mb-xl-8{margin-bottom:5rem !important}.mb-xl-9{margin-bottom:6rem !important}.mb-xl-10{margin-bottom:8rem !important}.mb-xl-11{margin-bottom:10rem !important}.mb-xl-12{margin-bottom:12rem !important}.mb-xl-13{margin-bottom:14rem !important}.mb-xl-14{margin-bottom:16rem !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.m-xl-n1{margin:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mx-xl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xl-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-xl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xl-n1{margin-top:-0.25rem !important}.mt-xl-n2{margin-top:-0.5rem !important}.mt-xl-n3{margin-top:-1rem !important}.mt-xl-n4{margin-top:-1.5rem !important}.mt-xl-n5{margin-top:-3rem !important}.me-xl-n1{margin-right:-0.25rem !important}.me-xl-n2{margin-right:-0.5rem !important}.me-xl-n3{margin-right:-1rem !important}.me-xl-n4{margin-right:-1.5rem !important}.me-xl-n5{margin-right:-3rem !important}.mb-xl-n1{margin-bottom:-0.25rem !important}.mb-xl-n2{margin-bottom:-0.5rem !important}.mb-xl-n3{margin-bottom:-1rem !important}.mb-xl-n4{margin-bottom:-1.5rem !important}.mb-xl-n5{margin-bottom:-3rem !important}.ms-xl-n1{margin-left:-0.25rem !important}.ms-xl-n2{margin-left:-0.5rem !important}.ms-xl-n3{margin-left:-1rem !important}.ms-xl-n4{margin-left:-1.5rem !important}.ms-xl-n5{margin-left:-3rem !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.mb-xxl-6{margin-bottom:3.5rem !important}.mb-xxl-7{margin-bottom:4rem !important}.mb-xxl-8{margin-bottom:5rem !important}.mb-xxl-9{margin-bottom:6rem !important}.mb-xxl-10{margin-bottom:8rem !important}.mb-xxl-11{margin-bottom:10rem !important}.mb-xxl-12{margin-bottom:12rem !important}.mb-xxl-13{margin-bottom:14rem !important}.mb-xxl-14{margin-bottom:16rem !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.m-xxl-n1{margin:-0.25rem !important}.m-xxl-n2{margin:-0.5rem !important}.m-xxl-n3{margin:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.m-xxl-n5{margin:-3rem !important}.mx-xxl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xxl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xxl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xxl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xxl-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-xxl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xxl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xxl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xxl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xxl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xxl-n1{margin-top:-0.25rem !important}.mt-xxl-n2{margin-top:-0.5rem !important}.mt-xxl-n3{margin-top:-1rem !important}.mt-xxl-n4{margin-top:-1.5rem !important}.mt-xxl-n5{margin-top:-3rem !important}.me-xxl-n1{margin-right:-0.25rem !important}.me-xxl-n2{margin-right:-0.5rem !important}.me-xxl-n3{margin-right:-1rem !important}.me-xxl-n4{margin-right:-1.5rem !important}.me-xxl-n5{margin-right:-3rem !important}.mb-xxl-n1{margin-bottom:-0.25rem !important}.mb-xxl-n2{margin-bottom:-0.5rem !important}.mb-xxl-n3{margin-bottom:-1rem !important}.mb-xxl-n4{margin-bottom:-1.5rem !important}.mb-xxl-n5{margin-bottom:-3rem !important}.ms-xxl-n1{margin-left:-0.25rem !important}.ms-xxl-n2{margin-left:-0.5rem !important}.ms-xxl-n3{margin-left:-1rem !important}.ms-xxl-n4{margin-left:-1.5rem !important}.ms-xxl-n5{margin-left:-3rem !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}@media(min-width: 1200px){.fs-1{font-size:2.5rem !important}.fs-2{font-size:2rem !important}.fs-3{font-size:1.75rem !important}.fs-4{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !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:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto: \"Roboto\", sans-serif;--mdb-bg-opacity: 1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-left:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width: 1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18, 102, 241, var(--mdb-bg-opacity)) !important}.bg-secondary{background-color:rgba(178, 60, 253, var(--mdb-bg-opacity)) !important}.bg-success{background-color:rgba(0, 183, 74, var(--mdb-bg-opacity)) !important}.bg-info{background-color:rgba(57, 192, 237, var(--mdb-bg-opacity)) !important}.bg-warning{background-color:rgba(255, 169, 0, var(--mdb-bg-opacity)) !important}.bg-danger{background-color:rgba(249, 49, 84, var(--mdb-bg-opacity)) !important}.bg-light{background-color:rgba(249, 249, 249, var(--mdb-bg-opacity)) !important}.bg-dark{background-color:rgba(38, 38, 38, var(--mdb-bg-opacity)) !important}.bg-white{background-color:rgba(255, 255, 255, var(--mdb-bg-opacity)) !important}.bg-black{background-color:rgba(0, 0, 0, var(--mdb-bg-opacity)) !important}/*!\n * # Semantic UI 2.4.2 - Flag\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-left-radius:5px;border-top-right-radius:5px;text-align:center;max-width:150px;margin:0 auto;margin-top:10px}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){display:inline-block;width:16px;height:11px;margin:0 .5em 0 0;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag::before{display:inline-block;width:16px;height:11px;content:\"\";background:url(\"https://mdbootstrap.com/img/svg/flags.png\") no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:0 0 !important}i.flag-ae:before,i.flag-united-arab-emirates:before,i.flag-uae:before{background-position:0 -26px !important}i.flag-af:before,i.flag-afghanistan:before{background-position:0 -52px !important}i.flag-ag:before,i.flag-antigua:before{background-position:0 -78px !important}i.flag-ai:before,i.flag-anguilla:before{background-position:0 -104px !important}i.flag-al:before,i.flag-albania:before{background-position:0 -130px !important}i.flag-am:before,i.flag-armenia:before{background-position:0 -156px !important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:0 -182px !important}i.flag-ao:before,i.flag-angola:before{background-position:0 -208px !important}i.flag-ar:before,i.flag-argentina:before{background-position:0 -234px !important}i.flag-as:before,i.flag-american-samoa:before{background-position:0 -260px !important}i.flag-at:before,i.flag-austria:before{background-position:0 -286px !important}i.flag-au:before,i.flag-australia:before{background-position:0 -312px !important}i.flag-aw:before,i.flag-aruba:before{background-position:0 -338px !important}i.flag-ax:before,i.flag-aland-islands:before{background-position:0 -364px !important}i.flag-az:before,i.flag-azerbaijan:before{background-position:0 -390px !important}i.flag-ba:before,i.flag-bosnia:before{background-position:0 -416px !important}i.flag-bb:before,i.flag-barbados:before{background-position:0 -442px !important}i.flag-bd:before,i.flag-bangladesh:before{background-position:0 -468px !important}i.flag-be:before,i.flag-belgium:before{background-position:0 -494px !important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:0 -520px !important}i.flag-bg:before,i.flag-bulgaria:before{background-position:0 -546px !important}i.flag-bh:before,i.flag-bahrain:before{background-position:0 -572px !important}i.flag-bi:before,i.flag-burundi:before{background-position:0 -598px !important}i.flag-bj:before,i.flag-benin:before{background-position:0 -624px !important}i.flag-bm:before,i.flag-bermuda:before{background-position:0 -650px !important}i.flag-bn:before,i.flag-brunei:before{background-position:0 -676px !important}i.flag-bo:before,i.flag-bolivia:before{background-position:0 -702px !important}i.flag-br:before,i.flag-brazil:before{background-position:0 -728px !important}i.flag-bs:before,i.flag-bahamas:before{background-position:0 -754px !important}i.flag-bt:before,i.flag-bhutan:before{background-position:0 -780px !important}i.flag-bv:before,i.flag-bouvet-island:before{background-position:0 -806px !important}i.flag-bw:before,i.flag-botswana:before{background-position:0 -832px !important}i.flag-by:before,i.flag-belarus:before{background-position:0 -858px !important}i.flag-bz:before,i.flag-belize:before{background-position:0 -884px !important}i.flag-ca:before,i.flag-canada:before{background-position:0 -910px !important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:0 -962px !important}i.flag-cd:before,i.flag-congo:before{background-position:0 -988px !important}i.flag-cf:before,i.flag-central-african-republic:before{background-position:0 -1014px !important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:0 -1040px !important}i.flag-ch:before,i.flag-switzerland:before{background-position:0 -1066px !important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:0 -1092px !important}i.flag-ck:before,i.flag-cook-islands:before{background-position:0 -1118px !important}i.flag-cl:before,i.flag-chile:before{background-position:0 -1144px !important}i.flag-cm:before,i.flag-cameroon:before{background-position:0 -1170px !important}i.flag-cn:before,i.flag-china:before{background-position:0 -1196px !important}i.flag-co:before,i.flag-colombia:before{background-position:0 -1222px !important}i.flag-cr:before,i.flag-costa-rica:before{background-position:0 -1248px !important}i.flag-cs:before,i.flag-serbia:before{background-position:0 -1274px !important}i.flag-cu:before,i.flag-cuba:before{background-position:0 -1300px !important}i.flag-cv:before,i.flag-cape-verde:before{background-position:0 -1326px !important}i.flag-cx:before,i.flag-christmas-island:before{background-position:0 -1352px !important}i.flag-cy:before,i.flag-cyprus:before{background-position:0 -1378px !important}i.flag-cz:before,i.flag-czech-republic:before{background-position:0 -1404px !important}i.flag-de:before,i.flag-germany:before{background-position:0 -1430px !important}i.flag-dj:before,i.flag-djibouti:before{background-position:0 -1456px !important}i.flag-dk:before,i.flag-denmark:before{background-position:0 -1482px !important}i.flag-dm:before,i.flag-dominica:before{background-position:0 -1508px !important}i.flag-do:before,i.flag-dominican-republic:before{background-position:0 -1534px !important}i.flag-dz:before,i.flag-algeria:before{background-position:0 -1560px !important}i.flag-ec:before,i.flag-ecuador:before{background-position:0 -1586px !important}i.flag-ee:before,i.flag-estonia:before{background-position:0 -1612px !important}i.flag-eg:before,i.flag-egypt:before{background-position:0 -1638px !important}i.flag-eh:before,i.flag-western-sahara:before{background-position:0 -1664px !important}i.flag-gb-eng:before,i.flag-england:before{background-position:0 -1690px !important}i.flag-er:before,i.flag-eritrea:before{background-position:0 -1716px !important}i.flag-es:before,i.flag-spain:before{background-position:0 -1742px !important}i.flag-et:before,i.flag-ethiopia:before{background-position:0 -1768px !important}i.flag-eu:before,i.flag-european-union:before{background-position:0 -1794px !important}i.flag-fi:before,i.flag-finland:before{background-position:0 -1846px !important}i.flag-fj:before,i.flag-fiji:before{background-position:0 -1872px !important}i.flag-fk:before,i.flag-falkland-islands:before{background-position:0 -1898px !important}i.flag-fm:before,i.flag-micronesia:before{background-position:0 -1924px !important}i.flag-fo:before,i.flag-faroe-islands:before{background-position:0 -1950px !important}i.flag-fr:before,i.flag-france:before{background-position:0 -1976px !important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0 !important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px !important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px !important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px !important}i.flag-gf:before,i.flag-french-guiana:before{background-position:-36px -104px !important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px !important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px !important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px !important}i.flag-gm:before,i.flag-gambia:before{background-position:-36px -208px !important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px !important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px !important}i.flag-gq:before,i.flag-equatorial-guinea:before{background-position:-36px -286px !important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px !important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px !important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px !important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px !important}i.flag-gw:before,i.flag-guinea-bissau:before{background-position:-36px -416px !important}i.flag-gy:before,i.flag-guyana:before{background-position:-36px -442px !important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px !important}i.flag-hm:before,i.flag-heard-island:before{background-position:-36px -494px !important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px !important}i.flag-hr:before,i.flag-croatia:before{background-position:-36px -546px !important}i.flag-ht:before,i.flag-haiti:before{background-position:-36px -572px !important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px !important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px !important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px !important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px !important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px !important}i.flag-io:before,i.flag-indian-ocean-territory:before{background-position:-36px -728px !important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px !important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px !important}i.flag-is:before,i.flag-iceland:before{background-position:-36px -806px !important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px !important}i.flag-jm:before,i.flag-jamaica:before{background-position:-36px -858px !important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px !important}i.flag-jp:before,i.flag-japan:before{background-position:-36px -910px !important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px !important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px !important}i.flag-kh:before,i.flag-cambodia:before{background-position:-36px -988px !important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px !important}i.flag-km:before,i.flag-comoros:before{background-position:-36px -1040px !important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px !important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px !important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px !important}i.flag-kw:before,i.flag-kuwait:before{background-position:-36px -1144px !important}i.flag-ky:before,i.flag-cayman-islands:before{background-position:-36px -1170px !important}i.flag-kz:before,i.flag-kazakhstan:before{background-position:-36px -1196px !important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px !important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px !important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px !important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px !important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px !important}i.flag-lr:before,i.flag-liberia:before{background-position:-36px -1352px !important}i.flag-ls:before,i.flag-lesotho:before{background-position:-36px -1378px !important}i.flag-lt:before,i.flag-lithuania:before{background-position:-36px -1404px !important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px !important}i.flag-lv:before,i.flag-latvia:before{background-position:-36px -1456px !important}i.flag-ly:before,i.flag-libya:before{background-position:-36px -1482px !important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px !important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px !important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px !important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px !important}i.flag-mg:before,i.flag-madagascar:before{background-position:-36px -1613px !important}i.flag-mh:before,i.flag-marshall-islands:before{background-position:-36px -1639px !important}i.flag-mk:before,i.flag-macedonia:before{background-position:-36px -1665px !important}i.flag-ml:before,i.flag-mali:before{background-position:-36px -1691px !important}i.flag-mm:before,i.flag-myanmar:before,i.flag-burma:before{background-position:-73px -1821px !important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px !important}i.flag-mo:before,i.flag-macau:before{background-position:-36px -1769px !important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px !important}i.flag-mq:before,i.flag-martinique:before{background-position:-36px -1821px !important}i.flag-mr:before,i.flag-mauritania:before{background-position:-36px -1847px !important}i.flag-ms:before,i.flag-montserrat:before{background-position:-36px -1873px !important}i.flag-mt:before,i.flag-malta:before{background-position:-36px -1899px !important}i.flag-mu:before,i.flag-mauritius:before{background-position:-36px -1925px !important}i.flag-mv:before,i.flag-maldives:before{background-position:-36px -1951px !important}i.flag-mw:before,i.flag-malawi:before{background-position:-36px -1977px !important}i.flag-mx:before,i.flag-mexico:before{background-position:-72px 0 !important}i.flag-my:before,i.flag-malaysia:before{background-position:-72px -26px !important}i.flag-mz:before,i.flag-mozambique:before{background-position:-72px -52px !important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px !important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px !important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px !important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px !important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px !important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px !important}i.flag-nl:before,i.flag-netherlands:before{background-position:-72px -234px !important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px !important}i.flag-np:before,i.flag-nepal:before{background-position:-72px -286px !important}i.flag-nr:before,i.flag-nauru:before{background-position:-72px -312px !important}i.flag-nu:before,i.flag-niue:before{background-position:-72px -338px !important}i.flag-nz:before,i.flag-new-zealand:before{background-position:-72px -364px !important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px !important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px !important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px !important}i.flag-pf:before,i.flag-french-polynesia:before{background-position:-72px -468px !important}i.flag-pg:before,i.flag-new-guinea:before{background-position:-72px -494px !important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px !important}i.flag-pk:before,i.flag-pakistan:before{background-position:-72px -546px !important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px !important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px !important}i.flag-pn:before,i.flag-pitcairn-islands:before{background-position:-72px -624px !important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px !important}i.flag-ps:before,i.flag-palestine:before{background-position:-72px -676px !important}i.flag-pt:before,i.flag-portugal:before{background-position:-72px -702px !important}i.flag-pw:before,i.flag-palau:before{background-position:-72px -728px !important}i.flag-py:before,i.flag-paraguay:before{background-position:-72px -754px !important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px !important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px !important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px !important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px !important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px !important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px !important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px !important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px !important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px !important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px !important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px !important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px !important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px !important}i.flag-sh:before,i.flag-saint-helena:before{background-position:-72px -1118px !important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px !important}i.flag-sj:before,i.flag-svalbard:before,i.flag-jan-mayen:before{background-position:-72px -1170px !important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px !important}i.flag-sl:before,i.flag-sierra-leone:before{background-position:-72px -1222px !important}i.flag-sm:before,i.flag-san-marino:before{background-position:-72px -1248px !important}i.flag-sn:before,i.flag-senegal:before{background-position:-72px -1274px !important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px !important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px !important}i.flag-st:before,i.flag-sao-tome:before{background-position:-72px -1352px !important}i.flag-sv:before,i.flag-el-salvador:before{background-position:-72px -1378px !important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px !important}i.flag-sz:before,i.flag-swaziland:before{background-position:-72px -1430px !important}i.flag-tc:before,i.flag-caicos-islands:before{background-position:-72px -1456px !important}i.flag-td:before,i.flag-chad:before{background-position:-72px -1482px !important}i.flag-tf:before,i.flag-french-territories:before{background-position:-72px -1508px !important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px !important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px !important}i.flag-tj:before,i.flag-tajikistan:before{background-position:-72px -1586px !important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px !important}i.flag-tl:before,i.flag-timorleste:before{background-position:-72px -1638px !important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px !important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px !important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px !important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px !important}i.flag-tt:before,i.flag-trinidad:before{background-position:-72px -1768px !important}i.flag-tv:before,i.flag-tuvalu:before{background-position:-72px -1794px !important}i.flag-tw:before,i.flag-taiwan:before{background-position:-72px -1820px !important}i.flag-tz:before,i.flag-tanzania:before{background-position:-72px -1846px !important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px !important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px !important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px !important}i.flag-us:before,i.flag-america:before,i.flag-united-states:before{background-position:-72px -1950px !important}i.flag-uy:before,i.flag-uruguay:before{background-position:-72px -1976px !important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0 !important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px !important}i.flag-vc:before,i.flag-saint-vincent:before{background-position:-108px -52px !important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px !important}i.flag-vg:before,i.flag-british-virgin-islands:before{background-position:-108px -104px !important}i.flag-vi:before,i.flag-us-virgin-islands:before{background-position:-108px -130px !important}i.flag-vn:before,i.flag-vietnam:before{background-position:-108px -156px !important}i.flag-vu:before,i.flag-vanuatu:before{background-position:-108px -182px !important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px !important}i.flag-wf:before,i.flag-wallis-and-futuna:before{background-position:-108px -234px !important}i.flag-ws:before,i.flag-samoa:before{background-position:-108px -260px !important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px !important}i.flag-yt:before,i.flag-mayotte:before{background-position:-108px -312px !important}i.flag-za:before,i.flag-south-africa:before{background-position:-108px -338px !important}i.flag-zm:before,i.flag-zambia:before{background-position:-108px -364px !important}i.flag-zw:before,i.flag-zimbabwe:before{background-position:-108px -390px !important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:center center}.mask{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.hover-shadow,.card.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow:hover,.card.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.hover-shadow-soft,.card.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow-soft:hover,.card.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear;border-color:#1266f1;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:right}.form-outline .trailing{position:absolute;right:10px;left:initial;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-right:2rem !important}.form-outline .form-control{min-height:auto;padding-top:.33em;padding-bottom:.33em;padding-left:.75em;padding-right:.75em;border:0;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;left:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:0 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;left:0;top:0;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid;border-color:#bdbdbd;box-sizing:border-box;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{left:0;top:0;height:100%;width:.5rem;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-right:none;border-left:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control:focus::-moz-placeholder, .form-outline .form-control.active::-moz-placeholder{opacity:1}.form-outline .form-control:focus::placeholder,.form-outline .form-control.active::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none !important}.form-outline .form-control:focus~.form-label,.form-outline .form-control.active~.form-label{transform:translateY(-1rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle,.form-outline .form-control.active~.form-notch .form-notch-middle{border-right:none;border-left:none;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-leading,.form-outline .form-control.active~.form-notch .form-notch-leading{border-right:none}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing,.form-outline .form-control.active~.form-notch .form-notch-trailing{border-left:none}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control:disabled,.form-outline .form-control.disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-left:.75em;padding-right:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg:focus~.form-label,.form-outline .form-control.form-control-lg.active~.form-label{transform:translateY(-1.25rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control.form-control-sm{padding-left:.99em;padding-right:.99em;padding-top:.43em;padding-bottom:.35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm:focus~.form-label,.form-outline .form-control.form-control-sm.active~.form-label{transform:translateY(-0.85rem) translateY(0.1rem) scale(0.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid rgba(0,0,0,0)}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control::placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control[readonly]{background-color:rgba(255,255,255,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:rgba(0,0,0,0)}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:\"\";position:absolute;box-shadow:0px 0px 0px 13px rgba(0,0,0,0);border-radius:50%;width:.875rem;height:.875rem;background-color:rgba(0,0,0,0);opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:\"\";position:absolute}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0px 0px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:indeterminate:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-right:8px}.form-check-input[type=checkbox]:focus:after{content:\"\";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none;background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg) /*!rtl:ignore*/;border-width:.125rem;border-color:#fff;width:.375rem;height:.8125rem;border-style:solid;border-top:0;border-left:0 /*!rtl:ignore*/;margin-left:.25rem;margin-top:-1px;background-color:rgba(0,0,0,0)}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-right:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:\"\";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;border-color:#1266f1;background-color:#1266f1;transition:border-color;transform:translate(-50%, -50%);position:absolute;left:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-left:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-right:8px}.form-switch .form-check-input:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-0.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked{background-image:none}.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-left:1.0625rem;box-shadow:3px -1px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#1266f1;margin-top:-3px;margin-left:1.0625rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);transition:background-color .2s,transform .2s}.form-control[type=file]::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:rgba(0,0,0,0);padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-left:1px;margin-right:1px}.input-group-text>.form-check-input[type=radio]{margin-right:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-left:0}.input-group.form-outline input+.input-group-text{border:0;border-left:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .select-wrapper:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.input-group .form-outline:not(:last-child),.input-group .select-wrapper:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-left:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.input-group .invalid-feedback,.input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#00b74a;margin-top:-0.75rem}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(0,183,74,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#00b74a}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-outline .form-control:valid~.form-label,.form-outline .form-control.is-valid~.form-label{color:#00b74a}.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing{border-color:#00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-select:valid~.valid-feedback,.form-select.is-valid~.valid-feedback{margin-top:0}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button{border-color:#00b74a}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:checked:focus:before,.form-check-input.is-valid:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:none}.was-validated .form-check-input:valid:focus:before,.form-check-input.is-valid:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.was-validated .form-check-input:valid[type=checkbox]:checked:focus,.form-check-input.is-valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.was-validated .form-check-input:valid[type=radio]:checked,.form-check-input.is-valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.was-validated .form-check-input:valid[type=radio]:checked:focus:before,.form-check-input.is-valid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid[type=radio]:checked:after,.form-check-input.is-valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .form-switch .form-check-input:valid:focus:before,.form-switch .form-check-input.is-valid:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after,.form-switch .form-check-input.is-valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:valid:checked:focus:before,.form-switch .form-check-input.is-valid:checked:focus:before{box-shadow:3px -1px 0px 13px #00b74a}.invalid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#f93154;margin-top:-0.75rem}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(249,49,84,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#f93154}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-outline .form-control:invalid~.form-label,.form-outline .form-control.is-invalid~.form-label{color:#f93154}.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing{border-color:#f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-select:invalid~.invalid-feedback,.form-select.is-invalid~.invalid-feedback{margin-top:0}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button{border-color:#f93154}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:checked:focus:before,.form-check-input.is-invalid:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:none}.was-validated .form-check-input:invalid:focus:before,.form-check-input.is-invalid:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.was-validated .form-check-input:invalid[type=checkbox]:checked:focus,.form-check-input.is-invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.was-validated .form-check-input:invalid[type=radio]:checked,.form-check-input.is-invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.was-validated .form-check-input:invalid[type=radio]:checked:focus:before,.form-check-input.is-invalid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid[type=radio]:checked:after,.form-check-input.is-invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .form-switch .form-check-input:invalid:focus:before,.form-switch .form-check-input.is-invalid:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after,.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:invalid:checked:focus:before,.form-switch .form-check-input.is-invalid:checked:focus:before{box-shadow:3px -1px 0px 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg: transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem 1.5rem;font-size:.75rem;line-height:1.5}.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:focus,.btn.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active,.btn.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active:focus,.btn.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem 1.375rem}[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-]:focus,[class*=btn-outline-].focus{box-shadow:none;text-decoration:none}[class*=btn-outline-]:active,[class*=btn-outline-].active{box-shadow:none}[class*=btn-outline-]:active:focus,[class*=btn-outline-].active:focus{box-shadow:none}[class*=btn-outline-]:disabled,[class*=btn-outline-].disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}[class*=btn-outline-].btn-lg,.btn-group-lg>[class*=btn-outline-].btn{padding:.625rem 1.5625rem .5625rem 1.5625rem}[class*=btn-outline-].btn-sm,.btn-group-sm>[class*=btn-outline-].btn{padding:.25rem .875rem .1875rem .875rem}.btn-primary{color:#fff;background-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0c56d0}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0c56d0}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#093d94}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1}.btn-secondary{color:#fff;background-color:#b23cfd}.btn-secondary:hover{color:#fff;background-color:#a316fd}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#a316fd}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#8102d1}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#b23cfd}.btn-success{color:#fff;background-color:#00b74a}.btn-success:hover{color:#fff;background-color:#00913b}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#00913b}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#16b5ea}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info:disabled,.btn-info.disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning:hover{color:#fff;background-color:#d99000}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d99000}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning:disabled,.btn-warning.disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#f80c35}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-light:focus,.btn-light.focus{color:#4f4f4f;background-color:#e6e6e6}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light:disabled,.btn-light.disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark:hover{color:#fff;background-color:#131313}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#131313}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-white:focus,.btn-white.focus{color:#4f4f4f;background-color:#ececec}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white:disabled,.btn-white.disabled{color:#4f4f4f;background-color:#fff}.btn-black{color:#fff;background-color:#000}.btn-black:hover{color:#fff;background-color:#000}.btn-black:focus,.btn-black.focus{color:#fff;background-color:#000}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;background-color:rgba(0,0,0,.02)}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;background-color:rgba(0,0,0,.02)}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success:focus,.btn-outline-success.focus{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info:focus,.btn-outline-info.focus{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning:focus,.btn-outline-warning.focus{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger:focus,.btn-outline-danger.focus{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light:focus,.btn-outline-light.focus{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark:focus,.btn-outline-dark.focus{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white:focus,.btn-outline-white.focus{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black:focus,.btn-outline-black.focus{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black{color:#fff;background-color:#000}.btn-lg,.btn-group-lg>.btn{padding:.75rem 1.6875rem .6875rem 1.6875rem;font-size:.875rem;line-height:1.6}.btn-sm,.btn-group-sm>.btn{padding:.375rem 1rem .3125rem 1rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:focus,.btn-link.focus{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:active,.btn-link.active{box-shadow:none;background-color:#f5f5f5}.btn-link:active:focus,.btn-link.active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link:disabled,.btn-link.disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fas,.btn-floating .far,.btn-floating .fab{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fas,.btn-floating.btn-lg .far,.btn-group-lg>.btn-floating.btn .far,.btn-floating.btn-lg .fab,.btn-group-lg>.btn-floating.btn .fab{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fas,.btn-floating.btn-sm .far,.btn-group-sm>.btn-floating.btn .far,.btn-floating.btn-sm .fab,.btn-group-sm>.btn-floating.btn .fab{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fas,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fab{width:2.0625rem;line-height:2.0625rem}[class*=btn-outline-].btn-floating.btn-lg .fas,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-lg .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab{width:2.5625rem;line-height:2.5625rem}[class*=btn-outline-].btn-floating.btn-sm .fas,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-sm .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;right:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;left:0;right:0;display:flex;flex-direction:column;padding:0;margin:0;margin-bottom:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn ul a.btn.shown{opacity:1}.fixed-action-btn.active ul{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:first-child .dropdown-item{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu>li:last-child .dropdown-item{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none !important;-webkit-animation:unset !important;animation:unset !important}}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{from{opacity:1}to{opacity:0}}@keyframes fade-out{from{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group:hover,.btn-group-vertical:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:focus,.btn-group.focus,.btn-group-vertical:focus,.btn-group-vertical.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active,.btn-group.active,.btn-group-vertical:active,.btn-group-vertical.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active:focus,.btn-group.active:focus,.btn-group-vertical:active:focus,.btn-group-vertical.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:disabled,.btn-group.disabled,fieldset:disabled .btn-group,.btn-group-vertical:disabled,.btn-group-vertical.disabled,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group>.btn,.btn-group-vertical>.btn{box-shadow:none}.btn-group>.btn-group,.btn-group-vertical>.btn-group{box-shadow:none}.btn-group>.btn-link:first-child,.btn-group-vertical>.btn-link:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-link:last-child,.btn-group-vertical>.btn-link:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border-width:0 0 2px 0;border-style:solid;border-color:rgba(0,0,0,0);border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px 29px}.nav-tabs .nav-link:hover{background-color:#f5f5f5;border-color:rgba(0,0,0,0)}.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#1266f1;border-color:#1266f1}.nav-pills{margin-left:-0.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px 29px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-right:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-light .navbar-toggler-icon{background-image:none}.navbar-dark .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.card-header{background-color:rgba(255,255,255,0)}.card-body[class*=bg-]{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.card-footer{background-color:rgba(255,255,255,0)}.card-img-left{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.navbar .breadcrumb{background-color:rgba(0,0,0,0);margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:hover,.navbar .breadcrumb .breadcrumb-item a:focus{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{border:0;font-size:.9rem;color:#212529;background-color:rgba(0,0,0,0);border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{background-color:#1266f1;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:not(:first-child) .page-link{margin-left:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-circle .page-item:first-child .page-link{border-radius:50%}.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-left:.841rem;padding-right:.841rem}.pagination-circle.pagination-lg .page-link{padding-left:1.399414rem;padding-right:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-left:.696rem;padding-right:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-left:-0.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-0.1rem;margin-left:-0.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action{transition:.5s}.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-light .list-group-item-action:focus{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{color:#fff;padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:rgba(0,0,0,0);color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:initial;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:rgba(0,0,0,0);box-shadow:none;color:#1266f1;font-weight:600;border-left:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0, 0, 0.15, 1),cubic-bezier(0, 0, 0.15, 1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle, rgba(18, 102, 241, 0.2) 0, rgba(18, 102, 241, 0.3) 40%, rgba(18, 102, 241, 0.4) 50%, rgba(18, 102, 241, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle, rgba(178, 60, 253, 0.2) 0, rgba(178, 60, 253, 0.3) 40%, rgba(178, 60, 253, 0.4) 50%, rgba(178, 60, 253, 0.5) 60%, rgba(178, 60, 253, 0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle, rgba(0, 183, 74, 0.2) 0, rgba(0, 183, 74, 0.3) 40%, rgba(0, 183, 74, 0.4) 50%, rgba(0, 183, 74, 0.5) 60%, rgba(0, 183, 74, 0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle, rgba(57, 192, 237, 0.2) 0, rgba(57, 192, 237, 0.3) 40%, rgba(57, 192, 237, 0.4) 50%, rgba(57, 192, 237, 0.5) 60%, rgba(57, 192, 237, 0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle, rgba(255, 169, 0, 0.2) 0, rgba(255, 169, 0, 0.3) 40%, rgba(255, 169, 0, 0.4) 50%, rgba(255, 169, 0, 0.5) 60%, rgba(255, 169, 0, 0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle, rgba(249, 49, 84, 0.2) 0, rgba(249, 49, 84, 0.3) 40%, rgba(249, 49, 84, 0.4) 50%, rgba(249, 49, 84, 0.5) 60%, rgba(249, 49, 84, 0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle, rgba(249, 249, 249, 0.2) 0, rgba(249, 249, 249, 0.3) 40%, rgba(249, 249, 249, 0.4) 50%, rgba(249, 249, 249, 0.5) 60%, rgba(249, 249, 249, 0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle, rgba(38, 38, 38, 0.2) 0, rgba(38, 38, 38, 0.3) 40%, rgba(38, 38, 38, 0.4) 50%, rgba(38, 38, 38, 0.5) 60%, rgba(38, 38, 38, 0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%)}.range{position:relative}.range .thumb{position:absolute;display:block;height:30px;width:30px;top:-35px;margin-left:-15px;text-align:center;border-radius:50% 50% 50% 0;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb:after{position:absolute;display:block;content:\"\";transform:translateX(-50%);width:100%;height:100%;top:0;border-radius:50% 50% 50% 0;transform:rotate(-45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-prev-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}.carousel-control-next-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}\n",":root{--mdb-blue: #0d6efd;--mdb-indigo: #6610f2;--mdb-purple: #6f42c1;--mdb-pink: #d63384;--mdb-red: #dc3545;--mdb-orange: #fd7e14;--mdb-yellow: #ffc107;--mdb-green: #198754;--mdb-teal: #20c997;--mdb-cyan: #0dcaf0;--mdb-white: #fff;--mdb-gray: #757575;--mdb-gray-dark: #4f4f4f;--mdb-gray-100: #f5f5f5;--mdb-gray-200: #eeeeee;--mdb-gray-300: #e0e0e0;--mdb-gray-400: #bdbdbd;--mdb-gray-500: #9e9e9e;--mdb-gray-600: #757575;--mdb-gray-700: #616161;--mdb-gray-800: #4f4f4f;--mdb-gray-900: #262626;--mdb-primary: #1266f1;--mdb-secondary: #b23cfd;--mdb-success: #00b74a;--mdb-info: #39c0ed;--mdb-warning: #ffa900;--mdb-danger: #f93154;--mdb-light: #f9f9f9;--mdb-dark: #262626;--mdb-white: #fff;--mdb-black: #000;--mdb-primary-rgb: 18, 102, 241;--mdb-secondary-rgb: 178, 60, 253;--mdb-success-rgb: 0, 183, 74;--mdb-info-rgb: 57, 192, 237;--mdb-warning-rgb: 255, 169, 0;--mdb-danger-rgb: 249, 49, 84;--mdb-light-rgb: 249, 249, 249;--mdb-dark-rgb: 38, 38, 38;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-body-color-rgb: 79, 79, 79;--mdb-body-bg-rgb: 255, 255, 255;--mdb-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--mdb-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--mdb-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--mdb-body-font-family: var(--mdb-font-roboto);--mdb-body-font-size: 1rem;--mdb-body-font-weight: 400;--mdb-body-line-height: 1.6;--mdb-body-color: #4f4f4f;--mdb-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + 0.6vw)}@media(min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + 0.3vw)}@media(min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-mdb-original-title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}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,.small{font-size:0.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--mdb-font-monospace);font-size:1em;/*!rtl:ignore*/direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:0.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}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,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}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}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}/*!rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.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:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#757575}.blockquote-footer::before{content:\"— \"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:#757575}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:var(--mdb-gutter-x, 0.75rem);padding-left:var(--mdb-gutter-x, 0.75rem);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--mdb-gutter-x: 1.5rem;--mdb-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--mdb-gutter-y));margin-right:calc(-0.5*var(--mdb-gutter-x));margin-left:calc(-0.5*var(--mdb-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--mdb-gutter-x)*.5);padding-left:calc(var(--mdb-gutter-x)*.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--mdb-gutter-x: 0}.g-0,.gy-0{--mdb-gutter-y: 0}.g-1,.gx-1{--mdb-gutter-x: 0.25rem}.g-1,.gy-1{--mdb-gutter-y: 0.25rem}.g-2,.gx-2{--mdb-gutter-x: 0.5rem}.g-2,.gy-2{--mdb-gutter-y: 0.5rem}.g-3,.gx-3{--mdb-gutter-x: 1rem}.g-3,.gy-3{--mdb-gutter-y: 1rem}.g-4,.gx-4{--mdb-gutter-x: 1.5rem}.g-4,.gy-4{--mdb-gutter-y: 1.5rem}.g-5,.gx-5{--mdb-gutter-x: 3rem}.g-5,.gy-5{--mdb-gutter-y: 3rem}@media(min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x: 0}.g-sm-0,.gy-sm-0{--mdb-gutter-y: 0}.g-sm-1,.gx-sm-1{--mdb-gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y: 3rem}}@media(min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x: 0}.g-md-0,.gy-md-0{--mdb-gutter-y: 0}.g-md-1,.gx-md-1{--mdb-gutter-x: 0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y: 0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x: 0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y: 0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x: 1rem}.g-md-3,.gy-md-3{--mdb-gutter-y: 1rem}.g-md-4,.gx-md-4{--mdb-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x: 3rem}.g-md-5,.gy-md-5{--mdb-gutter-y: 3rem}}@media(min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x: 0}.g-lg-0,.gy-lg-0{--mdb-gutter-y: 0}.g-lg-1,.gx-lg-1{--mdb-gutter-x: 0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y: 0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x: 0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y: 0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y: 3rem}}@media(min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x: 0}.g-xl-0,.gy-xl-0{--mdb-gutter-y: 0}.g-xl-1,.gx-xl-1{--mdb-gutter-x: 0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y: 0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x: 0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y: 0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y: 3rem}}@media(min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x: 0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y: 0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x: 0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y: 0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y: 3rem}}.table{--mdb-table-bg: transparent;--mdb-table-accent-bg: transparent;--mdb-table-striped-color: #212529;--mdb-table-striped-bg: rgba(0, 0, 0, 0.02);--mdb-table-active-color: #212529;--mdb-table-active-bg: rgba(0, 0, 0, 0.1);--mdb-table-hover-color: #212529;--mdb-table-hover-bg: rgba(0, 0, 0, 0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{padding:1rem 1.4rem;background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg: var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg: var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg: var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg: #d0e0fc;--mdb-table-striped-bg: #c6d5ef;--mdb-table-striped-color: #000;--mdb-table-active-bg: #bbcae3;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c0cfe9;--mdb-table-hover-color: #000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg: #f0d8ff;--mdb-table-striped-bg: #e4cdf2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #d8c2e6;--mdb-table-active-color: #000;--mdb-table-hover-bg: #dec8ec;--mdb-table-hover-color: #000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg: #ccf1db;--mdb-table-striped-bg: #c2e5d0;--mdb-table-striped-color: #000;--mdb-table-active-bg: #b8d9c5;--mdb-table-active-color: #000;--mdb-table-hover-bg: #bddfcb;--mdb-table-hover-color: #000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg: #d7f2fb;--mdb-table-striped-bg: #cce6ee;--mdb-table-striped-color: #000;--mdb-table-active-bg: #c2dae2;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c7e0e8;--mdb-table-hover-color: #000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg: #ffeecc;--mdb-table-striped-bg: #f2e2c2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e6d6b8;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ecdcbd;--mdb-table-hover-color: #000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg: #fed6dd;--mdb-table-striped-bg: #f1cbd2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e5c1c7;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ebc6cc;--mdb-table-hover-color: #000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg: #f9f9f9;--mdb-table-striped-bg: #ededed;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e0e0e0;--mdb-table-active-color: #000;--mdb-table-hover-bg: #e6e6e6;--mdb-table-hover-color: #000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg: #262626;--mdb-table-striped-bg: #313131;--mdb-table-striped-color: #fff;--mdb-table-active-bg: #3c3c3c;--mdb-table-active-color: #fff;--mdb-table-hover-bg: #363636;--mdb-table-hover-color: #fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.775rem}.form-text{margin-top:.25rem;font-size:0.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);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{min-height:calc(1.6em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + 0.75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + 0.5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;transition:all .2s linear;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size=\"1\"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1;border-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\")}.form-check-input:checked[type=radio]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%231266f1'/%3e%3c/svg%3e\")}.form-switch .form-check-input:checked{background-position:right center;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:rgba(0,0,0,0);-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#1266f1;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1266f1;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#00b74a}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(0,183,74,.9);border-radius:.25rem}.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:#00b74a;padding-right:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size=\"1\"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#f93154}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(249,49,84,.9);border-radius:.25rem}.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:#f93154;padding-right:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size=\"1\"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:rgba(0,0,0,0);border:.125rem solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:0.75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0e52c1;border-color:#0e4db5}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-secondary{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#000;background-color:#be59fd;border-color:#ba50fd;box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-success{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#26c265;border-color:#1abe5c;box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success:disabled,.btn-success.disabled{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-info{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#57c9f0;border-color:#4dc6ef;box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-warning{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffb626;border-color:#ffb21a;box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-danger{color:#000;background-color:#f93154;border-color:#f93154}.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#fa506e;border-color:#fa4665;box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#000;background-color:#f93154;border-color:#f93154}.btn-light{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#fafafa;border-color:#fafafa;box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626;border-color:#262626}.btn-dark:hover{color:#fff;background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#202020;border-color:#1e1e1e;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626;border-color:#262626}.btn-white{color:#000;background-color:#fff;border-color:#fff}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-white:disabled,.btn-white.disabled{color:#000;background-color:#fff;border-color:#fff}.btn-black{color:#fff;background-color:#000;border-color:#000}.btn-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-black,.btn-black:focus{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#262626;border-color:#262626}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white,.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-outline-white:focus,.btn-check:active+.btn-outline-white:focus,.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black,.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-outline-black:focus,.btn-check:active+.btn-outline-black:focus,.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000;background-color:rgba(0,0,0,0)}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link:disabled,.btn-link.disabled{color:#757575}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:0.875rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.75rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:0.875rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-mdb-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-mdb-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-mdb-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-mdb-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\"}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.5rem 1rem;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:#222;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:0.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;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:-0.125rem}.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:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;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:-0.125rem}.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~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid rgba(0,0,0,0);border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;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}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(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,.55)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.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.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem 1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-0.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.5rem - 1px) calc(0.5rem - 1px)}.card-header-tabs{margin-right:-0.75rem;margin-bottom:-0.75rem;margin-left:-0.75rem;border-bottom:0}.card-header-pills{margin-right:-0.75rem;margin-left:-0.75rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.5rem;border-radius:calc(0.5rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{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}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider, \"/\") /*!rtl: var(--mdb-breadcrumb-divider, \"/\") */}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#212529;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0;transition:all .3s linear}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#212529;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#1266f1;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:0.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.27rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:.5rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.5625rem 1.5rem}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:\"\";background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#1266f1;outline:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{display:flex;height:4px;overflow:hidden;font-size:0.75rem;background-color:#eee;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1266f1;transition:width .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:4px 4px}.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}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:\"\"}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, \".\") \". \";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(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:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1266f1;border-color:#1266f1}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.5rem;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{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.5rem;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}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.5rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:hover,.list-group-item-white.list-group-item-action:focus{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:hover,.list-group-item-black.list-group-item-action:focus{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:0.875rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-color:#fff;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.toast-header .btn-close{margin-right:-0.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #e0e0e0;border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-0.5rem -0.5rem -0.5rem auto}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-right-radius:calc(0.5rem - 1px);border-bottom-left-radius:calc(0.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;/*!rtl:ignore*/left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:\"\";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(0.5rem - 1px);border-top-right-radius:calc(0.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}/*!rtl:begin:ignore*/.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}/*!rtl:end:ignore*/.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .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:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}/*!rtl:options:{\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n}*/.carousel-control-prev-icon{background-image:none}.carousel-control-next-icon{background-image:none}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(360deg)}}@keyframes spinner-border{/*!rtl:ignore*/to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentColor;border-right-color:rgba(0,0,0,0);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:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-0.5rem;margin-right:-0.5rem;margin-bottom:-0.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;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:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.clearfix::after{display:block;clear:both;content:\"\"}.link-primary{color:#1266f1}.link-primary:hover,.link-primary:focus{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:hover,.link-secondary:focus{color:#c163fd}.link-success{color:#00b74a}.link-success:hover,.link-success:focus{color:#33c56e}.link-info{color:#39c0ed}.link-info:hover,.link-info:focus{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:hover,.link-warning:focus{color:#ffba33}.link-danger{color:#f93154}.link-danger:hover,.link-danger:focus{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:hover,.link-light:focus{color:#fafafa}.link-dark{color:#262626}.link-dark:hover,.link-dark:focus{color:#1e1e1e}.link-white{color:#fff}.link-white:hover,.link-white:focus{color:#fff}.link-black{color:#000}.link-black:hover,.link-black:focus{color:#000}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--mdb-aspect-ratio);content:\"\"}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio: 100%}.ratio-4x3{--mdb-aspect-ratio: 75%}.ratio-16x9{--mdb-aspect-ratio: 56.25%}.ratio-21x9{--mdb-aspect-ratio: 42.8571428571%}.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}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:\"\"}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}.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}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-5{opacity:.05 !important}.opacity-10{opacity:.1 !important}.opacity-15{opacity:.15 !important}.opacity-20{opacity:.2 !important}.opacity-25{opacity:.25 !important}.opacity-30{opacity:.3 !important}.opacity-35{opacity:.35 !important}.opacity-40{opacity:.4 !important}.opacity-45{opacity:.45 !important}.opacity-50{opacity:.5 !important}.opacity-55{opacity:.55 !important}.opacity-60{opacity:.6 !important}.opacity-65{opacity:.65 !important}.opacity-70{opacity:.7 !important}.opacity-75{opacity:.75 !important}.opacity-80{opacity:.8 !important}.opacity-85{opacity:.85 !important}.opacity-90{opacity:.9 !important}.opacity-95{opacity:.95 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.shadow-0{box-shadow:none !important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07) !important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05) !important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05) !important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05) !important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05) !important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21) !important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05) !important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05) !important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05) !important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05) !important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05) !important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05) !important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21) !important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21) !important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21) !important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21) !important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21) !important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21) !important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06) !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}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #e0e0e0 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #e0e0e0 !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #e0e0e0 !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #e0e0e0 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #e0e0e0 !important}.border-start-0{border-left:0 !important}.border-primary{border-color:#1266f1 !important}.border-secondary{border-color:#b23cfd !important}.border-success{border-color:#00b74a !important}.border-info{border-color:#39c0ed !important}.border-warning{border-color:#ffa900 !important}.border-danger{border-color:#f93154 !important}.border-light{border-color:#f9f9f9 !important}.border-dark{border-color:#262626 !important}.border-white{border-color:#fff !important}.border-black{border-color:#000 !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !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}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !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}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.mb-6{margin-bottom:3.5rem !important}.mb-7{margin-bottom:4rem !important}.mb-8{margin-bottom:5rem !important}.mb-9{margin-bottom:6rem !important}.mb-10{margin-bottom:8rem !important}.mb-11{margin-bottom:10rem !important}.mb-12{margin-bottom:12rem !important}.mb-13{margin-bottom:14rem !important}.mb-14{margin-bottom:16rem !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.m-n1{margin:-0.25rem !important}.m-n2{margin:-0.5rem !important}.m-n3{margin:-1rem !important}.m-n4{margin:-1.5rem !important}.m-n5{margin:-3rem !important}.mx-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-n1{margin-top:-0.25rem !important}.mt-n2{margin-top:-0.5rem !important}.mt-n3{margin-top:-1rem !important}.mt-n4{margin-top:-1.5rem !important}.mt-n5{margin-top:-3rem !important}.me-n1{margin-right:-0.25rem !important}.me-n2{margin-right:-0.5rem !important}.me-n3{margin-right:-1rem !important}.me-n4{margin-right:-1.5rem !important}.me-n5{margin-right:-3rem !important}.mb-n1{margin-bottom:-0.25rem !important}.mb-n2{margin-bottom:-0.5rem !important}.mb-n3{margin-bottom:-1rem !important}.mb-n4{margin-bottom:-1.5rem !important}.mb-n5{margin-bottom:-3rem !important}.ms-n1{margin-left:-0.25rem !important}.ms-n2{margin-left:-0.5rem !important}.ms-n3{margin-left:-1rem !important}.ms-n4{margin-left:-1.5rem !important}.ms-n5{margin-left:-3rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.font-monospace{font-family:var(--mdb-font-monospace) !important}.fs-1{font-size:calc(1.375rem + 1.5vw) !important}.fs-2{font-size:calc(1.325rem + 0.9vw) !important}.fs-3{font-size:calc(1.3rem + 0.6vw) !important}.fs-4{font-size:calc(1.275rem + 0.3vw) !important}.fs-5{font-size:1.25rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.6 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}/*!rtl:begin:remove*/.text-break{word-wrap:break-word !important;word-break:break-word !important}/*!rtl:end:remove*/.text-primary{--mdb-text-opacity: 1;color:rgba(var(--mdb-primary-rgb), var(--mdb-text-opacity)) !important}.text-secondary{--mdb-text-opacity: 1;color:rgba(var(--mdb-secondary-rgb), var(--mdb-text-opacity)) !important}.text-success{--mdb-text-opacity: 1;color:rgba(var(--mdb-success-rgb), var(--mdb-text-opacity)) !important}.text-info{--mdb-text-opacity: 1;color:rgba(var(--mdb-info-rgb), var(--mdb-text-opacity)) !important}.text-warning{--mdb-text-opacity: 1;color:rgba(var(--mdb-warning-rgb), var(--mdb-text-opacity)) !important}.text-danger{--mdb-text-opacity: 1;color:rgba(var(--mdb-danger-rgb), var(--mdb-text-opacity)) !important}.text-light{--mdb-text-opacity: 1;color:rgba(var(--mdb-light-rgb), var(--mdb-text-opacity)) !important}.text-dark{--mdb-text-opacity: 1;color:rgba(var(--mdb-dark-rgb), var(--mdb-text-opacity)) !important}.text-white{--mdb-text-opacity: 1;color:rgba(var(--mdb-white-rgb), var(--mdb-text-opacity)) !important}.text-black{--mdb-text-opacity: 1;color:rgba(var(--mdb-black-rgb), var(--mdb-text-opacity)) !important}.text-body{--mdb-text-opacity: 1;color:rgba(var(--mdb-body-color-rgb), var(--mdb-text-opacity)) !important}.text-muted{--mdb-text-opacity: 1;color:#757575 !important}.text-black-50{--mdb-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--mdb-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-reset{--mdb-text-opacity: 1;color:inherit !important}.text-opacity-25{--mdb-text-opacity: 0.25}.text-opacity-50{--mdb-text-opacity: 0.5}.text-opacity-75{--mdb-text-opacity: 0.75}.text-opacity-100{--mdb-text-opacity: 1}.bg-primary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-primary-rgb), var(--mdb-bg-opacity)) !important}.bg-secondary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-secondary-rgb), var(--mdb-bg-opacity)) !important}.bg-success{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-success-rgb), var(--mdb-bg-opacity)) !important}.bg-info{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-info-rgb), var(--mdb-bg-opacity)) !important}.bg-warning{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-warning-rgb), var(--mdb-bg-opacity)) !important}.bg-danger{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-danger-rgb), var(--mdb-bg-opacity)) !important}.bg-light{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important}.bg-dark{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-dark-rgb), var(--mdb-bg-opacity)) !important}.bg-white{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-white-rgb), var(--mdb-bg-opacity)) !important}.bg-black{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-black-rgb), var(--mdb-bg-opacity)) !important}.bg-body{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-body-bg-rgb), var(--mdb-bg-opacity)) !important}.bg-transparent{--mdb-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-opacity-10{--mdb-bg-opacity: 0.1}.bg-opacity-25{--mdb-bg-opacity: 0.25}.bg-opacity-50{--mdb-bg-opacity: 0.5}.bg-opacity-75{--mdb-bg-opacity: 0.75}.bg-opacity-100{--mdb-bg-opacity: 1}.bg-gradient{background-image:var(--mdb-gradient) !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;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2rem !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-4{border-radius:.375rem !important}.rounded-5{border-radius:.5rem !important}.rounded-6{border-radius:.75rem !important}.rounded-7{border-radius:1rem !important}.rounded-8{border-radius:1.25rem !important}.rounded-9{border-radius:1.5rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-end{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-start{border-bottom-left-radius:.25rem !important;border-top-left-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.ls-tighter{letter-spacing:-0.05em !important}.ls-tight{letter-spacing:-0.025em !important}.ls-normal{letter-spacing:0em !important}.ls-wide{letter-spacing:.025em !important}.ls-wider{letter-spacing:.05em !important}.ls-widest{letter-spacing:.1em !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !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:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.mb-sm-6{margin-bottom:3.5rem !important}.mb-sm-7{margin-bottom:4rem !important}.mb-sm-8{margin-bottom:5rem !important}.mb-sm-9{margin-bottom:6rem !important}.mb-sm-10{margin-bottom:8rem !important}.mb-sm-11{margin-bottom:10rem !important}.mb-sm-12{margin-bottom:12rem !important}.mb-sm-13{margin-bottom:14rem !important}.mb-sm-14{margin-bottom:16rem !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.m-sm-n1{margin:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mx-sm-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-sm-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-sm-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-sm-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-sm-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-sm-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-sm-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-sm-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-sm-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-sm-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-sm-n1{margin-top:-0.25rem !important}.mt-sm-n2{margin-top:-0.5rem !important}.mt-sm-n3{margin-top:-1rem !important}.mt-sm-n4{margin-top:-1.5rem !important}.mt-sm-n5{margin-top:-3rem !important}.me-sm-n1{margin-right:-0.25rem !important}.me-sm-n2{margin-right:-0.5rem !important}.me-sm-n3{margin-right:-1rem !important}.me-sm-n4{margin-right:-1.5rem !important}.me-sm-n5{margin-right:-3rem !important}.mb-sm-n1{margin-bottom:-0.25rem !important}.mb-sm-n2{margin-bottom:-0.5rem !important}.mb-sm-n3{margin-bottom:-1rem !important}.mb-sm-n4{margin-bottom:-1.5rem !important}.mb-sm-n5{margin-bottom:-3rem !important}.ms-sm-n1{margin-left:-0.25rem !important}.ms-sm-n2{margin-left:-0.5rem !important}.ms-sm-n3{margin-left:-1rem !important}.ms-sm-n4{margin-left:-1.5rem !important}.ms-sm-n5{margin-left:-3rem !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !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:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.mb-md-6{margin-bottom:3.5rem !important}.mb-md-7{margin-bottom:4rem !important}.mb-md-8{margin-bottom:5rem !important}.mb-md-9{margin-bottom:6rem !important}.mb-md-10{margin-bottom:8rem !important}.mb-md-11{margin-bottom:10rem !important}.mb-md-12{margin-bottom:12rem !important}.mb-md-13{margin-bottom:14rem !important}.mb-md-14{margin-bottom:16rem !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.m-md-n1{margin:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.m-md-n3{margin:-1rem !important}.m-md-n4{margin:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mx-md-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-md-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-md-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-md-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-md-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-md-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-md-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-md-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-md-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-md-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-md-n1{margin-top:-0.25rem !important}.mt-md-n2{margin-top:-0.5rem !important}.mt-md-n3{margin-top:-1rem !important}.mt-md-n4{margin-top:-1.5rem !important}.mt-md-n5{margin-top:-3rem !important}.me-md-n1{margin-right:-0.25rem !important}.me-md-n2{margin-right:-0.5rem !important}.me-md-n3{margin-right:-1rem !important}.me-md-n4{margin-right:-1.5rem !important}.me-md-n5{margin-right:-3rem !important}.mb-md-n1{margin-bottom:-0.25rem !important}.mb-md-n2{margin-bottom:-0.5rem !important}.mb-md-n3{margin-bottom:-1rem !important}.mb-md-n4{margin-bottom:-1.5rem !important}.mb-md-n5{margin-bottom:-3rem !important}.ms-md-n1{margin-left:-0.25rem !important}.ms-md-n2{margin-left:-0.5rem !important}.ms-md-n3{margin-left:-1rem !important}.ms-md-n4{margin-left:-1.5rem !important}.ms-md-n5{margin-left:-3rem !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !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:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.mb-lg-6{margin-bottom:3.5rem !important}.mb-lg-7{margin-bottom:4rem !important}.mb-lg-8{margin-bottom:5rem !important}.mb-lg-9{margin-bottom:6rem !important}.mb-lg-10{margin-bottom:8rem !important}.mb-lg-11{margin-bottom:10rem !important}.mb-lg-12{margin-bottom:12rem !important}.mb-lg-13{margin-bottom:14rem !important}.mb-lg-14{margin-bottom:16rem !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.m-lg-n1{margin:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mx-lg-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-lg-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-lg-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-lg-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-lg-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-lg-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-lg-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-lg-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-lg-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-lg-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-lg-n1{margin-top:-0.25rem !important}.mt-lg-n2{margin-top:-0.5rem !important}.mt-lg-n3{margin-top:-1rem !important}.mt-lg-n4{margin-top:-1.5rem !important}.mt-lg-n5{margin-top:-3rem !important}.me-lg-n1{margin-right:-0.25rem !important}.me-lg-n2{margin-right:-0.5rem !important}.me-lg-n3{margin-right:-1rem !important}.me-lg-n4{margin-right:-1.5rem !important}.me-lg-n5{margin-right:-3rem !important}.mb-lg-n1{margin-bottom:-0.25rem !important}.mb-lg-n2{margin-bottom:-0.5rem !important}.mb-lg-n3{margin-bottom:-1rem !important}.mb-lg-n4{margin-bottom:-1.5rem !important}.mb-lg-n5{margin-bottom:-3rem !important}.ms-lg-n1{margin-left:-0.25rem !important}.ms-lg-n2{margin-left:-0.5rem !important}.ms-lg-n3{margin-left:-1rem !important}.ms-lg-n4{margin-left:-1.5rem !important}.ms-lg-n5{margin-left:-3rem !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !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:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.mb-xl-6{margin-bottom:3.5rem !important}.mb-xl-7{margin-bottom:4rem !important}.mb-xl-8{margin-bottom:5rem !important}.mb-xl-9{margin-bottom:6rem !important}.mb-xl-10{margin-bottom:8rem !important}.mb-xl-11{margin-bottom:10rem !important}.mb-xl-12{margin-bottom:12rem !important}.mb-xl-13{margin-bottom:14rem !important}.mb-xl-14{margin-bottom:16rem !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.m-xl-n1{margin:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mx-xl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xl-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-xl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xl-n1{margin-top:-0.25rem !important}.mt-xl-n2{margin-top:-0.5rem !important}.mt-xl-n3{margin-top:-1rem !important}.mt-xl-n4{margin-top:-1.5rem !important}.mt-xl-n5{margin-top:-3rem !important}.me-xl-n1{margin-right:-0.25rem !important}.me-xl-n2{margin-right:-0.5rem !important}.me-xl-n3{margin-right:-1rem !important}.me-xl-n4{margin-right:-1.5rem !important}.me-xl-n5{margin-right:-3rem !important}.mb-xl-n1{margin-bottom:-0.25rem !important}.mb-xl-n2{margin-bottom:-0.5rem !important}.mb-xl-n3{margin-bottom:-1rem !important}.mb-xl-n4{margin-bottom:-1.5rem !important}.mb-xl-n5{margin-bottom:-3rem !important}.ms-xl-n1{margin-left:-0.25rem !important}.ms-xl-n2{margin-left:-0.5rem !important}.ms-xl-n3{margin-left:-1rem !important}.ms-xl-n4{margin-left:-1.5rem !important}.ms-xl-n5{margin-left:-3rem !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.mb-xxl-6{margin-bottom:3.5rem !important}.mb-xxl-7{margin-bottom:4rem !important}.mb-xxl-8{margin-bottom:5rem !important}.mb-xxl-9{margin-bottom:6rem !important}.mb-xxl-10{margin-bottom:8rem !important}.mb-xxl-11{margin-bottom:10rem !important}.mb-xxl-12{margin-bottom:12rem !important}.mb-xxl-13{margin-bottom:14rem !important}.mb-xxl-14{margin-bottom:16rem !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.m-xxl-n1{margin:-0.25rem !important}.m-xxl-n2{margin:-0.5rem !important}.m-xxl-n3{margin:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.m-xxl-n5{margin:-3rem !important}.mx-xxl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xxl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xxl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xxl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xxl-n5{margin-right:-3rem !important;margin-left:-3rem !important}.my-xxl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xxl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xxl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xxl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xxl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xxl-n1{margin-top:-0.25rem !important}.mt-xxl-n2{margin-top:-0.5rem !important}.mt-xxl-n3{margin-top:-1rem !important}.mt-xxl-n4{margin-top:-1.5rem !important}.mt-xxl-n5{margin-top:-3rem !important}.me-xxl-n1{margin-right:-0.25rem !important}.me-xxl-n2{margin-right:-0.5rem !important}.me-xxl-n3{margin-right:-1rem !important}.me-xxl-n4{margin-right:-1.5rem !important}.me-xxl-n5{margin-right:-3rem !important}.mb-xxl-n1{margin-bottom:-0.25rem !important}.mb-xxl-n2{margin-bottom:-0.5rem !important}.mb-xxl-n3{margin-bottom:-1rem !important}.mb-xxl-n4{margin-bottom:-1.5rem !important}.mb-xxl-n5{margin-bottom:-3rem !important}.ms-xxl-n1{margin-left:-0.25rem !important}.ms-xxl-n2{margin-left:-0.5rem !important}.ms-xxl-n3{margin-left:-1rem !important}.ms-xxl-n4{margin-left:-1.5rem !important}.ms-xxl-n5{margin-left:-3rem !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}@media(min-width: 1200px){.fs-1{font-size:2.5rem !important}.fs-2{font-size:2rem !important}.fs-3{font-size:1.75rem !important}.fs-4{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !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:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto: \"Roboto\", sans-serif;--mdb-bg-opacity: 1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-left:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width: 1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18, 102, 241, var(--mdb-bg-opacity)) !important}.bg-secondary{background-color:rgba(178, 60, 253, var(--mdb-bg-opacity)) !important}.bg-success{background-color:rgba(0, 183, 74, var(--mdb-bg-opacity)) !important}.bg-info{background-color:rgba(57, 192, 237, var(--mdb-bg-opacity)) !important}.bg-warning{background-color:rgba(255, 169, 0, var(--mdb-bg-opacity)) !important}.bg-danger{background-color:rgba(249, 49, 84, var(--mdb-bg-opacity)) !important}.bg-light{background-color:rgba(249, 249, 249, var(--mdb-bg-opacity)) !important}.bg-dark{background-color:rgba(38, 38, 38, var(--mdb-bg-opacity)) !important}.bg-white{background-color:rgba(255, 255, 255, var(--mdb-bg-opacity)) !important}.bg-black{background-color:rgba(0, 0, 0, var(--mdb-bg-opacity)) !important}/*!\n * # Semantic UI 2.4.2 - Flag\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-left-radius:5px;border-top-right-radius:5px;text-align:center;max-width:150px;margin:0 auto;margin-top:10px}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){display:inline-block;width:16px;height:11px;margin:0 .5em 0 0;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag::before{display:inline-block;width:16px;height:11px;content:\"\";background:url(\"https://mdbootstrap.com/img/svg/flags.png\") no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:0 0 !important}i.flag-ae:before,i.flag-united-arab-emirates:before,i.flag-uae:before{background-position:0 -26px !important}i.flag-af:before,i.flag-afghanistan:before{background-position:0 -52px !important}i.flag-ag:before,i.flag-antigua:before{background-position:0 -78px !important}i.flag-ai:before,i.flag-anguilla:before{background-position:0 -104px !important}i.flag-al:before,i.flag-albania:before{background-position:0 -130px !important}i.flag-am:before,i.flag-armenia:before{background-position:0 -156px !important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:0 -182px !important}i.flag-ao:before,i.flag-angola:before{background-position:0 -208px !important}i.flag-ar:before,i.flag-argentina:before{background-position:0 -234px !important}i.flag-as:before,i.flag-american-samoa:before{background-position:0 -260px !important}i.flag-at:before,i.flag-austria:before{background-position:0 -286px !important}i.flag-au:before,i.flag-australia:before{background-position:0 -312px !important}i.flag-aw:before,i.flag-aruba:before{background-position:0 -338px !important}i.flag-ax:before,i.flag-aland-islands:before{background-position:0 -364px !important}i.flag-az:before,i.flag-azerbaijan:before{background-position:0 -390px !important}i.flag-ba:before,i.flag-bosnia:before{background-position:0 -416px !important}i.flag-bb:before,i.flag-barbados:before{background-position:0 -442px !important}i.flag-bd:before,i.flag-bangladesh:before{background-position:0 -468px !important}i.flag-be:before,i.flag-belgium:before{background-position:0 -494px !important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:0 -520px !important}i.flag-bg:before,i.flag-bulgaria:before{background-position:0 -546px !important}i.flag-bh:before,i.flag-bahrain:before{background-position:0 -572px !important}i.flag-bi:before,i.flag-burundi:before{background-position:0 -598px !important}i.flag-bj:before,i.flag-benin:before{background-position:0 -624px !important}i.flag-bm:before,i.flag-bermuda:before{background-position:0 -650px !important}i.flag-bn:before,i.flag-brunei:before{background-position:0 -676px !important}i.flag-bo:before,i.flag-bolivia:before{background-position:0 -702px !important}i.flag-br:before,i.flag-brazil:before{background-position:0 -728px !important}i.flag-bs:before,i.flag-bahamas:before{background-position:0 -754px !important}i.flag-bt:before,i.flag-bhutan:before{background-position:0 -780px !important}i.flag-bv:before,i.flag-bouvet-island:before{background-position:0 -806px !important}i.flag-bw:before,i.flag-botswana:before{background-position:0 -832px !important}i.flag-by:before,i.flag-belarus:before{background-position:0 -858px !important}i.flag-bz:before,i.flag-belize:before{background-position:0 -884px !important}i.flag-ca:before,i.flag-canada:before{background-position:0 -910px !important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:0 -962px !important}i.flag-cd:before,i.flag-congo:before{background-position:0 -988px !important}i.flag-cf:before,i.flag-central-african-republic:before{background-position:0 -1014px !important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:0 -1040px !important}i.flag-ch:before,i.flag-switzerland:before{background-position:0 -1066px !important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:0 -1092px !important}i.flag-ck:before,i.flag-cook-islands:before{background-position:0 -1118px !important}i.flag-cl:before,i.flag-chile:before{background-position:0 -1144px !important}i.flag-cm:before,i.flag-cameroon:before{background-position:0 -1170px !important}i.flag-cn:before,i.flag-china:before{background-position:0 -1196px !important}i.flag-co:before,i.flag-colombia:before{background-position:0 -1222px !important}i.flag-cr:before,i.flag-costa-rica:before{background-position:0 -1248px !important}i.flag-cs:before,i.flag-serbia:before{background-position:0 -1274px !important}i.flag-cu:before,i.flag-cuba:before{background-position:0 -1300px !important}i.flag-cv:before,i.flag-cape-verde:before{background-position:0 -1326px !important}i.flag-cx:before,i.flag-christmas-island:before{background-position:0 -1352px !important}i.flag-cy:before,i.flag-cyprus:before{background-position:0 -1378px !important}i.flag-cz:before,i.flag-czech-republic:before{background-position:0 -1404px !important}i.flag-de:before,i.flag-germany:before{background-position:0 -1430px !important}i.flag-dj:before,i.flag-djibouti:before{background-position:0 -1456px !important}i.flag-dk:before,i.flag-denmark:before{background-position:0 -1482px !important}i.flag-dm:before,i.flag-dominica:before{background-position:0 -1508px !important}i.flag-do:before,i.flag-dominican-republic:before{background-position:0 -1534px !important}i.flag-dz:before,i.flag-algeria:before{background-position:0 -1560px !important}i.flag-ec:before,i.flag-ecuador:before{background-position:0 -1586px !important}i.flag-ee:before,i.flag-estonia:before{background-position:0 -1612px !important}i.flag-eg:before,i.flag-egypt:before{background-position:0 -1638px !important}i.flag-eh:before,i.flag-western-sahara:before{background-position:0 -1664px !important}i.flag-gb-eng:before,i.flag-england:before{background-position:0 -1690px !important}i.flag-er:before,i.flag-eritrea:before{background-position:0 -1716px !important}i.flag-es:before,i.flag-spain:before{background-position:0 -1742px !important}i.flag-et:before,i.flag-ethiopia:before{background-position:0 -1768px !important}i.flag-eu:before,i.flag-european-union:before{background-position:0 -1794px !important}i.flag-fi:before,i.flag-finland:before{background-position:0 -1846px !important}i.flag-fj:before,i.flag-fiji:before{background-position:0 -1872px !important}i.flag-fk:before,i.flag-falkland-islands:before{background-position:0 -1898px !important}i.flag-fm:before,i.flag-micronesia:before{background-position:0 -1924px !important}i.flag-fo:before,i.flag-faroe-islands:before{background-position:0 -1950px !important}i.flag-fr:before,i.flag-france:before{background-position:0 -1976px !important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0 !important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px !important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px !important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px !important}i.flag-gf:before,i.flag-french-guiana:before{background-position:-36px -104px !important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px !important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px !important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px !important}i.flag-gm:before,i.flag-gambia:before{background-position:-36px -208px !important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px !important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px !important}i.flag-gq:before,i.flag-equatorial-guinea:before{background-position:-36px -286px !important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px !important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px !important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px !important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px !important}i.flag-gw:before,i.flag-guinea-bissau:before{background-position:-36px -416px !important}i.flag-gy:before,i.flag-guyana:before{background-position:-36px -442px !important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px !important}i.flag-hm:before,i.flag-heard-island:before{background-position:-36px -494px !important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px !important}i.flag-hr:before,i.flag-croatia:before{background-position:-36px -546px !important}i.flag-ht:before,i.flag-haiti:before{background-position:-36px -572px !important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px !important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px !important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px !important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px !important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px !important}i.flag-io:before,i.flag-indian-ocean-territory:before{background-position:-36px -728px !important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px !important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px !important}i.flag-is:before,i.flag-iceland:before{background-position:-36px -806px !important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px !important}i.flag-jm:before,i.flag-jamaica:before{background-position:-36px -858px !important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px !important}i.flag-jp:before,i.flag-japan:before{background-position:-36px -910px !important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px !important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px !important}i.flag-kh:before,i.flag-cambodia:before{background-position:-36px -988px !important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px !important}i.flag-km:before,i.flag-comoros:before{background-position:-36px -1040px !important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px !important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px !important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px !important}i.flag-kw:before,i.flag-kuwait:before{background-position:-36px -1144px !important}i.flag-ky:before,i.flag-cayman-islands:before{background-position:-36px -1170px !important}i.flag-kz:before,i.flag-kazakhstan:before{background-position:-36px -1196px !important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px !important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px !important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px !important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px !important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px !important}i.flag-lr:before,i.flag-liberia:before{background-position:-36px -1352px !important}i.flag-ls:before,i.flag-lesotho:before{background-position:-36px -1378px !important}i.flag-lt:before,i.flag-lithuania:before{background-position:-36px -1404px !important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px !important}i.flag-lv:before,i.flag-latvia:before{background-position:-36px -1456px !important}i.flag-ly:before,i.flag-libya:before{background-position:-36px -1482px !important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px !important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px !important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px !important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px !important}i.flag-mg:before,i.flag-madagascar:before{background-position:-36px -1613px !important}i.flag-mh:before,i.flag-marshall-islands:before{background-position:-36px -1639px !important}i.flag-mk:before,i.flag-macedonia:before{background-position:-36px -1665px !important}i.flag-ml:before,i.flag-mali:before{background-position:-36px -1691px !important}i.flag-mm:before,i.flag-myanmar:before,i.flag-burma:before{background-position:-73px -1821px !important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px !important}i.flag-mo:before,i.flag-macau:before{background-position:-36px -1769px !important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px !important}i.flag-mq:before,i.flag-martinique:before{background-position:-36px -1821px !important}i.flag-mr:before,i.flag-mauritania:before{background-position:-36px -1847px !important}i.flag-ms:before,i.flag-montserrat:before{background-position:-36px -1873px !important}i.flag-mt:before,i.flag-malta:before{background-position:-36px -1899px !important}i.flag-mu:before,i.flag-mauritius:before{background-position:-36px -1925px !important}i.flag-mv:before,i.flag-maldives:before{background-position:-36px -1951px !important}i.flag-mw:before,i.flag-malawi:before{background-position:-36px -1977px !important}i.flag-mx:before,i.flag-mexico:before{background-position:-72px 0 !important}i.flag-my:before,i.flag-malaysia:before{background-position:-72px -26px !important}i.flag-mz:before,i.flag-mozambique:before{background-position:-72px -52px !important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px !important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px !important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px !important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px !important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px !important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px !important}i.flag-nl:before,i.flag-netherlands:before{background-position:-72px -234px !important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px !important}i.flag-np:before,i.flag-nepal:before{background-position:-72px -286px !important}i.flag-nr:before,i.flag-nauru:before{background-position:-72px -312px !important}i.flag-nu:before,i.flag-niue:before{background-position:-72px -338px !important}i.flag-nz:before,i.flag-new-zealand:before{background-position:-72px -364px !important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px !important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px !important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px !important}i.flag-pf:before,i.flag-french-polynesia:before{background-position:-72px -468px !important}i.flag-pg:before,i.flag-new-guinea:before{background-position:-72px -494px !important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px !important}i.flag-pk:before,i.flag-pakistan:before{background-position:-72px -546px !important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px !important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px !important}i.flag-pn:before,i.flag-pitcairn-islands:before{background-position:-72px -624px !important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px !important}i.flag-ps:before,i.flag-palestine:before{background-position:-72px -676px !important}i.flag-pt:before,i.flag-portugal:before{background-position:-72px -702px !important}i.flag-pw:before,i.flag-palau:before{background-position:-72px -728px !important}i.flag-py:before,i.flag-paraguay:before{background-position:-72px -754px !important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px !important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px !important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px !important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px !important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px !important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px !important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px !important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px !important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px !important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px !important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px !important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px !important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px !important}i.flag-sh:before,i.flag-saint-helena:before{background-position:-72px -1118px !important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px !important}i.flag-sj:before,i.flag-svalbard:before,i.flag-jan-mayen:before{background-position:-72px -1170px !important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px !important}i.flag-sl:before,i.flag-sierra-leone:before{background-position:-72px -1222px !important}i.flag-sm:before,i.flag-san-marino:before{background-position:-72px -1248px !important}i.flag-sn:before,i.flag-senegal:before{background-position:-72px -1274px !important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px !important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px !important}i.flag-st:before,i.flag-sao-tome:before{background-position:-72px -1352px !important}i.flag-sv:before,i.flag-el-salvador:before{background-position:-72px -1378px !important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px !important}i.flag-sz:before,i.flag-swaziland:before{background-position:-72px -1430px !important}i.flag-tc:before,i.flag-caicos-islands:before{background-position:-72px -1456px !important}i.flag-td:before,i.flag-chad:before{background-position:-72px -1482px !important}i.flag-tf:before,i.flag-french-territories:before{background-position:-72px -1508px !important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px !important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px !important}i.flag-tj:before,i.flag-tajikistan:before{background-position:-72px -1586px !important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px !important}i.flag-tl:before,i.flag-timorleste:before{background-position:-72px -1638px !important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px !important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px !important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px !important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px !important}i.flag-tt:before,i.flag-trinidad:before{background-position:-72px -1768px !important}i.flag-tv:before,i.flag-tuvalu:before{background-position:-72px -1794px !important}i.flag-tw:before,i.flag-taiwan:before{background-position:-72px -1820px !important}i.flag-tz:before,i.flag-tanzania:before{background-position:-72px -1846px !important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px !important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px !important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px !important}i.flag-us:before,i.flag-america:before,i.flag-united-states:before{background-position:-72px -1950px !important}i.flag-uy:before,i.flag-uruguay:before{background-position:-72px -1976px !important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0 !important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px !important}i.flag-vc:before,i.flag-saint-vincent:before{background-position:-108px -52px !important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px !important}i.flag-vg:before,i.flag-british-virgin-islands:before{background-position:-108px -104px !important}i.flag-vi:before,i.flag-us-virgin-islands:before{background-position:-108px -130px !important}i.flag-vn:before,i.flag-vietnam:before{background-position:-108px -156px !important}i.flag-vu:before,i.flag-vanuatu:before{background-position:-108px -182px !important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px !important}i.flag-wf:before,i.flag-wallis-and-futuna:before{background-position:-108px -234px !important}i.flag-ws:before,i.flag-samoa:before{background-position:-108px -260px !important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px !important}i.flag-yt:before,i.flag-mayotte:before{background-position:-108px -312px !important}i.flag-za:before,i.flag-south-africa:before{background-position:-108px -338px !important}i.flag-zm:before,i.flag-zambia:before{background-position:-108px -364px !important}i.flag-zw:before,i.flag-zimbabwe:before{background-position:-108px -390px !important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:center center}.mask{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.hover-shadow,.card.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow:hover,.card.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.hover-shadow-soft,.card.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow-soft:hover,.card.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear;border-color:#1266f1;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:right}.form-outline .trailing{position:absolute;right:10px;left:initial;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-right:2rem !important}.form-outline .form-control{min-height:auto;padding-top:.33em;padding-bottom:.33em;padding-left:.75em;padding-right:.75em;border:0;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;left:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:0 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;left:0;top:0;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid;border-color:#bdbdbd;box-sizing:border-box;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{left:0;top:0;height:100%;width:.5rem;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-right:none;border-left:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control:focus::-moz-placeholder, .form-outline .form-control.active::-moz-placeholder{opacity:1}.form-outline .form-control:focus::placeholder,.form-outline .form-control.active::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none !important}.form-outline .form-control:focus~.form-label,.form-outline .form-control.active~.form-label{transform:translateY(-1rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle,.form-outline .form-control.active~.form-notch .form-notch-middle{border-right:none;border-left:none;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-leading,.form-outline .form-control.active~.form-notch .form-notch-leading{border-right:none}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing,.form-outline .form-control.active~.form-notch .form-notch-trailing{border-left:none}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control:disabled,.form-outline .form-control.disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-left:.75em;padding-right:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg:focus~.form-label,.form-outline .form-control.form-control-lg.active~.form-label{transform:translateY(-1.25rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control.form-control-sm{padding-left:.99em;padding-right:.99em;padding-top:.43em;padding-bottom:.35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm:focus~.form-label,.form-outline .form-control.form-control-sm.active~.form-label{transform:translateY(-0.85rem) translateY(0.1rem) scale(0.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid rgba(0,0,0,0)}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control::placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control[readonly]{background-color:rgba(255,255,255,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:rgba(0,0,0,0)}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:\"\";position:absolute;box-shadow:0px 0px 0px 13px rgba(0,0,0,0);border-radius:50%;width:.875rem;height:.875rem;background-color:rgba(0,0,0,0);opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:\"\";position:absolute}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0px 0px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:indeterminate:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-right:8px}.form-check-input[type=checkbox]:focus:after{content:\"\";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none;background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg) /*!rtl:ignore*/;border-width:.125rem;border-color:#fff;width:.375rem;height:.8125rem;border-style:solid;border-top:0;border-left:0 /*!rtl:ignore*/;margin-left:.25rem;margin-top:-1px;background-color:rgba(0,0,0,0)}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-right:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:\"\";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;border-color:#1266f1;background-color:#1266f1;transition:border-color;transform:translate(-50%, -50%);position:absolute;left:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-left:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-right:8px}.form-switch .form-check-input:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-0.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked{background-image:none}.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-left:1.0625rem;box-shadow:3px -1px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#1266f1;margin-top:-3px;margin-left:1.0625rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);transition:background-color .2s,transform .2s}.form-control[type=file]::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:rgba(0,0,0,0);padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-left:1px;margin-right:1px}.input-group-text>.form-check-input[type=radio]{margin-right:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-left:0}.input-group.form-outline input+.input-group-text{border:0;border-left:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .select-wrapper:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.input-group .form-outline:not(:last-child),.input-group .select-wrapper:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-left:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.input-group .invalid-feedback,.input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#00b74a;margin-top:-0.75rem}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(0,183,74,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#00b74a}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-outline .form-control:valid~.form-label,.form-outline .form-control.is-valid~.form-label{color:#00b74a}.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing{border-color:#00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-select:valid~.valid-feedback,.form-select.is-valid~.valid-feedback{margin-top:0}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button{border-color:#00b74a}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:checked:focus:before,.form-check-input.is-valid:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:none}.was-validated .form-check-input:valid:focus:before,.form-check-input.is-valid:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.was-validated .form-check-input:valid[type=checkbox]:checked:focus,.form-check-input.is-valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.was-validated .form-check-input:valid[type=radio]:checked,.form-check-input.is-valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.was-validated .form-check-input:valid[type=radio]:checked:focus:before,.form-check-input.is-valid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid[type=radio]:checked:after,.form-check-input.is-valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .form-switch .form-check-input:valid:focus:before,.form-switch .form-check-input.is-valid:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after,.form-switch .form-check-input.is-valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:valid:checked:focus:before,.form-switch .form-check-input.is-valid:checked:focus:before{box-shadow:3px -1px 0px 13px #00b74a}.invalid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#f93154;margin-top:-0.75rem}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(249,49,84,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#f93154}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-outline .form-control:invalid~.form-label,.form-outline .form-control.is-invalid~.form-label{color:#f93154}.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing{border-color:#f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:-1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-select:invalid~.invalid-feedback,.form-select.is-invalid~.invalid-feedback{margin-top:0}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button{border-color:#f93154}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:checked:focus:before,.form-check-input.is-invalid:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:none}.was-validated .form-check-input:invalid:focus:before,.form-check-input.is-invalid:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.was-validated .form-check-input:invalid[type=checkbox]:checked:focus,.form-check-input.is-invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.was-validated .form-check-input:invalid[type=radio]:checked,.form-check-input.is-invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.was-validated .form-check-input:invalid[type=radio]:checked:focus:before,.form-check-input.is-invalid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid[type=radio]:checked:after,.form-check-input.is-invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .form-switch .form-check-input:invalid:focus:before,.form-switch .form-check-input.is-invalid:focus:before{box-shadow:3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after,.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:invalid:checked:focus:before,.form-switch .form-check-input.is-invalid:checked:focus:before{box-shadow:3px -1px 0px 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg: transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem 1.5rem;font-size:.75rem;line-height:1.5}.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:focus,.btn.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active,.btn.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active:focus,.btn.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem 1.375rem}[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-]:focus,[class*=btn-outline-].focus{box-shadow:none;text-decoration:none}[class*=btn-outline-]:active,[class*=btn-outline-].active{box-shadow:none}[class*=btn-outline-]:active:focus,[class*=btn-outline-].active:focus{box-shadow:none}[class*=btn-outline-]:disabled,[class*=btn-outline-].disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}[class*=btn-outline-].btn-lg,.btn-group-lg>[class*=btn-outline-].btn{padding:.625rem 1.5625rem .5625rem 1.5625rem}[class*=btn-outline-].btn-sm,.btn-group-sm>[class*=btn-outline-].btn{padding:.25rem .875rem .1875rem .875rem}.btn-primary{color:#fff;background-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0c56d0}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0c56d0}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#093d94}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1}.btn-secondary{color:#fff;background-color:#b23cfd}.btn-secondary:hover{color:#fff;background-color:#a316fd}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#a316fd}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#8102d1}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#b23cfd}.btn-success{color:#fff;background-color:#00b74a}.btn-success:hover{color:#fff;background-color:#00913b}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#00913b}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#16b5ea}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info:disabled,.btn-info.disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning:hover{color:#fff;background-color:#d99000}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d99000}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning:disabled,.btn-warning.disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#f80c35}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-light:focus,.btn-light.focus{color:#4f4f4f;background-color:#e6e6e6}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light:disabled,.btn-light.disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark:hover{color:#fff;background-color:#131313}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#131313}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-white:focus,.btn-white.focus{color:#4f4f4f;background-color:#ececec}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white:disabled,.btn-white.disabled{color:#4f4f4f;background-color:#fff}.btn-black{color:#fff;background-color:#000}.btn-black:hover{color:#fff;background-color:#000}.btn-black:focus,.btn-black.focus{color:#fff;background-color:#000}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;background-color:rgba(0,0,0,.02)}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;background-color:rgba(0,0,0,.02)}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success:focus,.btn-outline-success.focus{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info:focus,.btn-outline-info.focus{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning:focus,.btn-outline-warning.focus{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger:focus,.btn-outline-danger.focus{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light:focus,.btn-outline-light.focus{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark:focus,.btn-outline-dark.focus{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white:focus,.btn-outline-white.focus{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black:focus,.btn-outline-black.focus{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black{color:#fff;background-color:#000}.btn-lg,.btn-group-lg>.btn{padding:.75rem 1.6875rem .6875rem 1.6875rem;font-size:.875rem;line-height:1.6}.btn-sm,.btn-group-sm>.btn{padding:.375rem 1rem .3125rem 1rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:focus,.btn-link.focus{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:active,.btn-link.active{box-shadow:none;background-color:#f5f5f5}.btn-link:active:focus,.btn-link.active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link:disabled,.btn-link.disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fas,.btn-floating .far,.btn-floating .fab{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fas,.btn-floating.btn-lg .far,.btn-group-lg>.btn-floating.btn .far,.btn-floating.btn-lg .fab,.btn-group-lg>.btn-floating.btn .fab{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fas,.btn-floating.btn-sm .far,.btn-group-sm>.btn-floating.btn .far,.btn-floating.btn-sm .fab,.btn-group-sm>.btn-floating.btn .fab{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fas,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fab{width:2.0625rem;line-height:2.0625rem}[class*=btn-outline-].btn-floating.btn-lg .fas,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-lg .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab{width:2.5625rem;line-height:2.5625rem}[class*=btn-outline-].btn-floating.btn-sm .fas,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-sm .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;right:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;left:0;right:0;display:flex;flex-direction:column;padding:0;margin:0;margin-bottom:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn ul a.btn.shown{opacity:1}.fixed-action-btn.active ul{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:first-child .dropdown-item{border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu>li:last-child .dropdown-item{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none !important;-webkit-animation:unset !important;animation:unset !important}}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{from{opacity:1}to{opacity:0}}@keyframes fade-out{from{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group:hover,.btn-group-vertical:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:focus,.btn-group.focus,.btn-group-vertical:focus,.btn-group-vertical.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active,.btn-group.active,.btn-group-vertical:active,.btn-group-vertical.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active:focus,.btn-group.active:focus,.btn-group-vertical:active:focus,.btn-group-vertical.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:disabled,.btn-group.disabled,fieldset:disabled .btn-group,.btn-group-vertical:disabled,.btn-group-vertical.disabled,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group>.btn,.btn-group-vertical>.btn{box-shadow:none}.btn-group>.btn-group,.btn-group-vertical>.btn-group{box-shadow:none}.btn-group>.btn-link:first-child,.btn-group-vertical>.btn-link:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-link:last-child,.btn-group-vertical>.btn-link:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border-width:0 0 2px 0;border-style:solid;border-color:rgba(0,0,0,0);border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px 29px}.nav-tabs .nav-link:hover{background-color:#f5f5f5;border-color:rgba(0,0,0,0)}.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#1266f1;border-color:#1266f1}.nav-pills{margin-left:-0.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px 29px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-right:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-light .navbar-toggler-icon{background-image:none}.navbar-dark .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.card-header{background-color:rgba(255,255,255,0)}.card-body[class*=bg-]{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.card-footer{background-color:rgba(255,255,255,0)}.card-img-left{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.navbar .breadcrumb{background-color:rgba(0,0,0,0);margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:hover,.navbar .breadcrumb .breadcrumb-item a:focus{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{border:0;font-size:.9rem;color:#212529;background-color:rgba(0,0,0,0);border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{background-color:#1266f1;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:not(:first-child) .page-link{margin-left:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-circle .page-item:first-child .page-link{border-radius:50%}.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-left:.841rem;padding-right:.841rem}.pagination-circle.pagination-lg .page-link{padding-left:1.399414rem;padding-right:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-left:.696rem;padding-right:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-left:-0.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-0.1rem;margin-left:-0.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action{transition:.5s}.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-light .list-group-item-action:focus{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{color:#fff;padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:rgba(0,0,0,0);color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:initial;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:rgba(0,0,0,0);box-shadow:none;color:#1266f1;font-weight:600;border-left:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0, 0, 0.15, 1),cubic-bezier(0, 0, 0.15, 1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle, rgba(18, 102, 241, 0.2) 0, rgba(18, 102, 241, 0.3) 40%, rgba(18, 102, 241, 0.4) 50%, rgba(18, 102, 241, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle, rgba(178, 60, 253, 0.2) 0, rgba(178, 60, 253, 0.3) 40%, rgba(178, 60, 253, 0.4) 50%, rgba(178, 60, 253, 0.5) 60%, rgba(178, 60, 253, 0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle, rgba(0, 183, 74, 0.2) 0, rgba(0, 183, 74, 0.3) 40%, rgba(0, 183, 74, 0.4) 50%, rgba(0, 183, 74, 0.5) 60%, rgba(0, 183, 74, 0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle, rgba(57, 192, 237, 0.2) 0, rgba(57, 192, 237, 0.3) 40%, rgba(57, 192, 237, 0.4) 50%, rgba(57, 192, 237, 0.5) 60%, rgba(57, 192, 237, 0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle, rgba(255, 169, 0, 0.2) 0, rgba(255, 169, 0, 0.3) 40%, rgba(255, 169, 0, 0.4) 50%, rgba(255, 169, 0, 0.5) 60%, rgba(255, 169, 0, 0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle, rgba(249, 49, 84, 0.2) 0, rgba(249, 49, 84, 0.3) 40%, rgba(249, 49, 84, 0.4) 50%, rgba(249, 49, 84, 0.5) 60%, rgba(249, 49, 84, 0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle, rgba(249, 249, 249, 0.2) 0, rgba(249, 249, 249, 0.3) 40%, rgba(249, 249, 249, 0.4) 50%, rgba(249, 249, 249, 0.5) 60%, rgba(249, 249, 249, 0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle, rgba(38, 38, 38, 0.2) 0, rgba(38, 38, 38, 0.3) 40%, rgba(38, 38, 38, 0.4) 50%, rgba(38, 38, 38, 0.5) 60%, rgba(38, 38, 38, 0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%)}.range{position:relative}.range .thumb{position:absolute;display:block;height:30px;width:30px;top:-35px;margin-left:-15px;text-align:center;border-radius:50% 50% 50% 0;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb:after{position:absolute;display:block;content:\"\";transform:translateX(-50%);width:100%;height:100%;top:0;border-radius:50% 50% 50% 0;transform:rotate(-45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-prev-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}.carousel-control-next-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}"]} \ No newline at end of file diff --git a/css/mdb.rtl.min.css b/css/mdb.rtl.min.css new file mode 100644 index 000000000..87746952a --- /dev/null +++ b/css/mdb.rtl.min.css @@ -0,0 +1,10 @@ +:root{--mdb-blue:#0d6efd;--mdb-indigo:#6610f2;--mdb-purple:#6f42c1;--mdb-pink:#d63384;--mdb-red:#dc3545;--mdb-orange:#fd7e14;--mdb-yellow:#ffc107;--mdb-green:#198754;--mdb-teal:#20c997;--mdb-cyan:#0dcaf0;--mdb-gray:#757575;--mdb-gray-dark:#4f4f4f;--mdb-gray-100:#f5f5f5;--mdb-gray-200:#eee;--mdb-gray-300:#e0e0e0;--mdb-gray-400:#bdbdbd;--mdb-gray-500:#9e9e9e;--mdb-gray-600:#757575;--mdb-gray-700:#616161;--mdb-gray-800:#4f4f4f;--mdb-gray-900:#262626;--mdb-primary:#1266f1;--mdb-secondary:#b23cfd;--mdb-success:#00b74a;--mdb-info:#39c0ed;--mdb-warning:#ffa900;--mdb-danger:#f93154;--mdb-light:#f9f9f9;--mdb-dark:#262626;--mdb-white:#fff;--mdb-black:#000;--mdb-primary-rgb:18,102,241;--mdb-secondary-rgb:178,60,253;--mdb-success-rgb:0,183,74;--mdb-info-rgb:57,192,237;--mdb-warning-rgb:255,169,0;--mdb-danger-rgb:249,49,84;--mdb-light-rgb:249,249,249;--mdb-dark-rgb:38,38,38;--mdb-white-rgb:255,255,255;--mdb-black-rgb:0,0,0;--mdb-body-color-rgb:79,79,79;--mdb-body-bg-rgb:255,255,255;--mdb-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--mdb-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--mdb-gradient:linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0));--mdb-body-font-family:var(--mdb-font-roboto);--mdb-body-font-size:1rem;--mdb-body-font-weight:400;--mdb-body-line-height:1.6;--mdb-body-color:#4f4f4f;--mdb-body-bg:#fff}*,:after,:before{box-sizing:border-box}@media(prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media(min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media(min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media(min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-mdb-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--mdb-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border:0 solid;border-color:inherit}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media(min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-6{font-size:2.5rem}}.list-inline,.list-unstyled{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#757575}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#757575}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--mdb-gutter-x,.75rem);padding-right:var(--mdb-gutter-x,.75rem);margin-left:auto;margin-right:auto}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media(min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--mdb-gutter-x:1.5rem;--mdb-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--mdb-gutter-y)*-1);margin-left:calc(var(--mdb-gutter-x)*-0.5);margin-right:calc(var(--mdb-gutter-x)*-0.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--mdb-gutter-x)*0.5);padding-right:calc(var(--mdb-gutter-x)*0.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--mdb-gutter-x:0}.g-0,.gy-0{--mdb-gutter-y:0}.g-1,.gx-1{--mdb-gutter-x:0.25rem}.g-1,.gy-1{--mdb-gutter-y:0.25rem}.g-2,.gx-2{--mdb-gutter-x:0.5rem}.g-2,.gy-2{--mdb-gutter-y:0.5rem}.g-3,.gx-3{--mdb-gutter-x:1rem}.g-3,.gy-3{--mdb-gutter-y:1rem}.g-4,.gx-4{--mdb-gutter-x:1.5rem}.g-4,.gy-4{--mdb-gutter-y:1.5rem}.g-5,.gx-5{--mdb-gutter-x:3rem}.g-5,.gy-5{--mdb-gutter-y:3rem}@media(min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x:0}.g-sm-0,.gy-sm-0{--mdb-gutter-y:0}.g-sm-1,.gx-sm-1{--mdb-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x:1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y:1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x:3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y:3rem}}@media(min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x:0}.g-md-0,.gy-md-0{--mdb-gutter-y:0}.g-md-1,.gx-md-1{--mdb-gutter-x:0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y:0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x:0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y:0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x:1rem}.g-md-3,.gy-md-3{--mdb-gutter-y:1rem}.g-md-4,.gx-md-4{--mdb-gutter-x:1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y:1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x:3rem}.g-md-5,.gy-md-5{--mdb-gutter-y:3rem}}@media(min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x:0}.g-lg-0,.gy-lg-0{--mdb-gutter-y:0}.g-lg-1,.gx-lg-1{--mdb-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x:1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y:1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x:3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y:3rem}}@media(min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x:0}.g-xl-0,.gy-xl-0{--mdb-gutter-y:0}.g-xl-1,.gx-xl-1{--mdb-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x:1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y:1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x:3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y:3rem}}@media(min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x:0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y:0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y:3rem}}.table{--mdb-table-bg:transparent;--mdb-table-accent-bg:transparent;--mdb-table-striped-color:#212529;--mdb-table-striped-bg:rgba(0,0,0,0.02);--mdb-table-active-color:#212529;--mdb-table-active-bg:rgba(0,0,0,0.1);--mdb-table-hover-color:#212529;--mdb-table-hover-bg:rgba(0,0,0,0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg:var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg:var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg:var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg:#d0e0fc;--mdb-table-striped-bg:#c6d5ef;--mdb-table-striped-color:#000;--mdb-table-active-bg:#bbcae3;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c0cfe9;--mdb-table-hover-color:#000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg:#f0d8ff;--mdb-table-striped-bg:#e4cdf2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#d8c2e6;--mdb-table-active-color:#000;--mdb-table-hover-bg:#dec8ec;--mdb-table-hover-color:#000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg:#ccf1db;--mdb-table-striped-bg:#c2e5d0;--mdb-table-striped-color:#000;--mdb-table-active-bg:#b8d9c5;--mdb-table-active-color:#000;--mdb-table-hover-bg:#bddfcb;--mdb-table-hover-color:#000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg:#d7f2fb;--mdb-table-striped-bg:#cce6ee;--mdb-table-striped-color:#000;--mdb-table-active-bg:#c2dae2;--mdb-table-active-color:#000;--mdb-table-hover-bg:#c7e0e8;--mdb-table-hover-color:#000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg:#fec;--mdb-table-striped-bg:#f2e2c2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e6d6b8;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ecdcbd;--mdb-table-hover-color:#000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg:#fed6dd;--mdb-table-striped-bg:#f1cbd2;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e5c1c7;--mdb-table-active-color:#000;--mdb-table-hover-bg:#ebc6cc;--mdb-table-hover-color:#000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg:#f9f9f9;--mdb-table-striped-bg:#ededed;--mdb-table-striped-color:#000;--mdb-table-active-bg:#e0e0e0;--mdb-table-active-color:#000;--mdb-table-hover-bg:#e6e6e6;--mdb-table-hover-color:#000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg:#262626;--mdb-table-striped-bg:#313131;--mdb-table-striped-color:#fff;--mdb-table-active-bg:#3c3c3c;--mdb-table-active-color:#fff;--mdb-table-hover-bg:#363636;--mdb-table-hover-color:#fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.775rem}.form-text{margin-top:.25rem;font-size:.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{min-height:calc(1.6em + .5rem + 2px);padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem .75rem .375rem 2.25rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-left:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-right:.5rem;font-size:.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-right:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-right:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:right;margin-right:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-repeat:no-repeat;background-position:50%;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-right:2.5em}.form-switch .form-check-input{width:2em;margin-right:-2.5em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");background-position:100%;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%231266f1'/%3E%3C/svg%3E")}.form-switch .form-check-input:checked{background-position:0;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.form-check-inline{display:inline-block;margin-left:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1266f1;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1266f1;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e0e0e0;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;right:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:100% 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-left:3rem}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.valid-tooltip{color:#000;border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{padding-left:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) left calc(.4em + .1875rem)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-left:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2300b74a' d='M2.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'/%3E%3C/svg%3E");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{width:100%;margin-top:.25rem;font-size:.875em}.invalid-tooltip{color:#000;border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{padding-left:calc(1.6em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left calc(.4em + .1875rem) center;background-size:calc(.8em + .375rem) calc(.8em + .375rem)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:calc(1.6em + .75rem);background-position:top calc(.4em + .1875rem) left calc(.4em + .1875rem)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-left:4.125rem;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f93154'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3E%3C/svg%3E");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(.8em + .375rem) calc(.8em + .375rem)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:.125rem solid transparent;padding:.375rem .75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{border-color:#1266f1}.btn-primary:hover{background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{background-color:#0e52c1;border-color:#0e4db5}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary.disabled,.btn-primary:disabled{border-color:#1266f1}.btn-secondary{color:#000;border-color:#b23cfd}.btn-check:focus+.btn-secondary,.btn-secondary:focus,.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#000;border-color:#b23cfd}.btn-success{color:#000;border-color:#00b74a}.btn-check:focus+.btn-success,.btn-success:focus,.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success.disabled,.btn-success:disabled{color:#000;border-color:#00b74a}.btn-info{color:#000;border-color:#39c0ed}.btn-check:focus+.btn-info,.btn-info:focus,.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;border-color:#39c0ed}.btn-warning{color:#000;border-color:#ffa900}.btn-check:focus+.btn-warning,.btn-warning:focus,.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;border-color:#ffa900}.btn-danger{color:#000;border-color:#f93154}.btn-check:focus+.btn-danger,.btn-danger:focus,.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#000;border-color:#f93154}.btn-light{color:#000;border-color:#f9f9f9}.btn-check:focus+.btn-light,.btn-light:focus,.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,83.1%,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;border-color:#f9f9f9}.btn-dark{border-color:#262626}.btn-check:focus+.btn-dark,.btn-dark:focus,.btn-dark:hover{background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark.disabled,.btn-dark:disabled{border-color:#262626}.btn-white{color:#000;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus,.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem hsla(0,0%,85.1%,.5)}.btn-white.disabled,.btn-white:disabled{color:#000;border-color:#fff}.btn-black,.btn-black:hover{border-color:#000}.btn-black:focus,.btn-check:focus+.btn-black{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.active,.btn-black:active,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{border-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black.disabled,.btn-black:disabled{border-color:#000}.btn-outline-primary:hover{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,97.6%,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#262626;border-color:#262626}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-white:focus,.btn-check:checked+.btn-outline-white:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:0 0 0 .25rem hsla(0,0%,100%,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{background-color:transparent}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black:active{color:#fff;background-color:#000;border-color:#000}.btn-check:active+.btn-outline-black:focus,.btn-check:checked+.btn-outline-black:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black.disabled,.btn-outline-black:disabled{background-color:transparent}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link.disabled,.btn-link:disabled{color:#757575}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-left:.3em solid transparent;border-bottom:0;border-right:.3em solid transparent}.dropdown-toggle:empty:after{margin-right:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;right:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-mdb-popper]{left:0;right:auto}@media(min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-mdb-popper]{left:0;right:auto}}@media(min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-mdb-popper]{left:0;right:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-left:.3em solid transparent;border-bottom:.3em solid;border-right:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-right:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropend .dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:0;border-bottom:.3em solid transparent;border-right:.3em solid}.dropend .dropdown-toggle:empty:after{margin-right:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropstart .dropdown-toggle:after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-right:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#222}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:hsla(0,0%,100%,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-right:-.125rem}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-right:0}.dropstart .dropdown-toggle-split:before{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-.125rem}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-right-radius:0;border-top-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{background:none;border:0}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-left:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:50%;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height,75vh);overflow-y:auto}@media(min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler,.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler,.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler,.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler,.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler,.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler,.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.55);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-right:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.5rem - 1px) calc(.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.5rem - 1px) calc(.5rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-left:-.75rem;margin-right:-.75rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1.5rem;border-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-right-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:right;padding-left:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider,"/")}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-right:0;list-style:none}.page-link{position:relative;display:block;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0}@media(prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-right:-1px}.page-item.active .page-link{z-index:3;color:#fff;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid transparent}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-left:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;left:0;z-index:2;padding:1.5625rem 1.5rem}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:right;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");transform:rotate(180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-right:auto;content:"";background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion:reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-left:0;border-right:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{height:4px;font-size:.75rem;background-color:#eee;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#1266f1;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:4px 4px}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn:before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}@keyframes placeholder-wave{to{-webkit-mask-position:-200% 0;mask-position:-200% 0}}.list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:inherit;border-top-left-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1266f1;border-color:#1266f1}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media(min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:focus,.list-group-item-black.list-group-item-action:hover{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.toast-header .btn-close{margin-left:-.375rem;margin-right:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;right:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #e0e0e0;border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem auto -.5rem -.5rem}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-left-radius:calc(.5rem - 1px);border-bottom-right-radius:calc(.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:after,.popover .popover-arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,.bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,.bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,.bs-popover-end>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,.bs-popover-end>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,.bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,.bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,.bs-popover-start>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,.bs-popover-start>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-right-radius:calc(.5rem - 1px);border-top-left-radius:calc(.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:right;width:100%;margin-left:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{right:0}.carousel-control-next{left:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-next-icon,.carousel-control-prev-icon{background-image:none}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:2;display:flex;justify-content:center;padding:0;margin-left:15%;margin-bottom:1rem;margin-right:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:1.25rem;right:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid;border-left:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem}.offcanvas-header .btn-close{padding:.5rem;margin-top:-.5rem;margin-left:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem;overflow-y:auto}.offcanvas-start{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-end{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-top{top:0;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom,.offcanvas-top{left:0;right:0;height:30vh;max-height:100%}.offcanvas-bottom{border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,.bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,.bs-tooltip-end .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,.bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,.bs-tooltip-start .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;text-align:center;background-color:#000}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#1266f1}.link-primary:focus,.link-primary:hover{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:focus,.link-secondary:hover{color:#c163fd}.link-success{color:#00b74a}.link-success:focus,.link-success:hover{color:#33c56e}.link-info{color:#39c0ed}.link-info:focus,.link-info:hover{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:focus,.link-warning:hover{color:#ffba33}.link-danger{color:#f93154}.link-danger:focus,.link-danger:hover{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:focus,.link-light:hover{color:#fafafa}.link-dark{color:#262626}.link-dark:focus,.link-dark:hover{color:#1e1e1e}.link-white,.link-white:focus,.link-white:hover{color:#fff}.link-black,.link-black:focus,.link-black:hover{color:#000}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--mdb-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio:100%}.ratio-4x3{--mdb-aspect-ratio:75%}.ratio-16x9{--mdb-aspect-ratio:56.25%}.ratio-21x9{--mdb-aspect-ratio:42.8571428571%}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;left:0;right:0;z-index:1030}.fixed-bottom{bottom:0}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{flex-direction:row;align-items:center}.hstack,.vstack{display:flex;align-self:stretch}.vstack{flex:1 1 auto;flex-direction:column}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.float-start{float:right!important}.float-end{float:left!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-30{opacity:.3!important}.opacity-35{opacity:.35!important}.opacity-40{opacity:.4!important}.opacity-45{opacity:.45!important}.opacity-50{opacity:.5!important}.opacity-55{opacity:.55!important}.opacity-60{opacity:.6!important}.opacity-65{opacity:.65!important}.opacity-70{opacity:.7!important}.opacity-75{opacity:.75!important}.opacity-80{opacity:.8!important}.opacity-85{opacity:.85!important}.opacity-90{opacity:.9!important}.opacity-95{opacity:.95!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-0,.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07)!important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05)!important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05)!important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)!important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05)!important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21)!important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05)!important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05)!important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05)!important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05)!important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05)!important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05)!important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21)!important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21)!important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21)!important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21)!important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21)!important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21)!important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!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}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{right:0!important}.start-50{right:50%!important}.start-100{right:100%!important}.end-0{left:0!important}.end-50{left:50%!important}.end-100{left:100%!important}.translate-middle{transform:translate(50%,-50%)!important}.translate-middle-x{transform:translateX(50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #e0e0e0!important}.border-0{border:0!important}.border-top{border-top:1px solid #e0e0e0!important}.border-top-0{border-top:0!important}.border-end{border-left:1px solid #e0e0e0!important}.border-end-0{border-left:0!important}.border-bottom{border-bottom:1px solid #e0e0e0!important}.border-bottom-0{border-bottom:0!important}.border-start{border-right:1px solid #e0e0e0!important}.border-start-0{border-right:0!important}.border-primary{border-color:#1266f1!important}.border-secondary{border-color:#b23cfd!important}.border-success{border-color:#00b74a!important}.border-info{border-color:#39c0ed!important}.border-warning{border-color:#ffa900!important}.border-danger{border-color:#f93154!important}.border-light{border-color:#f9f9f9!important}.border-dark{border-color:#262626!important}.border-white{border-color:#fff!important}.border-black{border-color:#000!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!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}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!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}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.mb-6{margin-bottom:3.5rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.mb-9{margin-bottom:6rem!important}.mb-10{margin-bottom:8rem!important}.mb-11{margin-bottom:10rem!important}.mb-12{margin-bottom:12rem!important}.mb-13{margin-bottom:14rem!important}.mb-14{margin-bottom:16rem!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-1rem!important}.m-n4{margin:-1.5rem!important}.m-n5{margin:-3rem!important}.mx-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-1rem!important}.mt-n4{margin-top:-1.5rem!important}.mt-n5{margin-top:-3rem!important}.me-n1{margin-left:-.25rem!important}.me-n2{margin-left:-.5rem!important}.me-n3{margin-left:-1rem!important}.me-n4{margin-left:-1.5rem!important}.me-n5{margin-left:-3rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-1rem!important}.mb-n4{margin-bottom:-1.5rem!important}.mb-n5{margin-bottom:-3rem!important}.ms-n1{margin-right:-.25rem!important}.ms-n2{margin-right:-.5rem!important}.ms-n3{margin-right:-1rem!important}.ms-n4{margin-right:-1.5rem!important}.ms-n5{margin-right:-3rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}.font-monospace{font-family:var(--mdb-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.6!important}.lh-lg{line-height:2!important}.text-start{text-align:right!important}.text-end{text-align:left!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-primary{--mdb-text-opacity:1;color:rgba(var(--mdb-primary-rgb),var(--mdb-text-opacity))!important}.text-secondary{--mdb-text-opacity:1;color:rgba(var(--mdb-secondary-rgb),var(--mdb-text-opacity))!important}.text-success{--mdb-text-opacity:1;color:rgba(var(--mdb-success-rgb),var(--mdb-text-opacity))!important}.text-info{--mdb-text-opacity:1;color:rgba(var(--mdb-info-rgb),var(--mdb-text-opacity))!important}.text-warning{--mdb-text-opacity:1;color:rgba(var(--mdb-warning-rgb),var(--mdb-text-opacity))!important}.text-danger{--mdb-text-opacity:1;color:rgba(var(--mdb-danger-rgb),var(--mdb-text-opacity))!important}.text-light{--mdb-text-opacity:1;color:rgba(var(--mdb-light-rgb),var(--mdb-text-opacity))!important}.text-dark{--mdb-text-opacity:1;color:rgba(var(--mdb-dark-rgb),var(--mdb-text-opacity))!important}.text-white{--mdb-text-opacity:1;color:rgba(var(--mdb-white-rgb),var(--mdb-text-opacity))!important}.text-black{--mdb-text-opacity:1;color:rgba(var(--mdb-black-rgb),var(--mdb-text-opacity))!important}.text-body{--mdb-text-opacity:1;color:rgba(var(--mdb-body-color-rgb),var(--mdb-text-opacity))!important}.text-muted{--mdb-text-opacity:1;color:#757575!important}.text-black-50{--mdb-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--mdb-text-opacity:1;color:hsla(0,0%,100%,.5)!important}.text-reset{--mdb-text-opacity:1;color:inherit!important}.text-opacity-25{--mdb-text-opacity:0.25}.text-opacity-50{--mdb-text-opacity:0.5}.text-opacity-75{--mdb-text-opacity:0.75}.text-opacity-100{--mdb-text-opacity:1}.bg-primary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-primary-rgb),var(--mdb-bg-opacity))!important}.bg-secondary{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-secondary-rgb),var(--mdb-bg-opacity))!important}.bg-success{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-success-rgb),var(--mdb-bg-opacity))!important}.bg-info{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-info-rgb),var(--mdb-bg-opacity))!important}.bg-warning{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-warning-rgb),var(--mdb-bg-opacity))!important}.bg-danger{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-danger-rgb),var(--mdb-bg-opacity))!important}.bg-light{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-light-rgb),var(--mdb-bg-opacity))!important}.bg-dark{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-dark-rgb),var(--mdb-bg-opacity))!important}.bg-white{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-white-rgb),var(--mdb-bg-opacity))!important}.bg-black{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-black-rgb),var(--mdb-bg-opacity))!important}.bg-body{--mdb-bg-opacity:1;background-color:rgba(var(--mdb-body-bg-rgb),var(--mdb-bg-opacity))!important}.bg-transparent{--mdb-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--mdb-bg-opacity:0.1}.bg-opacity-25{--mdb-bg-opacity:0.25}.bg-opacity-50{--mdb-bg-opacity:0.5}.bg-opacity-75{--mdb-bg-opacity:0.75}.bg-opacity-100{--mdb-bg-opacity:1}.bg-gradient{background-image:var(--mdb-gradient)!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;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-4{border-radius:.375rem!important}.rounded-5{border-radius:.5rem!important}.rounded-6{border-radius:.75rem!important}.rounded-7{border-radius:1rem!important}.rounded-8{border-radius:1.25rem!important}.rounded-9{border-radius:1.5rem!important}.rounded-top{border-top-right-radius:.25rem!important}.rounded-end,.rounded-top{border-top-left-radius:.25rem!important}.rounded-bottom,.rounded-end{border-bottom-left-radius:.25rem!important}.rounded-bottom,.rounded-start{border-bottom-right-radius:.25rem!important}.rounded-start{border-top-right-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.ls-tighter{letter-spacing:-.05em!important}.ls-tight{letter-spacing:-.025em!important}.ls-normal{letter-spacing:0!important}.ls-wide{letter-spacing:.025em!important}.ls-wider{letter-spacing:.05em!important}.ls-widest{letter-spacing:.1em!important}@media(min-width:576px){.float-sm-start{float:right!important}.float-sm-end{float:left!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!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:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.mb-sm-6{margin-bottom:3.5rem!important}.mb-sm-7{margin-bottom:4rem!important}.mb-sm-8{margin-bottom:5rem!important}.mb-sm-9{margin-bottom:6rem!important}.mb-sm-10{margin-bottom:8rem!important}.mb-sm-11{margin-bottom:10rem!important}.mb-sm-12{margin-bottom:12rem!important}.mb-sm-13{margin-bottom:14rem!important}.mb-sm-14{margin-bottom:16rem!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.m-sm-n1{margin:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.m-sm-n3{margin:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mx-sm-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-sm-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-sm-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-sm-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-sm-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-sm-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-sm-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-sm-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-sm-n1{margin-top:-.25rem!important}.mt-sm-n2{margin-top:-.5rem!important}.mt-sm-n3{margin-top:-1rem!important}.mt-sm-n4{margin-top:-1.5rem!important}.mt-sm-n5{margin-top:-3rem!important}.me-sm-n1{margin-left:-.25rem!important}.me-sm-n2{margin-left:-.5rem!important}.me-sm-n3{margin-left:-1rem!important}.me-sm-n4{margin-left:-1.5rem!important}.me-sm-n5{margin-left:-3rem!important}.mb-sm-n1{margin-bottom:-.25rem!important}.mb-sm-n2{margin-bottom:-.5rem!important}.mb-sm-n3{margin-bottom:-1rem!important}.mb-sm-n4{margin-bottom:-1.5rem!important}.mb-sm-n5{margin-bottom:-3rem!important}.ms-sm-n1{margin-right:-.25rem!important}.ms-sm-n2{margin-right:-.5rem!important}.ms-sm-n3{margin-right:-1rem!important}.ms-sm-n4{margin-right:-1.5rem!important}.ms-sm-n5{margin-right:-3rem!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}.text-sm-start{text-align:right!important}.text-sm-end{text-align:left!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.float-md-start{float:right!important}.float-md-end{float:left!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!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:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.mb-md-6{margin-bottom:3.5rem!important}.mb-md-7{margin-bottom:4rem!important}.mb-md-8{margin-bottom:5rem!important}.mb-md-9{margin-bottom:6rem!important}.mb-md-10{margin-bottom:8rem!important}.mb-md-11{margin-bottom:10rem!important}.mb-md-12{margin-bottom:12rem!important}.mb-md-13{margin-bottom:14rem!important}.mb-md-14{margin-bottom:16rem!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.m-md-n1{margin:-.25rem!important}.m-md-n2{margin:-.5rem!important}.m-md-n3{margin:-1rem!important}.m-md-n4{margin:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mx-md-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-md-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-md-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-md-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-md-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-md-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-md-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-md-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-md-n1{margin-top:-.25rem!important}.mt-md-n2{margin-top:-.5rem!important}.mt-md-n3{margin-top:-1rem!important}.mt-md-n4{margin-top:-1.5rem!important}.mt-md-n5{margin-top:-3rem!important}.me-md-n1{margin-left:-.25rem!important}.me-md-n2{margin-left:-.5rem!important}.me-md-n3{margin-left:-1rem!important}.me-md-n4{margin-left:-1.5rem!important}.me-md-n5{margin-left:-3rem!important}.mb-md-n1{margin-bottom:-.25rem!important}.mb-md-n2{margin-bottom:-.5rem!important}.mb-md-n3{margin-bottom:-1rem!important}.mb-md-n4{margin-bottom:-1.5rem!important}.mb-md-n5{margin-bottom:-3rem!important}.ms-md-n1{margin-right:-.25rem!important}.ms-md-n2{margin-right:-.5rem!important}.ms-md-n3{margin-right:-1rem!important}.ms-md-n4{margin-right:-1.5rem!important}.ms-md-n5{margin-right:-3rem!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}.text-md-start{text-align:right!important}.text-md-end{text-align:left!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.float-lg-start{float:right!important}.float-lg-end{float:left!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!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:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.mb-lg-6{margin-bottom:3.5rem!important}.mb-lg-7{margin-bottom:4rem!important}.mb-lg-8{margin-bottom:5rem!important}.mb-lg-9{margin-bottom:6rem!important}.mb-lg-10{margin-bottom:8rem!important}.mb-lg-11{margin-bottom:10rem!important}.mb-lg-12{margin-bottom:12rem!important}.mb-lg-13{margin-bottom:14rem!important}.mb-lg-14{margin-bottom:16rem!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.m-lg-n1{margin:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.m-lg-n3{margin:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mx-lg-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-lg-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-lg-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-lg-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-lg-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-lg-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-lg-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-lg-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-lg-n1{margin-top:-.25rem!important}.mt-lg-n2{margin-top:-.5rem!important}.mt-lg-n3{margin-top:-1rem!important}.mt-lg-n4{margin-top:-1.5rem!important}.mt-lg-n5{margin-top:-3rem!important}.me-lg-n1{margin-left:-.25rem!important}.me-lg-n2{margin-left:-.5rem!important}.me-lg-n3{margin-left:-1rem!important}.me-lg-n4{margin-left:-1.5rem!important}.me-lg-n5{margin-left:-3rem!important}.mb-lg-n1{margin-bottom:-.25rem!important}.mb-lg-n2{margin-bottom:-.5rem!important}.mb-lg-n3{margin-bottom:-1rem!important}.mb-lg-n4{margin-bottom:-1.5rem!important}.mb-lg-n5{margin-bottom:-3rem!important}.ms-lg-n1{margin-right:-.25rem!important}.ms-lg-n2{margin-right:-.5rem!important}.ms-lg-n3{margin-right:-1rem!important}.ms-lg-n4{margin-right:-1.5rem!important}.ms-lg-n5{margin-right:-3rem!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}.text-lg-start{text-align:right!important}.text-lg-end{text-align:left!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.float-xl-start{float:right!important}.float-xl-end{float:left!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!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:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.mb-xl-6{margin-bottom:3.5rem!important}.mb-xl-7{margin-bottom:4rem!important}.mb-xl-8{margin-bottom:5rem!important}.mb-xl-9{margin-bottom:6rem!important}.mb-xl-10{margin-bottom:8rem!important}.mb-xl-11{margin-bottom:10rem!important}.mb-xl-12{margin-bottom:12rem!important}.mb-xl-13{margin-bottom:14rem!important}.mb-xl-14{margin-bottom:16rem!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.m-xl-n1{margin:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.m-xl-n3{margin:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mx-xl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xl-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xl-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xl-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xl-n1{margin-top:-.25rem!important}.mt-xl-n2{margin-top:-.5rem!important}.mt-xl-n3{margin-top:-1rem!important}.mt-xl-n4{margin-top:-1.5rem!important}.mt-xl-n5{margin-top:-3rem!important}.me-xl-n1{margin-left:-.25rem!important}.me-xl-n2{margin-left:-.5rem!important}.me-xl-n3{margin-left:-1rem!important}.me-xl-n4{margin-left:-1.5rem!important}.me-xl-n5{margin-left:-3rem!important}.mb-xl-n1{margin-bottom:-.25rem!important}.mb-xl-n2{margin-bottom:-.5rem!important}.mb-xl-n3{margin-bottom:-1rem!important}.mb-xl-n4{margin-bottom:-1.5rem!important}.mb-xl-n5{margin-bottom:-3rem!important}.ms-xl-n1{margin-right:-.25rem!important}.ms-xl-n2{margin-right:-.5rem!important}.ms-xl-n3{margin-right:-1rem!important}.ms-xl-n4{margin-right:-1.5rem!important}.ms-xl-n5{margin-right:-3rem!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}.text-xl-start{text-align:right!important}.text-xl-end{text-align:left!important}.text-xl-center{text-align:center!important}}@media(min-width:1400px){.float-xxl-start{float:right!important}.float-xxl-end{float:left!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.mb-xxl-6{margin-bottom:3.5rem!important}.mb-xxl-7{margin-bottom:4rem!important}.mb-xxl-8{margin-bottom:5rem!important}.mb-xxl-9{margin-bottom:6rem!important}.mb-xxl-10{margin-bottom:8rem!important}.mb-xxl-11{margin-bottom:10rem!important}.mb-xxl-12{margin-bottom:12rem!important}.mb-xxl-13{margin-bottom:14rem!important}.mb-xxl-14{margin-bottom:16rem!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.m-xxl-n1{margin:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.m-xxl-n3{margin:-1rem!important}.m-xxl-n4{margin:-1.5rem!important}.m-xxl-n5{margin:-3rem!important}.mx-xxl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xxl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xxl-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xxl-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xxl-n5{margin-left:-3rem!important;margin-right:-3rem!important}.my-xxl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xxl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xxl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xxl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xxl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}.mt-xxl-n1{margin-top:-.25rem!important}.mt-xxl-n2{margin-top:-.5rem!important}.mt-xxl-n3{margin-top:-1rem!important}.mt-xxl-n4{margin-top:-1.5rem!important}.mt-xxl-n5{margin-top:-3rem!important}.me-xxl-n1{margin-left:-.25rem!important}.me-xxl-n2{margin-left:-.5rem!important}.me-xxl-n3{margin-left:-1rem!important}.me-xxl-n4{margin-left:-1.5rem!important}.me-xxl-n5{margin-left:-3rem!important}.mb-xxl-n1{margin-bottom:-.25rem!important}.mb-xxl-n2{margin-bottom:-.5rem!important}.mb-xxl-n3{margin-bottom:-1rem!important}.mb-xxl-n4{margin-bottom:-1.5rem!important}.mb-xxl-n5{margin-bottom:-3rem!important}.ms-xxl-n1{margin-right:-.25rem!important}.ms-xxl-n2{margin-right:-.5rem!important}.ms-xxl-n3{margin-right:-1rem!important}.ms-xxl-n4{margin-right:-1.5rem!important}.ms-xxl-n5{margin-right:-3rem!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}.text-xxl-start{text-align:right!important}.text-xxl-end{text-align:left!important}.text-xxl-center{text-align:center!important}}@media(min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!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:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto:"Roboto",sans-serif;--mdb-bg-opacity:1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-right:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width:1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18,102,241,var(--mdb-bg-opacity))!important}.bg-secondary{background-color:rgba(178,60,253,var(--mdb-bg-opacity))!important}.bg-success{background-color:rgba(0,183,74,var(--mdb-bg-opacity))!important}.bg-info{background-color:rgba(57,192,237,var(--mdb-bg-opacity))!important}.bg-warning{background-color:rgba(255,169,0,var(--mdb-bg-opacity))!important}.bg-danger{background-color:rgba(249,49,84,var(--mdb-bg-opacity))!important}.bg-light{background-color:rgba(249,249,249,var(--mdb-bg-opacity))!important}.bg-dark{background-color:rgba(38,38,38,var(--mdb-bg-opacity))!important}.bg-white{background-color:rgba(255,255,255,var(--mdb-bg-opacity))!important}.bg-black{background-color:rgba(0,0,0,var(--mdb-bg-opacity))!important}/*! + * # Semantic UI 2.4.2 - Flag + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-right-radius:5px;border-top-left-radius:5px;text-align:center;max-width:150px;margin:10px auto 0}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){margin:0 0 0 .5em;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:before,i.flag:not(.icon){display:inline-block;width:16px;height:11px}i.flag:before{content:"";background:url(https://mdbootstrap.com/img/svg/flags.png) no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:100% 0!important}i.flag-ae:before,i.flag-uae:before,i.flag-united-arab-emirates:before{background-position:100% -26px!important}i.flag-af:before,i.flag-afghanistan:before{background-position:100% -52px!important}i.flag-ag:before,i.flag-antigua:before{background-position:100% -78px!important}i.flag-ai:before,i.flag-anguilla:before{background-position:100% -104px!important}i.flag-al:before,i.flag-albania:before{background-position:100% -130px!important}i.flag-am:before,i.flag-armenia:before{background-position:100% -156px!important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:100% -182px!important}i.flag-angola:before,i.flag-ao:before{background-position:100% -208px!important}i.flag-ar:before,i.flag-argentina:before{background-position:100% -234px!important}i.flag-american-samoa:before,i.flag-as:before{background-position:100% -260px!important}i.flag-at:before,i.flag-austria:before{background-position:100% -286px!important}i.flag-au:before,i.flag-australia:before{background-position:100% -312px!important}i.flag-aruba:before,i.flag-aw:before{background-position:100% -338px!important}i.flag-aland-islands:before,i.flag-ax:before{background-position:100% -364px!important}i.flag-az:before,i.flag-azerbaijan:before{background-position:100% -390px!important}i.flag-ba:before,i.flag-bosnia:before{background-position:100% -416px!important}i.flag-barbados:before,i.flag-bb:before{background-position:100% -442px!important}i.flag-bangladesh:before,i.flag-bd:before{background-position:100% -468px!important}i.flag-be:before,i.flag-belgium:before{background-position:100% -494px!important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:100% -520px!important}i.flag-bg:before,i.flag-bulgaria:before{background-position:100% -546px!important}i.flag-bahrain:before,i.flag-bh:before{background-position:100% -572px!important}i.flag-bi:before,i.flag-burundi:before{background-position:100% -598px!important}i.flag-benin:before,i.flag-bj:before{background-position:100% -624px!important}i.flag-bermuda:before,i.flag-bm:before{background-position:100% -650px!important}i.flag-bn:before,i.flag-brunei:before{background-position:100% -676px!important}i.flag-bo:before,i.flag-bolivia:before{background-position:100% -702px!important}i.flag-br:before,i.flag-brazil:before{background-position:100% -728px!important}i.flag-bahamas:before,i.flag-bs:before{background-position:100% -754px!important}i.flag-bhutan:before,i.flag-bt:before{background-position:100% -780px!important}i.flag-bouvet-island:before,i.flag-bv:before{background-position:100% -806px!important}i.flag-botswana:before,i.flag-bw:before{background-position:100% -832px!important}i.flag-belarus:before,i.flag-by:before{background-position:100% -858px!important}i.flag-belize:before,i.flag-bz:before{background-position:100% -884px!important}i.flag-ca:before,i.flag-canada:before{background-position:100% -910px!important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:100% -962px!important}i.flag-cd:before,i.flag-congo:before{background-position:100% -988px!important}i.flag-central-african-republic:before,i.flag-cf:before{background-position:100% -1014px!important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:100% -1040px!important}i.flag-ch:before,i.flag-switzerland:before{background-position:100% -1066px!important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:100% -1092px!important}i.flag-ck:before,i.flag-cook-islands:before{background-position:100% -1118px!important}i.flag-chile:before,i.flag-cl:before{background-position:100% -1144px!important}i.flag-cameroon:before,i.flag-cm:before{background-position:100% -1170px!important}i.flag-china:before,i.flag-cn:before{background-position:100% -1196px!important}i.flag-co:before,i.flag-colombia:before{background-position:100% -1222px!important}i.flag-costa-rica:before,i.flag-cr:before{background-position:100% -1248px!important}i.flag-cs:before,i.flag-serbia:before{background-position:100% -1274px!important}i.flag-cu:before,i.flag-cuba:before{background-position:100% -1300px!important}i.flag-cape-verde:before,i.flag-cv:before{background-position:100% -1326px!important}i.flag-christmas-island:before,i.flag-cx:before{background-position:100% -1352px!important}i.flag-cy:before,i.flag-cyprus:before{background-position:100% -1378px!important}i.flag-cz:before,i.flag-czech-republic:before{background-position:100% -1404px!important}i.flag-de:before,i.flag-germany:before{background-position:100% -1430px!important}i.flag-dj:before,i.flag-djibouti:before{background-position:100% -1456px!important}i.flag-denmark:before,i.flag-dk:before{background-position:100% -1482px!important}i.flag-dm:before,i.flag-dominica:before{background-position:100% -1508px!important}i.flag-do:before,i.flag-dominican-republic:before{background-position:100% -1534px!important}i.flag-algeria:before,i.flag-dz:before{background-position:100% -1560px!important}i.flag-ec:before,i.flag-ecuador:before{background-position:100% -1586px!important}i.flag-ee:before,i.flag-estonia:before{background-position:100% -1612px!important}i.flag-eg:before,i.flag-egypt:before{background-position:100% -1638px!important}i.flag-eh:before,i.flag-western-sahara:before{background-position:100% -1664px!important}i.flag-england:before,i.flag-gb-eng:before{background-position:100% -1690px!important}i.flag-er:before,i.flag-eritrea:before{background-position:100% -1716px!important}i.flag-es:before,i.flag-spain:before{background-position:100% -1742px!important}i.flag-et:before,i.flag-ethiopia:before{background-position:100% -1768px!important}i.flag-eu:before,i.flag-european-union:before{background-position:100% -1794px!important}i.flag-fi:before,i.flag-finland:before{background-position:100% -1846px!important}i.flag-fiji:before,i.flag-fj:before{background-position:100% -1872px!important}i.flag-falkland-islands:before,i.flag-fk:before{background-position:100% -1898px!important}i.flag-fm:before,i.flag-micronesia:before{background-position:100% -1924px!important}i.flag-faroe-islands:before,i.flag-fo:before{background-position:100% -1950px!important}i.flag-fr:before,i.flag-france:before{background-position:100% -1976px!important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0!important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px!important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px!important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px!important}i.flag-french-guiana:before,i.flag-gf:before{background-position:-36px -104px!important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px!important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px!important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px!important}i.flag-gambia:before,i.flag-gm:before{background-position:-36px -208px!important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px!important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px!important}i.flag-equatorial-guinea:before,i.flag-gq:before{background-position:-36px -286px!important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px!important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px!important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px!important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px!important}i.flag-guinea-bissau:before,i.flag-gw:before{background-position:-36px -416px!important}i.flag-guyana:before,i.flag-gy:before{background-position:-36px -442px!important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px!important}i.flag-heard-island:before,i.flag-hm:before{background-position:-36px -494px!important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px!important}i.flag-croatia:before,i.flag-hr:before{background-position:-36px -546px!important}i.flag-haiti:before,i.flag-ht:before{background-position:-36px -572px!important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px!important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px!important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px!important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px!important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px!important}i.flag-indian-ocean-territory:before,i.flag-io:before{background-position:-36px -728px!important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px!important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px!important}i.flag-iceland:before,i.flag-is:before{background-position:-36px -806px!important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px!important}i.flag-jamaica:before,i.flag-jm:before{background-position:-36px -858px!important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px!important}i.flag-japan:before,i.flag-jp:before{background-position:-36px -910px!important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px!important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px!important}i.flag-cambodia:before,i.flag-kh:before{background-position:-36px -988px!important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px!important}i.flag-comoros:before,i.flag-km:before{background-position:-36px -1040px!important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px!important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px!important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px!important}i.flag-kuwait:before,i.flag-kw:before{background-position:-36px -1144px!important}i.flag-cayman-islands:before,i.flag-ky:before{background-position:-36px -1170px!important}i.flag-kazakhstan:before,i.flag-kz:before{background-position:-36px -1196px!important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px!important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px!important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px!important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px!important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px!important}i.flag-liberia:before,i.flag-lr:before{background-position:-36px -1352px!important}i.flag-lesotho:before,i.flag-ls:before{background-position:-36px -1378px!important}i.flag-lithuania:before,i.flag-lt:before{background-position:-36px -1404px!important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px!important}i.flag-latvia:before,i.flag-lv:before{background-position:-36px -1456px!important}i.flag-libya:before,i.flag-ly:before{background-position:-36px -1482px!important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px!important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px!important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px!important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px!important}i.flag-madagascar:before,i.flag-mg:before{background-position:-36px -1613px!important}i.flag-marshall-islands:before,i.flag-mh:before{background-position:-36px -1639px!important}i.flag-macedonia:before,i.flag-mk:before{background-position:-36px -1665px!important}i.flag-mali:before,i.flag-ml:before{background-position:-36px -1691px!important}i.flag-burma:before,i.flag-mm:before,i.flag-myanmar:before{background-position:-73px -1821px!important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px!important}i.flag-macau:before,i.flag-mo:before{background-position:-36px -1769px!important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px!important}i.flag-martinique:before,i.flag-mq:before{background-position:-36px -1821px!important}i.flag-mauritania:before,i.flag-mr:before{background-position:-36px -1847px!important}i.flag-montserrat:before,i.flag-ms:before{background-position:-36px -1873px!important}i.flag-malta:before,i.flag-mt:before{background-position:-36px -1899px!important}i.flag-mauritius:before,i.flag-mu:before{background-position:-36px -1925px!important}i.flag-maldives:before,i.flag-mv:before{background-position:-36px -1951px!important}i.flag-malawi:before,i.flag-mw:before{background-position:-36px -1977px!important}i.flag-mexico:before,i.flag-mx:before{background-position:-72px 0!important}i.flag-malaysia:before,i.flag-my:before{background-position:-72px -26px!important}i.flag-mozambique:before,i.flag-mz:before{background-position:-72px -52px!important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px!important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px!important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px!important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px!important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px!important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px!important}i.flag-netherlands:before,i.flag-nl:before{background-position:-72px -234px!important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px!important}i.flag-nepal:before,i.flag-np:before{background-position:-72px -286px!important}i.flag-nauru:before,i.flag-nr:before{background-position:-72px -312px!important}i.flag-niue:before,i.flag-nu:before{background-position:-72px -338px!important}i.flag-new-zealand:before,i.flag-nz:before{background-position:-72px -364px!important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px!important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px!important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px!important}i.flag-french-polynesia:before,i.flag-pf:before{background-position:-72px -468px!important}i.flag-new-guinea:before,i.flag-pg:before{background-position:-72px -494px!important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px!important}i.flag-pakistan:before,i.flag-pk:before{background-position:-72px -546px!important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px!important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px!important}i.flag-pitcairn-islands:before,i.flag-pn:before{background-position:-72px -624px!important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px!important}i.flag-palestine:before,i.flag-ps:before{background-position:-72px -676px!important}i.flag-portugal:before,i.flag-pt:before{background-position:-72px -702px!important}i.flag-palau:before,i.flag-pw:before{background-position:-72px -728px!important}i.flag-paraguay:before,i.flag-py:before{background-position:-72px -754px!important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px!important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px!important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px!important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px!important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px!important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px!important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px!important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px!important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px!important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px!important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px!important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px!important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px!important}i.flag-saint-helena:before,i.flag-sh:before{background-position:-72px -1118px!important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px!important}i.flag-jan-mayen:before,i.flag-sj:before,i.flag-svalbard:before{background-position:-72px -1170px!important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px!important}i.flag-sierra-leone:before,i.flag-sl:before{background-position:-72px -1222px!important}i.flag-san-marino:before,i.flag-sm:before{background-position:-72px -1248px!important}i.flag-senegal:before,i.flag-sn:before{background-position:-72px -1274px!important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px!important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px!important}i.flag-sao-tome:before,i.flag-st:before{background-position:-72px -1352px!important}i.flag-el-salvador:before,i.flag-sv:before{background-position:-72px -1378px!important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px!important}i.flag-swaziland:before,i.flag-sz:before{background-position:-72px -1430px!important}i.flag-caicos-islands:before,i.flag-tc:before{background-position:-72px -1456px!important}i.flag-chad:before,i.flag-td:before{background-position:-72px -1482px!important}i.flag-french-territories:before,i.flag-tf:before{background-position:-72px -1508px!important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px!important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px!important}i.flag-tajikistan:before,i.flag-tj:before{background-position:-72px -1586px!important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px!important}i.flag-timorleste:before,i.flag-tl:before{background-position:-72px -1638px!important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px!important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px!important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px!important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px!important}i.flag-trinidad:before,i.flag-tt:before{background-position:-72px -1768px!important}i.flag-tuvalu:before,i.flag-tv:before{background-position:-72px -1794px!important}i.flag-taiwan:before,i.flag-tw:before{background-position:-72px -1820px!important}i.flag-tanzania:before,i.flag-tz:before{background-position:-72px -1846px!important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px!important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px!important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px!important}i.flag-america:before,i.flag-united-states:before,i.flag-us:before{background-position:-72px -1950px!important}i.flag-uruguay:before,i.flag-uy:before{background-position:-72px -1976px!important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0!important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px!important}i.flag-saint-vincent:before,i.flag-vc:before{background-position:-108px -52px!important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px!important}i.flag-british-virgin-islands:before,i.flag-vg:before{background-position:-108px -104px!important}i.flag-us-virgin-islands:before,i.flag-vi:before{background-position:-108px -130px!important}i.flag-vietnam:before,i.flag-vn:before{background-position:-108px -156px!important}i.flag-vanuatu:before,i.flag-vu:before{background-position:-108px -182px!important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px!important}i.flag-wallis-and-futuna:before,i.flag-wf:before{background-position:-108px -234px!important}i.flag-samoa:before,i.flag-ws:before{background-position:-108px -260px!important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px!important}i.flag-mayotte:before,i.flag-yt:before{background-position:-108px -312px!important}i.flag-south-africa:before,i.flag-za:before{background-position:-108px -338px!important}i.flag-zambia:before,i.flag-zm:before{background-position:-108px -364px!important}i.flag-zimbabwe:before,i.flag-zw:before{background-position:-108px -390px!important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:50%}.mask{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.card.hover-shadow,.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow:hover,.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.card.hover-shadow-soft,.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.card.hover-shadow-soft:hover,.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear;border-color:#1266f1;box-shadow:inset 0 0 0 1px #1266f1}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:left}.form-outline .trailing{position:absolute;left:10px;right:auto;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-left:2rem!important}.form-outline .form-control{min-height:auto;padding:.33em .75em;border:0;background:transparent;transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;right:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:100% 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;right:0;top:0;width:100%;max-width:100%;height:100%;text-align:right;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid #bdbdbd;box-sizing:border-box;background:transparent;transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{right:0;top:0;height:100%;width:.5rem;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-left:none;border-right:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control.active::-moz-placeholder,.form-outline .form-control:focus::-moz-placeholder{opacity:1}.form-outline .form-control.active::placeholder,.form-outline .form-control:focus::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none!important}.form-outline .form-control.active~.form-label,.form-outline .form-control:focus~.form-label{transform:translateY(-1rem) translateY(.1rem) scale(.8)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control.active~.form-notch .form-notch-middle,.form-outline .form-control:focus~.form-notch .form-notch-middle{border-left:none;border-right:none;border-top:1px solid transparent}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid transparent}.form-outline .form-control.active~.form-notch .form-notch-leading,.form-outline .form-control:focus~.form-notch .form-notch-leading{border-left:none}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control.active~.form-notch .form-notch-trailing,.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-right:none}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control.disabled,.form-outline .form-control:disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-right:.75em;padding-left:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg.active~.form-label,.form-outline .form-control.form-control-lg:focus~.form-label{transform:translateY(-1.25rem) translateY(.1rem) scale(.8)}.form-outline .form-control.form-control-sm{padding:.43em .99em .35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm.active~.form-label,.form-outline .form-control.form-control-sm:focus~.form-label{transform:translateY(-.85rem) translateY(.1rem) scale(.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid transparent}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control::placeholder{color:hsla(0,0%,100%,.7)}.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control[readonly]{background-color:hsla(0,0%,100%,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:transparent}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:"";position:absolute;box-shadow:0 0 0 13px transparent;border-radius:50%;width:.875rem;height:.875rem;background-color:transparent;opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0 0 0 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0 0 0 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:"";position:absolute}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0 0 0 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:indeterminate:focus:before{box-shadow:0 0 0 13px #1266f1}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-left:8px}.form-check-input[type=checkbox]:focus:after{content:"";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none;background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg);width:.375rem;height:.8125rem;border:.125rem solid #fff;border-top:0;border-left:0;margin-right:.25rem;margin-top:-1px;background-color:transparent}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-left:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:"";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;border-color:#1266f1;background-color:#1266f1;transition:border-color;transform:translate(50%,-50%);position:absolute;right:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-right:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-left:8px}.form-switch .form-check-input:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{box-shadow:-3px -1px 0 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked,.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-right:1.0625rem;box-shadow:-3px -1px 0 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:"";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#1266f1;margin-top:-3px;margin-right:1.0625rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);transition:background-color .2s,transform .2s}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,.form-control[type=file]::-webkit-file-upload-button{background-color:transparent}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:transparent;padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-right:1px;margin-left:1px}.input-group-text>.form-check-input[type=radio]{margin-left:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-right:0}.input-group.form-outline input+.input-group-text{border:0;border-right:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child),.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.input-group .form-outline:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child),.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-right:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.input-group .invalid-feedback,.input-group .valid-feedback,.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{width:auto;color:#00b74a;margin-top:-.75rem}.valid-feedback,.valid-tooltip{position:absolute;display:none;font-size:.875rem}.valid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(0,183,74,.9);border-radius:.25rem!important;color:#fff}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{margin-bottom:1rem;background-image:none;border-color:#00b74a}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-outline .form-control.is-valid~.form-label,.was-validated .form-outline .form-control:valid~.form-label{color:#00b74a}.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing{border-color:#00b74a}.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid transparent}.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.form-select.is-valid,.was-validated .form-select:valid{border-color:#00b74a}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.form-select.is-valid~.valid-feedback,.was-validated .form-select:valid~.valid-feedback{margin-top:0}.input-group .form-control.is-valid,.was-validated .input-group .form-control:valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text{border-color:#00b74a}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#00b74a}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#00b74a}.form-check-input.is-valid:checked:focus:before,.was-validated .form-check-input:valid:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:none}.form-check-input.is-valid:focus:before,.was-validated .form-check-input:valid:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.form-check-input.is-valid[type=checkbox]:checked:focus,.was-validated .form-check-input:valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.form-check-input.is-valid[type=radio]:checked,.was-validated .form-check-input:valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.form-check-input.is-valid[type=radio]:checked:focus:before,.was-validated .form-check-input:valid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #00b74a}.form-check-input.is-valid[type=radio]:checked:after,.was-validated .form-check-input:valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.form-switch .form-check-input.is-valid:focus:before,.was-validated .form-switch .form-check-input:valid:focus:before{box-shadow:-3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-valid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-valid:checked:focus:before,.was-validated .form-switch .form-check-input:valid:checked:focus:before{box-shadow:-3px -1px 0 13px #00b74a}.invalid-feedback{width:auto;color:#f93154;margin-top:-.75rem}.invalid-feedback,.invalid-tooltip{position:absolute;display:none;font-size:.875rem}.invalid-tooltip{top:100%;z-index:5;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;background-color:rgba(249,49,84,.9);border-radius:.25rem!important;color:#fff}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{margin-bottom:1rem;background-image:none;border-color:#f93154}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-outline .form-control.is-invalid~.form-label,.was-validated .form-outline .form-control:invalid~.form-label{color:#f93154}.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing{border-color:#f93154}.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{border-top:1px solid transparent}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid transparent}.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing,.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#f93154}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.form-select.is-invalid~.invalid-feedback,.was-validated .form-select:invalid~.invalid-feedback{margin-top:0}.input-group .form-control.is-invalid,.was-validated .input-group .form-control:invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text{border-color:#f93154}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#f93154}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#f93154}.form-check-input.is-invalid:checked:focus:before,.was-validated .form-check-input:invalid:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:none}.form-check-input.is-invalid:focus:before,.was-validated .form-check-input:invalid:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.form-check-input.is-invalid[type=checkbox]:checked:focus,.was-validated .form-check-input:invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.form-check-input.is-invalid[type=radio]:checked,.was-validated .form-check-input:invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.form-check-input.is-invalid[type=radio]:checked:focus:before,.was-validated .form-check-input:invalid[type=radio]:checked:focus:before{box-shadow:0 0 0 13px #f93154}.form-check-input.is-invalid[type=radio]:checked:after,.was-validated .form-check-input:invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.form-switch .form-check-input.is-invalid:focus:before,.was-validated .form-switch .form-check-input:invalid:focus:before{box-shadow:-3px -1px 0 13px rgba(0,0,0,.6)}.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after,.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.form-switch .form-check-input.is-invalid:checked:focus:before,.was-validated .form-switch .form-check-input:invalid:checked:focus:before{box-shadow:-3px -1px 0 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg:transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem;font-size:.75rem;line-height:1.5}.btn.active,.btn.active:focus,.btn.focus,.btn:active,.btn:active:focus,.btn:focus,.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem}[class*=btn-outline-].focus,[class*=btn-outline-]:focus,[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-].active,[class*=btn-outline-].active:focus,[class*=btn-outline-].disabled,[class*=btn-outline-]:active,[class*=btn-outline-]:active:focus,[class*=btn-outline-]:disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}.btn-group-lg>[class*=btn-outline-].btn,[class*=btn-outline-].btn-lg{padding:.625rem 1.5625rem .5625rem}.btn-group-sm>[class*=btn-outline-].btn,[class*=btn-outline-].btn-sm{padding:.25rem .875rem .1875rem}.btn-primary{color:#fff;background-color:#1266f1}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#0c56d0}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#093d94}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#1266f1}.btn-secondary{color:#fff;background-color:#b23cfd}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#a316fd}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#8102d1}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#b23cfd}.btn-success{color:#fff;background-color:#00b74a}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#00913b}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#fff;background-color:#d99000}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light.disabled,.btn-light:disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#131313}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white.focus,.btn-white:focus,.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white.disabled,.btn-white:disabled{color:#4f4f4f;background-color:#fff}.btn-black,.btn-black.active,.btn-black.focus,.btn-black:active,.btn-black:focus,.btn-black:hover,.btn-check:active+.btn-black,.btn-check:checked+.btn-black,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-black.active:focus,.btn-black:active:focus,.btn-check:active+.btn-black:focus,.btn-check:checked+.btn-black:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black.disabled,.btn-black:disabled{color:#fff;background-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;background-color:rgba(0,0,0,.02)}.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:focus{color:#1266f1;background-color:transparent}.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:none}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#1266f1}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;background-color:rgba(0,0,0,.02)}.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:focus{color:#b23cfd;background-color:transparent}.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:none}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#b23cfd}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success.focus,.btn-outline-success:active,.btn-outline-success:focus{color:#00b74a;background-color:transparent}.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:none}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#00b74a}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info.focus,.btn-outline-info:active,.btn-outline-info:focus{color:#39c0ed;background-color:transparent}.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:none}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#39c0ed}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning.focus,.btn-outline-warning:active,.btn-outline-warning:focus{color:#ffa900;background-color:transparent}.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:none}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffa900}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger.focus,.btn-outline-danger:active,.btn-outline-danger:focus{color:#f93154;background-color:transparent}.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:none}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#f93154}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light.focus,.btn-outline-light:active,.btn-outline-light:focus{color:#f9f9f9;background-color:transparent}.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:none}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f9f9f9}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark.focus,.btn-outline-dark:active,.btn-outline-dark:focus{color:#262626;background-color:transparent}.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:none}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#262626}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white.focus,.btn-outline-white:active,.btn-outline-white:focus{color:#fff;background-color:transparent}.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:none}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show,.btn-outline-black.focus,.btn-outline-black:active,.btn-outline-black:focus{color:#000;background-color:transparent}.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus,.btn-outline-black:active:focus{box-shadow:none}.btn-outline-black.disabled,.btn-outline-black:disabled{color:#000}.btn-check:active+.btn-outline-black,.btn-check:checked+.btn-outline-black{color:#fff;background-color:#000}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.6875rem .6875rem;font-size:.875rem;line-height:1.6}.btn-group-sm>.btn,.btn-sm{padding:.375rem 1rem .3125rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link.focus,.btn-link:focus,.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link.active,.btn-link.active:focus,.btn-link:active,.btn-link:active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link.disabled,.btn-link:disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fab,.btn-floating .far,.btn-floating .fas{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fab,.btn-floating.btn-lg .far,.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fab,.btn-group-lg>.btn-floating.btn .far,.btn-group-lg>.btn-floating.btn .fas{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fab,.btn-floating.btn-sm .far,.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fab,.btn-group-sm>.btn-floating.btn .far,.btn-group-sm>.btn-floating.btn .fas{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fab,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fas{width:2.0625rem;line-height:2.0625rem}.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .fab,[class*=btn-outline-].btn-floating.btn-lg .far,[class*=btn-outline-].btn-floating.btn-lg .fas{width:2.5625rem;line-height:2.5625rem}.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .fab,[class*=btn-outline-].btn-floating.btn-sm .far,[class*=btn-outline-].btn-floating.btn-sm .fas{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;left:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;right:0;left:0;display:flex;flex-direction:column;padding:0;margin:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-left:auto;margin-bottom:1.5rem;margin-right:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn.active ul,.fixed-action-btn ul a.btn.shown{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child,.dropdown-menu>li:first-child .dropdown-item{border-top-right-radius:.5rem;border-top-left-radius:.5rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child,.dropdown-menu>li:last-child .dropdown-item{border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item.active,.dropdown-item:active,.dropdown-item:focus,.dropdown-item:hover{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none!important;-webkit-animation:unset!important;animation:unset!important}}@-webkit-keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{0%{opacity:1}to{opacity:0}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group-vertical.active,.btn-group-vertical.active:focus,.btn-group-vertical.focus,.btn-group-vertical:active,.btn-group-vertical:active:focus,.btn-group-vertical:focus,.btn-group-vertical:hover,.btn-group.active,.btn-group.active:focus,.btn-group.focus,.btn-group:active,.btn-group:active:focus,.btn-group:focus,.btn-group:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group-vertical.disabled,.btn-group-vertical:disabled,.btn-group.disabled,.btn-group:disabled,fieldset:disabled .btn-group,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group>.btn,.btn-group>.btn-group{box-shadow:none}.btn-group-vertical>.btn-link:first-child,.btn-group>.btn-link:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-link:last-child,.btn-group>.btn-link:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border:solid transparent;border-width:0 0 2px;border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px}.nav-tabs .nav-link:hover{background-color:#f5f5f5;border-color:transparent}.nav-tabs .nav-link:focus{border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#1266f1;border-color:#1266f1}.nav-pills{margin-right:-.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-left:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-dark .navbar-toggler-icon,.navbar-light .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.card-header{background-color:hsla(0,0%,100%,0)}.card-body[class*=bg-]{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.card-footer{background-color:hsla(0,0%,100%,0)}.card-img-left{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.navbar .breadcrumb{background-color:transparent;margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:focus,.navbar .breadcrumb .breadcrumb-item a:hover{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{font-size:.9rem;background-color:transparent;border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link,.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{background-color:#1266f1;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:not(:first-child) .page-link{margin-right:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-circle .page-item:first-child .page-link,.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-right:.841rem;padding-left:.841rem}.pagination-circle.pagination-lg .page-link{padding-right:1.399414rem;padding-left:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-right:.696rem;padding-left:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-right:-.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-.1rem;margin-right:-.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action,.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:focus,.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content,.toast{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{color:#fff;padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:transparent;color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:none;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:transparent;box-shadow:none;color:#1266f1;font-weight:600;border-right:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0,0,.15,1),cubic-bezier(0,0,.15,1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle,rgba(18,102,241,.2) 0,rgba(18,102,241,.3) 40%,rgba(18,102,241,.4) 50%,rgba(18,102,241,.5) 60%,rgba(18,102,241,0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle,rgba(178,60,253,.2) 0,rgba(178,60,253,.3) 40%,rgba(178,60,253,.4) 50%,rgba(178,60,253,.5) 60%,rgba(178,60,253,0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle,rgba(0,183,74,.2) 0,rgba(0,183,74,.3) 40%,rgba(0,183,74,.4) 50%,rgba(0,183,74,.5) 60%,rgba(0,183,74,0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle,rgba(57,192,237,.2) 0,rgba(57,192,237,.3) 40%,rgba(57,192,237,.4) 50%,rgba(57,192,237,.5) 60%,rgba(57,192,237,0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle,rgba(255,169,0,.2) 0,rgba(255,169,0,.3) 40%,rgba(255,169,0,.4) 50%,rgba(255,169,0,.5) 60%,rgba(255,169,0,0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle,rgba(249,49,84,.2) 0,rgba(249,49,84,.3) 40%,rgba(249,49,84,.4) 50%,rgba(249,49,84,.5) 60%,rgba(249,49,84,0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,97.6%,.2) 0,hsla(0,0%,97.6%,.3) 40%,hsla(0,0%,97.6%,.4) 50%,hsla(0,0%,97.6%,.5) 60%,hsla(0,0%,97.6%,0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle,rgba(38,38,38,.2) 0,rgba(38,38,38,.3) 40%,rgba(38,38,38,.4) 50%,rgba(38,38,38,.5) 60%,rgba(38,38,38,0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.3) 40%,hsla(0,0%,100%,.4) 50%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle,rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,transparent 70%)}.range{position:relative}.range .thumb{height:30px;width:30px;top:-35px;margin-right:-15px;text-align:center;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb,.range .thumb:after{position:absolute;display:block;border-radius:50% 50% 0 50%}.range .thumb:after{content:"";transform:translateX(50%);width:100%;height:100%;top:0;transform:rotate(45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-next-icon:after{content:""}.carousel-control-next-icon:after,.carousel-control-prev-icon:after{font-weight:700;font-family:Font Awesome\ 6 Pro,Font Awesome\ 6 Free;font-size:1.7rem}.carousel-control-prev-icon:after{content:""} +/*# sourceMappingURL=mdb.rtl.min.css.map */ \ No newline at end of file diff --git a/css/mdb.rtl.min.css.map b/css/mdb.rtl.min.css.map new file mode 100644 index 000000000..115926f6c --- /dev/null +++ b/css/mdb.rtl.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["","mdb.rtl.min.css"],"names":[],"mappings":"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","file":"mdb.rtl.min.css","sourcesContent":["\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}",":root{--mdb-blue: #0d6efd;--mdb-indigo: #6610f2;--mdb-purple: #6f42c1;--mdb-pink: #d63384;--mdb-red: #dc3545;--mdb-orange: #fd7e14;--mdb-yellow: #ffc107;--mdb-green: #198754;--mdb-teal: #20c997;--mdb-cyan: #0dcaf0;--mdb-white: #fff;--mdb-gray: #757575;--mdb-gray-dark: #4f4f4f;--mdb-gray-100: #f5f5f5;--mdb-gray-200: #eeeeee;--mdb-gray-300: #e0e0e0;--mdb-gray-400: #bdbdbd;--mdb-gray-500: #9e9e9e;--mdb-gray-600: #757575;--mdb-gray-700: #616161;--mdb-gray-800: #4f4f4f;--mdb-gray-900: #262626;--mdb-primary: #1266f1;--mdb-secondary: #b23cfd;--mdb-success: #00b74a;--mdb-info: #39c0ed;--mdb-warning: #ffa900;--mdb-danger: #f93154;--mdb-light: #f9f9f9;--mdb-dark: #262626;--mdb-white: #fff;--mdb-black: #000;--mdb-primary-rgb: 18, 102, 241;--mdb-secondary-rgb: 178, 60, 253;--mdb-success-rgb: 0, 183, 74;--mdb-info-rgb: 57, 192, 237;--mdb-warning-rgb: 255, 169, 0;--mdb-danger-rgb: 249, 49, 84;--mdb-light-rgb: 249, 249, 249;--mdb-dark-rgb: 38, 38, 38;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-white-rgb: 255, 255, 255;--mdb-black-rgb: 0, 0, 0;--mdb-body-color-rgb: 79, 79, 79;--mdb-body-bg-rgb: 255, 255, 255;--mdb-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--mdb-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--mdb-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--mdb-body-font-family: var(--mdb-font-roboto);--mdb-body-font-size: 1rem;--mdb-body-font-weight: 400;--mdb-body-line-height: 1.6;--mdb-body-color: #4f4f4f;--mdb-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--mdb-body-font-family);font-size:var(--mdb-body-font-size);font-weight:var(--mdb-body-font-weight);line-height:var(--mdb-body-line-height);color:var(--mdb-body-color);text-align:var(--mdb-body-text-align);background-color:var(--mdb-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + 0.6vw)}@media(min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + 0.3vw)}@media(min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-mdb-original-title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}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-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#1266f1;text-decoration:underline}a:hover{color:#0e52c1}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--mdb-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:0.875em;color:#fff;background-color:#262626;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#757575;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}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,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}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}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#757575}.blockquote-footer::before{content:\"— \"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:#757575}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-left:var(--mdb-gutter-x, 0.75rem);padding-right:var(--mdb-gutter-x, 0.75rem);margin-left:auto;margin-right:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--mdb-gutter-x: 1.5rem;--mdb-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--mdb-gutter-y));margin-left:calc(-0.5*var(--mdb-gutter-x));margin-right:calc(-0.5*var(--mdb-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--mdb-gutter-x)*.5);padding-right:calc(var(--mdb-gutter-x)*.5);margin-top:var(--mdb-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--mdb-gutter-x: 0}.g-0,.gy-0{--mdb-gutter-y: 0}.g-1,.gx-1{--mdb-gutter-x: 0.25rem}.g-1,.gy-1{--mdb-gutter-y: 0.25rem}.g-2,.gx-2{--mdb-gutter-x: 0.5rem}.g-2,.gy-2{--mdb-gutter-y: 0.5rem}.g-3,.gx-3{--mdb-gutter-x: 1rem}.g-3,.gy-3{--mdb-gutter-y: 1rem}.g-4,.gx-4{--mdb-gutter-x: 1.5rem}.g-4,.gy-4{--mdb-gutter-y: 1.5rem}.g-5,.gx-5{--mdb-gutter-x: 3rem}.g-5,.gy-5{--mdb-gutter-y: 3rem}@media(min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--mdb-gutter-x: 0}.g-sm-0,.gy-sm-0{--mdb-gutter-y: 0}.g-sm-1,.gx-sm-1{--mdb-gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--mdb-gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--mdb-gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--mdb-gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--mdb-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--mdb-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--mdb-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--mdb-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--mdb-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--mdb-gutter-y: 3rem}}@media(min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--mdb-gutter-x: 0}.g-md-0,.gy-md-0{--mdb-gutter-y: 0}.g-md-1,.gx-md-1{--mdb-gutter-x: 0.25rem}.g-md-1,.gy-md-1{--mdb-gutter-y: 0.25rem}.g-md-2,.gx-md-2{--mdb-gutter-x: 0.5rem}.g-md-2,.gy-md-2{--mdb-gutter-y: 0.5rem}.g-md-3,.gx-md-3{--mdb-gutter-x: 1rem}.g-md-3,.gy-md-3{--mdb-gutter-y: 1rem}.g-md-4,.gx-md-4{--mdb-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--mdb-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--mdb-gutter-x: 3rem}.g-md-5,.gy-md-5{--mdb-gutter-y: 3rem}}@media(min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--mdb-gutter-x: 0}.g-lg-0,.gy-lg-0{--mdb-gutter-y: 0}.g-lg-1,.gx-lg-1{--mdb-gutter-x: 0.25rem}.g-lg-1,.gy-lg-1{--mdb-gutter-y: 0.25rem}.g-lg-2,.gx-lg-2{--mdb-gutter-x: 0.5rem}.g-lg-2,.gy-lg-2{--mdb-gutter-y: 0.5rem}.g-lg-3,.gx-lg-3{--mdb-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--mdb-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--mdb-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--mdb-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--mdb-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--mdb-gutter-y: 3rem}}@media(min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--mdb-gutter-x: 0}.g-xl-0,.gy-xl-0{--mdb-gutter-y: 0}.g-xl-1,.gx-xl-1{--mdb-gutter-x: 0.25rem}.g-xl-1,.gy-xl-1{--mdb-gutter-y: 0.25rem}.g-xl-2,.gx-xl-2{--mdb-gutter-x: 0.5rem}.g-xl-2,.gy-xl-2{--mdb-gutter-y: 0.5rem}.g-xl-3,.gx-xl-3{--mdb-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--mdb-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--mdb-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--mdb-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--mdb-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--mdb-gutter-y: 3rem}}@media(min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--mdb-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--mdb-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--mdb-gutter-x: 0.25rem}.g-xxl-1,.gy-xxl-1{--mdb-gutter-y: 0.25rem}.g-xxl-2,.gx-xxl-2{--mdb-gutter-x: 0.5rem}.g-xxl-2,.gy-xxl-2{--mdb-gutter-y: 0.5rem}.g-xxl-3,.gx-xxl-3{--mdb-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--mdb-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--mdb-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--mdb-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--mdb-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--mdb-gutter-y: 3rem}}.table{--mdb-table-bg: transparent;--mdb-table-accent-bg: transparent;--mdb-table-striped-color: #212529;--mdb-table-striped-bg: rgba(0, 0, 0, 0.02);--mdb-table-active-color: #212529;--mdb-table-active-bg: rgba(0, 0, 0, 0.1);--mdb-table-hover-color: #212529;--mdb-table-hover-bg: rgba(0, 0, 0, 0.025);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#e0e0e0}.table>:not(caption)>*>*{padding:1rem 1.4rem;background-color:var(--mdb-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--mdb-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid inherit}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--mdb-table-accent-bg: var(--mdb-table-striped-bg);color:var(--mdb-table-striped-color)}.table-active{--mdb-table-accent-bg: var(--mdb-table-active-bg);color:var(--mdb-table-active-color)}.table-hover>tbody>tr:hover>*{--mdb-table-accent-bg: var(--mdb-table-hover-bg);color:var(--mdb-table-hover-color)}.table-primary{--mdb-table-bg: #d0e0fc;--mdb-table-striped-bg: #c6d5ef;--mdb-table-striped-color: #000;--mdb-table-active-bg: #bbcae3;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c0cfe9;--mdb-table-hover-color: #000;color:#000;border-color:#bbcae3}.table-secondary{--mdb-table-bg: #f0d8ff;--mdb-table-striped-bg: #e4cdf2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #d8c2e6;--mdb-table-active-color: #000;--mdb-table-hover-bg: #dec8ec;--mdb-table-hover-color: #000;color:#000;border-color:#d8c2e6}.table-success{--mdb-table-bg: #ccf1db;--mdb-table-striped-bg: #c2e5d0;--mdb-table-striped-color: #000;--mdb-table-active-bg: #b8d9c5;--mdb-table-active-color: #000;--mdb-table-hover-bg: #bddfcb;--mdb-table-hover-color: #000;color:#000;border-color:#b8d9c5}.table-info{--mdb-table-bg: #d7f2fb;--mdb-table-striped-bg: #cce6ee;--mdb-table-striped-color: #000;--mdb-table-active-bg: #c2dae2;--mdb-table-active-color: #000;--mdb-table-hover-bg: #c7e0e8;--mdb-table-hover-color: #000;color:#000;border-color:#c2dae2}.table-warning{--mdb-table-bg: #ffeecc;--mdb-table-striped-bg: #f2e2c2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e6d6b8;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ecdcbd;--mdb-table-hover-color: #000;color:#000;border-color:#e6d6b8}.table-danger{--mdb-table-bg: #fed6dd;--mdb-table-striped-bg: #f1cbd2;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e5c1c7;--mdb-table-active-color: #000;--mdb-table-hover-bg: #ebc6cc;--mdb-table-hover-color: #000;color:#000;border-color:#e5c1c7}.table-light{--mdb-table-bg: #f9f9f9;--mdb-table-striped-bg: #ededed;--mdb-table-striped-color: #000;--mdb-table-active-bg: #e0e0e0;--mdb-table-active-color: #000;--mdb-table-hover-bg: #e6e6e6;--mdb-table-hover-color: #000;color:#000;border-color:#e0e0e0}.table-dark{--mdb-table-bg: #262626;--mdb-table-striped-bg: #313131;--mdb-table-striped-color: #fff;--mdb-table-active-bg: #3c3c3c;--mdb-table-active-color: #fff;--mdb-table-hover-bg: #363636;--mdb-table-hover-color: #fff;color:#fff;border-color:#3c3c3c}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;color:rgba(0,0,0,.6)}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6;color:rgba(0,0,0,.6)}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.775rem}.form-text{margin-top:.25rem;font-size:0.875em;color:#757575}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-clip:padding-box;border:1px solid #bdbdbd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:all .2s linear}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#4f4f4f;background-color:#fff;border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-control::-webkit-date-and-time-value{height:1.6em}.form-control::-moz-placeholder{color:#757575;opacity:1}.form-control::placeholder{color:#757575;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#4f4f4f;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.6;color:#4f4f4f;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-left:0;padding-right:0}.form-control-sm{min-height:calc(1.6em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.6em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-0.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.6em + 0.75rem + 2px)}textarea.form-control-sm{min-height:calc(1.6em + 0.5rem + 2px)}textarea.form-control-lg{min-height:calc(1.6em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.6em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.6em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem .75rem .375rem 2.25rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;background-color:#fff;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:left .75rem center;background-size:16px 12px;border:1px solid #bdbdbd;border-radius:.25rem;transition:all .2s linear;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-select[multiple],.form-select[size]:not([size=\"1\"]){padding-left:.75rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #4f4f4f}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-right:.5rem;font-size:0.775rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-right:1rem;font-size:1rem;border-radius:.3rem}.form-check{display:block;min-height:1.6rem;padding-right:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:right;margin-right:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.3em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#1266f1;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.form-check-input:checked{background-color:#1266f1;border-color:#1266f1}.form-check-input:checked[type=checkbox]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\")}.form-check-input:checked[type=radio]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-input[type=checkbox]:indeterminate{background-color:#1266f1;border-color:#757575;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-right:2.5em}.form-switch .form-check-input{width:2em;margin-right:-2.5em;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");background-position:right center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%231266f1'/%3e%3c/svg%3e\")}.form-switch .form-check-input:checked{background-position:left center;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-inline{display:inline-block;margin-left:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:rgba(0,0,0,0);-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,102,241,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#1266f1;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b8d1fb}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1266f1;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b8d1fb}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#e0e0e0;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#9e9e9e}.form-range:disabled::-moz-range-thumb{background-color:#9e9e9e}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;right:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:100% 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(-0.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(-0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(-0.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.6;color:#4f4f4f;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #bdbdbd;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.775rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-left:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#00b74a}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(0,183,74,.9);border-radius:.25rem}.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:#00b74a;padding-left:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:left calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) left calc(0.4em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size=\"1\"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size=\"1\"]{padding-left:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300b74a' d='M2.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'/%3e%3c/svg%3e\");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#f93154}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#000;background-color:rgba(249,49,84,.9);border-radius:.25rem}.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:#f93154;padding-left:calc(1.6em + 0.75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:left calc(0.4em + 0.1875rem) center;background-size:calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:calc(1.6em + 0.75rem);background-position:top calc(0.4em + 0.1875rem) left calc(0.4em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size=\"1\"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size=\"1\"]{padding-left:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f93154'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f93154' stroke='none'/%3e%3c/svg%3e\");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(0.8em + 0.375rem) calc(0.8em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#4f4f4f;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:rgba(0,0,0,0);border:.125rem solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:0.75rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#4f4f4f}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0f57cd;border-color:#0e52c1}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0f57cd;border-color:#0e52c1;box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0e52c1;border-color:#0e4db5}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,125,243,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-secondary{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-secondary:hover{color:#000;background-color:#be59fd;border-color:#ba50fd}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#000;background-color:#be59fd;border-color:#ba50fd;box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#c163fd;border-color:#ba50fd}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(151,51,215,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-success{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-success:hover{color:#000;background-color:#26c265;border-color:#1abe5c}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#26c265;border-color:#1abe5c;box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#33c56e;border-color:#1abe5c}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(0,156,63,.5)}.btn-success:disabled,.btn-success.disabled{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-info{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-info:hover{color:#000;background-color:#57c9f0;border-color:#4dc6ef}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#57c9f0;border-color:#4dc6ef;box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#61cdf1;border-color:#4dc6ef}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(48,163,201,.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-warning{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-warning:hover{color:#000;background-color:#ffb626;border-color:#ffb21a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffb626;border-color:#ffb21a;box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffba33;border-color:#ffb21a}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,144,0,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-danger{color:#000;background-color:#f93154;border-color:#f93154}.btn-danger:hover{color:#000;background-color:#fa506e;border-color:#fa4665}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#fa506e;border-color:#fa4665;box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#fa5a76;border-color:#fa4665}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,42,71,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#000;background-color:#f93154;border-color:#f93154}.btn-light{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-light:hover{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#fafafa;border-color:#fafafa;box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#fafafa;border-color:#fafafa}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(212,212,212,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626;border-color:#262626}.btn-dark:hover{color:#fff;background-color:#202020;border-color:#1e1e1e}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#202020;border-color:#1e1e1e;box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1e1e1e;border-color:#1d1d1d}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(71,71,71,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626;border-color:#262626}.btn-white{color:#000;background-color:#fff;border-color:#fff}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,217,217,.5)}.btn-white:disabled,.btn-white.disabled{color:#000;background-color:#fff;border-color:#fff}.btn-black{color:#fff;background-color:#000;border-color:#000}.btn-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-black,.btn-black:focus{color:#fff;background-color:#000;border-color:#000;box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#1266f1;border-color:#1266f1}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(18,102,241,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#b23cfd;border-color:#b23cfd}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(178,60,253,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#000;background-color:#00b74a;border-color:#00b74a}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,183,74,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#39c0ed;border-color:#39c0ed}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(57,192,237,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffa900;border-color:#ffa900}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,169,0,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#000;background-color:#f93154;border-color:#f93154}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,49,84,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f9f9f9;border-color:#f9f9f9}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(249,249,249,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#fff;background-color:#262626;border-color:#262626}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#262626;border-color:#262626}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(38,38,38,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white,.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#000;background-color:#fff;border-color:#fff}.btn-check:checked+.btn-outline-white:focus,.btn-check:active+.btn-outline-white:focus,.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#fff;background-color:#000;border-color:#000}.btn-check:focus+.btn-outline-black,.btn-outline-black:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black,.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#fff;background-color:#000;border-color:#000}.btn-check:checked+.btn-outline-black:focus,.btn-check:active+.btn-outline-black:focus,.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,0,0,.5)}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000;background-color:rgba(0,0,0,0)}.btn-link{font-weight:400;color:#1266f1;text-decoration:underline}.btn-link:hover{color:#0e52c1}.btn-link:disabled,.btn-link.disabled{color:#757575}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:0.875rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.75rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-left:.3em solid rgba(0,0,0,0);border-bottom:0;border-right:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-right:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:0.875rem;color:#212529;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.5rem}.dropdown-menu[data-mdb-popper]{top:100%;right:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-mdb-popper]{left:0;right:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-mdb-popper]{left:0;right:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-mdb-popper]{left:auto;right:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-mdb-popper]{left:0;right:auto}}.dropup .dropdown-menu[data-mdb-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:0;border-left:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-right:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-menu[data-mdb-popper]{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-left:0;border-bottom:.3em solid rgba(0,0,0,0);border-right:.3em solid}.dropend .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-mdb-popper]{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\"}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid rgba(0,0,0,0);border-left:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-right:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.5rem 1rem;clear:both;font-weight:400;color:#262626;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:#222;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1266f1}.dropdown-item.disabled,.dropdown-item:disabled{color:#9e9e9e;pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:0.875rem;color:#757575;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem 1rem;color:#262626}.dropdown-menu-dark{color:#e0e0e0;background-color:#4f4f4f;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e0e0e0}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#1266f1}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#9e9e9e}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e0e0e0}.dropdown-menu-dark .dropdown-header{color:#9e9e9e}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-right:-0.125rem}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-right:0}.dropstart .dropdown-toggle-split::before{margin-left:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;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:-0.125rem}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-top-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#1266f1;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0e52c1}.nav-link.disabled{color:#757575;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #e0e0e0}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid rgba(0,0,0,0);border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#eee #eee #e0e0e0;isolation:isolate}.nav-tabs .nav-link.disabled{color:#757575;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#616161;background-color:#fff;border-color:#e0e0e0 #e0e0e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3rem;padding-bottom:.3rem;margin-left:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--mdb-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-left:0;border-right:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(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,.55)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.5rem}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1.5rem 1.5rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-0.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-right:1.5rem}.card-header{padding:.75rem 1.5rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0}.card-footer{padding:.75rem 1.5rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.5rem - 1px) calc(0.5rem - 1px)}.card-header-tabs{margin-left:-0.75rem;margin-bottom:-0.75rem;margin-right:-0.75rem;border-bottom:0}.card-header-pills{margin-left:-0.75rem;margin-right:-0.75rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1.5rem;border-radius:calc(0.5rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-left-radius:0}.card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-right-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:right;padding-left:.5rem;color:#757575;content:var(--mdb-breadcrumb-divider, \"/\")}.breadcrumb-item.active{color:#757575}.pagination{display:flex;padding-right:0;list-style:none}.page-link{position:relative;display:block;color:#212529;text-decoration:none;background-color:#fff;border:1px solid #e0e0e0;transition:all .3s linear}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#212529;background-color:#eee;border-color:#e0e0e0}.page-link:focus{z-index:3;color:#0e52c1;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25)}.page-item:not(:first-child) .page-link{margin-right:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#1266f1;border-color:#1266f1}.page-item.disabled .page-link{color:#757575;pointer-events:none;background-color:#fff;border-color:#e0e0e0}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:0.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.27rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1.25rem 1.5rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:.5rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-left:4.5rem}.alert-dismissible .btn-close{position:absolute;top:0;left:0;z-index:2;padding:1.5625rem 1.5rem}.alert-primary{color:#0b3d91;background-color:#d0e0fc;border-color:#b8d1fb}.alert-primary .alert-link{color:#093174}.alert-secondary{color:#6b2498;background-color:#f0d8ff;border-color:#e8c5fe}.alert-secondary .alert-link{color:#561d7a}.alert-success{color:#006e2c;background-color:#ccf1db;border-color:#b3e9c9}.alert-success .alert-link{color:#005823}.alert-info{color:#22738e;background-color:#d7f2fb;border-color:#c4ecfa}.alert-info .alert-link{color:#1b5c72}.alert-warning{color:#640;background-color:#fec;border-color:#ffe5b3}.alert-warning .alert-link{color:#523600}.alert-danger{color:#951d32;background-color:#fed6dd;border-color:#fdc1cc}.alert-danger .alert-link{color:#771728}.alert-light{color:#646464;background-color:#fefefe;border-color:#fdfdfd}.alert-light .alert-link{color:#505050}.alert-dark{color:#171717;background-color:#d4d4d4;border-color:#bebebe}.alert-dark .alert-link{color:#121212}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-black{color:#000;background-color:#ccc;border-color:#b3b3b3}.alert-black .alert-link{color:#000}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.15rem 1.5rem;font-size:1rem;color:#4f4f4f;text-align:right;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#1266f1;background-color:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231266f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-right:auto;content:\"\";background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#1266f1;outline:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.accordion-item:first-of-type .accordion-button{border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.accordion-body{padding:1.15rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-left:0;border-right:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:4px}}@keyframes progress-bar-stripes{0%{background-position-x:4px}}.progress{display:flex;height:4px;overflow:hidden;font-size:0.75rem;background-color:#eee;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1266f1;transition:width .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:4px 4px}.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}}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:\"\"}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.5rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, \".\") \". \";counter-increment:section}.list-group-item-action{width:100%;color:#616161;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#616161;text-decoration:none;background-color:#f5f5f5}.list-group-item-action:active{color:#4f4f4f;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1.5rem;color:#262626;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:inherit;border-top-left-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#757575;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1266f1;border-color:#1266f1}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-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-right-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.5rem;border-top-left-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.5rem;border-bottom-right-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-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:#0b3d91;background-color:#d0e0fc}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#0b3d91;background-color:#bbcae3}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b3d91;border-color:#0b3d91}.list-group-item-secondary{color:#6b2498;background-color:#f0d8ff}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#6b2498;background-color:#d8c2e6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b2498;border-color:#6b2498}.list-group-item-success{color:#006e2c;background-color:#ccf1db}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#006e2c;background-color:#b8d9c5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006e2c;border-color:#006e2c}.list-group-item-info{color:#22738e;background-color:#d7f2fb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#22738e;background-color:#c2dae2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#22738e;border-color:#22738e}.list-group-item-warning{color:#640;background-color:#fec}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#640;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#640;border-color:#640}.list-group-item-danger{color:#951d32;background-color:#fed6dd}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#951d32;background-color:#e5c1c7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#951d32;border-color:#951d32}.list-group-item-light{color:#646464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#646464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#646464;border-color:#646464}.list-group-item-dark{color:#171717;background-color:#d4d4d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#171717;background-color:#bfbfbf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#171717;border-color:#171717}.list-group-item-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:hover,.list-group-item-white.list-group-item-action:focus{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-black{color:#000;background-color:#ccc}.list-group-item-black.list-group-item-action:hover,.list-group-item-black.list-group-item-action:focus{color:#000;background-color:#b8b8b8}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#000;border-color:#000}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(18,102,241,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:0.875rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);border-radius:.5rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#757575;background-color:#fff;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.toast-header .btn-close{margin-left:-0.375rem;margin-right:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;right:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #e0e0e0;border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-0.5rem auto -0.5rem -0.5rem}.modal-title{margin-bottom:0;line-height:1.6}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e0e0e0;border-bottom-left-radius:calc(0.5rem - 1px);border-bottom-right-radius:calc(0.5rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.popover{position:absolute;top:0;left:0;z-index:1080;display:block;max-width:276px;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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,.2);border-radius:.5rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-0.5rem;content:\"\";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-right-radius:calc(0.5rem - 1px);border-top-left-radius:calc(0.5rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#4f4f4f}.carousel{position:relative}.carousel.pointer-event{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:right;width:100%;margin-left:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .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-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .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:.9}.carousel-control-prev{right:0}.carousel-control-next{left:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-next-icon{background-image:none}.carousel-control-prev-icon{background-image:none}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:2;display:flex;justify-content:center;padding:0;margin-left:15%;margin-bottom:1rem;margin-right:15%;list-style:none}.carousel-indicators [data-mdb-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-mdb-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:1.25rem;right:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-mdb-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentColor;border-left-color:rgba(0,0,0,0);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:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;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}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-0.5rem;margin-left:-0.5rem;margin-bottom:-0.5rem}.offcanvas-title{margin-bottom:0;line-height:1.6}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-end{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-top{top:0;left:0;right:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{left:0;right:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.tooltip{position:absolute;z-index:1090;display:block;margin:0;font-family:var(--mdb-font-roboto);font-style:normal;font-weight:400;line-height:1.6;text-align:right;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:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:\"\";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.clearfix::after{display:block;clear:both;content:\"\"}.link-primary{color:#1266f1}.link-primary:hover,.link-primary:focus{color:#0e52c1}.link-secondary{color:#b23cfd}.link-secondary:hover,.link-secondary:focus{color:#c163fd}.link-success{color:#00b74a}.link-success:hover,.link-success:focus{color:#33c56e}.link-info{color:#39c0ed}.link-info:hover,.link-info:focus{color:#61cdf1}.link-warning{color:#ffa900}.link-warning:hover,.link-warning:focus{color:#ffba33}.link-danger{color:#f93154}.link-danger:hover,.link-danger:focus{color:#fa5a76}.link-light{color:#f9f9f9}.link-light:hover,.link-light:focus{color:#fafafa}.link-dark{color:#262626}.link-dark:hover,.link-dark:focus{color:#1e1e1e}.link-white{color:#fff}.link-white:hover,.link-white:focus{color:#fff}.link-black{color:#000}.link-black:hover,.link-black:focus{color:#000}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--mdb-aspect-ratio);content:\"\"}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--mdb-aspect-ratio: 100%}.ratio-4x3{--mdb-aspect-ratio: 75%}.ratio-16x9{--mdb-aspect-ratio: 56.25%}.ratio-21x9{--mdb-aspect-ratio: 42.8571428571%}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:\"\"}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}.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}.float-start{float:right !important}.float-end{float:left !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-5{opacity:.05 !important}.opacity-10{opacity:.1 !important}.opacity-15{opacity:.15 !important}.opacity-20{opacity:.2 !important}.opacity-25{opacity:.25 !important}.opacity-30{opacity:.3 !important}.opacity-35{opacity:.35 !important}.opacity-40{opacity:.4 !important}.opacity-45{opacity:.45 !important}.opacity-50{opacity:.5 !important}.opacity-55{opacity:.55 !important}.opacity-60{opacity:.6 !important}.opacity-65{opacity:.65 !important}.opacity-70{opacity:.7 !important}.opacity-75{opacity:.75 !important}.opacity-80{opacity:.8 !important}.opacity-85{opacity:.85 !important}.opacity-90{opacity:.9 !important}.opacity-95{opacity:.95 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.shadow-0{box-shadow:none !important}.shadow-1{box-shadow:0 1px 2px 0 rgba(0,0,0,.07) !important}.shadow-2{box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05) !important}.shadow-3{box-shadow:0 4px 6px -1px rgba(0,0,0,.07),0 2px 4px -1px rgba(0,0,0,.05) !important}.shadow-4{box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05) !important}.shadow-5{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05) !important}.shadow-6{box-shadow:0 25px 50px -12px rgba(0,0,0,.21) !important}.shadow-1-soft{box-shadow:0 1px 5px 0 rgba(0,0,0,.05) !important}.shadow-2-soft{box-shadow:0 2px 10px 0 rgba(0,0,0,.05) !important}.shadow-3-soft{box-shadow:0 5px 15px 0 rgba(0,0,0,.05) !important}.shadow-4-soft{box-shadow:0 10px 20px 0 rgba(0,0,0,.05) !important}.shadow-5-soft{box-shadow:0 15px 30px 0 rgba(0,0,0,.05) !important}.shadow-6-soft{box-shadow:0 20px 40px 0 rgba(0,0,0,.05) !important}.shadow-1-strong{box-shadow:0 1px 5px 0 rgba(0,0,0,.21) !important}.shadow-2-strong{box-shadow:0 2px 10px 0 rgba(0,0,0,.21) !important}.shadow-3-strong{box-shadow:0 5px 15px 0 rgba(0,0,0,.21) !important}.shadow-4-strong{box-shadow:0 10px 20px 0 rgba(0,0,0,.21) !important}.shadow-5-strong{box-shadow:0 15px 30px 0 rgba(0,0,0,.21) !important}.shadow-6-strong{box-shadow:0 20px 40px 0 rgba(0,0,0,.21) !important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06) !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}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{right:0 !important}.start-50{right:50% !important}.start-100{right:100% !important}.end-0{left:0 !important}.end-50{left:50% !important}.end-100{left:100% !important}.translate-middle{transform:translate(50%, -50%) !important}.translate-middle-x{transform:translateX(50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #e0e0e0 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #e0e0e0 !important}.border-top-0{border-top:0 !important}.border-end{border-left:1px solid #e0e0e0 !important}.border-end-0{border-left:0 !important}.border-bottom{border-bottom:1px solid #e0e0e0 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-right:1px solid #e0e0e0 !important}.border-start-0{border-right:0 !important}.border-primary{border-color:#1266f1 !important}.border-secondary{border-color:#b23cfd !important}.border-success{border-color:#00b74a !important}.border-info{border-color:#39c0ed !important}.border-warning{border-color:#ffa900 !important}.border-danger{border-color:#f93154 !important}.border-light{border-color:#f9f9f9 !important}.border-dark{border-color:#262626 !important}.border-white{border-color:#fff !important}.border-black{border-color:#000 !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !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}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !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}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-3{margin-left:1rem !important;margin-right:1rem !important}.mx-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-5{margin-left:3rem !important;margin-right:3rem !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-left:0 !important}.me-1{margin-left:.25rem !important}.me-2{margin-left:.5rem !important}.me-3{margin-left:1rem !important}.me-4{margin-left:1.5rem !important}.me-5{margin-left:3rem !important}.me-auto{margin-left:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.mb-6{margin-bottom:3.5rem !important}.mb-7{margin-bottom:4rem !important}.mb-8{margin-bottom:5rem !important}.mb-9{margin-bottom:6rem !important}.mb-10{margin-bottom:8rem !important}.mb-11{margin-bottom:10rem !important}.mb-12{margin-bottom:12rem !important}.mb-13{margin-bottom:14rem !important}.mb-14{margin-bottom:16rem !important}.ms-0{margin-right:0 !important}.ms-1{margin-right:.25rem !important}.ms-2{margin-right:.5rem !important}.ms-3{margin-right:1rem !important}.ms-4{margin-right:1.5rem !important}.ms-5{margin-right:3rem !important}.ms-auto{margin-right:auto !important}.m-n1{margin:-0.25rem !important}.m-n2{margin:-0.5rem !important}.m-n3{margin:-1rem !important}.m-n4{margin:-1.5rem !important}.m-n5{margin:-3rem !important}.mx-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-n1{margin-top:-0.25rem !important}.mt-n2{margin-top:-0.5rem !important}.mt-n3{margin-top:-1rem !important}.mt-n4{margin-top:-1.5rem !important}.mt-n5{margin-top:-3rem !important}.me-n1{margin-left:-0.25rem !important}.me-n2{margin-left:-0.5rem !important}.me-n3{margin-left:-1rem !important}.me-n4{margin-left:-1.5rem !important}.me-n5{margin-left:-3rem !important}.mb-n1{margin-bottom:-0.25rem !important}.mb-n2{margin-bottom:-0.5rem !important}.mb-n3{margin-bottom:-1rem !important}.mb-n4{margin-bottom:-1.5rem !important}.mb-n5{margin-bottom:-3rem !important}.ms-n1{margin-right:-0.25rem !important}.ms-n2{margin-right:-0.5rem !important}.ms-n3{margin-right:-1rem !important}.ms-n4{margin-right:-1.5rem !important}.ms-n5{margin-right:-3rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-left:0 !important;padding-right:0 !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-3{padding-left:1rem !important;padding-right:1rem !important}.px-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-5{padding-left:3rem !important;padding-right:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-left:0 !important}.pe-1{padding-left:.25rem !important}.pe-2{padding-left:.5rem !important}.pe-3{padding-left:1rem !important}.pe-4{padding-left:1.5rem !important}.pe-5{padding-left:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-right:0 !important}.ps-1{padding-right:.25rem !important}.ps-2{padding-right:.5rem !important}.ps-3{padding-right:1rem !important}.ps-4{padding-right:1.5rem !important}.ps-5{padding-right:3rem !important}.font-monospace{font-family:var(--mdb-font-monospace) !important}.fs-1{font-size:calc(1.375rem + 1.5vw) !important}.fs-2{font-size:calc(1.325rem + 0.9vw) !important}.fs-3{font-size:calc(1.3rem + 0.6vw) !important}.fs-4{font-size:calc(1.275rem + 0.3vw) !important}.fs-5{font-size:1.25rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.6 !important}.lh-lg{line-height:2 !important}.text-start{text-align:right !important}.text-end{text-align:left !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-primary{--mdb-text-opacity: 1;color:rgba(var(--mdb-primary-rgb), var(--mdb-text-opacity)) !important}.text-secondary{--mdb-text-opacity: 1;color:rgba(var(--mdb-secondary-rgb), var(--mdb-text-opacity)) !important}.text-success{--mdb-text-opacity: 1;color:rgba(var(--mdb-success-rgb), var(--mdb-text-opacity)) !important}.text-info{--mdb-text-opacity: 1;color:rgba(var(--mdb-info-rgb), var(--mdb-text-opacity)) !important}.text-warning{--mdb-text-opacity: 1;color:rgba(var(--mdb-warning-rgb), var(--mdb-text-opacity)) !important}.text-danger{--mdb-text-opacity: 1;color:rgba(var(--mdb-danger-rgb), var(--mdb-text-opacity)) !important}.text-light{--mdb-text-opacity: 1;color:rgba(var(--mdb-light-rgb), var(--mdb-text-opacity)) !important}.text-dark{--mdb-text-opacity: 1;color:rgba(var(--mdb-dark-rgb), var(--mdb-text-opacity)) !important}.text-white{--mdb-text-opacity: 1;color:rgba(var(--mdb-white-rgb), var(--mdb-text-opacity)) !important}.text-black{--mdb-text-opacity: 1;color:rgba(var(--mdb-black-rgb), var(--mdb-text-opacity)) !important}.text-body{--mdb-text-opacity: 1;color:rgba(var(--mdb-body-color-rgb), var(--mdb-text-opacity)) !important}.text-muted{--mdb-text-opacity: 1;color:#757575 !important}.text-black-50{--mdb-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--mdb-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-reset{--mdb-text-opacity: 1;color:inherit !important}.text-opacity-25{--mdb-text-opacity: 0.25}.text-opacity-50{--mdb-text-opacity: 0.5}.text-opacity-75{--mdb-text-opacity: 0.75}.text-opacity-100{--mdb-text-opacity: 1}.bg-primary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-primary-rgb), var(--mdb-bg-opacity)) !important}.bg-secondary{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-secondary-rgb), var(--mdb-bg-opacity)) !important}.bg-success{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-success-rgb), var(--mdb-bg-opacity)) !important}.bg-info{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-info-rgb), var(--mdb-bg-opacity)) !important}.bg-warning{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-warning-rgb), var(--mdb-bg-opacity)) !important}.bg-danger{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-danger-rgb), var(--mdb-bg-opacity)) !important}.bg-light{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important}.bg-dark{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-dark-rgb), var(--mdb-bg-opacity)) !important}.bg-white{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-white-rgb), var(--mdb-bg-opacity)) !important}.bg-black{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-black-rgb), var(--mdb-bg-opacity)) !important}.bg-body{--mdb-bg-opacity: 1;background-color:rgba(var(--mdb-body-bg-rgb), var(--mdb-bg-opacity)) !important}.bg-transparent{--mdb-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-opacity-10{--mdb-bg-opacity: 0.1}.bg-opacity-25{--mdb-bg-opacity: 0.25}.bg-opacity-50{--mdb-bg-opacity: 0.5}.bg-opacity-75{--mdb-bg-opacity: 0.75}.bg-opacity-100{--mdb-bg-opacity: 1}.bg-gradient{background-image:var(--mdb-gradient) !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;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2rem !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-4{border-radius:.375rem !important}.rounded-5{border-radius:.5rem !important}.rounded-6{border-radius:.75rem !important}.rounded-7{border-radius:1rem !important}.rounded-8{border-radius:1.25rem !important}.rounded-9{border-radius:1.5rem !important}.rounded-top{border-top-right-radius:.25rem !important;border-top-left-radius:.25rem !important}.rounded-end{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-bottom{border-bottom-left-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-start{border-bottom-right-radius:.25rem !important;border-top-right-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.ls-tighter{letter-spacing:-0.05em !important}.ls-tight{letter-spacing:-0.025em !important}.ls-normal{letter-spacing:0em !important}.ls-wide{letter-spacing:.025em !important}.ls-wider{letter-spacing:.05em !important}.ls-widest{letter-spacing:.1em !important}@media(min-width: 576px){.float-sm-start{float:right !important}.float-sm-end{float:left !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !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:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-left:0 !important;margin-right:0 !important}.mx-sm-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-sm-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-sm-3{margin-left:1rem !important;margin-right:1rem !important}.mx-sm-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-sm-5{margin-left:3rem !important;margin-right:3rem !important}.mx-sm-auto{margin-left:auto !important;margin-right:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-left:0 !important}.me-sm-1{margin-left:.25rem !important}.me-sm-2{margin-left:.5rem !important}.me-sm-3{margin-left:1rem !important}.me-sm-4{margin-left:1.5rem !important}.me-sm-5{margin-left:3rem !important}.me-sm-auto{margin-left:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.mb-sm-6{margin-bottom:3.5rem !important}.mb-sm-7{margin-bottom:4rem !important}.mb-sm-8{margin-bottom:5rem !important}.mb-sm-9{margin-bottom:6rem !important}.mb-sm-10{margin-bottom:8rem !important}.mb-sm-11{margin-bottom:10rem !important}.mb-sm-12{margin-bottom:12rem !important}.mb-sm-13{margin-bottom:14rem !important}.mb-sm-14{margin-bottom:16rem !important}.ms-sm-0{margin-right:0 !important}.ms-sm-1{margin-right:.25rem !important}.ms-sm-2{margin-right:.5rem !important}.ms-sm-3{margin-right:1rem !important}.ms-sm-4{margin-right:1.5rem !important}.ms-sm-5{margin-right:3rem !important}.ms-sm-auto{margin-right:auto !important}.m-sm-n1{margin:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mx-sm-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-sm-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-sm-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-sm-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-sm-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-sm-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-sm-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-sm-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-sm-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-sm-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-sm-n1{margin-top:-0.25rem !important}.mt-sm-n2{margin-top:-0.5rem !important}.mt-sm-n3{margin-top:-1rem !important}.mt-sm-n4{margin-top:-1.5rem !important}.mt-sm-n5{margin-top:-3rem !important}.me-sm-n1{margin-left:-0.25rem !important}.me-sm-n2{margin-left:-0.5rem !important}.me-sm-n3{margin-left:-1rem !important}.me-sm-n4{margin-left:-1.5rem !important}.me-sm-n5{margin-left:-3rem !important}.mb-sm-n1{margin-bottom:-0.25rem !important}.mb-sm-n2{margin-bottom:-0.5rem !important}.mb-sm-n3{margin-bottom:-1rem !important}.mb-sm-n4{margin-bottom:-1.5rem !important}.mb-sm-n5{margin-bottom:-3rem !important}.ms-sm-n1{margin-right:-0.25rem !important}.ms-sm-n2{margin-right:-0.5rem !important}.ms-sm-n3{margin-right:-1rem !important}.ms-sm-n4{margin-right:-1.5rem !important}.ms-sm-n5{margin-right:-3rem !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-left:0 !important;padding-right:0 !important}.px-sm-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-sm-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-sm-3{padding-left:1rem !important;padding-right:1rem !important}.px-sm-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-sm-5{padding-left:3rem !important;padding-right:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-left:0 !important}.pe-sm-1{padding-left:.25rem !important}.pe-sm-2{padding-left:.5rem !important}.pe-sm-3{padding-left:1rem !important}.pe-sm-4{padding-left:1.5rem !important}.pe-sm-5{padding-left:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-right:0 !important}.ps-sm-1{padding-right:.25rem !important}.ps-sm-2{padding-right:.5rem !important}.ps-sm-3{padding-right:1rem !important}.ps-sm-4{padding-right:1.5rem !important}.ps-sm-5{padding-right:3rem !important}.text-sm-start{text-align:right !important}.text-sm-end{text-align:left !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:right !important}.float-md-end{float:left !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !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:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-left:0 !important;margin-right:0 !important}.mx-md-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-md-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-md-3{margin-left:1rem !important;margin-right:1rem !important}.mx-md-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-md-5{margin-left:3rem !important;margin-right:3rem !important}.mx-md-auto{margin-left:auto !important;margin-right:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-left:0 !important}.me-md-1{margin-left:.25rem !important}.me-md-2{margin-left:.5rem !important}.me-md-3{margin-left:1rem !important}.me-md-4{margin-left:1.5rem !important}.me-md-5{margin-left:3rem !important}.me-md-auto{margin-left:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.mb-md-6{margin-bottom:3.5rem !important}.mb-md-7{margin-bottom:4rem !important}.mb-md-8{margin-bottom:5rem !important}.mb-md-9{margin-bottom:6rem !important}.mb-md-10{margin-bottom:8rem !important}.mb-md-11{margin-bottom:10rem !important}.mb-md-12{margin-bottom:12rem !important}.mb-md-13{margin-bottom:14rem !important}.mb-md-14{margin-bottom:16rem !important}.ms-md-0{margin-right:0 !important}.ms-md-1{margin-right:.25rem !important}.ms-md-2{margin-right:.5rem !important}.ms-md-3{margin-right:1rem !important}.ms-md-4{margin-right:1.5rem !important}.ms-md-5{margin-right:3rem !important}.ms-md-auto{margin-right:auto !important}.m-md-n1{margin:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.m-md-n3{margin:-1rem !important}.m-md-n4{margin:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mx-md-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-md-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-md-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-md-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-md-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-md-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-md-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-md-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-md-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-md-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-md-n1{margin-top:-0.25rem !important}.mt-md-n2{margin-top:-0.5rem !important}.mt-md-n3{margin-top:-1rem !important}.mt-md-n4{margin-top:-1.5rem !important}.mt-md-n5{margin-top:-3rem !important}.me-md-n1{margin-left:-0.25rem !important}.me-md-n2{margin-left:-0.5rem !important}.me-md-n3{margin-left:-1rem !important}.me-md-n4{margin-left:-1.5rem !important}.me-md-n5{margin-left:-3rem !important}.mb-md-n1{margin-bottom:-0.25rem !important}.mb-md-n2{margin-bottom:-0.5rem !important}.mb-md-n3{margin-bottom:-1rem !important}.mb-md-n4{margin-bottom:-1.5rem !important}.mb-md-n5{margin-bottom:-3rem !important}.ms-md-n1{margin-right:-0.25rem !important}.ms-md-n2{margin-right:-0.5rem !important}.ms-md-n3{margin-right:-1rem !important}.ms-md-n4{margin-right:-1.5rem !important}.ms-md-n5{margin-right:-3rem !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-left:0 !important;padding-right:0 !important}.px-md-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-md-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-md-3{padding-left:1rem !important;padding-right:1rem !important}.px-md-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-md-5{padding-left:3rem !important;padding-right:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-left:0 !important}.pe-md-1{padding-left:.25rem !important}.pe-md-2{padding-left:.5rem !important}.pe-md-3{padding-left:1rem !important}.pe-md-4{padding-left:1.5rem !important}.pe-md-5{padding-left:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-right:0 !important}.ps-md-1{padding-right:.25rem !important}.ps-md-2{padding-right:.5rem !important}.ps-md-3{padding-right:1rem !important}.ps-md-4{padding-right:1.5rem !important}.ps-md-5{padding-right:3rem !important}.text-md-start{text-align:right !important}.text-md-end{text-align:left !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:right !important}.float-lg-end{float:left !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !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:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-left:0 !important;margin-right:0 !important}.mx-lg-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-lg-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-lg-3{margin-left:1rem !important;margin-right:1rem !important}.mx-lg-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-lg-5{margin-left:3rem !important;margin-right:3rem !important}.mx-lg-auto{margin-left:auto !important;margin-right:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-left:0 !important}.me-lg-1{margin-left:.25rem !important}.me-lg-2{margin-left:.5rem !important}.me-lg-3{margin-left:1rem !important}.me-lg-4{margin-left:1.5rem !important}.me-lg-5{margin-left:3rem !important}.me-lg-auto{margin-left:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.mb-lg-6{margin-bottom:3.5rem !important}.mb-lg-7{margin-bottom:4rem !important}.mb-lg-8{margin-bottom:5rem !important}.mb-lg-9{margin-bottom:6rem !important}.mb-lg-10{margin-bottom:8rem !important}.mb-lg-11{margin-bottom:10rem !important}.mb-lg-12{margin-bottom:12rem !important}.mb-lg-13{margin-bottom:14rem !important}.mb-lg-14{margin-bottom:16rem !important}.ms-lg-0{margin-right:0 !important}.ms-lg-1{margin-right:.25rem !important}.ms-lg-2{margin-right:.5rem !important}.ms-lg-3{margin-right:1rem !important}.ms-lg-4{margin-right:1.5rem !important}.ms-lg-5{margin-right:3rem !important}.ms-lg-auto{margin-right:auto !important}.m-lg-n1{margin:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mx-lg-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-lg-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-lg-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-lg-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-lg-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-lg-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-lg-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-lg-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-lg-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-lg-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-lg-n1{margin-top:-0.25rem !important}.mt-lg-n2{margin-top:-0.5rem !important}.mt-lg-n3{margin-top:-1rem !important}.mt-lg-n4{margin-top:-1.5rem !important}.mt-lg-n5{margin-top:-3rem !important}.me-lg-n1{margin-left:-0.25rem !important}.me-lg-n2{margin-left:-0.5rem !important}.me-lg-n3{margin-left:-1rem !important}.me-lg-n4{margin-left:-1.5rem !important}.me-lg-n5{margin-left:-3rem !important}.mb-lg-n1{margin-bottom:-0.25rem !important}.mb-lg-n2{margin-bottom:-0.5rem !important}.mb-lg-n3{margin-bottom:-1rem !important}.mb-lg-n4{margin-bottom:-1.5rem !important}.mb-lg-n5{margin-bottom:-3rem !important}.ms-lg-n1{margin-right:-0.25rem !important}.ms-lg-n2{margin-right:-0.5rem !important}.ms-lg-n3{margin-right:-1rem !important}.ms-lg-n4{margin-right:-1.5rem !important}.ms-lg-n5{margin-right:-3rem !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-left:0 !important;padding-right:0 !important}.px-lg-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-lg-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-lg-3{padding-left:1rem !important;padding-right:1rem !important}.px-lg-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-lg-5{padding-left:3rem !important;padding-right:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-left:0 !important}.pe-lg-1{padding-left:.25rem !important}.pe-lg-2{padding-left:.5rem !important}.pe-lg-3{padding-left:1rem !important}.pe-lg-4{padding-left:1.5rem !important}.pe-lg-5{padding-left:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-right:0 !important}.ps-lg-1{padding-right:.25rem !important}.ps-lg-2{padding-right:.5rem !important}.ps-lg-3{padding-right:1rem !important}.ps-lg-4{padding-right:1.5rem !important}.ps-lg-5{padding-right:3rem !important}.text-lg-start{text-align:right !important}.text-lg-end{text-align:left !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:right !important}.float-xl-end{float:left !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !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:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-left:0 !important;margin-right:0 !important}.mx-xl-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-xl-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-xl-3{margin-left:1rem !important;margin-right:1rem !important}.mx-xl-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-xl-5{margin-left:3rem !important;margin-right:3rem !important}.mx-xl-auto{margin-left:auto !important;margin-right:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-left:0 !important}.me-xl-1{margin-left:.25rem !important}.me-xl-2{margin-left:.5rem !important}.me-xl-3{margin-left:1rem !important}.me-xl-4{margin-left:1.5rem !important}.me-xl-5{margin-left:3rem !important}.me-xl-auto{margin-left:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.mb-xl-6{margin-bottom:3.5rem !important}.mb-xl-7{margin-bottom:4rem !important}.mb-xl-8{margin-bottom:5rem !important}.mb-xl-9{margin-bottom:6rem !important}.mb-xl-10{margin-bottom:8rem !important}.mb-xl-11{margin-bottom:10rem !important}.mb-xl-12{margin-bottom:12rem !important}.mb-xl-13{margin-bottom:14rem !important}.mb-xl-14{margin-bottom:16rem !important}.ms-xl-0{margin-right:0 !important}.ms-xl-1{margin-right:.25rem !important}.ms-xl-2{margin-right:.5rem !important}.ms-xl-3{margin-right:1rem !important}.ms-xl-4{margin-right:1.5rem !important}.ms-xl-5{margin-right:3rem !important}.ms-xl-auto{margin-right:auto !important}.m-xl-n1{margin:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mx-xl-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-xl-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-xl-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-xl-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-xl-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-xl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xl-n1{margin-top:-0.25rem !important}.mt-xl-n2{margin-top:-0.5rem !important}.mt-xl-n3{margin-top:-1rem !important}.mt-xl-n4{margin-top:-1.5rem !important}.mt-xl-n5{margin-top:-3rem !important}.me-xl-n1{margin-left:-0.25rem !important}.me-xl-n2{margin-left:-0.5rem !important}.me-xl-n3{margin-left:-1rem !important}.me-xl-n4{margin-left:-1.5rem !important}.me-xl-n5{margin-left:-3rem !important}.mb-xl-n1{margin-bottom:-0.25rem !important}.mb-xl-n2{margin-bottom:-0.5rem !important}.mb-xl-n3{margin-bottom:-1rem !important}.mb-xl-n4{margin-bottom:-1.5rem !important}.mb-xl-n5{margin-bottom:-3rem !important}.ms-xl-n1{margin-right:-0.25rem !important}.ms-xl-n2{margin-right:-0.5rem !important}.ms-xl-n3{margin-right:-1rem !important}.ms-xl-n4{margin-right:-1.5rem !important}.ms-xl-n5{margin-right:-3rem !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-left:0 !important;padding-right:0 !important}.px-xl-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-xl-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-xl-3{padding-left:1rem !important;padding-right:1rem !important}.px-xl-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-xl-5{padding-left:3rem !important;padding-right:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-left:0 !important}.pe-xl-1{padding-left:.25rem !important}.pe-xl-2{padding-left:.5rem !important}.pe-xl-3{padding-left:1rem !important}.pe-xl-4{padding-left:1.5rem !important}.pe-xl-5{padding-left:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-right:0 !important}.ps-xl-1{padding-right:.25rem !important}.ps-xl-2{padding-right:.5rem !important}.ps-xl-3{padding-right:1rem !important}.ps-xl-4{padding-right:1.5rem !important}.ps-xl-5{padding-right:3rem !important}.text-xl-start{text-align:right !important}.text-xl-end{text-align:left !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:right !important}.float-xxl-end{float:left !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-left:0 !important;margin-right:0 !important}.mx-xxl-1{margin-left:.25rem !important;margin-right:.25rem !important}.mx-xxl-2{margin-left:.5rem !important;margin-right:.5rem !important}.mx-xxl-3{margin-left:1rem !important;margin-right:1rem !important}.mx-xxl-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.mx-xxl-5{margin-left:3rem !important;margin-right:3rem !important}.mx-xxl-auto{margin-left:auto !important;margin-right:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-left:0 !important}.me-xxl-1{margin-left:.25rem !important}.me-xxl-2{margin-left:.5rem !important}.me-xxl-3{margin-left:1rem !important}.me-xxl-4{margin-left:1.5rem !important}.me-xxl-5{margin-left:3rem !important}.me-xxl-auto{margin-left:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.mb-xxl-6{margin-bottom:3.5rem !important}.mb-xxl-7{margin-bottom:4rem !important}.mb-xxl-8{margin-bottom:5rem !important}.mb-xxl-9{margin-bottom:6rem !important}.mb-xxl-10{margin-bottom:8rem !important}.mb-xxl-11{margin-bottom:10rem !important}.mb-xxl-12{margin-bottom:12rem !important}.mb-xxl-13{margin-bottom:14rem !important}.mb-xxl-14{margin-bottom:16rem !important}.ms-xxl-0{margin-right:0 !important}.ms-xxl-1{margin-right:.25rem !important}.ms-xxl-2{margin-right:.5rem !important}.ms-xxl-3{margin-right:1rem !important}.ms-xxl-4{margin-right:1.5rem !important}.ms-xxl-5{margin-right:3rem !important}.ms-xxl-auto{margin-right:auto !important}.m-xxl-n1{margin:-0.25rem !important}.m-xxl-n2{margin:-0.5rem !important}.m-xxl-n3{margin:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.m-xxl-n5{margin:-3rem !important}.mx-xxl-n1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.mx-xxl-n2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.mx-xxl-n3{margin-left:-1rem !important;margin-right:-1rem !important}.mx-xxl-n4{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.mx-xxl-n5{margin-left:-3rem !important;margin-right:-3rem !important}.my-xxl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xxl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xxl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xxl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xxl-n5{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-xxl-n1{margin-top:-0.25rem !important}.mt-xxl-n2{margin-top:-0.5rem !important}.mt-xxl-n3{margin-top:-1rem !important}.mt-xxl-n4{margin-top:-1.5rem !important}.mt-xxl-n5{margin-top:-3rem !important}.me-xxl-n1{margin-left:-0.25rem !important}.me-xxl-n2{margin-left:-0.5rem !important}.me-xxl-n3{margin-left:-1rem !important}.me-xxl-n4{margin-left:-1.5rem !important}.me-xxl-n5{margin-left:-3rem !important}.mb-xxl-n1{margin-bottom:-0.25rem !important}.mb-xxl-n2{margin-bottom:-0.5rem !important}.mb-xxl-n3{margin-bottom:-1rem !important}.mb-xxl-n4{margin-bottom:-1.5rem !important}.mb-xxl-n5{margin-bottom:-3rem !important}.ms-xxl-n1{margin-right:-0.25rem !important}.ms-xxl-n2{margin-right:-0.5rem !important}.ms-xxl-n3{margin-right:-1rem !important}.ms-xxl-n4{margin-right:-1.5rem !important}.ms-xxl-n5{margin-right:-3rem !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-left:0 !important;padding-right:0 !important}.px-xxl-1{padding-left:.25rem !important;padding-right:.25rem !important}.px-xxl-2{padding-left:.5rem !important;padding-right:.5rem !important}.px-xxl-3{padding-left:1rem !important;padding-right:1rem !important}.px-xxl-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.px-xxl-5{padding-left:3rem !important;padding-right:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-left:0 !important}.pe-xxl-1{padding-left:.25rem !important}.pe-xxl-2{padding-left:.5rem !important}.pe-xxl-3{padding-left:1rem !important}.pe-xxl-4{padding-left:1.5rem !important}.pe-xxl-5{padding-left:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-right:0 !important}.ps-xxl-1{padding-right:.25rem !important}.ps-xxl-2{padding-right:.5rem !important}.ps-xxl-3{padding-right:1rem !important}.ps-xxl-4{padding-right:1.5rem !important}.ps-xxl-5{padding-right:3rem !important}.text-xxl-start{text-align:right !important}.text-xxl-end{text-align:left !important}.text-xxl-center{text-align:center !important}}@media(min-width: 1200px){.fs-1{font-size:2.5rem !important}.fs-2{font-size:2rem !important}.fs-3{font-size:1.75rem !important}.fs-4{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !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:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.diagonal-fractions{font-variant-numeric:diagonal-fractions}.bg-super-light{background-color:#fbfbfb}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-x-scroll{overflow-x:scroll}.table-fixed{table-layout:fixed}.table-auto{table-layout:auto}:root{--mdb-font-roboto: \"Roboto\", sans-serif;--mdb-bg-opacity: 1}body{font-family:var(--mdb-font-roboto);line-height:1.6;color:#4f4f4f}a{text-decoration:none}button:focus{outline:0}.note{padding:10px;border-right:6px solid;border-radius:5px}.note strong{font-weight:600}.note p{font-weight:500}.note-primary{background-color:#e1ecfd;border-color:#1266f1}.note-secondary{background-color:#f4e3ff;border-color:#b23cfd}.note-success{background-color:#c6ffdd;border-color:#00b74a}.note-danger{background-color:#fee3e8;border-color:#f93154}.note-warning{background-color:#fff1d6;border-color:#ffa900}.note-info{background-color:#e1f6fc;border-color:#39c0ed}.note-light{background-color:#f9f9f9;border-color:#262626}@media(min-width: 1199px){.w-responsive{width:75%}}.bg-primary{background-color:rgba(18, 102, 241, var(--mdb-bg-opacity)) !important}.bg-secondary{background-color:rgba(178, 60, 253, var(--mdb-bg-opacity)) !important}.bg-success{background-color:rgba(0, 183, 74, var(--mdb-bg-opacity)) !important}.bg-info{background-color:rgba(57, 192, 237, var(--mdb-bg-opacity)) !important}.bg-warning{background-color:rgba(255, 169, 0, var(--mdb-bg-opacity)) !important}.bg-danger{background-color:rgba(249, 49, 84, var(--mdb-bg-opacity)) !important}.bg-light{background-color:rgba(249, 249, 249, var(--mdb-bg-opacity)) !important}.bg-dark{background-color:rgba(38, 38, 38, var(--mdb-bg-opacity)) !important}.bg-white{background-color:rgba(255, 255, 255, var(--mdb-bg-opacity)) !important}.bg-black{background-color:rgba(0, 0, 0, var(--mdb-bg-opacity)) !important}/*!\n * # Semantic UI 2.4.2 - Flag\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */#mdb-table-flag tr{cursor:pointer}.mdb-flag-selected{border-top-right-radius:5px;border-top-left-radius:5px;text-align:center;max-width:150px;margin:0 auto;margin-top:10px}.mdb-selected-flag-text{margin:0 auto;max-width:150px}i.flag:not(.icon){display:inline-block;width:16px;height:11px;margin:0 0 0 .5em;line-height:11px;text-decoration:inherit;vertical-align:baseline;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag::before{display:inline-block;width:16px;height:11px;content:\"\";background:url(\"https://mdbootstrap.com/img/svg/flags.png\") no-repeat -108px -1976px}i.flag-ad:before,i.flag-andorra:before{background-position:100% 0 !important}i.flag-ae:before,i.flag-united-arab-emirates:before,i.flag-uae:before{background-position:100% -26px !important}i.flag-af:before,i.flag-afghanistan:before{background-position:100% -52px !important}i.flag-ag:before,i.flag-antigua:before{background-position:100% -78px !important}i.flag-ai:before,i.flag-anguilla:before{background-position:100% -104px !important}i.flag-al:before,i.flag-albania:before{background-position:100% -130px !important}i.flag-am:before,i.flag-armenia:before{background-position:100% -156px !important}i.flag-an:before,i.flag-netherlands-antilles:before{background-position:100% -182px !important}i.flag-ao:before,i.flag-angola:before{background-position:100% -208px !important}i.flag-ar:before,i.flag-argentina:before{background-position:100% -234px !important}i.flag-as:before,i.flag-american-samoa:before{background-position:100% -260px !important}i.flag-at:before,i.flag-austria:before{background-position:100% -286px !important}i.flag-au:before,i.flag-australia:before{background-position:100% -312px !important}i.flag-aw:before,i.flag-aruba:before{background-position:100% -338px !important}i.flag-ax:before,i.flag-aland-islands:before{background-position:100% -364px !important}i.flag-az:before,i.flag-azerbaijan:before{background-position:100% -390px !important}i.flag-ba:before,i.flag-bosnia:before{background-position:100% -416px !important}i.flag-bb:before,i.flag-barbados:before{background-position:100% -442px !important}i.flag-bd:before,i.flag-bangladesh:before{background-position:100% -468px !important}i.flag-be:before,i.flag-belgium:before{background-position:100% -494px !important}i.flag-bf:before,i.flag-burkina-faso:before{background-position:100% -520px !important}i.flag-bg:before,i.flag-bulgaria:before{background-position:100% -546px !important}i.flag-bh:before,i.flag-bahrain:before{background-position:100% -572px !important}i.flag-bi:before,i.flag-burundi:before{background-position:100% -598px !important}i.flag-bj:before,i.flag-benin:before{background-position:100% -624px !important}i.flag-bm:before,i.flag-bermuda:before{background-position:100% -650px !important}i.flag-bn:before,i.flag-brunei:before{background-position:100% -676px !important}i.flag-bo:before,i.flag-bolivia:before{background-position:100% -702px !important}i.flag-br:before,i.flag-brazil:before{background-position:100% -728px !important}i.flag-bs:before,i.flag-bahamas:before{background-position:100% -754px !important}i.flag-bt:before,i.flag-bhutan:before{background-position:100% -780px !important}i.flag-bv:before,i.flag-bouvet-island:before{background-position:100% -806px !important}i.flag-bw:before,i.flag-botswana:before{background-position:100% -832px !important}i.flag-by:before,i.flag-belarus:before{background-position:100% -858px !important}i.flag-bz:before,i.flag-belize:before{background-position:100% -884px !important}i.flag-ca:before,i.flag-canada:before{background-position:100% -910px !important}i.flag-cc:before,i.flag-cocos-islands:before{background-position:100% -962px !important}i.flag-cd:before,i.flag-congo:before{background-position:100% -988px !important}i.flag-cf:before,i.flag-central-african-republic:before{background-position:100% -1014px !important}i.flag-cg:before,i.flag-congo-brazzaville:before{background-position:100% -1040px !important}i.flag-ch:before,i.flag-switzerland:before{background-position:100% -1066px !important}i.flag-ci:before,i.flag-cote-divoire:before{background-position:100% -1092px !important}i.flag-ck:before,i.flag-cook-islands:before{background-position:100% -1118px !important}i.flag-cl:before,i.flag-chile:before{background-position:100% -1144px !important}i.flag-cm:before,i.flag-cameroon:before{background-position:100% -1170px !important}i.flag-cn:before,i.flag-china:before{background-position:100% -1196px !important}i.flag-co:before,i.flag-colombia:before{background-position:100% -1222px !important}i.flag-cr:before,i.flag-costa-rica:before{background-position:100% -1248px !important}i.flag-cs:before,i.flag-serbia:before{background-position:100% -1274px !important}i.flag-cu:before,i.flag-cuba:before{background-position:100% -1300px !important}i.flag-cv:before,i.flag-cape-verde:before{background-position:100% -1326px !important}i.flag-cx:before,i.flag-christmas-island:before{background-position:100% -1352px !important}i.flag-cy:before,i.flag-cyprus:before{background-position:100% -1378px !important}i.flag-cz:before,i.flag-czech-republic:before{background-position:100% -1404px !important}i.flag-de:before,i.flag-germany:before{background-position:100% -1430px !important}i.flag-dj:before,i.flag-djibouti:before{background-position:100% -1456px !important}i.flag-dk:before,i.flag-denmark:before{background-position:100% -1482px !important}i.flag-dm:before,i.flag-dominica:before{background-position:100% -1508px !important}i.flag-do:before,i.flag-dominican-republic:before{background-position:100% -1534px !important}i.flag-dz:before,i.flag-algeria:before{background-position:100% -1560px !important}i.flag-ec:before,i.flag-ecuador:before{background-position:100% -1586px !important}i.flag-ee:before,i.flag-estonia:before{background-position:100% -1612px !important}i.flag-eg:before,i.flag-egypt:before{background-position:100% -1638px !important}i.flag-eh:before,i.flag-western-sahara:before{background-position:100% -1664px !important}i.flag-gb-eng:before,i.flag-england:before{background-position:100% -1690px !important}i.flag-er:before,i.flag-eritrea:before{background-position:100% -1716px !important}i.flag-es:before,i.flag-spain:before{background-position:100% -1742px !important}i.flag-et:before,i.flag-ethiopia:before{background-position:100% -1768px !important}i.flag-eu:before,i.flag-european-union:before{background-position:100% -1794px !important}i.flag-fi:before,i.flag-finland:before{background-position:100% -1846px !important}i.flag-fj:before,i.flag-fiji:before{background-position:100% -1872px !important}i.flag-fk:before,i.flag-falkland-islands:before{background-position:100% -1898px !important}i.flag-fm:before,i.flag-micronesia:before{background-position:100% -1924px !important}i.flag-fo:before,i.flag-faroe-islands:before{background-position:100% -1950px !important}i.flag-fr:before,i.flag-france:before{background-position:100% -1976px !important}i.flag-ga:before,i.flag-gabon:before{background-position:-36px 0 !important}i.flag-gb:before,i.flag-uk:before,i.flag-united-kingdom:before{background-position:-36px -26px !important}i.flag-gd:before,i.flag-grenada:before{background-position:-36px -52px !important}i.flag-ge:before,i.flag-georgia:before{background-position:-36px -78px !important}i.flag-gf:before,i.flag-french-guiana:before{background-position:-36px -104px !important}i.flag-gh:before,i.flag-ghana:before{background-position:-36px -130px !important}i.flag-gi:before,i.flag-gibraltar:before{background-position:-36px -156px !important}i.flag-gl:before,i.flag-greenland:before{background-position:-36px -182px !important}i.flag-gm:before,i.flag-gambia:before{background-position:-36px -208px !important}i.flag-gn:before,i.flag-guinea:before{background-position:-36px -234px !important}i.flag-gp:before,i.flag-guadeloupe:before{background-position:-36px -260px !important}i.flag-gq:before,i.flag-equatorial-guinea:before{background-position:-36px -286px !important}i.flag-gr:before,i.flag-greece:before{background-position:-36px -312px !important}i.flag-gs:before,i.flag-sandwich-islands:before{background-position:-36px -338px !important}i.flag-gt:before,i.flag-guatemala:before{background-position:-36px -364px !important}i.flag-gu:before,i.flag-guam:before{background-position:-36px -390px !important}i.flag-gw:before,i.flag-guinea-bissau:before{background-position:-36px -416px !important}i.flag-gy:before,i.flag-guyana:before{background-position:-36px -442px !important}i.flag-hk:before,i.flag-hong-kong:before{background-position:-36px -468px !important}i.flag-hm:before,i.flag-heard-island:before{background-position:-36px -494px !important}i.flag-hn:before,i.flag-honduras:before{background-position:-36px -520px !important}i.flag-hr:before,i.flag-croatia:before{background-position:-36px -546px !important}i.flag-ht:before,i.flag-haiti:before{background-position:-36px -572px !important}i.flag-hu:before,i.flag-hungary:before{background-position:-36px -598px !important}i.flag-id:before,i.flag-indonesia:before{background-position:-36px -624px !important}i.flag-ie:before,i.flag-ireland:before{background-position:-36px -650px !important}i.flag-il:before,i.flag-israel:before{background-position:-36px -676px !important}i.flag-in:before,i.flag-india:before{background-position:-36px -702px !important}i.flag-io:before,i.flag-indian-ocean-territory:before{background-position:-36px -728px !important}i.flag-iq:before,i.flag-iraq:before{background-position:-36px -754px !important}i.flag-ir:before,i.flag-iran:before{background-position:-36px -780px !important}i.flag-is:before,i.flag-iceland:before{background-position:-36px -806px !important}i.flag-it:before,i.flag-italy:before{background-position:-36px -832px !important}i.flag-jm:before,i.flag-jamaica:before{background-position:-36px -858px !important}i.flag-jo:before,i.flag-jordan:before{background-position:-36px -884px !important}i.flag-jp:before,i.flag-japan:before{background-position:-36px -910px !important}i.flag-ke:before,i.flag-kenya:before{background-position:-36px -936px !important}i.flag-kg:before,i.flag-kyrgyzstan:before{background-position:-36px -962px !important}i.flag-kh:before,i.flag-cambodia:before{background-position:-36px -988px !important}i.flag-ki:before,i.flag-kiribati:before{background-position:-36px -1014px !important}i.flag-km:before,i.flag-comoros:before{background-position:-36px -1040px !important}i.flag-kn:before,i.flag-saint-kitts-and-nevis:before{background-position:-36px -1066px !important}i.flag-kp:before,i.flag-north-korea:before{background-position:-36px -1092px !important}i.flag-kr:before,i.flag-south-korea:before{background-position:-36px -1118px !important}i.flag-kw:before,i.flag-kuwait:before{background-position:-36px -1144px !important}i.flag-ky:before,i.flag-cayman-islands:before{background-position:-36px -1170px !important}i.flag-kz:before,i.flag-kazakhstan:before{background-position:-36px -1196px !important}i.flag-la:before,i.flag-laos:before{background-position:-36px -1222px !important}i.flag-lb:before,i.flag-lebanon:before{background-position:-36px -1248px !important}i.flag-lc:before,i.flag-saint-lucia:before{background-position:-36px -1274px !important}i.flag-li:before,i.flag-liechtenstein:before{background-position:-36px -1300px !important}i.flag-lk:before,i.flag-sri-lanka:before{background-position:-36px -1326px !important}i.flag-lr:before,i.flag-liberia:before{background-position:-36px -1352px !important}i.flag-ls:before,i.flag-lesotho:before{background-position:-36px -1378px !important}i.flag-lt:before,i.flag-lithuania:before{background-position:-36px -1404px !important}i.flag-lu:before,i.flag-luxembourg:before{background-position:-36px -1430px !important}i.flag-lv:before,i.flag-latvia:before{background-position:-36px -1456px !important}i.flag-ly:before,i.flag-libya:before{background-position:-36px -1482px !important}i.flag-ma:before,i.flag-morocco:before{background-position:-36px -1508px !important}i.flag-mc:before,i.flag-monaco:before{background-position:-36px -1534px !important}i.flag-md:before,i.flag-moldova:before{background-position:-36px -1560px !important}i.flag-me:before,i.flag-montenegro:before{background-position:-36px -1586px !important}i.flag-mg:before,i.flag-madagascar:before{background-position:-36px -1613px !important}i.flag-mh:before,i.flag-marshall-islands:before{background-position:-36px -1639px !important}i.flag-mk:before,i.flag-macedonia:before{background-position:-36px -1665px !important}i.flag-ml:before,i.flag-mali:before{background-position:-36px -1691px !important}i.flag-mm:before,i.flag-myanmar:before,i.flag-burma:before{background-position:-73px -1821px !important}i.flag-mn:before,i.flag-mongolia:before{background-position:-36px -1743px !important}i.flag-mo:before,i.flag-macau:before{background-position:-36px -1769px !important}i.flag-mp:before,i.flag-northern-mariana-islands:before{background-position:-36px -1795px !important}i.flag-mq:before,i.flag-martinique:before{background-position:-36px -1821px !important}i.flag-mr:before,i.flag-mauritania:before{background-position:-36px -1847px !important}i.flag-ms:before,i.flag-montserrat:before{background-position:-36px -1873px !important}i.flag-mt:before,i.flag-malta:before{background-position:-36px -1899px !important}i.flag-mu:before,i.flag-mauritius:before{background-position:-36px -1925px !important}i.flag-mv:before,i.flag-maldives:before{background-position:-36px -1951px !important}i.flag-mw:before,i.flag-malawi:before{background-position:-36px -1977px !important}i.flag-mx:before,i.flag-mexico:before{background-position:-72px 0 !important}i.flag-my:before,i.flag-malaysia:before{background-position:-72px -26px !important}i.flag-mz:before,i.flag-mozambique:before{background-position:-72px -52px !important}i.flag-na:before,i.flag-namibia:before{background-position:-72px -78px !important}i.flag-nc:before,i.flag-new-caledonia:before{background-position:-72px -104px !important}i.flag-ne:before,i.flag-niger:before{background-position:-72px -130px !important}i.flag-nf:before,i.flag-norfolk-island:before{background-position:-72px -156px !important}i.flag-ng:before,i.flag-nigeria:before{background-position:-72px -182px !important}i.flag-ni:before,i.flag-nicaragua:before{background-position:-72px -208px !important}i.flag-nl:before,i.flag-netherlands:before{background-position:-72px -234px !important}i.flag-no:before,i.flag-norway:before{background-position:-72px -260px !important}i.flag-np:before,i.flag-nepal:before{background-position:-72px -286px !important}i.flag-nr:before,i.flag-nauru:before{background-position:-72px -312px !important}i.flag-nu:before,i.flag-niue:before{background-position:-72px -338px !important}i.flag-nz:before,i.flag-new-zealand:before{background-position:-72px -364px !important}i.flag-om:before,i.flag-oman:before{background-position:-72px -390px !important}i.flag-pa:before,i.flag-panama:before{background-position:-72px -416px !important}i.flag-pe:before,i.flag-peru:before{background-position:-72px -442px !important}i.flag-pf:before,i.flag-french-polynesia:before{background-position:-72px -468px !important}i.flag-pg:before,i.flag-new-guinea:before{background-position:-72px -494px !important}i.flag-ph:before,i.flag-philippines:before{background-position:-72px -520px !important}i.flag-pk:before,i.flag-pakistan:before{background-position:-72px -546px !important}i.flag-pl:before,i.flag-poland:before{background-position:-72px -572px !important}i.flag-pm:before,i.flag-saint-pierre:before{background-position:-72px -598px !important}i.flag-pn:before,i.flag-pitcairn-islands:before{background-position:-72px -624px !important}i.flag-pr:before,i.flag-puerto-rico:before{background-position:-72px -650px !important}i.flag-ps:before,i.flag-palestine:before{background-position:-72px -676px !important}i.flag-pt:before,i.flag-portugal:before{background-position:-72px -702px !important}i.flag-pw:before,i.flag-palau:before{background-position:-72px -728px !important}i.flag-py:before,i.flag-paraguay:before{background-position:-72px -754px !important}i.flag-qa:before,i.flag-qatar:before{background-position:-72px -780px !important}i.flag-re:before,i.flag-reunion:before{background-position:-72px -806px !important}i.flag-ro:before,i.flag-romania:before{background-position:-72px -832px !important}i.flag-rs:before,i.flag-serbia:before{background-position:-72px -858px !important}i.flag-ru:before,i.flag-russia:before{background-position:-72px -884px !important}i.flag-rw:before,i.flag-rwanda:before{background-position:-72px -910px !important}i.flag-sa:before,i.flag-saudi-arabia:before{background-position:-72px -936px !important}i.flag-sb:before,i.flag-solomon-islands:before{background-position:-72px -962px !important}i.flag-sc:before,i.flag-seychelles:before{background-position:-72px -988px !important}i.flag-gb-sct:before,i.flag-scotland:before{background-position:-72px -1014px !important}i.flag-sd:before,i.flag-sudan:before{background-position:-72px -1040px !important}i.flag-se:before,i.flag-sweden:before{background-position:-72px -1066px !important}i.flag-sg:before,i.flag-singapore:before{background-position:-72px -1092px !important}i.flag-sh:before,i.flag-saint-helena:before{background-position:-72px -1118px !important}i.flag-si:before,i.flag-slovenia:before{background-position:-72px -1144px !important}i.flag-sj:before,i.flag-svalbard:before,i.flag-jan-mayen:before{background-position:-72px -1170px !important}i.flag-sk:before,i.flag-slovakia:before{background-position:-72px -1196px !important}i.flag-sl:before,i.flag-sierra-leone:before{background-position:-72px -1222px !important}i.flag-sm:before,i.flag-san-marino:before{background-position:-72px -1248px !important}i.flag-sn:before,i.flag-senegal:before{background-position:-72px -1274px !important}i.flag-so:before,i.flag-somalia:before{background-position:-72px -1300px !important}i.flag-sr:before,i.flag-suriname:before{background-position:-72px -1326px !important}i.flag-st:before,i.flag-sao-tome:before{background-position:-72px -1352px !important}i.flag-sv:before,i.flag-el-salvador:before{background-position:-72px -1378px !important}i.flag-sy:before,i.flag-syria:before{background-position:-72px -1404px !important}i.flag-sz:before,i.flag-swaziland:before{background-position:-72px -1430px !important}i.flag-tc:before,i.flag-caicos-islands:before{background-position:-72px -1456px !important}i.flag-td:before,i.flag-chad:before{background-position:-72px -1482px !important}i.flag-tf:before,i.flag-french-territories:before{background-position:-72px -1508px !important}i.flag-tg:before,i.flag-togo:before{background-position:-72px -1534px !important}i.flag-th:before,i.flag-thailand:before{background-position:-72px -1560px !important}i.flag-tj:before,i.flag-tajikistan:before{background-position:-72px -1586px !important}i.flag-tk:before,i.flag-tokelau:before{background-position:-72px -1612px !important}i.flag-tl:before,i.flag-timorleste:before{background-position:-72px -1638px !important}i.flag-tm:before,i.flag-turkmenistan:before{background-position:-72px -1664px !important}i.flag-tn:before,i.flag-tunisia:before{background-position:-72px -1690px !important}i.flag-to:before,i.flag-tonga:before{background-position:-72px -1716px !important}i.flag-tr:before,i.flag-turkey:before{background-position:-72px -1742px !important}i.flag-tt:before,i.flag-trinidad:before{background-position:-72px -1768px !important}i.flag-tv:before,i.flag-tuvalu:before{background-position:-72px -1794px !important}i.flag-tw:before,i.flag-taiwan:before{background-position:-72px -1820px !important}i.flag-tz:before,i.flag-tanzania:before{background-position:-72px -1846px !important}i.flag-ua:before,i.flag-ukraine:before{background-position:-72px -1872px !important}i.flag-ug:before,i.flag-uganda:before{background-position:-72px -1898px !important}i.flag-um:before,i.flag-us-minor-islands:before{background-position:-72px -1924px !important}i.flag-us:before,i.flag-america:before,i.flag-united-states:before{background-position:-72px -1950px !important}i.flag-uy:before,i.flag-uruguay:before{background-position:-72px -1976px !important}i.flag-uz:before,i.flag-uzbekistan:before{background-position:-108px 0 !important}i.flag-va:before,i.flag-vatican-city:before{background-position:-108px -26px !important}i.flag-vc:before,i.flag-saint-vincent:before{background-position:-108px -52px !important}i.flag-ve:before,i.flag-venezuela:before{background-position:-108px -78px !important}i.flag-vg:before,i.flag-british-virgin-islands:before{background-position:-108px -104px !important}i.flag-vi:before,i.flag-us-virgin-islands:before{background-position:-108px -130px !important}i.flag-vn:before,i.flag-vietnam:before{background-position:-108px -156px !important}i.flag-vu:before,i.flag-vanuatu:before{background-position:-108px -182px !important}i.flag-gb-wls:before,i.flag-wales:before{background-position:-108px -208px !important}i.flag-wf:before,i.flag-wallis-and-futuna:before{background-position:-108px -234px !important}i.flag-ws:before,i.flag-samoa:before{background-position:-108px -260px !important}i.flag-ye:before,i.flag-yemen:before{background-position:-108px -286px !important}i.flag-yt:before,i.flag-mayotte:before{background-position:-108px -312px !important}i.flag-za:before,i.flag-south-africa:before{background-position:-108px -338px !important}i.flag-zm:before,i.flag-zambia:before{background-position:-108px -364px !important}i.flag-zw:before,i.flag-zimbabwe:before{background-position:-108px -390px !important}.bg-image{position:relative;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:center center}.mask{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;overflow:hidden;background-attachment:fixed}.hover-overlay .mask{opacity:0;transition:all .3s ease-in-out}.hover-overlay .mask:hover{opacity:1}.hover-zoom img,.hover-zoom video{transition:all .3s linear}.hover-zoom:hover img,.hover-zoom:hover video{transform:scale(1.1)}.hover-shadow,.card.hover-shadow{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow:hover,.card.hover-shadow:hover{box-shadow:0 10px 20px 0 rgba(0,0,0,.21);transition:all .3s ease-in-out}.bg-fixed{background-attachment:fixed}.hover-shadow-soft,.card.hover-shadow-soft{box-shadow:none;transition:all .3s ease-in-out}.hover-shadow-soft:hover,.card.hover-shadow-soft:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.07),0 10px 10px -5px rgba(0,0,0,.05);transition:all .3s ease-in-out}.form-control{min-height:auto;padding-top:4px;padding-bottom:3.28px;transition:all .1s linear}.form-control:focus{box-shadow:none;transition:all .1s linear;border-color:#1266f1;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-control.form-control-sm{font-size:.775rem;line-height:1.5}.form-control.form-control-lg{line-height:2.15;border-radius:.25rem}.form-outline{position:relative}.form-outline .form-helper{width:100%;position:absolute;font-size:.875em;color:#757575}.form-outline .form-helper .form-counter{text-align:left}.form-outline .trailing{position:absolute;left:10px;right:initial;top:50%;transform:translateY(-50%);pointer-events:none}.form-outline .form-icon-trailing{padding-left:2rem !important}.form-outline .form-control{min-height:auto;padding-top:.33em;padding-bottom:.33em;padding-right:.75em;padding-left:.75em;border:0;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-label{position:absolute;top:0;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;right:.75rem;padding-top:.37rem;pointer-events:none;transform-origin:100% 0;transition:all .2s ease-out;color:rgba(0,0,0,.6);margin-bottom:0}.form-outline .form-control~.form-notch{display:flex;position:absolute;right:0;top:0;width:100%;max-width:100%;height:100%;text-align:right;pointer-events:none}.form-outline .form-control~.form-notch div{pointer-events:none;border:1px solid;border-color:#bdbdbd;box-sizing:border-box;background:rgba(0,0,0,0);transition:all .2s linear}.form-outline .form-control~.form-notch .form-notch-leading{right:0;top:0;height:100%;width:.5rem;border-left:none;border-radius:0 .25rem .25rem 0}.form-outline .form-control~.form-notch .form-notch-middle{flex:0 0 auto;width:auto;max-width:calc(100% - 1rem);height:100%;border-left:none;border-right:none}.form-outline .form-control~.form-notch .form-notch-trailing{flex-grow:1;height:100%;border-right:none;border-radius:.25rem 0 0 .25rem}.form-outline .form-control:not(.placeholder-active)::-moz-placeholder{opacity:0}.form-outline .form-control:not(.placeholder-active)::placeholder{opacity:0}.form-outline .form-control:focus::-moz-placeholder, .form-outline .form-control.active::-moz-placeholder{opacity:1}.form-outline .form-control:focus::placeholder,.form-outline .form-control.active::placeholder{opacity:1}.form-outline .form-control:focus{box-shadow:none !important}.form-outline .form-control:focus~.form-label,.form-outline .form-control.active~.form-label{transform:translateY(-1rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control:focus~.form-label{color:#1266f1}.form-outline .form-control:focus~.form-notch .form-notch-middle,.form-outline .form-control.active~.form-notch .form-notch-middle{border-left:none;border-right:none;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-middle{border-color:#1266f1;box-shadow:0 1px 0 0 #1266f1;border-top:1px solid rgba(0,0,0,0)}.form-outline .form-control:focus~.form-notch .form-notch-leading,.form-outline .form-control.active~.form-notch .form-notch-leading{border-left:none}.form-outline .form-control:focus~.form-notch .form-notch-leading{border-color:#1266f1;box-shadow:1px 0 0 0 #1266f1,0 1px 0 0 #1266f1,0 -1px 0 0 #1266f1}.form-outline .form-control:focus~.form-notch .form-notch-trailing,.form-outline .form-control.active~.form-notch .form-notch-trailing{border-right:none}.form-outline .form-control:focus~.form-notch .form-notch-trailing{border-color:#1266f1;box-shadow:-1px 0 0 0 #1266f1,0 -1px 0 0 #1266f1,0 1px 0 0 #1266f1}.form-outline .form-control:disabled,.form-outline .form-control.disabled,.form-outline .form-control[readonly]{background-color:#e9ecef}.form-outline .form-control.form-control-lg{font-size:1rem;line-height:2.15;padding-right:.75em;padding-left:.75em}.form-outline .form-control.form-control-lg~.form-label{padding-top:.7rem}.form-outline .form-control.form-control-lg:focus~.form-label,.form-outline .form-control.form-control-lg.active~.form-label{transform:translateY(-1.25rem) translateY(0.1rem) scale(0.8)}.form-outline .form-control.form-control-sm{padding-right:.99em;padding-left:.99em;padding-top:.43em;padding-bottom:.35em;font-size:.775rem;line-height:1.6}.form-outline .form-control.form-control-sm~.form-label{padding-top:.33rem;font-size:.775rem}.form-outline .form-control.form-control-sm:focus~.form-label,.form-outline .form-control.form-control-sm.active~.form-label{transform:translateY(-0.85rem) translateY(0.1rem) scale(0.8)}.form-outline.form-white .form-control{color:#fff}.form-outline.form-white .form-control~.form-label{color:#fbfbfb}.form-outline.form-white .form-control~.form-notch div{border-color:#fbfbfb}.form-outline.form-white .form-control:focus~.form-label{color:#fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-middle{border-color:#fff;box-shadow:0 1px 0 0 #fff;border-top:1px solid rgba(0,0,0,0)}.form-outline.form-white .form-control:focus~.form-notch .form-notch-leading{border-color:#fff;box-shadow:1px 0 0 0 #fff,0 1px 0 0 #fff,0 -1px 0 0 #fff}.form-outline.form-white .form-control:focus~.form-notch .form-notch-trailing{border-color:#fff;box-shadow:-1px 0 0 0 #fff,0 -1px 0 0 #fff,0 1px 0 0 #fff}.form-outline.form-white .form-control::-moz-placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control::placeholder{color:rgba(255,255,255,.7)}.form-outline.form-white .form-control:disabled,.form-outline.form-white .form-control.disabled,.form-outline.form-white .form-control[readonly]{background-color:rgba(255,255,255,.45)}.select-input.form-control[readonly]:not([disabled]){background-color:rgba(0,0,0,0)}.form-select{transition:all .2s linear}.form-select:focus{border-color:#1266f1;outline:0;box-shadow:inset 0px 0px 0px 1px #1266f1}.form-check{min-height:1.5rem}.form-check-input{position:relative;width:1.125rem;height:1.125rem;background-color:#fff;border:.125rem solid #757575}.form-check-input:before{content:\"\";position:absolute;box-shadow:0px 0px 0px 13px rgba(0,0,0,0);border-radius:50%;width:.875rem;height:.875rem;background-color:rgba(0,0,0,0);opacity:0;pointer-events:none;transform:scale(0)}.form-check-input:hover{cursor:pointer}.form-check-input:hover:before{opacity:.04;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6)}.form-check-input:focus{box-shadow:none;border-color:#757575;transition:border-color .2s}.form-check-input:focus:before{opacity:.12;box-shadow:0px 0px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:checked{border-color:#1266f1}.form-check-input:checked:before{opacity:.16}.form-check-input:checked:after{content:\"\";position:absolute}.form-check-input:checked:focus{border-color:#1266f1}.form-check-input:checked:focus:before{box-shadow:0px 0px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-check-input:indeterminate:focus:before{box-shadow:0px 0px 0px 13px #1266f1}.form-check-input[type=checkbox]{border-radius:.125rem;margin-top:.19em;margin-left:8px}.form-check-input[type=checkbox]:focus:after{content:\"\";position:absolute;width:.875rem;height:.875rem;z-index:1;display:block;border-radius:0;background-color:#fff}.form-check-input[type=checkbox]:checked{background-image:none;background-color:#1266f1}.form-check-input[type=checkbox]:checked:after{display:block;transform:rotate(45deg) ;border-width:.125rem;border-color:#fff;width:.375rem;height:.8125rem;border-style:solid;border-top:0;border-left:0 ;margin-right:.25rem;margin-top:-1px;background-color:rgba(0,0,0,0)}.form-check-input[type=checkbox]:checked:focus{background-color:#1266f1}.form-check-input[type=checkbox]:indeterminate{border-color:#1266f1}.form-check-input[type=radio]{border-radius:50%;width:1.25rem;height:1.25rem;margin-top:.125em;margin-left:6px}.form-check-input[type=radio]:before{width:1rem;height:1rem}.form-check-input[type=radio]:after{content:\"\";position:absolute;width:1rem;height:1rem;z-index:1;display:block;border-radius:50%;background-color:#fff}.form-check-input[type=radio]:checked{background-image:none;background-color:#fff}.form-check-input[type=radio]:checked:after{border-radius:50%;width:.625rem;height:.625rem;border-color:#1266f1;background-color:#1266f1;transition:border-color;transform:translate(50%, -50%);position:absolute;right:50%;top:50%}.form-check-input[type=radio]:checked:focus{background-color:#fff}.form-check-label{padding-right:.15rem}.form-check-label:hover{cursor:pointer}.form-switch .form-check-input{background-image:none;border-width:0;border-radius:.4375rem;width:2rem;height:.875rem;background-color:rgba(0,0,0,.38);margin-top:.3em;margin-left:8px}.form-switch .form-check-input:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#fff;margin-top:-0.1875rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.05);transition:background-color .2s,transform .2s}.form-switch .form-check-input:focus{background-image:none}.form-switch .form-check-input:focus:before{box-shadow:-3px -1px 0px 13px rgba(0,0,0,.6);transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:focus:after{border-radius:50%;width:1.25rem;height:1.25rem}.form-switch .form-check-input:checked{background-image:none}.form-switch .form-check-input:checked:focus{background-image:none}.form-switch .form-check-input:checked:focus:before{margin-right:1.0625rem;box-shadow:-3px -1px 0px 13px #1266f1;transform:scale(1);transition:box-shadow .2s,transform .2s}.form-switch .form-check-input:checked[type=checkbox]{background-image:none}.form-switch .form-check-input:checked[type=checkbox]:after{content:\"\";position:absolute;border:none;z-index:2;border-radius:50%;width:1.25rem;height:1.25rem;background-color:#1266f1;margin-top:-3px;margin-right:1.0625rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);transition:background-color .2s,transform .2s}.form-control[type=file]::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:rgba(0,0,0,0)}.input-group>.form-control{min-height:calc(2.08rem + 2px);height:calc(2.08rem + 2px);padding-top:.27rem;padding-bottom:.27rem;transition:all .2s linear}.input-group>.form-control:focus{transition:all .2s linear;border-color:#1266f1;outline:0;box-shadow:inset 0 0 0 1px #1266f1}.input-group-text{background-color:rgba(0,0,0,0);padding-top:.26rem;padding-bottom:.26rem}.input-group-text>.form-check-input[type=checkbox]{margin-right:1px;margin-left:1px}.input-group-text>.form-check-input[type=radio]{margin-left:0}.input-group-lg>.form-control{height:calc(2.645rem + 2px);font-size:1rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-lg .input-group-text{font-size:1rem}.input-group-sm>.form-control{min-height:calc(1.66rem + 2px);height:calc(1.66rem + 2px);font-size:.775rem;padding-top:.33rem;padding-bottom:.33rem}.input-group-sm .input-group-text{font-size:.775rem;line-height:1.5}.input-group.form-outline .input-group-text{border-right:0}.input-group.form-outline input+.input-group-text{border:0;border-right:1px solid #bdbdbd}.input-group .form-outline:not(:first-child),.input-group .select-wrapper:not(:first-child),.input-group .form-outline:not(:first-child) .form-notch-leading,.input-group .select-wrapper:not(:first-child) .form-notch-leading{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.input-group .form-outline:not(:last-child),.input-group .select-wrapper:not(:last-child),.input-group .form-outline:not(:last-child) .form-notch-trailing,.input-group .select-wrapper:not(:last-child) .form-notch-trailing{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.input-group>[class*=btn-outline-]+[class*=btn-outline-]{border-right:0}.input-group>.btn[class*=btn-outline-]{padding-top:.47rem}.input-group>.btn{padding-top:.59rem}.was-validated .input-group .invalid-feedback,.was-validated .input-group .valid-feedback{margin-top:2.5rem}.input-group .invalid-feedback,.input-group .valid-feedback{margin-top:2.5rem}.valid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#00b74a;margin-top:-0.75rem}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(0,183,74,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#00b74a}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-outline .form-control:valid~.form-label,.form-outline .form-control.is-valid~.form-label{color:#00b74a}.was-validated .form-outline .form-control:valid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid~.form-notch .form-notch-leading,.form-outline .form-control.is-valid~.form-notch .form-notch-middle,.form-outline .form-control.is-valid~.form-notch .form-notch-trailing{border-color:#00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:valid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #00b74a,0 1px 0 0 #00b74a,0 -1px 0 0 #00b74a}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #00b74a;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:valid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-valid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #00b74a,0 -1px 0 0 #00b74a,0 1px 0 0 #00b74a}.was-validated .form-select:valid,.form-select.is-valid{border-color:#00b74a}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#00b74a;box-shadow:0 0 0 .25rem rgba(0,183,74,.25)}.was-validated .form-select:valid~.valid-feedback,.form-select.is-valid~.valid-feedback{margin-top:0}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid{margin-bottom:0}.was-validated input[type=file].form-control:valid .valid-feedback,input[type=file].form-control.is-valid .valid-feedback{margin-top:0}.was-validated input[type=file].form-control:valid:focus,input[type=file].form-control.is-valid:focus{box-shadow:inset 0 0 0 1px #00b74a;border-color:#00b74a}.was-validated input[type=file].form-control:valid:focus~.form-file-label,input[type=file].form-control.is-valid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:valid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-valid:focus-within~.form-file-label .form-file-button{border-color:#00b74a}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#00b74a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#00b74a}.was-validated .form-check-input:valid:checked:focus:before,.form-check-input.is-valid:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:none}.was-validated .form-check-input:valid:focus:before,.form-check-input.is-valid:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#00b74a;margin-bottom:1rem}.was-validated .form-check-input:valid[type=checkbox]:checked:focus,.form-check-input.is-valid[type=checkbox]:checked:focus{background-color:#00b74a;border-color:#00b74a}.was-validated .form-check-input:valid[type=radio]:checked,.form-check-input.is-valid[type=radio]:checked{border-color:#00b74a;background-color:#fff}.was-validated .form-check-input:valid[type=radio]:checked:focus:before,.form-check-input.is-valid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #00b74a}.was-validated .form-check-input:valid[type=radio]:checked:after,.form-check-input.is-valid[type=radio]:checked:after{border-color:#00b74a;background-color:#00b74a}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.was-validated .form-switch .form-check-input:valid:focus:before,.form-switch .form-check-input.is-valid:focus:before{box-shadow:-3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:valid:checked[type=checkbox]:after,.form-switch .form-check-input.is-valid:checked[type=checkbox]:after{background-color:#00b74a;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:valid:checked:focus:before,.form-switch .form-check-input.is-valid:checked:focus:before{box-shadow:-3px -1px 0px 13px #00b74a}.invalid-feedback{position:absolute;display:none;width:auto;margin-top:.25rem;font-size:.875rem;color:#f93154;margin-top:-0.75rem}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;background-color:rgba(249,49,84,.9);border-radius:.25rem !important;color:#fff}.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{margin-bottom:1rem;background-image:none;border-color:#f93154}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-outline .form-control:invalid~.form-label,.form-outline .form-control.is-invalid~.form-label{color:#f93154}.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-leading,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid~.form-notch .form-notch-trailing{border-color:#f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.was-validated .form-outline .form-control:invalid.active~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.active~.form-notch .form-notch-middle{border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid:focus~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid:focus~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-leading,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-leading{box-shadow:1px 0 0 0 #f93154,0 1px 0 0 #f93154,0 -1px 0 0 #f93154}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-middle,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-middle{box-shadow:0 1px 0 0 #f93154;border-top:1px solid rgba(0,0,0,0)}.was-validated .form-outline .form-control:invalid.select-input.focused~.form-notch .form-notch-trailing,.form-outline .form-control.is-invalid.select-input.focused~.form-notch .form-notch-trailing{box-shadow:-1px 0 0 0 #f93154,0 -1px 0 0 #f93154,0 1px 0 0 #f93154}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f93154}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f93154;box-shadow:0 0 0 .25rem rgba(249,49,84,.25)}.was-validated .form-select:invalid~.invalid-feedback,.form-select.is-invalid~.invalid-feedback{margin-top:0}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid{margin-bottom:0}.was-validated input[type=file].form-control:invalid .invalid-feedback,input[type=file].form-control.is-invalid .invalid-feedback{margin-top:0}.was-validated input[type=file].form-control:invalid:focus,input[type=file].form-control.is-invalid:focus{box-shadow:inset 0 0 0 1px #f93154;border-color:#f93154}.was-validated input[type=file].form-control:invalid:focus~.form-file-label,input[type=file].form-control.is-invalid:focus~.form-file-label{box-shadow:none}.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-text,.was-validated input[type=file].form-control:invalid:focus-within~.form-file-label .form-file-button,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-text,input[type=file].form-control.is-invalid:focus-within~.form-file-label .form-file-button{border-color:#f93154}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f93154}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f93154}.was-validated .form-check-input:invalid:checked:focus:before,.form-check-input.is-invalid:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:none}.was-validated .form-check-input:invalid:focus:before,.form-check-input.is-invalid:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f93154;margin-bottom:1rem}.was-validated .form-check-input:invalid[type=checkbox]:checked:focus,.form-check-input.is-invalid[type=checkbox]:checked:focus{background-color:#f93154;border-color:#f93154}.was-validated .form-check-input:invalid[type=radio]:checked,.form-check-input.is-invalid[type=radio]:checked{border-color:#f93154;background-color:#fff}.was-validated .form-check-input:invalid[type=radio]:checked:focus:before,.form-check-input.is-invalid[type=radio]:checked:focus:before{box-shadow:0px 0px 0px 13px #f93154}.was-validated .form-check-input:invalid[type=radio]:checked:after,.form-check-input.is-invalid[type=radio]:checked:after{border-color:#f93154;background-color:#f93154}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.was-validated .form-switch .form-check-input:invalid:focus:before,.form-switch .form-check-input.is-invalid:focus:before{box-shadow:-3px -1px 0px 13px rgba(0,0,0,.6)}.was-validated .form-switch .form-check-input:invalid:checked[type=checkbox]:after,.form-switch .form-check-input.is-invalid:checked[type=checkbox]:after{background-color:#f93154;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.was-validated .form-switch .form-check-input:invalid:checked:focus:before,.form-switch .form-check-input.is-invalid:checked:focus:before{box-shadow:-3px -1px 0px 13px #f93154}.form-range:focus{box-shadow:none}.form-range:focus::-webkit-slider-thumb{box-shadow:none}.form-range:focus::-moz-range-thumb{box-shadow:none}.form-range:focus::-ms-thumb{box-shadow:none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{margin-top:-6px;box-shadow:none;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-runnable-track{height:4px;border-radius:0}.form-range::-moz-range-thumb{box-shadow:none;-moz-appearance:none;appearance:none}.table{font-size:.9rem}.table>:not(caption)>*>*{padding:1rem 1.4rem}.table th{font-weight:500}.table tbody{font-weight:300}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table-sm>:not(caption)>*>*{padding:.5rem 1.4rem}.table-primary{background-color:#d0e0fc}.table-secondary{background-color:#f0d8ff}.table-success{background-color:#ccf1db}.table-info{background-color:#d7f2fb}.table-warning{background-color:#fec}.table-danger{background-color:#fed6dd}.table-light{background-color:#f9f9f9}.table-dark{background-color:#262626}.table-hover>tbody>tr{transition:.5s}.table-hover>tbody>tr:hover{--mdb-table-accent-bg: transparent;background-color:var(--mdb-table-hover-bg)}.btn{text-transform:uppercase;vertical-align:bottom;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);font-weight:500;padding:.625rem 1.5rem .5rem 1.5rem;font-size:.75rem;line-height:1.5}.btn:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:focus,.btn.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active,.btn.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:active:focus,.btn.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}[class*=btn-outline-]{border-width:.125rem;border-style:solid;box-shadow:none;padding:.5rem 1.375rem .375rem 1.375rem}[class*=btn-outline-]:hover{box-shadow:none;text-decoration:none}[class*=btn-outline-]:focus,[class*=btn-outline-].focus{box-shadow:none;text-decoration:none}[class*=btn-outline-]:active,[class*=btn-outline-].active{box-shadow:none}[class*=btn-outline-]:active:focus,[class*=btn-outline-].active:focus{box-shadow:none}[class*=btn-outline-]:disabled,[class*=btn-outline-].disabled,fieldset:disabled [class*=btn-outline-]{box-shadow:none}[class*=btn-outline-].btn-lg,.btn-group-lg>[class*=btn-outline-].btn{padding:.625rem 1.5625rem .5625rem 1.5625rem}[class*=btn-outline-].btn-sm,.btn-group-sm>[class*=btn-outline-].btn{padding:.25rem .875rem .1875rem .875rem}.btn-primary{color:#fff;background-color:#1266f1}.btn-primary:hover{color:#fff;background-color:#0c56d0}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0c56d0}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#093d94}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#1266f1}.btn-secondary{color:#fff;background-color:#b23cfd}.btn-secondary:hover{color:#fff;background-color:#a316fd}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#a316fd}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#8102d1}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#b23cfd}.btn-success{color:#fff;background-color:#00b74a}.btn-success:hover{color:#fff;background-color:#00913b}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#00913b}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005121}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#00b74a}.btn-info{color:#fff;background-color:#39c0ed}.btn-info:hover{color:#fff;background-color:#16b5ea}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#16b5ea}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#1088b0}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-info:disabled,.btn-info.disabled{color:#fff;background-color:#39c0ed}.btn-warning{color:#fff;background-color:#ffa900}.btn-warning:hover{color:#fff;background-color:#d99000}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d99000}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#996500}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-warning:disabled,.btn-warning.disabled{color:#fff;background-color:#ffa900}.btn-danger{color:#fff;background-color:#f93154}.btn-danger:hover{color:#fff;background-color:#f80c35}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#f80c35}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#be0626}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#f93154}.btn-light{color:#4f4f4f;background-color:#f9f9f9}.btn-light:hover{color:#4f4f4f;background-color:#e6e6e6}.btn-light:focus,.btn-light.focus{color:#4f4f4f;background-color:#e6e6e6}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#4f4f4f;background-color:#c6c6c6}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-light:disabled,.btn-light.disabled{color:#4f4f4f;background-color:#f9f9f9}.btn-dark{color:#fff;background-color:#262626}.btn-dark:hover{color:#fff;background-color:#131313}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#131313}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#262626}.btn-white{color:#4f4f4f;background-color:#fff}.btn-white:hover{color:#4f4f4f;background-color:#ececec}.btn-white:focus,.btn-white.focus{color:#4f4f4f;background-color:#ececec}.btn-check:checked+.btn-white,.btn-check:active+.btn-white,.btn-white:active,.btn-white.active,.show>.btn-white.dropdown-toggle{color:#4f4f4f;background-color:#ccc}.btn-check:checked+.btn-white:focus,.btn-check:active+.btn-white:focus,.btn-white:active:focus,.btn-white.active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-white:disabled,.btn-white.disabled{color:#4f4f4f;background-color:#fff}.btn-black{color:#fff;background-color:#000}.btn-black:hover{color:#fff;background-color:#000}.btn-black:focus,.btn-black.focus{color:#fff;background-color:#000}.btn-check:checked+.btn-black,.btn-check:active+.btn-black,.btn-black:active,.btn-black.active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#000}.btn-check:checked+.btn-black:focus,.btn-check:active+.btn-black:focus,.btn-black:active:focus,.btn-black.active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-black:disabled,.btn-black.disabled{color:#fff;background-color:#000}.btn-outline-primary{color:#1266f1;border-color:#1266f1}.btn-outline-primary:hover{color:#1266f1;background-color:rgba(0,0,0,.02)}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#1266f1;background-color:rgba(0,0,0,0)}.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#1266f1}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary{color:#fff;background-color:#1266f1}.btn-outline-secondary{color:#b23cfd;border-color:#b23cfd}.btn-outline-secondary:hover{color:#b23cfd;background-color:rgba(0,0,0,.02)}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#b23cfd;background-color:rgba(0,0,0,0)}.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#b23cfd}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary{color:#fff;background-color:#b23cfd}.btn-outline-success{color:#00b74a;border-color:#00b74a}.btn-outline-success:hover{color:#00b74a;background-color:rgba(0,0,0,.02)}.btn-outline-success:focus,.btn-outline-success.focus{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#00b74a;background-color:rgba(0,0,0,0)}.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#00b74a}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success{color:#fff;background-color:#00b74a}.btn-outline-info{color:#39c0ed;border-color:#39c0ed}.btn-outline-info:hover{color:#39c0ed;background-color:rgba(0,0,0,.02)}.btn-outline-info:focus,.btn-outline-info.focus{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#39c0ed;background-color:rgba(0,0,0,0)}.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#39c0ed}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info{color:#fff;background-color:#39c0ed}.btn-outline-warning{color:#ffa900;border-color:#ffa900}.btn-outline-warning:hover{color:#ffa900;background-color:rgba(0,0,0,.02)}.btn-outline-warning:focus,.btn-outline-warning.focus{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#ffa900;background-color:rgba(0,0,0,0)}.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffa900}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning{color:#fff;background-color:#ffa900}.btn-outline-danger{color:#f93154;border-color:#f93154}.btn-outline-danger:hover{color:#f93154;background-color:rgba(0,0,0,.02)}.btn-outline-danger:focus,.btn-outline-danger.focus{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#f93154;background-color:rgba(0,0,0,0)}.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f93154}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger{color:#fff;background-color:#f93154}.btn-outline-light{color:#f9f9f9;border-color:#f9f9f9}.btn-outline-light:hover{color:#f9f9f9;background-color:rgba(0,0,0,.02)}.btn-outline-light:focus,.btn-outline-light.focus{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#f9f9f9;background-color:rgba(0,0,0,0)}.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f9f9f9}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light{color:#4f4f4f;background-color:#f9f9f9}.btn-outline-dark{color:#262626;border-color:#262626}.btn-outline-dark:hover{color:#262626;background-color:rgba(0,0,0,.02)}.btn-outline-dark:focus,.btn-outline-dark.focus{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#262626;background-color:rgba(0,0,0,0)}.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#262626}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark{color:#fff;background-color:#262626}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#fff;background-color:rgba(0,0,0,.02)}.btn-outline-white:focus,.btn-outline-white.focus{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show{color:#fff;background-color:rgba(0,0,0,0)}.btn-outline-white:active:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-white:disabled,.btn-outline-white.disabled{color:#fff}.btn-check:checked+.btn-outline-white,.btn-check:active+.btn-outline-white{color:#4f4f4f;background-color:#fff}.btn-outline-black{color:#000;border-color:#000}.btn-outline-black:hover{color:#000;background-color:rgba(0,0,0,.02)}.btn-outline-black:focus,.btn-outline-black.focus{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active,.btn-outline-black.active,.btn-outline-black.dropdown-toggle.show{color:#000;background-color:rgba(0,0,0,0)}.btn-outline-black:active:focus,.btn-outline-black.active:focus,.btn-outline-black.dropdown-toggle.show:focus{box-shadow:none}.btn-outline-black:disabled,.btn-outline-black.disabled{color:#000}.btn-check:checked+.btn-outline-black,.btn-check:active+.btn-outline-black{color:#fff;background-color:#000}.btn-lg,.btn-group-lg>.btn{padding:.75rem 1.6875rem .6875rem 1.6875rem;font-size:.875rem;line-height:1.6}.btn-sm,.btn-group-sm>.btn{padding:.375rem 1rem .3125rem 1rem;font-size:.75rem;line-height:1.5}.btn-link{box-shadow:none;text-decoration:none}.btn-link:hover{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:focus,.btn-link.focus{box-shadow:none;text-decoration:none;background-color:#f5f5f5}.btn-link:active,.btn-link.active{box-shadow:none;background-color:#f5f5f5}.btn-link:active:focus,.btn-link.active:focus{box-shadow:none;background-color:#f5f5f5}.btn-link:disabled,.btn-link.disabled,fieldset:disabled .btn-link{box-shadow:none}.btn-rounded{border-radius:10rem}.btn-floating,[class*=btn-outline-].btn-floating{border-radius:50%;padding:0;position:relative}.btn-floating{width:2.3125rem;height:2.3125rem}.btn-floating .fas,.btn-floating .far,.btn-floating .fab{width:2.3125rem;line-height:2.3125rem}.btn-floating.btn-lg,.btn-group-lg>.btn-floating.btn{width:2.8125rem;height:2.8125rem}.btn-floating.btn-lg .fas,.btn-group-lg>.btn-floating.btn .fas,.btn-floating.btn-lg .far,.btn-group-lg>.btn-floating.btn .far,.btn-floating.btn-lg .fab,.btn-group-lg>.btn-floating.btn .fab{width:2.8125rem;line-height:2.8125rem}.btn-floating.btn-sm,.btn-group-sm>.btn-floating.btn{width:1.8125rem;height:1.8125rem}.btn-floating.btn-sm .fas,.btn-group-sm>.btn-floating.btn .fas,.btn-floating.btn-sm .far,.btn-group-sm>.btn-floating.btn .far,.btn-floating.btn-sm .fab,.btn-group-sm>.btn-floating.btn .fab{width:1.8125rem;line-height:1.8125rem}[class*=btn-outline-].btn-floating .fas,[class*=btn-outline-].btn-floating .far,[class*=btn-outline-].btn-floating .fab{width:2.0625rem;line-height:2.0625rem}[class*=btn-outline-].btn-floating.btn-lg .fas,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-lg .far,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-lg .fab,.btn-group-lg>[class*=btn-outline-].btn-floating.btn .fab{width:2.5625rem;line-height:2.5625rem}[class*=btn-outline-].btn-floating.btn-sm .fas,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fas,[class*=btn-outline-].btn-floating.btn-sm .far,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .far,[class*=btn-outline-].btn-floating.btn-sm .fab,.btn-group-sm>[class*=btn-outline-].btn-floating.btn .fab{width:1.5625rem;line-height:1.5625rem}.fixed-action-btn{position:fixed;left:2.1875rem;bottom:2.1875rem;z-index:1030;display:flex;flex-flow:column-reverse nowrap;align-items:center;padding:.9375rem 20px 20px 20px;margin-bottom:0;height:auto;overflow:hidden}.fixed-action-btn>.btn-floating{position:relative;transform:scale(1.2);z-index:10}.fixed-action-btn ul{position:absolute;bottom:0;right:0;left:0;display:flex;flex-direction:column;padding:0;margin:0;margin-bottom:0;text-align:center;opacity:0;transition:transform .4s,opacity .4s;z-index:-1}.fixed-action-btn ul li{z-index:0;display:flex;margin-left:auto;margin-bottom:1.5rem;margin-right:auto}.fixed-action-btn ul li:first-of-type{margin-top:.75rem}.fixed-action-btn ul a.btn{opacity:0;transition:opacity .4s ease-in}.fixed-action-btn ul a.btn.shown{opacity:1}.fixed-action-btn.active ul{opacity:1}.dropdown-menu{color:#212529;margin:0;padding-top:0;padding-bottom:0;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);font-size:.875rem}.dropdown-menu>li{border-radius:0}.dropdown-menu>li:first-child{border-top-right-radius:.5rem;border-top-left-radius:.5rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-menu>li:first-child .dropdown-item{border-top-right-radius:.5rem;border-top-left-radius:.5rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-menu>li:not(:first-child):not(:last-child) .dropdown-item{border-radius:0}.dropdown-menu>li:last-child{border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.dropdown-menu>li:last-child .dropdown-item{border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.dropdown-menu.animation{display:block;-webkit-animation-duration:.55s;animation-duration:.55s;-webkit-animation-timing-function:ease;animation-timing-function:ease}.dropdown-item{padding:.5rem 1rem;color:#212529;border-radius:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#16181b;background-color:#eee}.hidden-arrow.dropdown-toggle:after{display:none}.animation{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;padding:auto}@media(prefers-reduced-motion){.animation{transition:none !important;-webkit-animation:unset !important;animation:unset !important}}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{from{opacity:1}to{opacity:0}}@keyframes fade-out{from{opacity:1}to{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}.btn-group,.btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border-radius:3px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-group:hover,.btn-group-vertical:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:focus,.btn-group.focus,.btn-group-vertical:focus,.btn-group-vertical.focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active,.btn-group.active,.btn-group-vertical:active,.btn-group-vertical.active{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:active:focus,.btn-group.active:focus,.btn-group-vertical:active:focus,.btn-group-vertical.active:focus{box-shadow:0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1)}.btn-group:disabled,.btn-group.disabled,fieldset:disabled .btn-group,.btn-group-vertical:disabled,.btn-group-vertical.disabled,fieldset:disabled .btn-group-vertical{box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);border:0}.btn-group>.btn,.btn-group-vertical>.btn{box-shadow:none}.btn-group>.btn-group,.btn-group-vertical>.btn-group{box-shadow:none}.btn-group>.btn-link:first-child,.btn-group-vertical>.btn-link:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-link:last-child,.btn-group-vertical>.btn-link:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.nav-tabs{border-bottom:0}.nav-tabs .nav-link{border-width:0 0 2px 0;border-style:solid;border-color:rgba(0,0,0,0);border-radius:0;text-transform:uppercase;line-height:1;font-weight:500;font-size:12px;color:rgba(0,0,0,.6);padding:17px 29px 16px 29px}.nav-tabs .nav-link:hover{background-color:#f5f5f5;border-color:rgba(0,0,0,0)}.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#1266f1;border-color:#1266f1}.nav-pills{margin-right:-0.5rem}.nav-pills .nav-link{border-radius:.25rem;font-size:12px;text-transform:uppercase;padding:17px 29px 16px 29px;line-height:1;background-color:#f5f5f5;font-weight:500;color:rgba(0,0,0,.6);margin:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#1266f1;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1)}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:auto}.navbar{box-shadow:0 4px 12px 0 rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);padding-top:.5625rem}.navbar-toggler{border:0}.navbar-toggler:focus{box-shadow:none}.navbar-dark .navbar-toggler,.navbar-light .navbar-toggler{border:0}.navbar-brand{display:flex;align-items:center}.navbar-brand img{margin-left:.25rem}.navbar-nav .dropdown-menu{position:absolute}.navbar-light .navbar-toggler-icon{background-image:none}.navbar-dark .navbar-toggler-icon{background-image:none}.card{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.card .bg-image{border-top-right-radius:.5rem;border-top-left-radius:.5rem}.card-header{background-color:rgba(255,255,255,0)}.card-body[class*=bg-]{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.card-footer{background-color:rgba(255,255,255,0)}.card-img-left{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.navbar .breadcrumb{background-color:rgba(0,0,0,0);margin-bottom:0}.navbar .breadcrumb .breadcrumb-item a{color:rgba(0,0,0,.55);transition:color .15s ease-in-out}.navbar .breadcrumb .breadcrumb-item a:hover,.navbar .breadcrumb .breadcrumb-item a:focus{color:rgba(0,0,0,.7)}.navbar .breadcrumb .breadcrumb-item+.breadcrumb-item:before{color:rgba(0,0,0,.55)}.page-link{border:0;font-size:.9rem;color:#212529;background-color:rgba(0,0,0,0);border:0;outline:0;transition:all .3s linear;border-radius:.25rem}.page-link:hover{color:#212529}.page-link:focus{box-shadow:none}.page-item.active .page-link{background-color:#1266f1;border:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);transition:all .2s linear}.page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:not(:first-child) .page-link{margin-right:0}.pagination-lg .page-item:first-child .page-link,.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-circle .page-item:first-child .page-link{border-radius:50%}.pagination-circle .page-item:last-child .page-link{border-radius:50%}.pagination-circle .page-link{border-radius:50%;padding-right:.841rem;padding-left:.841rem}.pagination-circle.pagination-lg .page-link{padding-right:1.399414rem;padding-left:1.399415rem}.pagination-circle.pagination-sm .page-link{padding-right:.696rem;padding-left:.688rem}.badge{border-radius:.27rem}.badge-dot{position:absolute;border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px;margin-right:-0.3125rem}.badge-dot:empty{display:inline-block}.badge-notification{position:absolute;font-size:.6rem;margin-top:-0.1rem;margin-right:-0.5rem;padding:.2em .45em}.badge-primary{background-color:#cfe0fc;color:#0a47a9}.badge-primary i{color:#5693f5}.badge-secondary{background-color:#ebcdfe;color:#6e02b1}.badge-secondary i{color:#a61cfd}.badge-success{background-color:#c7f5d9;color:#0b4121}.badge-success i{color:#1b984d}.badge-danger{background-color:#fdd8de;color:#790619}.badge-danger i{color:#f42547}.badge-warning{background-color:#ffebc2;color:#453008}.badge-warning i{color:#c80}.badge-info{background-color:#d0f0fb;color:#084154}.badge-info i{color:#13a3d2}.badge-light{background-color:#f5f5f5;color:#404040}.badge-light i{color:#8c8c8c}.badge-dark{background-color:#292929;color:#f5f5f5}.badge-dark i{color:#d9d9d9}.alert{border:0;border-radius:.5rem}.alert-absolute{position:absolute}.alert-fixed{position:fixed;z-index:1070}.parent-alert-relative{position:relative}.progress{border-radius:0}.list-group-item-action{transition:.5s}.list-group-item-action:hover{transition:.5s}.list-group-light .list-group-item{padding:1rem 0;border:2px solid #f5f5f5}.list-group-light>.list-group-item{border-width:0 0 2px}.list-group-light>.list-group-item:last-of-type{border:none}.list-group-light .active{border:none;border-radius:.5rem;background-color:#cfe0fc;color:#0a47a9}.list-group-light .list-group-item-action:hover{border-radius:.5rem}.list-group-light .list-group-item-action:focus{border-radius:.5rem}.list-group-small .list-group-item{padding:.5rem 0}.input-group.input-group-lg .input-group-text{height:calc(2.645rem + 2px)}.input-group .input-group-text{height:calc(2.08rem + 2px)}.input-group .btn{line-height:1}.input-group.input-group-sm .input-group-text{height:calc(1.66rem + 2px)}.btn-close:focus{box-shadow:none}.modal-content{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast{background-color:#fff;border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.toast .btn-close{width:1.3em}.toast-header{background-color:#fff}.parent-toast-relative{position:relative}.toast-absolute{position:absolute}.toast-fixed{position:fixed;z-index:1060}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{display:none}.tooltip-inner{color:#fff;padding:6px 16px;font-size:14px;background-color:#6d6d6d;border-radius:.25rem}.popover{border:0;box-shadow:0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)}.popover .popover-arrow{display:none}.popover-header{background-color:#fff}.nav-pills.menu-sidebar .nav-link{font-size:.8rem;background-color:rgba(0,0,0,0);color:#262626;line-height:1.1rem;padding:0 5px;font-weight:400;transition:all .2s ease-in-out;text-transform:initial;margin-top:3px;margin-bottom:3px}.nav-pills.menu-sidebar .nav-link.active,.nav-pills.menu-sidebar .show>.nav-link{background-color:rgba(0,0,0,0);box-shadow:none;color:#1266f1;font-weight:600;border-right:.125rem solid #1266f1;border-radius:0}.nav-pills.menu-sidebar .collapsible-scrollspy~.nav{transition:height .5s ease;flex-wrap:nowrap}.ripple-surface{position:relative;overflow:hidden;display:inline-block;vertical-align:bottom}.ripple-surface-unbound{overflow:visible}.ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%);border-radius:50%;opacity:.5;pointer-events:none;position:absolute;touch-action:none;transform:scale(0);transition-property:transform,opacity;transition-timing-function:cubic-bezier(0, 0, 0.15, 1),cubic-bezier(0, 0, 0.15, 1);z-index:999}.ripple-wave.active{transform:scale(1);opacity:0}.btn .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-primary .ripple-wave{background-image:radial-gradient(circle, rgba(18, 102, 241, 0.2) 0, rgba(18, 102, 241, 0.3) 40%, rgba(18, 102, 241, 0.4) 50%, rgba(18, 102, 241, 0.5) 60%, rgba(18, 102, 241, 0) 70%)}.ripple-surface-secondary .ripple-wave{background-image:radial-gradient(circle, rgba(178, 60, 253, 0.2) 0, rgba(178, 60, 253, 0.3) 40%, rgba(178, 60, 253, 0.4) 50%, rgba(178, 60, 253, 0.5) 60%, rgba(178, 60, 253, 0) 70%)}.ripple-surface-success .ripple-wave{background-image:radial-gradient(circle, rgba(0, 183, 74, 0.2) 0, rgba(0, 183, 74, 0.3) 40%, rgba(0, 183, 74, 0.4) 50%, rgba(0, 183, 74, 0.5) 60%, rgba(0, 183, 74, 0) 70%)}.ripple-surface-info .ripple-wave{background-image:radial-gradient(circle, rgba(57, 192, 237, 0.2) 0, rgba(57, 192, 237, 0.3) 40%, rgba(57, 192, 237, 0.4) 50%, rgba(57, 192, 237, 0.5) 60%, rgba(57, 192, 237, 0) 70%)}.ripple-surface-warning .ripple-wave{background-image:radial-gradient(circle, rgba(255, 169, 0, 0.2) 0, rgba(255, 169, 0, 0.3) 40%, rgba(255, 169, 0, 0.4) 50%, rgba(255, 169, 0, 0.5) 60%, rgba(255, 169, 0, 0) 70%)}.ripple-surface-danger .ripple-wave{background-image:radial-gradient(circle, rgba(249, 49, 84, 0.2) 0, rgba(249, 49, 84, 0.3) 40%, rgba(249, 49, 84, 0.4) 50%, rgba(249, 49, 84, 0.5) 60%, rgba(249, 49, 84, 0) 70%)}.ripple-surface-light .ripple-wave{background-image:radial-gradient(circle, rgba(249, 249, 249, 0.2) 0, rgba(249, 249, 249, 0.3) 40%, rgba(249, 249, 249, 0.4) 50%, rgba(249, 249, 249, 0.5) 60%, rgba(249, 249, 249, 0) 70%)}.ripple-surface-dark .ripple-wave{background-image:radial-gradient(circle, rgba(38, 38, 38, 0.2) 0, rgba(38, 38, 38, 0.3) 40%, rgba(38, 38, 38, 0.4) 50%, rgba(38, 38, 38, 0.5) 60%, rgba(38, 38, 38, 0) 70%)}.ripple-surface-white .ripple-wave{background-image:radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)}.ripple-surface-black .ripple-wave{background-image:radial-gradient(circle, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 70%)}.range{position:relative}.range .thumb{position:absolute;display:block;height:30px;width:30px;top:-35px;margin-right:-15px;text-align:center;border-radius:50% 50% 0 50%;transform:scale(0);transform-origin:bottom;transition:transform .2s ease-in-out}.range .thumb:after{position:absolute;display:block;content:\"\";transform:translateX(50%);width:100%;height:100%;top:0;border-radius:50% 50% 0 50%;transform:rotate(45deg);background:#1266f1;z-index:-1}.range .thumb .thumb-value{display:block;font-size:12px;line-height:30px;color:#fff;font-weight:500;z-index:2}.range .thumb.thumb-active{transform:scale(1)}.accordion-button:not(.collapsed):focus{box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:focus{border-color:#1266f1;outline:0;box-shadow:none}.carousel-control-next-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}.carousel-control-prev-icon::after{content:\"\";font-weight:700;font-family:\"Font Awesome 6 Pro\",\"Font Awesome 6 Free\";font-size:1.7rem}\n\n/*# sourceMappingURL=data:application/json;base64,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QUE4QywwQ0FBdUMsQ0FBQyx1Q0FBdUMsMENBQXVDLENBQUMseUNBQXlDLDBDQUF1QyxDQUFDLHFDQUFxQywwQ0FBdUMsQ0FBQyw2Q0FBNkMsMENBQXVDLENBQUMsMENBQTBDLDBDQUF1QyxDQUFDLHNDQUFzQywwQ0FBdUMsQ0FBQyx3Q0FBd0MsMENBQXVDLENBQUMsMENBQTBDLDBDQUF1QyxDQUFDLHVDQUF1QywwQ0FBdUMsQ0FBQyw0Q0FBNEMsMENBQXVDLENBQUMsd0NBQXdDLDBDQUF1QyxDQUFDLHVDQUF1QywwQ0FBdUMsQ0FBQyx1Q0FBdUMsMENBQXVDLENBQUMscUNBQXFDLDBDQUF1QyxDQUFDLHVDQUF1QywwQ0FBdUMsQ0FBQyxzQ0FBc0MsMENBQXVDLENBQUMsdUNBQXVDLDBDQUF1QyxDQUFDLHNDQUFzQywwQ0FBdUMsQ0FBQyx1Q0FBdUMsMENBQXVDLENBQUMsc0NBQXNDLDBDQUF1QyxDQUFDLDZDQUE2QywwQ0FBdUMsQ0FBQyx3Q0FBd0MsMENBQXVDLENBQUMsdUNBQXVDLDBDQUF1QyxDQUFDLHNDQUFzQywwQ0FBdUMsQ0FBQyxzQ0FBc0MsMENBQXVDLENBQUMsNkNBQTZDLDBDQUF1QyxDQUFDLHFDQUFxQywwQ0FBdUMsQ0FBQyx3REFBd0QsMkNBQXdDLENBQUMsaURBQWlELDJDQUF3QyxDQUFDLDJDQUEyQywyQ0FBd0MsQ0FBQyw0Q0FBNEMsMkNBQXdDLENBQUMsNENBQTRDLDJDQUF3QyxDQUFDLHFDQUFxQywyQ0FBd0MsQ0FBQyx3Q0FBd0MsMkNBQXdDLENBQUMscUNBQXFDLDJDQUF3QyxDQUFDLHdDQUF3QywyQ0FBd0MsQ0FBQywwQ0FBMEMsMkNBQXdDLENBQUMsc0NBQXNDLDJDQUF3QyxDQUFDLG9DQUFvQywyQ0FBd0MsQ0FBQywwQ0FBMEMsMkNBQXdDLENBQUMsZ0RBQWdELDJDQUF3QyxDQUFDLHNDQUFzQywyQ0FBd0MsQ0FBQyw4Q0FBOEMsMkNBQXdDLENBQUMsdUNBQXVDLDJDQUF3QyxDQUFDLHdDQUF3QywyQ0FBd0MsQ0FBQyx1Q0FBdUMsMkNBQXdDLENBQUMsd0NBQXdDLDJDQUF3QyxDQUFDLGtEQUFrRCwyQ0FBd0MsQ0FBQyx1Q0FBdUMsMkNBQXdDLENBQUMsdUNBQXVDLDJDQUF3QyxDQUFDLHVDQUF1QywyQ0FBd0MsQ0FBQyxxQ0FBcUMsMkNBQXdDLENBQUMsOENBQThDLDJDQUF3QyxDQUFDLDJDQUEyQywyQ0FBd0MsQ0FBQyx1Q0FBdUMsMkNBQXdDLENBQUMscUNBQXFDLDJDQUF3QyxDQUFDLHdDQUF3QywyQ0FBd0MsQ0FBQyw4Q0FBOEMsMkNBQXdDLENBQUMsdUNBQXVDLDJDQUF3QyxDQUFDLG9DQUFvQywyQ0FBd0MsQ0FBQyxnREFBZ0QsMkNBQXdDLENBQUMsMENBQTBDLDJDQUF3QyxDQUFDLDZDQUE2QywyQ0FBd0MsQ0FBQyxzQ0FBc0MsMkNBQXdDLENBQUMscUNBQXFDLHNDQUFzQyxDQUFDLCtEQUErRCwwQ0FBMEMsQ0FBQyx1Q0FBdUMsMENBQTBDLENBQUMsdUNBQXVDLDBDQUEwQyxDQUFDLDZDQUE2QywyQ0FBMkMsQ0FBQyxxQ0FBcUMsMkNBQTJDLENBQUMseUNBQXlDLDJDQUEyQyxDQUFDLHlDQUF5QywyQ0FBMkMsQ0FBQyxzQ0FBc0MsMkNBQTJDLENBQUMsc0NBQXNDLDJDQUEyQyxDQUFDLDBDQUEwQywyQ0FBMkMsQ0FBQyxpREFBaUQsMkNBQTJDLENBQUMsc0NBQXNDLDJDQUEyQyxDQUFDLGdEQUFnRCwyQ0FBMkMsQ0FBQyx5Q0FBeUMsMkNBQTJDLENBQUMsb0NBQW9DLDJDQUEyQyxDQUFDLDZDQUE2QywyQ0FBMkMsQ0FBQyxzQ0FBc0MsMkNBQTJDLENBQUMseUNBQXlDLDJDQUEyQyxDQUFDLDRDQUE0QywyQ0FBMkMsQ0FBQyx3Q0FBd0MsMkNBQTJDLENBQUMsdUNBQXVDLDJDQUEyQyxDQUFDLHFDQUFxQywyQ0FBMkMsQ0FBQyx1Q0FBdUMsMkNBQTJDLENBQUMseUNBQXlDLDJDQUEyQyxDQUFDLHVDQUF1QywyQ0FBMkMsQ0FBQyxzQ0FBc0MsMkNBQTJDLENBQUMscUNBQXFDLDJDQUEyQyxDQUFDLHNEQUFzRCwyQ0FBMkMsQ0FBQyxvQ0FBb0MsMkNBQTJDLENBQUMsb0NBQW9DLDJDQUEyQyxDQUFDLHVDQUF1QywyQ0FBMkMsQ0FBQyxxQ0FBcUMsMkNBQTJDLENBQUMsdUNBQXVDLDJDQUEyQyxDQUFDLHNDQUFzQywyQ0FBMkMsQ0FBQyxxQ0FBcUMsMkNBQTJDLENBQUMscUNBQXFDLDJDQUEyQyxDQUFDLDBDQUEwQywyQ0FBMkMsQ0FBQyx3Q0FBd0MsMkNBQTJDLENBQUMsd0NBQXdDLDRDQUE0QyxDQUFDLHVDQUF1Qyw0Q0FBNEMsQ0FBQyxxREFBcUQsNENBQTRDLENBQUMsMkNBQTJDLDRDQUE0QyxDQUFDLDJDQUEyQyw0Q0FBNEMsQ0FBQyxzQ0FBc0MsNENBQTRDLENBQUMsOENBQThDLDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQyxvQ0FBb0MsNENBQTRDLENBQUMsdUNBQXVDLDRDQUE0QyxDQUFDLDJDQUEyQyw0Q0FBNEMsQ0FBQyw2Q0FBNkMsNENBQTRDLENBQUMseUNBQXlDLDRDQUE0QyxDQUFDLHVDQUF1Qyw0Q0FBNEMsQ0FBQyx1Q0FBdUMsNENBQTRDLENBQUMseUNBQXlDLDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQyxzQ0FBc0MsNENBQTRDLENBQUMscUNBQXFDLDRDQUE0QyxDQUFDLHVDQUF1Qyw0Q0FBNEMsQ0FBQyxzQ0FBc0MsNENBQTRDLENBQUMsdUNBQXVDLDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQywwQ0FBMEMsNENBQTRDLENBQUMsZ0RBQWdELDRDQUE0QyxDQUFDLHlDQUF5Qyw0Q0FBNEMsQ0FBQyxvQ0FBb0MsNENBQTRDLENBQUMsMkRBQTJELDRDQUE0QyxDQUFDLHdDQUF3Qyw0Q0FBNEMsQ0FBQyxxQ0FBcUMsNENBQTRDLENBQUMsd0RBQXdELDRDQUE0QyxDQUFDLDBDQUEwQyw0Q0FBNEMsQ0FBQywwQ0FBMEMsNENBQTRDLENBQUMsMENBQTBDLDRDQUE0QyxDQUFDLHFDQUFxQyw0Q0FBNEMsQ0FBQyx5Q0FBeUMsNENBQTRDLENBQUMsd0NBQXdDLDRDQUE0QyxDQUFDLHNDQUFzQyw0Q0FBNEMsQ0FBQyxzQ0FB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LENBQUMsa0JBQWtCLFdBQVcsQ0FBQyxjQUFjLHFCQUFxQixDQUFDLHVCQUF1QixpQkFBaUIsQ0FBQyxnQkFBZ0IsaUJBQWlCLENBQUMsYUFBYSxlQUFlLFlBQVksQ0FBQyxjQUFjLFNBQVMsQ0FBQyx3QkFBd0IsWUFBWSxDQUFDLGVBQWUsV0FBVyxpQkFBaUIsZUFBZSx5QkFBeUIsb0JBQW9CLENBQUMsU0FBUyxTQUFTLDBFQUEwRSxDQUFDLHdCQUF3QixZQUFZLENBQUMsZ0JBQWdCLHFCQUFxQixDQUFDLGtDQUFrQyxnQkFBZ0IsK0JBQStCLGNBQWMsbUJBQW1CLGNBQWMsZ0JBQWdCLCtCQUErQix1QkFBdUIsZUFBZSxpQkFBaUIsQ0FBQyxpRkFBaUYsK0JBQStCLGdCQUFnQixjQUFjLGdCQUFnQixtQ0FBa0MsZUFBZSxDQUFDLG9EQUFvRCwyQkFBMkIsZ0JBQWdCLENBQUMsZ0JBQWdCLGtCQUFrQixnQkFBZ0IscUJBQXFCLHFCQUFxQixDQUFDLHdCQUF3QixnQkFBZ0IsQ0FBQyxhQUFhLDZKQUE2SixrQkFBa0IsV0FBVyxvQkFBb0Isa0JBQWtCLGtCQUFrQixtQkFBbUIsc0NBQXNDLG1GQUFtRixXQUFXLENBQUMsb0JBQW9CLG1CQUFtQixTQUFTLENBQUMsa0JBQWtCLDBMQUEwTCxDQUFDLHFDQUFxQyxxTEFBcUwsQ0FBQyx1Q0FBdUMscUxBQXFMLENBQUMscUNBQXFDLDJLQUEySyxDQUFDLGtDQUFrQyxxTEFBcUwsQ0FBQyxxQ0FBcUMsZ0xBQWdMLENBQUMsb0NBQW9DLGdMQUFnTCxDQUFDLG1DQUFtQywwTEFBMEwsQ0FBQyxrQ0FBa0MsMktBQTJLLENBQUMsbUNBQW1DLDBMQUEwTCxDQUFDLG1DQUFtQyw0SkFBNEosQ0FBQyxPQUFPLGlCQUFpQixDQUFDLGNBQWMsa0JBQWtCLGNBQWMsWUFBWSxXQUFXLFVBQVUsbUJBQWtCLGtCQUFrQiw0QkFBNEIsbUJBQW1CLHdCQUF3QixvQ0FBb0MsQ0FBQyxvQkFBb0Isa0JBQWtCLGNBQWMsV0FBVywwQkFBMkIsV0FBVyxZQUFZLE1BQU0sNEJBQTRCLHdCQUF5QixtQkFBbUIsVUFBVSxDQUFDLDJCQUEyQixjQUFjLGVBQWUsaUJBQWlCLFdBQVcsZ0JBQWdCLFNBQVMsQ0FBQywyQkFBMkIsa0JBQWtCLENBQUMsd0NBQXdDLDBDQUEwQyxDQUFDLHdCQUF3QixxQkFBcUIsVUFBVSxlQUFlLENBQUMsbUNBQW1DLFlBQVksZ0JBQWdCLHVEQUF1RCxnQkFBZ0IsQ0FBQyxtQ0FBbUMsWUFBWSxnQkFBZ0IsdURBQXVELGdCQUFnQixDQUFDIiwiZmlsZSI6InRvLmNzcyIsInNvdXJjZXNDb250ZW50IjpbIlxuW3R5cGU9XCJ0ZWxcIl0sXG5bdHlwZT1cInVybFwiXSxcblt0eXBlPVwiZW1haWxcIl0sXG5bdHlwZT1cIm51bWJlclwiXSB7XG4gIGRpcmVjdGlvbjogbHRyO1xufSJdfQ== */"]} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 000000000..f4ae8b61e --- /dev/null +++ b/index.html @@ -0,0 +1,183 @@ + + + + + + + Chitter + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + +
      +
    + Load more peeps +
    +
    + + + + + + + + diff --git a/index.js b/index.js new file mode 100644 index 000000000..7fdaa6dea --- /dev/null +++ b/index.js @@ -0,0 +1,9 @@ +const ChitterApi = require("./chitterApi"); +const ChitterModel = require("./chitterModel"); +const ChitterView = require("./chitterView"); + +const model = new ChitterModel(); +const api = new ChitterApi(); +const view = new ChitterView(model, api); + +view.displayPeepsFromApi(); diff --git a/js/mdb.min.js b/js/mdb.min.js new file mode 100644 index 000000000..38d8ce71a --- /dev/null +++ b/js/mdb.min.js @@ -0,0 +1,20 @@ +/*! + * MDB5 + * Version: FREE 4.1.0 + * + * + * Copyright: Material Design for Bootstrap + * https://mdbootstrap.com/ + * + * Read the license: https://mdbootstrap.com/general/license/ + * + * + * Documentation: https://mdbootstrap.com/docs/standard/ + * + * Support: https://mdbootstrap.com/support/ + * + * Contact: office@mdbootstrap.com + * + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("mdb",[],e):"object"==typeof exports?exports.mdb=e():t.mdb=e()}(this,function(){return n=[function(n,t,e){!function(t){function e(t){return t&&t.Math==Math&&t}n.exports=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof t&&t)||function(){return this}()||Function("return this")()}.call(this,e(74))},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){"use strict";var i=n(18),n=n(45);i({target:"RegExp",proto:!0,forced:/./.exec!==n},{exec:n})},function(t,e,n){var n=n(33),i=Function.prototype,o=i.bind,r=i.call,s=n&&o.bind(r,r);t.exports=n?function(t){return t&&s(t)}:function(t){return t&&function(){return r.apply(t,arguments)}}},function(t,e){t.exports=function(t){return"function"==typeof t}},function(t,e,n){var i=n(0),o=n(36),r=n(7),s=n(54),a=n(50),c=n(49),l=o("wks"),u=i.Symbol,h=u&&u.for,d=c?u:u&&u.withoutSetter||s;t.exports=function(t){var e;return r(l,t)&&(a||"string"==typeof l[t])||(e="Symbol."+t,a&&r(u,t)?l[t]=u[t]:l[t]=(c&&h?h:d)(e)),l[t]}},function(t,e,n){n=n(1);t.exports=!n(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},function(t,e,n){var i=n(3),o=n(28),r=i({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return r(o(t),e)}},function(t,e,n){"use strict";var i=n(18),o=n(60).includes,r=n(1),n=n(70);i({target:"Array",proto:!0,forced:r(function(){return!Array(1).includes()})},{includes:function(t){return o(this,t,1=e.length?{value:t.target=void 0,done:!0}:"keys"==n?{value:i,done:!1}:"values"==n?{value:e[i],done:!1}:{value:[i,e[i]],done:!1}},"values"),r.Arguments=r.Array);if(o("keys"),o("values"),o("entries"),!l&&n&&"values"!==s.name)try{a(s,"name",{value:"values"})}catch(t){}},function(t,e,n){var n=n(33),i=Function.prototype.call;t.exports=n?i.bind(i):function(){return i.apply(i,arguments)}},function(t,e,n){var i=n(0),o=n(14),r=i.String,s=i.TypeError;t.exports=function(t){if(o(t))return t;throw s(r(t)+" is not an object")}},function(t,e,n){function i(e,t){if(e){if(e[u]!==d)try{l(e,u,d)}catch(t){e[u]=d}if(e[h]||l(e,h,t),s[t])for(var n in c)if(e[n]!==c[n])try{l(e,n,c[n])}catch(t){e[n]=c[n]}}}var o,r=n(0),s=n(107),a=n(108),c=n(10),l=n(15),n=n(5),u=n("iterator"),h=n("toStringTag"),d=c.values;for(o in s)i(r[o]&&r[o].prototype,o);i(a,"DOMTokenList")},function(t,e,n){var i=n(4);t.exports=function(t){return"object"==typeof t?null!==t:i(t)}},function(t,e,n){var i=n(6),o=n(9),r=n(24);t.exports=i?function(t,e,n){return o.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var i=n(0),o=n(85),r=i.String;t.exports=function(t){if("Symbol"===o(t))throw TypeError("Cannot convert a Symbol value to a string");return r(t)}},function(M,H,t){var e=t(6),n=t(0),i=t(3),o=t(63),l=t(92),u=t(15),r=t(58).f,h=t(35),d=t(94),f=t(16),p=t(95),s=t(65),a=t(96),c=t(22),g=t(1),m=t(7),_=t(29).enforce,v=t(97),b=t(5),y=t(66),w=t(67),E=b("match"),x=n.RegExp,C=x.prototype,T=n.SyntaxError,O=i(C.exec),A=i("".charAt),S=i("".replace),L=i("".indexOf),R=i("".slice),B=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,I=/a/g,k=/a/g,t=new x(I)!==I,D=s.MISSED_STICKY,W=s.UNSUPPORTED_Y,b=e&&(!t||D||y||w||g(function(){return k[E]=!1,x(I)!=I||x(k)==k||"/a/i"!=x(I,"i")}));if(o("RegExp",b)){function N(t,e){var n,i,o=h(C,this),r=d(t),s=void 0===e,a=[],c=t;if(!o&&r&&s&&t.constructor===N)return t;if((r||h(C,t))&&(t=t.source,s&&(e=p(c))),t=void 0===t?"":f(t),e=void 0===e?"":f(e),c=t,r=e=y&&"dotAll"in I&&(n=!!e&&-1"===e&&c:if(""===u||m(s,u))throw new T("Invalid capture group name");s[u]=!0,c=!(r[r.length]=[u,l]),u="";continue}c?u+=e:o+=e}return[o,r]}(t))[0],a=s[1]),s=l(x(t,e),o?this:C,N),(n||i||a.length)&&(e=_(s),n&&(e.dotAll=!0,e.raw=N(function(t){for(var e,n=t.length,i=0,o="",r=!1;i<=n;i++)"\\"===(e=A(t,i))?o+=e+A(t,++i):r||"."!==e?("["===e?r=!0:"]"===e&&(r=!1),o+=e):o+="[\\s\\S]";return o}(t),r)),i&&(e.sticky=!0),a.length&&(e.groups=a)),t!==c)try{u(s,"source",""===c?"(?:)":c)}catch(t){}return s}for(var j=r(x),P=0;j.length>P;)a(N,x,j[P++]);(C.constructor=N).prototype=C,c(n,"RegExp",N,{constructor:!0})}v("RegExp")},function(t,e,n){var l=n(0),u=n(47).f,h=n(15),d=n(22),f=n(38),p=n(82),g=n(63);t.exports=function(t,e){var n,i,o,r=t.target,s=t.global,a=t.stat,c=s?l:a?l[r]||f(r,{}):(l[r]||{}).prototype;if(c)for(n in e){if(i=e[n],o=t.noTargetGet?(o=u(c,n))&&o.value:c[n],!g(s?n:r+(a?".":"#")+n,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;p(i,o)}(t.sham||o&&o.sham)&&h(i,"sham",!0),d(c,n,i,t)}}},function(t,e,n){var i=n(76),o=n(20);t.exports=function(t){return i(o(t))}},function(t,e,n){var i=n(0).TypeError;t.exports=function(t){if(null==t)throw i("Can't call method on "+t);return t}},function(t,e,n){var i=n(0),o=n(4);t.exports=function(t,e){return arguments.length<2?(n=i[t],o(n)?n:void 0):i[t]&&i[t][e];var n}},function(t,e,n){var c=n(0),l=n(4),u=n(15),h=n(80),d=n(38);t.exports=function(t,e,n,i){var o=!!i&&!!i.unsafe,r=!!i&&!!i.enumerable,s=!!i&&!!i.noTargetGet,a=i&&void 0!==i.name?i.name:e;return l(n)&&h(n,a,i),t===c?r?t[e]=n:d(e,n):(o?!s&&t[e]&&(r=!0):delete t[e],r?t[e]=n:u(t,e,n)),t}},function(t,e,n){"use strict";var E=n(98),o=n(11),i=n(3),r=n(99),s=n(1),x=n(12),C=n(4),T=n(30),O=n(62),A=n(16),a=n(20),S=n(100),c=n(52),L=n(102),I=n(103),l=n(5)("replace"),k=Math.max,D=Math.min,N=i([].concat),j=i([].push),P=i("".indexOf),M=i("".slice),n="$0"==="a".replace(/./,"$0"),u=!!/./[l]&&""===/./[l]("a","$0");r("replace",function(t,b,y){var w=u?"$":"$0";return[function(t,e){var n=a(this),i=null==t?void 0:c(t,l);return i?o(i,t,n,e):o(b,A(n),t,e)},function(t,e){var n=x(this),i=A(t);if("string"==typeof e&&-1===P(e,w)&&-1===P(e,"$<")){t=y(b,n,i,e);if(t.done)return t.value}for(var o,r=C(e),s=(r||(e=A(e)),n.global),a=(s&&(o=n.unicode,n.lastIndex=0),[]);null!==(d=I(n,i))&&(j(a,d),s);)""===A(d[0])&&(n.lastIndex=S(i,O(n.lastIndex),o));for(var c,l="",u=0,h=0;h")})||!n||u)},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var n=n(3),i=n({}.toString),o=n("".slice);t.exports=function(t){return o(i(t),8,-1)}},function(t,e,n){n=n(21);t.exports=n("navigator","userAgent")||""},function(t,e){t.exports=!1},function(t,e,n){var i=n(0),o=n(20),r=i.Object;t.exports=function(t){return r(o(t))}},function(t,e,n){var i,o,r,s,a,c,l,u,h=n(81),d=n(0),f=n(3),p=n(14),g=n(15),m=n(7),_=n(37),v=n(41),n=n(42),b="Object already initialized",y=d.TypeError,d=d.WeakMap;l=h||_.state?(i=_.state||(_.state=new d),o=f(i.get),r=f(i.has),s=f(i.set),a=function(t,e){if(r(i,t))throw new y(b);return e.facade=t,s(i,t,e),e},c=function(t){return o(i,t)||{}},function(t){return r(i,t)}):(n[u=v("state")]=!0,a=function(t,e){if(m(t,u))throw new y(b);return e.facade=t,g(t,u,e),e},c=function(t){return m(t,u)?t[u]:{}},function(t){return m(t,u)}),t.exports={set:a,get:c,has:l,enforce:function(t){return l(t)?c(t):a(t,{})},getterFor:function(e){return function(t){if(p(t)&&(t=c(t)).type===e)return t;throw y("Incompatible receiver, "+e+" required")}}}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){t=+t;return t!=t||0==t?0:(0"+t+""},m=function(){try{r=new ActiveXObject("htmlfile")}catch(t){}m="undefined"==typeof document||document.domain&&r?o(r):(t=h("iframe"),e="java"+f+":",t.style.display="none",u.appendChild(t),t.src=String(e),(e=t.contentWindow.document).open(),e.write(g("document.F=Object")),e.close(),e.F);for(var t,e,n=c.length;n--;)delete m[d][c[n]];return m()};l[p]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(i[d]=s(t),n=new i,i[d]=null,n[p]=t):n=m(),void 0===e?n:a.f(n,e)}},function(t,e,n){"use strict";var i=n(18),o=n(90).trim;i({target:"String",proto:!0,forced:n(91)("trim")},{trim:function(){return o(this)}})},function(t,e,n){n=n(1);t.exports=!n(function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})},function(t,e,n){var i=n(77),o=n(48);t.exports=function(t){t=i(t,"string");return o(t)?t:t+""}},function(t,e,n){n=n(3);t.exports=n({}.isPrototypeOf)},function(t,e,n){var i=n(27),o=n(37);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.22.5",mode:i?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.22.5/LICENSE",source:"https://github.com/zloirock/core-js"})},function(t,e,n){var i=n(0),n=n(38),o="__core-js_shared__",i=i[o]||n(o,{});t.exports=i},function(t,e,n){var i=n(0),o=Object.defineProperty;t.exports=function(e,n){try{o(i,e,{value:n,configurable:!0,writable:!0})}catch(t){i[e]=n}return n}},function(t,e,n){var i=n(0),n=n(14),o=i.document,r=n(o)&&n(o.createElement);t.exports=function(t){return r?o.createElement(t):{}}},function(t,e,n){var i=n(6),n=n(7),o=Function.prototype,r=i&&Object.getOwnPropertyDescriptor,n=n(o,"name"),s=n&&"something"===function(){}.name,i=n&&(!i||r(o,"name").configurable);t.exports={EXISTS:n,PROPER:s,CONFIGURABLE:i}},function(t,e,n){var i=n(36),o=n(54),r=i("keys");t.exports=function(t){return r[t]||(r[t]=o(t))}},function(t,e){t.exports={}},function(t,e,n){var i=n(62);t.exports=function(t){return i(t.length)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e,n){"use strict";var p=n(11),i=n(3),g=n(16),m=n(64),o=n(65),r=n(36),_=n(31),v=n(29).get,s=n(66),n=n(67),b=r("native-string-replace",String.prototype.replace),y=RegExp.prototype.exec,w=y,E=i("".charAt),x=i("".indexOf),C=i("".replace),T=i("".slice),O=(r=/b*/g,p(y,i=/a/,"a"),p(y,r,"a"),0!==i.lastIndex||0!==r.lastIndex),A=o.BROKEN_CARET,S=void 0!==/()??/.exec("")[1];(O||S||A||s||n)&&(w=function(t){var e,n,i,o,r,s,a=this,c=v(a),t=g(t),l=c.raw;if(l)return l.lastIndex=a.lastIndex,h=p(w,l,t),a.lastIndex=l.lastIndex,h;var u=c.groups,l=A&&a.sticky,h=p(m,a),c=a.source,d=0,f=t;if(l&&(h=C(h,"y",""),-1===x(h,"g")&&(h+="g"),f=T(t,a.lastIndex),0o;)!s(i,n=e[o++])||~c(r,n)||u(r,n);return r}},function(t,e,n){function i(a){return function(t,e,n){var i,o=c(t),r=u(o),s=l(n,r);if(a&&e!=e){for(;sb)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$c")})},function(t,e){t.exports="\t\n\v\f\r                 \u2028\u2029\ufeff"},function(t,e,n){var o=n(3),r=n(12),s=n(93);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var n,i=!1,t={};try{(n=o(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(t,[]),i=t instanceof Array}catch(t){}return function(t,e){return r(t),s(e),i?n(t,e):t.__proto__=e,t}}():void 0)},function(t,e,n){var i=n(5),o=n(31),n=n(9),r=i("unscopables"),s=Array.prototype;null==s[r]&&n.f(s,r,{configurable:!0,value:o(null)}),t.exports=function(t){s[r][t]=!0}},function(t,e,n){"use strict";var i,o,r=n(1),s=n(4),a=n(31),c=n(72),l=n(22),u=n(5),n=n(27),h=u("iterator"),u=!1;[].keys&&("next"in(o=[].keys())?(c=c(c(o)))!==Object.prototype&&(i=c):u=!0),null==i||r(function(){var t={};return i[h].call(t)!==t})?i={}:n&&(i=a(i)),s(i[h])||l(i,h,function(){return this}),t.exports={IteratorPrototype:i,BUGGY_SAFARI_ITERATORS:u}},function(t,e,n){var i=n(0),o=n(7),r=n(4),s=n(28),a=n(41),n=n(106),c=a("IE_PROTO"),l=i.Object,u=l.prototype;t.exports=n?l.getPrototypeOf:function(t){t=s(t);if(o(t,c))return t[c];var e=t.constructor;return r(e)&&t instanceof e?e.prototype:t instanceof l?u:null}},function(t,e,n){var i=n(9).f,o=n(7),r=n(5)("toStringTag");t.exports=function(t,e,n){(t=t&&!n?t.prototype:t)&&!o(t,r)&&i(t,r,{configurable:!0,value:e})}},function(t,e){var n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";var i={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,r=o&&!i.call({1:2},1);e.f=r?function(t){t=o(this,t);return!!t&&t.enumerable}:i},function(t,e,n){var i=n(0),o=n(3),r=n(1),s=n(25),a=i.Object,c=o("".split);t.exports=r(function(){return!a("z").propertyIsEnumerable(0)})?function(t){return"String"==s(t)?c(t,""):a(t)}:a},function(t,e,n){var i=n(0),o=n(11),r=n(14),s=n(48),a=n(52),c=n(79),n=n(5),l=i.TypeError,u=n("toPrimitive");t.exports=function(t,e){if(!r(t)||s(t))return t;var n=a(t,u);if(n){if(n=o(n,t,e=void 0===e?"default":e),!r(n)||s(n))return n;throw l("Can't convert object to primitive value")}return c(t,e=void 0===e?"number":e)}},function(t,e,n){var i=n(0).String;t.exports=function(t){try{return i(t)}catch(t){return"Object"}}},function(t,e,n){var i=n(0),o=n(11),r=n(4),s=n(14),a=i.TypeError;t.exports=function(t,e){var n,i;if("string"===e&&r(n=t.toString)&&!s(i=o(n,t)))return i;if(r(n=t.valueOf)&&!s(i=o(n,t)))return i;if("string"!==e&&r(n=t.toString)&&!s(i=o(n,t)))return i;throw a("Can't convert object to primitive value")}},function(t,e,n){var i=n(1),o=n(4),r=n(7),s=n(6),a=n(40).CONFIGURABLE,c=n(57),n=n(29),l=n.enforce,u=n.get,h=Object.defineProperty,d=s&&!i(function(){return 8!==h(function(){},"length",{value:8}).length}),f=String(String).split("String"),n=t.exports=function(t,e,n){if("Symbol("===String(e).slice(0,7)&&(e="["+String(e).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!r(t,"name")||a&&t.name!==e)&&h(t,"name",{value:e,configurable:!0}),d&&n&&r(n,"arity")&&t.length!==n.arity&&h(t,"length",{value:n.arity}),n&&r(n,"constructor")&&n.constructor){if(s)try{h(t,"prototype",{writable:!1})}catch(t){}}else t.prototype=void 0;n=l(t);return r(n,"source")||(n.source=f.join("string"==typeof e?e:"")),t};Function.prototype.toString=n(function(){return o(this)&&u(this).source||c(this)},"toString")},function(t,e,n){var i=n(0),o=n(4),n=n(57),i=i.WeakMap;t.exports=o(i)&&/native code/.test(n(i))},function(t,e,n){var c=n(7),l=n(83),u=n(47),h=n(9);t.exports=function(t,e,n){for(var i=l(e),o=h.f,r=u.f,s=0;s]*>)/g,_=/\$([$&'`]|\d{1,2})/g;t.exports=function(r,s,a,c,l,t){var u=a+r.length,h=c.length,e=_;return void 0!==l&&(l=o(l),e=m),p(t,e,function(t,e){var n;switch(f(e,0)){case"$":return"$";case"&":return r;case"`":return g(s,0,a);case"'":return g(s,u);case"<":n=l[g(e,1,-1)];break;default:var i,o=+e;if(0==o)return t;if(hu(e)?1:-1})),n=o.length,s=0;s{"use strict";n.d(e,{Z:()=>i});e=n(645),n=n.n(e)()(function(t){return t[1]});n.push([t.id,"INPUT:-webkit-autofill,SELECT:-webkit-autofill,TEXTAREA:-webkit-autofill{animation-name:onautofillstart}INPUT:not(:-webkit-autofill),SELECT:not(:-webkit-autofill),TEXTAREA:not(:-webkit-autofill){animation-name:onautofillcancel}@keyframes onautofillstart{}@keyframes onautofillcancel{}",""]);const i=n},645:t=>{"use strict";t.exports=function(n){var c=[];return c.toString=function(){return this.map(function(t){var e=n(t);return t[2]?"@media ".concat(t[2]," {").concat(e,"}"):e}).join("")},c.i=function(t,e,n){"string"==typeof t&&(t=[[null,t,""]]);var i={};if(n)for(var o=0;o{if("undefined"!=typeof window)try{var t=new window.CustomEvent("test",{cancelable:!0});if(t.preventDefault(),!0!==t.defaultPrevented)throw new Error("Could not prevent default")}catch(t){function e(t,e){var n,i;return(e=e||{}).bubbles=!!e.bubbles,e.cancelable=!!e.cancelable,(n=document.createEvent("CustomEvent")).initCustomEvent(t,e.bubbles,e.cancelable,e.detail),i=n.preventDefault,n.preventDefault=function(){i.call(this);try{Object.defineProperty(this,"defaultPrevented",{get:function(){return!0}})}catch(t){this.defaultPrevented=!0}},n}e.prototype=window.Event.prototype,window.CustomEvent=e}},379:(t,e,o)=>{"use strict";i={};var n,i,r=function(t){if(void 0===i[t]){var e=document.querySelector(t);if(window.HTMLIFrameElement&&e instanceof window.HTMLIFrameElement)try{e=e.contentDocument.head}catch(t){e=null}i[t]=e}return i[t]},l=[];function u(t){for(var e=-1,n=0;n{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var n in e)o.o(e,n)&&!o.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";var t=o(379),t=o.n(t),e=o(454);function n(t){var e;t.hasAttribute("autocompleted")||(t.setAttribute("autocompleted",""),e=new window.CustomEvent("onautocomplete",{bubbles:!0,cancelable:!0,detail:null}),t.dispatchEvent(e)||(t.value=""))}function i(t){t.hasAttribute("autocompleted")&&(t.removeAttribute("autocompleted"),t.dispatchEvent(new window.CustomEvent("onautocomplete",{bubbles:!0,cancelable:!1,detail:null})))}t()(e.Z,{insert:"head",singleton:!1}),e.Z.locals,o(810),document.addEventListener("animationstart",function(t){("onautofillstart"===t.animationName?n:i)(t.target)},!0),document.addEventListener("input",function(t){("insertReplacementText"!==t.inputType&&"data"in t?i:n)(t.target)},!0)})()},,,function(M,t,e){"use strict";e.r(t),e.d(t,"Alert",function(){return Je}),e.d(t,"Button",function(){return Zt}),e.d(t,"Carousel",function(){return Sn}),e.d(t,"Collapse",function(){return me}),e.d(t,"Offcanvas",function(){return ze}),e.d(t,"Dropdown",function(){return wa}),e.d(t,"Input",function(){return Bs}),e.d(t,"Modal",function(){return ni}),e.d(t,"Popover",function(){return ir}),e.d(t,"Ripple",function(){return Na}),e.d(t,"ScrollSpy",function(){return Cr}),e.d(t,"Tab",function(){return zr}),e.d(t,"Toast",function(){return Os}),e.d(t,"Tooltip",function(){return ns}),e.d(t,"Range",function(){return Ba});var i={};e.r(i),e.d(i,"top",function(){return A}),e.d(i,"bottom",function(){return S}),e.d(i,"right",function(){return L}),e.d(i,"left",function(){return I}),e.d(i,"auto",function(){return ii}),e.d(i,"basePlacements",function(){return oi}),e.d(i,"start",function(){return ri}),e.d(i,"end",function(){return si}),e.d(i,"clippingParents",function(){return ai}),e.d(i,"viewport",function(){return ci}),e.d(i,"popper",function(){return li}),e.d(i,"reference",function(){return ui}),e.d(i,"variationPlacements",function(){return hi}),e.d(i,"placements",function(){return di}),e.d(i,"beforeRead",function(){return fi}),e.d(i,"read",function(){return pi}),e.d(i,"afterRead",function(){return gi}),e.d(i,"beforeMain",function(){return mi}),e.d(i,"main",function(){return _i}),e.d(i,"afterMain",function(){return vi}),e.d(i,"beforeWrite",function(){return bi}),e.d(i,"write",function(){return yi}),e.d(i,"afterWrite",function(){return wi}),e.d(i,"modifierPhases",function(){return Ei}),e.d(i,"applyStyles",function(){return Ti}),e.d(i,"arrow",function(){return Wi}),e.d(i,"computeStyles",function(){return qi}),e.d(i,"eventListeners",function(){return Vi}),e.d(i,"flip",function(){return so}),e.d(i,"hide",function(){return lo}),e.d(i,"offset",function(){return uo}),e.d(i,"popperOffsets",function(){return ho}),e.d(i,"preventOverflow",function(){return fo}),e.d(i,"popperGenerator",function(){return vo}),e.d(i,"detectOverflow",function(){return ro}),e.d(i,"createPopperBase",function(){return bo}),e.d(i,"createPopper",function(){return yo}),e.d(i,"createPopperLite",function(){return wo}),e(2),e(32),e(17);const H=t=>{let e=t.getAttribute("data-mdb-target");if(!e||"#"===e){const n=t.getAttribute("href");e=n&&"#"!==n?n.trim():null}return e};const R=(o,r,s)=>{Object.keys(s).forEach(t=>{var e,n=s[t],i=r[t],i=i&&((e=i)[0]||e).nodeType?"element":null==(e=i)?"".concat(e):{}.toString.call(e).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(n).test(i))throw new Error("".concat(o.toUpperCase(),": ")+'Option "'.concat(t,'" provided type "').concat(i,'" ')+'but expected type "'.concat(n,'".'))})};const n=()=>{var t=window["jQuery"];return t&&!document.body.hasAttribute("data-mdb-no-jquery")?t:null},o=t=>{"loading"===document.readyState?document.addEventListener("DOMContentLoaded",t):t()};document.documentElement.dir;const B=t=>document.createElement(t);const W=(()=>{const i={};let o=1;return{set(t,e,n){void 0===t[e]&&(t[e]={key:e,id:o},o++),i[t[e].id]=n},get(t,e){if(!t||void 0===t[e])return null;t=t[e];return t.key===e?i[t.id]:null},delete(t,e){var n;void 0!==t[e]&&(n=t[e]).key===e&&(delete i[n.id],delete t[e])}}})();var r={setData(t,e,n){W.set(t,e,n)},getData(t,e){return W.get(t,e)},removeData(t,e){W.delete(t,e)}};e(23),e(10),e(13);const F=n(),U=/[^.]*(?=\..*)\.|.*/,z=/\..*/,q=/::\d+$/,Q={};let V=1;const Y={mouseenter:"mouseover",mouseleave:"mouseout"},K=["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"];function X(t,e){return e&&"".concat(e,"::").concat(V++)||t.uidEvent||V++}function G(t){var e=X(t);return t.uidEvent=e,Q[e]=Q[e]||{},Q[e]}function $(n,i,t){var o=2{{var e=s,n=c,i=t,o=a.slice(1);const r=n[i]||{};return void Object.keys(r).forEach(t=>{-1{var e=t.replace(q,"");(!r||-1{Object.defineProperty(u,t,{get(){return n[t]}})}),l&&u.preventDefault(),c&&t.dispatchEvent(u),u.defaultPrevented&&void 0!==s&&s.preventDefault(),u}};var s=et;function nt(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function it(t){return t.replace(/[A-Z]/g,t=>"-".concat(t.toLowerCase()))}var c={setDataAttribute(t,e,n){t.setAttribute("data-mdb-".concat(it(e)),n)},removeDataAttribute(t,e){t.removeAttribute("data-mdb-".concat(it(e)))},getDataAttributes(t){if(!t)return{};const n={...t.dataset};return Object.keys(n).filter(t=>t.startsWith("mdb")).forEach(t=>{let e=t.replace(/^mdb/,"");e=e.charAt(0).toLowerCase()+e.slice(1,e.length),n[e]=nt(n[t])}),n},getDataAttribute(t,e){return nt(t.getAttribute("data-mdb-".concat(it(e))))},offset(t){t=t.getBoundingClientRect();return{top:t.top+document.body.scrollTop,left:t.left+document.body.scrollLeft}},position(t){return{top:t.offsetTop,left:t.offsetLeft}},style(t,e){Object.assign(t.style,e)},toggleClass(t,e){t&&(t.classList.contains(e)?t.classList.remove(e):t.classList.add(e))},addClass(t,e){t.classList.contains(e)||t.classList.add(e)},addStyle(e,n){Object.keys(n).forEach(t=>{e.style[t]=n[t]})},removeClass(t,e){t.classList.contains(e)&&t.classList.remove(e)},hasClass(t,e){return t.classList.contains(e)}};var a={closest(t,e){return t.closest(e)},matches(t,e){return t.matches(e)},find(t){var e=1t.matches(e))},parents(t,e){const n=[];let i=t.parentNode;for(;i&&i.nodeType===Node.ELEMENT_NODE&&3!==i.nodeType;)this.matches(i,e)&&n.push(i),i=i.parentNode;return n},prev(t,e){let n=t.previousElementSibling;for(;n;){if(n.matches(e))return[n];n=n.previousElementSibling}return[]},next(t,e){let n=t.nextElementSibling;for(;n;){if(this.matches(n,e))return[n];n=n.nextElementSibling}return[]}};e(8);const ot=1e3,rt="transitionend",st=e=>{let n=e.getAttribute("data-mdb-target");if(!n||"#"===n){let t=e.getAttribute("href");if(!t||!t.includes("#")&&!t.startsWith("."))return null;t.includes("#")&&!t.startsWith("#")&&(t="#".concat(t.split("#")[1])),n=t&&"#"!==t?t.trim():null}return n},at=t=>{t=st(t);return t&&document.querySelector(t)?t:null},l=t=>{t=st(t);return t?document.querySelector(t):null},ct=t=>{t.dispatchEvent(new Event(rt))},lt=t=>!(!t||"object"!=typeof t)&&void 0!==(t=void 0!==t.jquery?t[0]:t).nodeType,u=t=>lt(t)?t.jquery?t[0]:t:"string"==typeof t&&0{Object.keys(r).forEach(t=>{var e=r[t],n=o[t],n=n&<(n)?"element":null==(n=n)?"".concat(n):{}.toString.call(n).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(e).test(n))throw new TypeError("".concat(i.toUpperCase(),': Option "').concat(t,'" provided type "').concat(n,'" but expected type "').concat(e,'".'))})},ut=t=>!(!lt(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),ht=t=>!t||t.nodeType!==Node.ELEMENT_NODE||(!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled"))),dt=t=>{return document.documentElement.attachShadow?"function"==typeof t.getRootNode?(e=t.getRootNode())instanceof ShadowRoot?e:null:t instanceof ShadowRoot?t:t.parentNode?dt(t.parentNode):null:null;var e},ft=()=>{},pt=t=>{t.offsetHeight},gt=()=>{var t=window["jQuery"];return t&&!document.body.hasAttribute("data-mdb-no-jquery")?t:null},mt=[],d=()=>"rtl"===document.documentElement.dir;t=i=>{var t;t=()=>{const t=gt();if(t){const e=i.NAME,n=t.fn[e];t.fn[e]=i.jQueryInterface,t.fn[e].Constructor=i,t.fn[e].noConflict=()=>(t.fn[e]=n,i.jQueryInterface)}},"loading"===document.readyState?(mt.length||document.addEventListener("DOMContentLoaded",()=>{mt.forEach(t=>t())}),mt.push(t)):t()};function _t(n,i){if(!(2{if(!t)return 0;let{transitionDuration:e,transitionDelay:n}=window.getComputedStyle(t);var t=Number.parseFloat(e),i=Number.parseFloat(n);return t||i?(e=e.split(",")[0],n=n.split(",")[0],(Number.parseFloat(e)+Number.parseFloat(n))*ot):0})(i)+5;let e=!1;const o=t=>{t=t.target;t===i&&(e=!0,i.removeEventListener(rt,o),vt(n))};i.addEventListener(rt,o),setTimeout(()=>{e||ct(i)},t)}else vt(n)}const vt=t=>{"function"==typeof t&&t()},bt=(t,e,n,i)=>{let o=t.indexOf(e);if(-1===o)return t[!n&&i?t.length-1:0];e=t.length;return o+=n?1:-1,i&&(o=(o+e)%e),t[Math.max(0,Math.min(o,e-1))]},yt=/[^.]*(?=\..*)\.|.*/,wt=/\..*/,Et=/::\d+$/,xt={};let Ct=1;const Tt={mouseenter:"mouseover",mouseleave:"mouseout"},Ot=/^(mouseenter|mouseleave)/i,At=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function St(t,e){return e&&"".concat(e,"::").concat(Ct++)||t.uidEvent||Ct++}function Lt(t){var e=St(t);return t.uidEvent=e,xt[e]=xt[e]||{},xt[e]}function It(n,i,t){var o=2function(t){if(!t.relatedTarget||t.relatedTarget!==t.delegateTarget&&!t.delegateTarget.contains(t.relatedTarget))return e.call(this,t)},i?i=r(i):n=r(n));var[r,s,a]=kt(e,n,i);const f=Lt(t),p=f[a]||(f[a]={}),g=It(p,s,r?n:null);if(g)g.oneOff=g.oneOff&&o;else{var c,l,u,h,d,e=St(s,e.replace(yt,""));const m=r?(u=t,h=n,d=i,function n(i){var o=u.querySelectorAll(h);for(let e=i["target"];e&&e!==this;e=e.parentNode)for(let t=o.length;t--;)if(o[t]===e)return i.delegateTarget=e,n.oneOff&&Pt.off(u,i.type,h,d),d.apply(e,[i]);return null}):(c=t,l=n,function t(e){return e.delegateTarget=c,t.oneOff&&Pt.off(c,e.type,l),l.apply(c,[e])});m.delegationSelector=r?n:null,m.originalHandler=s,m.oneOff=o,m.uidEvent=e,p[e]=m,t.addEventListener(a,m,r)}}}function Nt(t,e,n,i,o){i=It(e[n],i,o);i&&(t.removeEventListener(n,i,Boolean(o)),delete e[n][i.uidEvent])}function jt(t){return t=t.replace(wt,""),Tt[t]||t}const Pt={on(t,e,n,i){Dt(t,e,n,i,!1)},one(t,e,n,i){Dt(t,e,n,i,!0)},off(s,a,t,e){if("string"==typeof a&&s){const[n,i,o]=kt(a,t,e),r=o!==a,c=Lt(s);e=a.startsWith(".");if(void 0!==i)return c&&c[o]?void Nt(s,c,o,i,n?t:null):void 0;e&&Object.keys(c).forEach(t=>{{var e=s,n=c,i=t,o=a.slice(1);const r=n[i]||{};return void Object.keys(r).forEach(t=>{t.includes(o)&&(t=r[t],Nt(e,n,i,t.originalHandler,t.delegationSelector))})}});const l=c[o]||{};Object.keys(l).forEach(t=>{var e=t.replace(Et,"");r&&!a.includes(e)||(e=l[t],Nt(s,c,o,e.originalHandler,e.delegationSelector))})}},trigger(t,e,n){if("string"!=typeof e||!t)return null;const i=gt();var o=jt(e),r=e!==o,s=At.has(o);let a,c=!0,l=!0,u=!1,h=null;return r&&i&&(a=i.Event(e,n),i(t).trigger(a),c=!a.isPropagationStopped(),l=!a.isImmediatePropagationStopped(),u=a.isDefaultPrevented()),s?(h=document.createEvent("HTMLEvents")).initEvent(o,c,!0):h=new CustomEvent(e,{bubbles:c,cancelable:!0}),void 0!==n&&Object.keys(n).forEach(t=>{Object.defineProperty(h,t,{get(){return n[t]}})}),u&&h.preventDefault(),l&&t.dispatchEvent(h),h.defaultPrevented&&void 0!==a&&a.preventDefault(),h}};var f=Pt;const p=new Map;var Mt=function(t,e,n){p.has(t)||p.set(t,new Map);const i=p.get(t);i.has(e)||0===i.size?i.set(e,n):console.error("Bootstrap doesn't allow more than one instance per element. Bound instance: ".concat(Array.from(i.keys())[0],"."))},Ht=function(t,e){return p.has(t)&&p.get(t).get(e)||null},Rt=function(t,e){if(p.has(t)){const n=p.get(t);n.delete(e),0===n.size&&p.delete(t)}};var g=class{constructor(t){(t=u(t))&&(this._element=t,Mt(this._element,this.constructor.DATA_KEY,this))}dispose(){Rt(this._element,this.constructor.DATA_KEY),f.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach(t=>{this[t]=null})}_queueCallback(t,e){var n=!(2{t.preventDefault();t=t.target.closest(Bt);const e=Wt.getOrCreateInstance(t);e.toggle()}),t(Wt);m=Wt;const Ft="button",Ut="mdb.".concat(Ft);var _=".".concat(Ut);const zt="click".concat(_),qt="transitionend",Qt="mouseenter",Vt="mouseleave",Yt="hide".concat(_),Kt="hidden".concat(_),Xt="show".concat(_),Gt="shown".concat(_),$t="fixed-action-btn";class v extends m{constructor(t){super(t),this._fn={},this._element&&(r.setData(this._element,Ut,this),this._init())}static get NAME(){return Ft}static jQueryInterface(n,i){return this.each(function(){let t=r.getData(this,Ut);var e="object"==typeof n&&n;if((t||!/dispose/.test(n))&&(t=t||new v(this,e),"string"==typeof n)){if(void 0===t[n])throw new TypeError('No method named "'.concat(n,'"'));t[n](i)}})}get _actionButton(){return a.findOne(".fixed-action-btn:not(.smooth-scroll) > .btn-floating",this._element)}get _buttonListElements(){return a.find("ul .btn",this._element)}get _buttonList(){return a.findOne("ul",this._element)}get _isTouchDevice(){return"ontouchstart"in document.documentElement}show(){c.hasClass(this._element,$t)&&(s.off(this._buttonList,qt),s.trigger(this._element,Xt),this._bindListOpenTransitionEnd(),c.addStyle(this._element,{height:"".concat(this._fullContainerHeight,"px")}),this._toggleVisibility(!0))}hide(){c.hasClass(this._element,$t)&&(s.off(this._buttonList,qt),s.trigger(this._element,Yt),this._bindListHideTransitionEnd(),this._toggleVisibility(!1))}dispose(){c.hasClass(this._element,$t)&&(s.off(this._actionButton,zt),this._actionButton.removeEventListener(Qt,this._fn.mouseenter),this._element.removeEventListener(Vt,this._fn.mouseleave)),super.dispose()}_init(){c.hasClass(this._element,$t)&&(this._saveInitialHeights(),this._setInitialStyles(),this._bindInitialEvents())}_bindMouseEnter(){this._actionButton.addEventListener(Qt,this._fn.mouseenter=()=>{this._isTouchDevice||this.show()})}_bindMouseLeave(){this._element.addEventListener(Vt,this._fn.mouseleave=()=>{this.hide()})}_bindClick(){s.on(this._actionButton,zt,()=>{c.hasClass(this._element,"active")?this.hide():this.show()})}_bindListHideTransitionEnd(){s.on(this._buttonList,qt,t=>{"transform"===t.propertyName&&(s.off(this._buttonList,qt),this._element.style.height="".concat(this._initialContainerHeight,"px"),s.trigger(this._element,Kt))})}_bindListOpenTransitionEnd(){s.on(this._buttonList,qt,t=>{"transform"===t.propertyName&&(s.off(this._buttonList,qt),s.trigger(this._element,Gt))})}_toggleVisibility(t){const e=t?"addClass":"removeClass";t=t?"translate(0)":"translateY(".concat(this._fullContainerHeight,"px)");c.addStyle(this._buttonList,{transform:t}),this._buttonListElements&&this._buttonListElements.forEach(t=>c[e](t,"shown")),c[e](this._element,"active")}_getHeight(t){const e=window.getComputedStyle(t);return parseFloat(e.getPropertyValue("height"))}_saveInitialHeights(){this._initialContainerHeight=this._getHeight(this._element),this._initialListHeight=this._getHeight(this._buttonList),this._fullContainerHeight=this._initialContainerHeight+this._initialListHeight}_bindInitialEvents(){this._bindClick(),this._bindMouseEnter(),this._bindMouseLeave()}_setInitialStyles(){this._buttonList.style.marginBottom="".concat(this._initialContainerHeight,"px"),this._buttonList.style.transform="translateY(".concat(this._fullContainerHeight,"px)"),this._element.style.height="".concat(this._initialContainerHeight,"px")}}a.find(".fixed-action-btn").forEach(t=>{let e=v.getInstance(t);return e=e||new v(t)}),a.find('[data-mdb-toggle="button"]').forEach(t=>{let e=v.getInstance(t);return e=e||new v(t)}),o(()=>{const t=n();if(t){const e=t.fn[Ft];t.fn[Ft]=v.jQueryInterface,t.fn[Ft].Constructor=v,t.fn[Ft].noConflict=()=>(t.fn[Ft]=e,v.jQueryInterface)}});var Zt=v;function Jt(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function te(t){return t.replace(/[A-Z]/g,t=>"-".concat(t.toLowerCase()))}var b={setDataAttribute(t,e,n){t.setAttribute("data-mdb-".concat(te(e)),n)},removeDataAttribute(t,e){t.removeAttribute("data-mdb-".concat(te(e)))},getDataAttributes(n){if(!n)return{};const i={};return Object.keys(n.dataset).filter(t=>t.startsWith("mdb")).forEach(t=>{let e=t.replace(/^mdb/,"");e=e.charAt(0).toLowerCase()+e.slice(1,e.length),i[e]=Jt(n.dataset[t])}),i},getDataAttribute(t,e){return Jt(t.getAttribute("data-mdb-".concat(te(e))))},offset(t){t=t.getBoundingClientRect();return{top:t.top+window.pageYOffset,left:t.left+window.pageXOffset}},position(t){return{top:t.offsetTop,left:t.offsetLeft}}};var y={find(t){var e=1t.matches(e))},parents(t,e){const n=[];let i=t.parentNode;for(;i&&i.nodeType===Node.ELEMENT_NODE&&3!==i.nodeType;)i.matches(e)&&n.push(i),i=i.parentNode;return n},prev(t,e){let n=t.previousElementSibling;for(;n;){if(n.matches(e))return[n];n=n.previousElementSibling}return[]},next(t,e){let n=t.nextElementSibling;for(;n;){if(n.matches(e))return[n];n=n.nextElementSibling}return[]},focusableChildren(t){var e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map(t=>"".concat(t,':not([tabindex^="-"])')).join(", ");return this.find(e,t).filter(t=>!ht(t)&&ut(t))}};const ee="collapse",ne="bs.collapse";_=".".concat(ne);const ie={toggle:!0,parent:null},oe={toggle:"boolean",parent:"(null|element)"},re="show".concat(_),se="shown".concat(_),ae="hide".concat(_),ce="hidden".concat(_);m="click".concat(_).concat(".data-api");const le="show",ue="collapse",he="collapsing",de="collapsed",fe=":scope .".concat(ue," .").concat(ue),pe='[data-mdb-toggle="collapse"]';class ge extends g{constructor(t,e){super(t),this._isTransitioning=!1,this._config=this._getConfig(e),this._triggerArray=[];var n=y.find(pe);for(let t=0,e=n.length;tt===this._element);null!==o&&r.length&&(this._selector=o,this._triggerArray.push(i))}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return ie}static get NAME(){return ee}toggle(){this._isShown()?this.hide():this.show()}show(){if(!this._isTransitioning&&!this._isShown()){let t=[],e;if(this._config.parent){const o=y.find(fe,this._config.parent);t=y.find(".collapse.show, .collapse.collapsing",this._config.parent).filter(t=>!o.includes(t))}const i=y.findOne(this._selector);if(t.length){var n=t.find(t=>i!==t);if((e=n?ge.getInstance(n):null)&&e._isTransitioning)return}n=f.trigger(this._element,re);if(!n.defaultPrevented){t.forEach(t=>{i!==t&&ge.getOrCreateInstance(t,{toggle:!1}).hide(),e||Mt(t,ne,null)});const r=this._getDimension();this._element.classList.remove(ue),this._element.classList.add(he),this._element.style[r]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;n=r[0].toUpperCase()+r.slice(1),n="scroll".concat(n);this._queueCallback(()=>{this._isTransitioning=!1,this._element.classList.remove(he),this._element.classList.add(ue,le),this._element.style[r]="",f.trigger(this._element,se)},this._element,!0),this._element.style[r]="".concat(this._element[n],"px")}}}hide(){if(!this._isTransitioning&&this._isShown()){var t=f.trigger(this._element,ae);if(!t.defaultPrevented){var t=this._getDimension(),e=(this._element.style[t]="".concat(this._element.getBoundingClientRect()[t],"px"),pt(this._element),this._element.classList.add(he),this._element.classList.remove(ue,le),this._triggerArray.length);for(let t=0;t{this._isTransitioning=!1,this._element.classList.remove(he),this._element.classList.add(ue),f.trigger(this._element,ce)},this._element,!0)}}}_isShown(){let t=0!e.includes(t)).forEach(t=>{var e=l(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))})}}_addAriaAndCollapsedClass(t,e){t.length&&t.forEach(t=>{e?t.classList.remove(de):t.classList.add(de),t.setAttribute("aria-expanded",e)})}static jQueryInterface(n){return this.each(function(){const t={},e=("string"==typeof n&&/show|hide/.test(n)&&(t.toggle=!1),ge.getOrCreateInstance(this,t));if("string"==typeof n){if(void 0===e[n])throw new TypeError('No method named "'.concat(n,'"'));e[n]()}})}}f.on(document,m,pe,function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();t=at(this);const e=y.find(t);e.forEach(t=>{ge.getOrCreateInstance(t,{toggle:!1}).toggle()})}),t(ge);var me=ge;const _e=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",ve=".sticky-top";var be=class{constructor(){this._element=document.body}getWidth(){var t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const e=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,"paddingRight",t=>t+e),this._setElementAttributes(_e,"paddingRight",t=>t+e),this._setElementAttributes(ve,"marginRight",t=>t-e)}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,n,i){const o=this.getWidth();this._applyManipulationCallback(t,t=>{var e;t!==this._element&&window.innerWidth>t.clientWidth+o||(this._saveInitialAttribute(t,n),e=window.getComputedStyle(t)[n],t.style[n]="".concat(i(Number.parseFloat(e)),"px"))})}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(_e,"paddingRight"),this._resetElementAttributes(ve,"marginRight")}_saveInitialAttribute(t,e){var n=t.style[e];n&&b.setDataAttribute(t,e,n)}_resetElementAttributes(t,n){this._applyManipulationCallback(t,t=>{var e=b.getDataAttribute(t,n);void 0===e?t.style.removeProperty(n):(b.removeDataAttribute(t,n),t.style[n]=e)})}_applyManipulationCallback(t,e){lt(t)?e(t):y.find(t,this._element).forEach(e)}isOverflowing(){return 0{vt(t)})):vt(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove("show"),this._emulateAnimation(()=>{this.dispose(),vt(t)})):vt(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...ye,..."object"==typeof t?t:{}}).rootElement=u(t.rootElement),h(Ee,t,we),t}_append(){this._isAppended||(this._config.rootElement.append(this._getElement()),f.on(this._getElement(),xe,()=>{vt(this._config.clickCallback)}),this._isAppended=!0)}dispose(){this._isAppended&&(f.off(this._element,xe),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){_t(t,this._getElement(),this._config.isAnimated)}};const Te={trapElement:null,autofocus:!0},Oe={trapElement:"element",autofocus:"boolean"};const Ae=".".concat("bs.focustrap"),Se="focusin".concat(Ae),Le="keydown.tab".concat(Ae),Ie="backward";function ke(n){let i=1this._handleFocusin(t)),f.on(document,Le,t=>this._handleKeydown(t)),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,f.off(document,Ae))}_handleFocusin(t){t=t.target;const e=this._config["trapElement"];if(t!==document&&t!==e&&!e.contains(t)){const n=y.focusableChildren(e);(0===n.length?e:this._lastTabNavDirection===Ie?n[n.length-1]:n[0]).focus()}}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?Ie:"forward")}_getConfig(t){return t={...Te,..."object"==typeof t?t:{}},h("focustrap",t,Oe),t}};const Ne="offcanvas";var _=".".concat("bs.offcanvas"),m=".data-api",w="load".concat(_).concat(m);const je={backdrop:!0,keyboard:!0,scroll:!1},Pe={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},Me=".offcanvas.show",He="show".concat(_),Re="shown".concat(_),Be="hide".concat(_),We="hidden".concat(_);m="click".concat(_).concat(m);const Fe="keydown.dismiss".concat(_);class Ue extends g{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get NAME(){return Ne}static get Default(){return je}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||f.trigger(this._element,He,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(new be).hide(),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add("show"),this._queueCallback(()=>{this._config.scroll||this._focustrap.activate(),f.trigger(this._element,Re,{relatedTarget:t})},this._element,!0))}hide(){this._isShown&&!f.trigger(this._element,Be).defaultPrevented&&(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.remove("show"),this._backdrop.hide(),this._queueCallback(()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new be).reset(),f.trigger(this._element,We)},this._element,!0))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_getConfig(t){return t={...je,...b.getDataAttributes(this._element),..."object"==typeof t?t:{}},h(Ne,t,Pe),t}_initializeBackDrop(){return new Ce({className:"offcanvas-backdrop",isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_initializeFocusTrap(){return new De({trapElement:this._element})}_addEventListeners(){f.on(this._element,Fe,t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()})}static jQueryInterface(e){return this.each(function(){const t=Ue.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e]||e.startsWith("_")||"constructor"===e)throw new TypeError('No method named "'.concat(e,'"'));t[e](this)}})}}f.on(document,m,'[data-mdb-toggle="offcanvas"]',function(t){var e=l(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),!ht(this)){f.one(e,We,()=>{ut(this)&&this.focus()});t=y.findOne(Me);t&&t!==e&&Ue.getInstance(t).hide();const n=Ue.getOrCreateInstance(e);n.toggle(this)}}),f.on(window,w,()=>y.find(Me).forEach(t=>Ue.getOrCreateInstance(t).show())),ke(Ue),t(Ue);var ze=Ue;_=".".concat("bs.alert");const qe="close".concat(_),Qe="closed".concat(_);class Ve extends g{static get NAME(){return"alert"}close(){var t;f.trigger(this._element,qe).defaultPrevented||(this._element.classList.remove("show"),t=this._element.classList.contains("fade"),this._queueCallback(()=>this._destroyElement(),this._element,t))}_destroyElement(){this._element.remove(),f.trigger(this._element,Qe),this.dispose()}static jQueryInterface(e){return this.each(function(){const t=Ve.getOrCreateInstance(this);if("string"==typeof e){if(void 0===t[e]||e.startsWith("_")||"constructor"===e)throw new TypeError('No method named "'.concat(e,'"'));t[e](this)}})}}ke(Ve,"close"),t(Ve);m=Ve;const Ye="alert";w="mdb.".concat(Ye),_=".".concat(w);const Ke="close.bs.alert",Xe="closed.bs.alert",Ge="close".concat(_),$e="closed".concat(_);class Ze extends m{constructor(t){super(t,1{s.trigger(this._element,Ge)})}_bindClosedEvent(){s.on(this._element,Xe,()=>{s.trigger(this._element,$e)})}}a.find(".alert").forEach(t=>{var e=Ze.getInstance(t);e||new Ze(t)}),o(()=>{const t=n();if(t){const e=t.fn[Ye];t.fn[Ye]=Ze.jQueryInterface,t.fn[Ye].Constructor=Ze,t.fn[Ye].noConflict=()=>(t.fn[Ye]=e,Ze.jQueryInterface)}});var Je=Ze;const tn="carousel";w=".".concat("bs.carousel"),_=".data-api";const en={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},nn={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},on="next",rn="prev",sn="left",an="right",cn={ArrowLeft:an,ArrowRight:sn},ln="slide".concat(w),un="slid".concat(w),hn="keydown".concat(w),dn="mouseenter".concat(w),fn="mouseleave".concat(w),pn="touchstart".concat(w),gn="touchmove".concat(w),mn="touchend".concat(w),_n="pointerdown".concat(w),vn="pointerup".concat(w),bn="dragstart".concat(w);m="load".concat(w).concat(_),w="click".concat(w).concat(_);const yn="active",wn=".active.carousel-item";class E extends g{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=y.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||0this._items.length-1||t<0))if(this._isSliding)f.one(this._element,un,()=>this.to(t));else{if(e===t)return this.pause(),void this.cycle();e=ethis._keydown(t)),"hover"===this._config.pause&&(f.on(this._element,dn,t=>this.pause(t)),f.on(this._element,fn,t=>this.cycle(t))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const e=t=>this._pointerEvent&&("pen"===t.pointerType||"touch"===t.pointerType),n=t=>{e(t)?this.touchStartX=t.clientX:this._pointerEvent||(this.touchStartX=t.touches[0].clientX)},i=t=>{this.touchDeltaX=t.touches&&1{e(t)&&(this.touchDeltaX=t.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(t=>this.cycle(t),500+this._config.interval))};y.find(".carousel-item img",this._element).forEach(t=>{f.on(t,bn,t=>t.preventDefault())}),this._pointerEvent?(f.on(this._element,_n,t=>n(t)),f.on(this._element,vn,t=>o(t)),this._element.classList.add("pointer-event")):(f.on(this._element,pn,t=>n(t)),f.on(this._element,gn,t=>i(t)),f.on(this._element,mn,t=>o(t)))}_keydown(t){var e;/input|textarea/i.test(t.target.tagName)||(e=cn[t.key])&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?y.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){t=t===on;return bt(this._items,e,t,this._config.wrap)}_triggerSlideEvent(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(y.findOne(wn,this._element));return f.trigger(this._element,ln,{relatedTarget:t,direction:e,from:i,to:n})}_setActiveIndicatorElement(e){if(this._indicatorsElement){const t=y.findOne(".active",this._indicatorsElement),n=(t.classList.remove(yn),t.removeAttribute("aria-current"),y.find("[data-mdb-target]",this._indicatorsElement));for(let t=0;t{f.trigger(this._element,un,{relatedTarget:o,direction:l,from:i,to:r})};this._element.classList.contains("slide")?(o.classList.add(c),pt(o),n.classList.add(a),o.classList.add(a),this._queueCallback(()=>{o.classList.remove(a,c),o.classList.add(yn),n.classList.remove(yn,c,a),this._isSliding=!1,setTimeout(u,0)},n,!0)):(n.classList.remove(yn),o.classList.add(yn),this._isSliding=!1,u()),e&&this.cycle()}}}_directionToOrder(t){return[an,sn].includes(t)?d()?t===sn?rn:on:t===sn?on:rn:t}_orderToDirection(t){return[on,rn].includes(t)?d()?t===rn?sn:an:t===rn?an:sn:t}static carouselInterface(t,e){const n=E.getOrCreateInstance(t,e);let i=n["_config"];"object"==typeof e&&(i={...i,...e});t="string"==typeof e?e:i.slide;if("number"==typeof e)n.to(e);else if("string"==typeof t){if(void 0===n[t])throw new TypeError('No method named "'.concat(t,'"'));n[t]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}static jQueryInterface(t){return this.each(function(){E.carouselInterface(this,t)})}static dataApiClickHandler(t){const e=l(this);if(e&&e.classList.contains("carousel")){const i={...b.getDataAttributes(e),...b.getDataAttributes(this)};var n=this.getAttribute("data-mdb-slide-to");n&&(i.interval=!1),E.carouselInterface(e,i),n&&E.getInstance(e).to(n),t.preventDefault()}}}f.on(document,w,"[data-mdb-slide], [data-mdb-slide-to]",E.dataApiClickHandler),f.on(window,m,()=>{var n=y.find('[data-mdb-ride="carousel"]');for(let t=0,e=n.length;t{s.trigger(this._element,Tn,{relatedTarget:t.relatedTarget,direction:t.direction,from:t.from,to:t.to})})}_bindSlidEvent(){s.on(this._element,Cn,t=>{s.trigger(this._element,On,{relatedTarget:t.relatedTarget,direction:t.direction,from:t.from,to:t.to})})}}a.find('[data-mdb-ride="carousel"]').forEach(t=>{var e=An.getInstance(t);e||new An(t,c.getDataAttributes(t))}),o(()=>{const t=n();if(t){const e=t.fn[En];t.fn[En]=An.jQueryInterface,t.fn[En].Constructor=An,t.fn[En].noConflict=()=>(t.fn[En]=e,An.jQueryInterface)}});var Sn=An;const x=".".concat("bs.modal");const Ln={backdrop:!0,keyboard:!0,focus:!0},In={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},kn="hide".concat(x),Dn="hidePrevented".concat(x),Nn="hidden".concat(x),jn="show".concat(x),Pn="shown".concat(x),Mn="resize".concat(x),Hn="click.dismiss".concat(x),Rn="keydown.dismiss".concat(x),Bn="mouseup.dismiss".concat(x),Wn="mousedown.dismiss".concat(x);w="click".concat(x).concat(".data-api");const Fn="modal-open",Un="modal-static";class zn extends g{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=y.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new be}static get Default(){return Ln}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||f.trigger(this._element,jn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add(Fn),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),f.on(this._dialog,Wn,()=>{f.one(this._element,Bn,t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)})}),this._showBackdrop(()=>this._showElement(t)))}hide(){var t;!this._isShown||this._isTransitioning||f.trigger(this._element,kn).defaultPrevented||(this._isShown=!1,(t=this._isAnimated())&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),this._focustrap.deactivate(),this._element.classList.remove("show"),f.off(this._element,Hn),f.off(this._dialog,Wn),this._queueCallback(()=>this._hideModal(),this._element,t))}dispose(){[window,this._dialog].forEach(t=>f.off(t,x)),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ce({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new De({trapElement:this._element})}_getConfig(t){return t={...Ln,...b.getDataAttributes(this._element),..."object"==typeof t?t:{}},h("modal",t,In),t}_showElement(t){var e=this._isAnimated();const n=y.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,n&&(n.scrollTop=0),e&&pt(this._element),this._element.classList.add("show");this._queueCallback(()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,f.trigger(this._element,Pn,{relatedTarget:t})},this._dialog,e)}_setEscapeEvent(){this._isShown?f.on(this._element,Rn,t=>{this._config.keyboard&&"Escape"===t.key?(t.preventDefault(),this.hide()):this._config.keyboard||"Escape"!==t.key||this._triggerBackdropTransition()}):f.off(this._element,Rn)}_setResizeEvent(){this._isShown?f.on(window,Mn,()=>this._adjustDialog()):f.off(window,Mn)}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide(()=>{document.body.classList.remove(Fn),this._resetAdjustments(),this._scrollBar.reset(),f.trigger(this._element,Nn)})}_showBackdrop(t){f.on(this._element,Hn,t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())}),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){var t=f.trigger(this._element,Dn);if(!t.defaultPrevented){const{classList:e,scrollHeight:n,style:i}=this._element,o=n>document.documentElement.clientHeight;!o&&"hidden"===i.overflowY||e.contains(Un)||(o||(i.overflowY="hidden"),e.add(Un),this._queueCallback(()=>{e.remove(Un),o||this._queueCallback(()=>{i.overflowY=""},this._dialog)},this._dialog),this._element.focus())}}_adjustDialog(){var t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),n=0{t.defaultPrevented||f.one(e,Nn,()=>{ut(this)&&this.focus()})}),y.find(".modal.show")),i=(n.forEach(t=>{t.classList.contains("modal-non-invasive-show")||zn.getInstance(t).hide()}),zn.getOrCreateInstance(e));i.toggle(this)}),ke(zn),t(zn);m=zn;const qn="modal";_="mdb.".concat(qn),w=".".concat(_);const Qn="hide.bs.modal",Vn="hidePrevented.bs.modal",Yn="hidden.bs.modal",Kn="show.bs.modal",Xn="shown.bs.modal",Gn="hide".concat(w),$n="hidePrevented".concat(w),Zn="hidden".concat(w),Jn="show".concat(w),ti="shown".concat(w);class ei extends m{constructor(t,e){super(t,e),this._init()}dispose(){s.off(this._element,Kn),s.off(this._element,Xn),s.off(this._element,Qn),s.off(this._element,Yn),s.off(this._element,Vn),super.dispose()}static get NAME(){return qn}_init(){this._bindShowEvent(),this._bindShownEvent(),this._bindHideEvent(),this._bindHiddenEvent(),this._bindHidePreventedEvent()}_bindShowEvent(){s.on(this._element,Kn,t=>{s.trigger(this._element,Jn,{relatedTarget:t.relatedTarget})})}_bindShownEvent(){s.on(this._element,Xn,t=>{s.trigger(this._element,ti,{relatedTarget:t.relatedTarget})})}_bindHideEvent(){s.on(this._element,Qn,()=>{s.trigger(this._element,Gn)})}_bindHiddenEvent(){s.on(this._element,Yn,()=>{s.trigger(this._element,Zn)})}_bindHidePreventedEvent(){s.on(this._element,Vn,()=>{s.trigger(this._element,$n)})}}a.find('[data-mdb-toggle="modal"]').forEach(t=>{var t=(t=>{t=H(t);return t&&document.querySelector(t)?t:null})(t),t=a.findOne(t),e=ei.getInstance(t);e||new ei(t)}),o(()=>{const t=n();if(t){const e=t.fn[qn];t.fn[qn]=ei.jQueryInterface,t.fn[qn].Constructor=ei,t.fn[qn].noConflict=()=>(t.fn[qn]=e,ei.jQueryInterface)}});var ni=ei,A="top",S="bottom",L="right",I="left",ii="auto",oi=[A,S,L,I],ri="start",si="end",ai="clippingParents",ci="viewport",li="popper",ui="reference",hi=oi.reduce(function(t,e){return t.concat([e+"-"+ri,e+"-"+si])},[]),di=[].concat(oi,[ii]).reduce(function(t,e){return t.concat([e,e+"-"+ri,e+"-"+si])},[]),fi="beforeRead",pi="read",gi="afterRead",mi="beforeMain",_i="main",vi="afterMain",bi="beforeWrite",yi="write",wi="afterWrite",Ei=[fi,pi,gi,mi,_i,vi,bi,yi,wi];function C(t){return t?(t.nodeName||"").toLowerCase():null}function T(t){return null==t?window:"[object Window]"!==t.toString()?(e=t.ownerDocument)&&e.defaultView||window:t;var e}function xi(t){return t instanceof T(t).Element||t instanceof Element}function O(t){return t instanceof T(t).HTMLElement||t instanceof HTMLElement}function Ci(t){if("undefined"!=typeof ShadowRoot)return t instanceof T(t).ShadowRoot||t instanceof ShadowRoot}var Ti={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var o=t.state;Object.keys(o.elements).forEach(function(t){var e=o.styles[t]||{},n=o.attributes[t]||{},i=o.elements[t];O(i)&&C(i)&&(Object.assign(i.style,e),Object.keys(n).forEach(function(t){var e=n[t];!1===e?i.removeAttribute(t):i.setAttribute(t,!0===e?"":e)}))})},effect:function(t){var i=t.state,o={popper:{position:i.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(i.elements.popper.style,o.popper),i.styles=o,i.elements.arrow&&Object.assign(i.elements.arrow.style,o.arrow),function(){Object.keys(i.elements).forEach(function(t){var e=i.elements[t],n=i.attributes[t]||{},t=Object.keys((i.styles.hasOwnProperty(t)?i.styles:o)[t]).reduce(function(t,e){return t[e]="",t},{});O(e)&&C(e)&&(Object.assign(e.style,t),Object.keys(n).forEach(function(t){e.removeAttribute(t)}))})}},requires:["computeStyles"]};function k(t){return t.split("-")[0]}var Oi=Math.max,Ai=Math.min,Si=Math.round;function Li(t,e){void 0===e&&(e=!1);var n=t.getBoundingClientRect(),i=1,o=1;return O(t)&&e&&(e=t.offsetHeight,0<(t=t.offsetWidth)&&(i=Si(n.width)/t||1),0l[C]&&(x=Ki(x)),Ki(x)),C=[];if(i&&C.push(T[w]<=0),o&&C.push(T[x]<=0,T[E]<=0),C.every(function(t){return t})){v=y,_=!1;break}u.set(y,C)}if(_)for(var O=g?3:1;0{((t,e)=>{var n=t.nodeName.toLowerCase();if(e.includes(n))return!Eo.has(n)||Boolean(xo.test(t.nodeValue)||Co.test(t.nodeValue));const i=e.filter(t=>t instanceof RegExp);for(let t=0,e=i.length;t
    ',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:_,popperConfig:null},ko={HIDE:"hide".concat(w),HIDDEN:"hidden".concat(w),SHOW:"show".concat(w),SHOWN:"shown".concat(w),INSERTED:"inserted".concat(w),CLICK:"click".concat(w),FOCUSIN:"focusin".concat(w),FOCUSOUT:"focusout".concat(w),MOUSEENTER:"mouseenter".concat(w),MOUSELEAVE:"mouseleave".concat(w)},Do="fade";const No="show",jo="show",Po=".tooltip-inner",Mo=".".concat("modal"),Ho="hide.bs.modal",Ro="hover",Bo="focus";class Wo extends g{constructor(t,e){if(void 0===i)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return Io}static get NAME(){return Oo}static get Event(){return ko}static get DefaultType(){return So}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else this.getTipElement().classList.contains(No)?this._leave(null,this):this._enter(null,this)}dispose(){clearTimeout(this._timeout),f.off(this._element.closest(Mo),Ho,this._hideModalHandler),this.tip&&this.tip.remove(),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(this.isWithContent()&&this._isEnabled){var t=f.trigger(this._element,this.constructor.Event.SHOW);const n=dt(this._element);var e=(null===n?this._element.ownerDocument.documentElement:n).contains(this._element);if(!t.defaultPrevented&&e){"tooltip"===this.constructor.NAME&&this.tip&&this.getTitle()!==this.tip.querySelector(Po).innerHTML&&(this._disposePopper(),this.tip.remove(),this.tip=null);const i=this.getTipElement();t=(t=>{for(;t+=Math.floor(1e6*Math.random()),document.getElementById(t););return t})(this.constructor.NAME),e=(i.setAttribute("id",t),this._element.setAttribute("aria-describedby",t),this._config.animation&&i.classList.add(Do),"function"==typeof this._config.placement?this._config.placement.call(this,i,this._element):this._config.placement),t=this._getAttachment(e);this._addAttachmentClass(t);const o=this._config["container"],r=(Mt(i,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(o.append(i),f.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=yo(this._element,i,this._getPopperConfig(t)),i.classList.add(No),this._resolvePossibleFunction(this._config.customClass));r&&i.classList.add(...r.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>{f.on(t,"mouseover",ft)});e=this.tip.classList.contains(Do);this._queueCallback(()=>{var t=this._hoverState;this._hoverState=null,f.trigger(this._element,this.constructor.Event.SHOWN),"out"===t&&this._leave(null,this)},this.tip,e)}}}hide(){if(this._popper){const e=this.getTipElement();var t;f.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented||(e.classList.remove(No),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>f.off(t,"mouseover",ft)),this._activeTrigger.click=!1,this._activeTrigger[Bo]=!1,this._activeTrigger[Ro]=!1,t=this.tip.classList.contains(Do),this._queueCallback(()=>{this._isWithActiveTrigger()||(this._hoverState!==jo&&e.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),f.trigger(this._element,this.constructor.Event.HIDDEN),this._disposePopper())},this.tip,t),this._hoverState="")}}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div"),e=(t.innerHTML=this._config.template,t.children[0]);return this.setContent(e),e.classList.remove(Do,No),this.tip=e,this.tip}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),Po)}_sanitizeAndSetContent(t,e,n){const i=y.findOne(n,t);!e&&i?i.remove():this.setElementContent(i,e)}setElementContent(t,e){if(null!==t)return lt(e)?(e=u(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.append(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=To(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){var t=this._element.getAttribute("data-mdb-original-title")||this._config.title;return this._resolvePossibleFunction(t)}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){return e||this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_getOffset(){const e=this._config["offset"];return"string"==typeof e?e.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof e?t=>e(t,this._element):e}_resolvePossibleFunction(t){return"function"==typeof t?t.call(this._element):t}_getPopperConfig(t){t={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:".".concat(this.constructor.NAME,"-arrow")}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add("".concat(this._getBasicClassPrefix(),"-").concat(this.updateAttachment(t)))}_getAttachment(t){return Lo[t.toUpperCase()]}_setListeners(){const t=this._config.trigger.split(" ");t.forEach(t=>{var e;"click"===t?f.on(this._element,this.constructor.Event.CLICK,this._config.selector,t=>this.toggle(t)):"manual"!==t&&(e=t===Ro?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,t=t===Ro?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT,f.on(this._element,e,this._config.selector,t=>this._enter(t)),f.on(this._element,t,this._config.selector,t=>this._leave(t)))}),this._hideModalHandler=()=>{this._element&&this.hide()},f.on(this._element.closest(Mo),Ho,this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){var t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-mdb-original-title");!t&&"string"==e||(this._element.setAttribute("data-mdb-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?Bo:Ro]=!0),e.getTipElement().classList.contains(No)||e._hoverState===jo?e._hoverState=jo:(clearTimeout(e._timeout),e._hoverState=jo,e._config.delay&&e._config.delay.show?e._timeout=setTimeout(()=>{e._hoverState===jo&&e.show()},e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?Bo:Ro]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e._config.delay&&e._config.delay.hide?e._timeout=setTimeout(()=>{"out"===e._hoverState&&e.hide()},e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=b.getDataAttributes(this._element);return Object.keys(e).forEach(t=>{Ao.has(t)&&delete e[t]}),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:u(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),h(Oo,t,this.constructor.DefaultType),t.sanitize&&(t.template=To(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const e=this.getTipElement();var t=new RegExp("(^|\\s)".concat(this._getBasicClassPrefix(),"\\S+"),"g");const n=e.getAttribute("class").match(t);null!==n&&0t.trim()).forEach(t=>e.classList.remove(t))}_getBasicClassPrefix(){return"bs-tooltip"}_handlePopperPlacementChange(t){t=t.state;t&&(this.tip=t.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(t.placement)))}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null)}static jQueryInterface(e){return this.each(function(){const t=Wo.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError('No method named "'.concat(e,'"'));t[e]()}})}}t(Wo);m=Wo;_=".".concat("bs.popover");const Fo={...m.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},Uo={...m.DefaultType,content:"(string|element|function)"},zo={HIDE:"hide".concat(_),HIDDEN:"hidden".concat(_),SHOW:"show".concat(_),SHOWN:"shown".concat(_),INSERTED:"inserted".concat(_),CLICK:"click".concat(_),FOCUSIN:"focusin".concat(_),FOCUSOUT:"focusout".concat(_),MOUSEENTER:"mouseenter".concat(_),MOUSELEAVE:"mouseleave".concat(_)};class qo extends m{static get Default(){return Fo}static get NAME(){return"popover"}static get Event(){return zo}static get DefaultType(){return Uo}isWithContent(){return this.getTitle()||this._getContent()}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".popover-header"),this._sanitizeAndSetContent(t,this._getContent(),".popover-body")}_getContent(){return this._resolvePossibleFunction(this._config.content)}_getBasicClassPrefix(){return"bs-popover"}static jQueryInterface(e){return this.each(function(){const t=qo.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError('No method named "'.concat(e,'"'));t[e]()}})}}t(qo);w=qo;const Qo="popover";_="mdb.".concat(Qo),_=".".concat(_);const Vo="show.bs.popover",Yo="shown.bs.popover",Ko="hide.bs.popover",Xo="hidden.bs.popover",Go="inserted.bs.popover",$o="show".concat(_),Zo="shown".concat(_),Jo="hide".concat(_),tr="hidden".concat(_),er="inserted".concat(_);class nr extends w{constructor(t,e){super(t,e),this._init()}dispose(){s.off(this.element,Vo),s.off(this.element,Yo),s.off(this.element,Ko),s.off(this.element,Xo),s.off(this.element,Go),super.dispose()}static get NAME(){return Qo}_init(){this._bindShowEvent(),this._bindShownEvent(),this._bindHideEvent(),this._bindHiddenEvent(),this._bindInsertedEvent()}_bindShowEvent(){s.on(this.element,Vo,()=>{s.trigger(this.element,$o)})}_bindShownEvent(){s.on(this.element,Yo,()=>{s.trigger(this.element,Zo)})}_bindHideEvent(){s.on(this.element,Ko,()=>{s.trigger(this.element,Jo)})}_bindHiddenEvent(){s.on(this.element,Xo,()=>{s.trigger(this.element,tr)})}_bindInsertedEvent(){s.on(this.element,Go,()=>{s.trigger(this.element,er)})}}a.find('[data-mdb-toggle="popover"]').forEach(t=>{var e=nr.getInstance(t);e||new nr(t)}),o(()=>{const t=n();if(t){const e=t.fn[Qo];t.fn[Qo]=nr.jQueryInterface,t.fn[Qo].Constructor=nr,t.fn[Qo].noConflict=()=>(t.fn[Qo]=e,nr.jQueryInterface)}});var ir=nr;e(109);const or="scrollspy";const rr=".".concat("bs.scrollspy");const sr={offset:10,method:"auto",target:""},ar={offset:"number",method:"string",target:"(string|element)"},cr="activate".concat(rr),lr="scroll".concat(rr);"load".concat(rr).concat(".data-api");const ur="dropdown-item",hr="active";const dr=".nav-link",fr=".list-group-item",pr="".concat(dr,", ").concat(fr,", .").concat(ur),gr="position";class mr extends g{constructor(t,e){super(t),at(t)&&(this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,f.on(this._scrollElement,lr,()=>this._process()),this.refresh(),this._process())}static get Default(){return sr}static get NAME(){return or}refresh(){var t=this._scrollElement===this._scrollElement.window?"offset":gr;const i="auto"===this._config.method?t:this._config.method,o=i===gr?this._getScrollTop():0,e=(this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),y.find(pr,this._config.target));e.map(t=>{t=at(t);const e=t?y.findOne(t):null;if(e){var n=e.getBoundingClientRect();if(n.width||n.height)return[b[i](e).top+o,t]}return null}).filter(t=>t).sort((t,e)=>t[0]-e[0]).forEach(t=>{this._offsets.push(t[0]),this._targets.push(t[1])})}dispose(){f.off(this._scrollElement,rr),super.dispose()}_getConfig(t){return(t={...sr,...b.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=u(t.target)||document.documentElement,h(or,t,ar),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){var e=this._getScrollTop()+this._config.offset,t=this._getScrollHeight(),n=this._config.offset+t-this._getOffsetHeight();if(this._scrollHeight!==t&&this.refresh(),n<=e)return t=this._targets[this._targets.length-1],void(this._activeTarget!==t&&this._activate(t));if(this._activeTarget&&e=this._offsets[t]&&(void 0===this._offsets[t+1]||e"".concat(t,'[data-mdb-target="').concat(e,'"],').concat(t,'[href="').concat(e,'"]')),n=y.findOne(t.join(","),this._config.target);n.classList.add(hr),n.classList.contains(ur)?y.findOne(".dropdown-toggle",n.closest(".dropdown")).classList.add(hr):y.parents(n,".nav, .list-group").forEach(t=>{y.prev(t,"".concat(dr,", ").concat(fr)).forEach(t=>t.classList.add(hr)),y.prev(t,".nav-item").forEach(t=>{y.children(t,dr).forEach(t=>t.classList.add(hr))})}),f.trigger(this._scrollElement,cr,{relatedTarget:e})}_clear(){y.find(pr,this._config.target).filter(t=>t.classList.contains(hr)).forEach(t=>t.classList.remove(hr))}static jQueryInterface(e){return this.each(function(){const t=mr.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError('No method named "'.concat(e,'"'));t[e]()}})}}t(mr);_=mr;const _r="scrollspy";w="mdb.".concat(_r),w=".".concat(w);const vr="activate.bs.scrollspy",br="activate".concat(w);w="load".concat(w).concat(".data-api");const yr="collapsible-scrollspy";const wr=".".concat("active"),Er=".".concat(yr);class xr extends _{constructor(t,e){super(t,e),this._collapsibles=[],this._init()}dispose(){s.off(this._scrollElement,vr),super.dispose()}static get NAME(){return _r}_init(){this._bindActivateEvent(),this._getCollapsibles(),0!==this._collapsibles.length&&(this._showSubsection(),this._hideSubsection())}_getHeight(t){return t.offsetHeight}_hide(t){const e=a.findOne("ul",t.parentNode);e.style.overflow="hidden",e.style.height="".concat(0,"px")}_show(t,e){t.style.height=e}_getCollapsibles(){const t=a.find(Er);t&&t.forEach(t=>{var e=t.parentNode,e=a.findOne("ul",e),n=e.offsetHeight;this._collapsibles.push({element:e,relatedTarget:t.getAttribute("href"),height:"".concat(n,"px")})})}_showSubsection(){const t=a.find(wr),e=t.filter(t=>c.hasClass(t,yr));e.forEach(e=>{var t=a.findOne("ul",e.parentNode),n=this._collapsibles.find(t=>t.relatedTarget=e.getAttribute("href")).height;this._show(t,n)})}_hideSubsection(){const t=a.find(Er).filter(t=>!1===c.hasClass(t,"active"));t.forEach(t=>{this._hide(t)})}_bindActivateEvent(){s.on(this._scrollElement,vr,t=>{this._showSubsection(),this._hideSubsection(),s.trigger(this._scrollElement,br,{relatedTarget:t.relatedTarget})})}}s.on(window,w,()=>{a.find('[data-mdb-spy="scroll"]').forEach(t=>{var e=xr.getInstance(t);e||new xr(t,c.getDataAttributes(t))})}),o(()=>{const t=n();if(t){const e=t.fn[_r];t.fn[_r]=xr.jQueryInterface,t.fn[_r].Constructor=xr,t.fn[_r].noConflict=()=>(t.fn[_r]=e,xr.jQueryInterface)}});var Cr=xr;_=".".concat("bs.tab");const Tr="hide".concat(_),Or="hidden".concat(_),Ar="show".concat(_),Sr="shown".concat(_);w="click".concat(_).concat(".data-api");const Lr="active",Ir=".active",kr=":scope > li > .active";class Dr extends g{static get NAME(){return"tab"}show(){if(!this._element.parentNode||this._element.parentNode.nodeType!==Node.ELEMENT_NODE||!this._element.classList.contains(Lr)){let t;var e=l(this._element),n=this._element.closest(".nav, .list-group"),i=(n&&(i="UL"===n.nodeName||"OL"===n.nodeName?kr:Ir,t=(t=y.find(i,n))[t.length-1]),t?f.trigger(t,Tr,{relatedTarget:this._element}):null);f.trigger(this._element,Ar,{relatedTarget:t}).defaultPrevented||null!==i&&i.defaultPrevented||(this._activate(this._element,n),i=()=>{f.trigger(t,Or,{relatedTarget:this._element}),f.trigger(this._element,Sr,{relatedTarget:t})},e?this._activate(e,e.parentNode,i):i())}}_activate(t,e,n){const i=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?y.children(e,Ir):y.find(kr,e))[0];var e=n&&i&&i.classList.contains("fade"),o=()=>this._transitionComplete(t,i,n);i&&e?(i.classList.remove("show"),this._queueCallback(o,t,!0)):o()}_transitionComplete(t,e,n){if(e){e.classList.remove(Lr);const o=y.findOne(":scope > .dropdown-menu .active",e.parentNode);o&&o.classList.remove(Lr),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add(Lr),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),pt(t),t.classList.contains("fade")&&t.classList.add("show");let i=t.parentNode;(i=i&&"LI"===i.nodeName?i.parentNode:i)&&i.classList.contains("dropdown-menu")&&((e=t.closest(".dropdown"))&&y.find(".dropdown-toggle",e).forEach(t=>t.classList.add(Lr)),t.setAttribute("aria-expanded",!0)),n&&n()}static jQueryInterface(e){return this.each(function(){const t=Dr.getOrCreateInstance(this);if("string"==typeof e){if(void 0===t[e])throw new TypeError('No method named "'.concat(e,'"'));t[e]()}})}}f.on(document,w,'[data-mdb-toggle="tab"], [data-mdb-toggle="pill"], [data-mdb-toggle="list"]',function(t){if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),!ht(this)){const e=Dr.getOrCreateInstance(this);e.show()}}),t(Dr);_=Dr;const Nr="tab";w="mdb.".concat(Nr),w=".".concat(w);const jr="show.bs.tab",Pr="shown.bs.tab",Mr="hide.bs.tab",Hr="hidden.bs.tab",Rr="show".concat(w),Br="shown".concat(w),Wr="hide".concat(w),Fr="hidden".concat(w);class Ur extends _{constructor(t){super(t),this._previous=null,this._init()}dispose(){s.off(this._element,jr),s.off(this._element,Pr),super.dispose()}static get NAME(){return Nr}show(){if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains("active")||this._element.classList.contains("disabled"))){var n,i=(t=>{t=H(t);return t?document.querySelector(t):null})(this._element),o=this._element.closest(".nav, .list-group");o&&(n="UL"===o.nodeName||"OL"===o.nodeName?":scope > li > .active":".active",this._previous=a.find(n,o),this._previous=this._previous[this._previous.length-1]);let t=null,e=null;this._previous&&(t=s.trigger(this._previous,Mr,{relatedTarget:this._element}),e=s.trigger(this._previous,Wr,{relatedTarget:this._element})),s.trigger(this._element,jr,{relatedTarget:this._previous}).defaultPrevented||null!==t&&t.defaultPrevented||null!==e&&e.defaultPrevented||(this._activate(this._element,o),n=()=>{s.trigger(this._previous,Hr,{relatedTarget:this._element}),s.trigger(this._previous,Fr,{relatedTarget:this._element}),s.trigger(this._element,Pr,{relatedTarget:this._previous})},i?this._activate(i,i.parentNode,n):n())}}_init(){this._bindShowEvent(),this._bindShownEvent(),this._bindHideEvent(),this._bindHiddenEvent()}_bindShowEvent(){s.on(this._element,jr,t=>{s.trigger(this._element,Rr,{relatedTarget:t.relatedTarget})})}_bindShownEvent(){s.on(this._element,Pr,t=>{s.trigger(this._element,Br,{relatedTarget:t.relatedTarget})})}_bindHideEvent(){s.on(this._previous,Mr,()=>{s.trigger(this._previous,Wr)})}_bindHiddenEvent(){s.on(this._previous,Hr,()=>{s.trigger(this._previous,Fr)})}}a.find('[data-mdb-toggle="tab"], [data-mdb-toggle="pill"], [data-mdb-toggle="list"]').forEach(t=>{var e=Ur.getInstance(t);e||new Ur(t)}),o(()=>{const t=n();if(t){const e=t.fn.tab;t.fn.tab=Ur.jQueryInterface,t.fn.tab.Constructor=Ur,t.fn.tab.noConflict=()=>(t.fn.tab=e,Ur.jQueryInterface)}});var zr=Ur;const qr="tooltip";w="mdb.".concat(qr),_=".".concat(w);const Qr="hide.bs.tooltip",Vr="hidden.bs.tooltip",Yr="show.bs.tooltip",Kr="shown.bs.tooltip",Xr="inserted.bs.tooltip",Gr="hide".concat(_),$r="hidden".concat(_),Zr="show".concat(_),Jr="shown".concat(_),ts="inserted".concat(_);class es extends m{constructor(t,e){super(t,e),this._init()}dispose(){s.off(this._element,Yr),s.off(this._element,Kr),s.off(this._element,Qr),s.off(this._element,Vr),s.off(this._element,Xr),super.dispose()}static get NAME(){return qr}_init(){this._bindShowEvent(),this._bindShownEvent(),this._bindHideEvent(),this._bindHiddenEvent(),this._bindHidePreventedEvent()}_bindShowEvent(){s.on(this.element,Yr,()=>{s.trigger(this.element,Zr)})}_bindShownEvent(){s.on(this.element,Kr,()=>{s.trigger(this.element,Jr)})}_bindHideEvent(){s.on(this.element,Qr,()=>{s.trigger(this.element,Gr)})}_bindHiddenEvent(){s.on(this.element,Vr,()=>{s.trigger(this.element,$r)})}_bindHidePreventedEvent(){s.on(this.element,Xr,()=>{s.trigger(this.element,ts)})}}a.find('[data-mdb-toggle="tooltip"]').forEach(t=>{var e=es.getInstance(t);e||new es(t)}),o(()=>{const t=n();if(t){const e=t.fn[qr];t.fn[qr]=es.jQueryInterface,t.fn[qr].Constructor=es,t.fn[qr].noConflict=()=>(t.fn[qr]=e,es.jQueryInterface)}});var ns=es;w=".".concat("bs.toast");const is="mouseover".concat(w),os="mouseout".concat(w),rs="focusin".concat(w),ss="focusout".concat(w),as="hide".concat(w),cs="hidden".concat(w),ls="show".concat(w),us="shown".concat(w),hs="show",ds="showing",fs={animation:"boolean",autohide:"boolean",delay:"number"},ps={animation:!0,autohide:!0,delay:5e3};class gs extends g{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return fs}static get Default(){return ps}static get NAME(){return"toast"}show(){f.trigger(this._element,ls).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove("hide"),pt(this._element),this._element.classList.add(hs),this._element.classList.add(ds),this._queueCallback(()=>{this._element.classList.remove(ds),f.trigger(this._element,us),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this._element.classList.contains(hs)&&!f.trigger(this._element,as).defaultPrevented&&(this._element.classList.add(ds),this._queueCallback(()=>{this._element.classList.add("hide"),this._element.classList.remove(ds),this._element.classList.remove(hs),f.trigger(this._element,cs)},this._element,this._config.animation))}dispose(){this._clearTimeout(),this._element.classList.contains(hs)&&this._element.classList.remove(hs),super.dispose()}_getConfig(t){return t={...ps,...b.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},h("toast",t,this.constructor.DefaultType),t}_maybeScheduleHide(){!this._config.autohide||this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout(()=>{this.hide()},this._config.delay))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}e?this._clearTimeout():(t=t.relatedTarget,this._element===t||this._element.contains(t)||this._maybeScheduleHide())}_setListeners(){f.on(this._element,is,t=>this._onInteraction(t,!0)),f.on(this._element,os,t=>this._onInteraction(t,!1)),f.on(this._element,rs,t=>this._onInteraction(t,!0)),f.on(this._element,ss,t=>this._onInteraction(t,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(e){return this.each(function(){const t=gs.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError('No method named "'.concat(e,'"'));t[e](this)}})}}ke(gs),t(gs);_=gs;const ms="toast";m="mdb.".concat(ms),w=".".concat(m);const _s="show.bs.toast",vs="shown.bs.toast",bs="hide.bs.toast",ys="hidden.bs.toast",ws="show".concat(w),Es="shown".concat(w),xs="hide".concat(w),Cs="hidden".concat(w);class Ts extends _{constructor(t,e){super(t,e),this._init()}dispose(){s.off(this._element,_s),s.off(this._element,vs),s.off(this._element,bs),s.off(this._element,ys),super.dispose()}static get NAME(){return ms}_init(){this._bindShowEvent(),this._bindShownEvent(),this._bindHideEvent(),this._bindHiddenEvent()}_bindShowEvent(){s.on(this._element,_s,()=>{s.trigger(this._element,ws)})}_bindShownEvent(){s.on(this._element,vs,()=>{s.trigger(this._element,Es)})}_bindHideEvent(){s.on(this._element,bs,()=>{s.trigger(this._element,xs)})}_bindHiddenEvent(){s.on(this._element,ys,()=>{s.trigger(this._element,Cs)})}}a.find(".toast").forEach(t=>{var e=Ts.getInstance(t);e||new Ts(t)}),o(()=>{const t=n();if(t){const e=t.fn[ms];t.fn[ms]=Ts.jQueryInterface,t.fn[ms].Constructor=Ts,t.fn[ms].noConflict=()=>(t.fn[ms]=e,Ts.jQueryInterface)}});var Os=Ts;e(117);const As="input",Ss="mdb.input";m="form-outline";const Ls="active",Is="form-notch",ks="form-notch-leading",Ds="form-notch-middle";const Ns=".".concat(m," input"),js=".".concat(m," textarea"),Ps=".".concat(Is),Ms=".".concat(ks),Hs=".".concat(Ds),Rs=".".concat("form-helper");class j{constructor(t){this._element=t,this._label=null,this._labelWidth=0,this._labelMarginLeft=0,this._notchLeading=null,this._notchMiddle=null,this._notchTrailing=null,this._initiated=!1,this._helper=null,this._counter=!1,this._counterElement=null,this._maxLength=0,this._leadingIcon=null,this._element&&(r.setData(t,Ss,this),this.init())}static get NAME(){return As}get input(){return a.findOne("input",this._element)||a.findOne("textarea",this._element)}init(){this._initiated||(this._getLabelData(),this._applyDivs(),this._applyNotch(),this._activate(),this._getHelper(),this._getCounter(),this._initiated=!0)}update(){this._getLabelData(),this._getNotchData(),this._applyNotch(),this._activate(),this._getHelper(),this._getCounter()}forceActive(){c.addClass(this.input,Ls)}forceInactive(){c.removeClass(this.input,Ls)}dispose(){this._removeBorder(),r.removeData(this._element,Ss),this._element=null}_getLabelData(){this._label=a.findOne("label",this._element),null===this._label?this._showPlaceholder():(this._getLabelWidth(),this._getLabelPositionInInputGroup(),this._toggleDefaultDatePlaceholder())}_getHelper(){this._helper=a.findOne(Rs,this._element)}_getCounter(){this._counter=c.getDataAttribute(this.input,"showcounter"),this._counter&&(this._maxLength=this.input.maxLength,this._showCounter())}_showCounter(){var t;0{var t=this.input.value.length;this._counterElement.innerHTML="".concat(t," / ").concat(this._maxLength)})}_toggleDefaultDatePlaceholder(){let t=0{this._getElements(e);var t=e?e.target:this.input;""!==t.value&&c.addClass(t,Ls),this._toggleDefaultDatePlaceholder(t)})}_getElements(t){var e;t&&(this._element=t.target.parentNode,this._label=a.findOne("label",this._element)),t&&this._label&&(e=this._labelWidth,this._getLabelData(),e!==this._labelWidth&&(this._notchMiddle=a.findOne(".form-notch-middle",t.target.parentNode),this._notchLeading=a.findOne(Ms,t.target.parentNode),this._applyNotch()))}_deactivate(t){const e=t?t.target:this.input;""===e.value&&e.classList.remove(Ls),this._toggleDefaultDatePlaceholder(e)}static activate(e){return function(t){e._activate(t)}}static deactivate(e){return function(t){e._deactivate(t)}}static jQueryInterface(n,i){return this.each(function(){let t=r.getData(this,Ss);var e="object"==typeof n&&n;if((t||!/dispose/.test(n))&&(t=t||new j(this,e),"string"==typeof n)){if(void 0===t[n])throw new TypeError('No method named "'.concat(n,'"'));t[n](i)}})}static getInstance(t){return r.getData(t,Ss)}static getOrCreateInstance(t){var e=1{a.find(Ns,t.target).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.update()}),a.find(js,t.target).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.update()})}),s.on(window,"shown.bs.dropdown",t=>{t=t.target.parentNode.querySelector(".dropdown-menu");t&&(a.find(Ns,t).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.update()}),a.find(js,t).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.update()}))}),s.on(window,"shown.bs.tab",t=>{let e;e=(t.target.href||c.getDataAttribute(t.target,"target")).split("#")[1];t=a.findOne("#".concat(e));a.find(Ns,t).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.update()}),a.find(js,t).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.update()})}),a.find(".".concat(m)).map(t=>new j(t)),s.on(window,"reset",t=>{a.find(Ns,t.target).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.forceInactive()}),a.find(js,t.target).forEach(t=>{const e=j.getInstance(t.parentNode);e&&e.forceInactive()})}),s.on(window,"onautocomplete",t=>{const e=j.getInstance(t.target.parentNode);e&&t.cancelable&&e.forceActive()}),o(()=>{const t=n();if(t){const e=t.fn[As];t.fn[As]=j.jQueryInterface,t.fn[As].Constructor=j,t.fn[As].noConflict=()=>(t.fn[As]=e,j.jQueryInterface)}});var Bs=j;const Ws="dropdown";w=".".concat("bs.dropdown"),_=".data-api";const Fs="Escape",Us="ArrowUp",zs="ArrowDown",qs=new RegExp("".concat(Us,"|").concat(zs,"|").concat(Fs)),Qs="hide".concat(w),Vs="hidden".concat(w),Ys="show".concat(w),Ks="shown".concat(w);e="click".concat(w).concat(_),m="keydown".concat(w).concat(_),w="keyup".concat(w).concat(_);const Xs="show",Gs='[data-mdb-toggle="dropdown"]',$s=".dropdown-menu",Zs=d()?"top-end":"top-start",Js=d()?"top-start":"top-end",ta=d()?"bottom-end":"bottom-start",ea=d()?"bottom-start":"bottom-end",na=d()?"left-start":"right-start",ia=d()?"right-start":"left-start",oa={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},ra={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class P extends g{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar()}static get Default(){return oa}static get DefaultType(){return ra}static get NAME(){return Ws}toggle(){return this._isShown()?this.hide():this.show()}show(){if(!ht(this._element)&&!this._isShown(this._menu)){var t={relatedTarget:this._element},e=f.trigger(this._element,Ys,t);if(!e.defaultPrevented){const n=P.getParentFromElement(this._element);this._inNavbar?b.setDataAttribute(this._menu,"popper","none"):this._createPopper(n),"ontouchstart"in document.documentElement&&!n.closest(".navbar-nav")&&[].concat(...document.body.children).forEach(t=>f.on(t,"mouseover",ft)),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Xs),this._element.classList.add(Xs),f.trigger(this._element,Ks,t)}}}hide(){var t;!ht(this._element)&&this._isShown(this._menu)&&(t={relatedTarget:this._element},this._completeHide(t))}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){f.trigger(this._element,Qs,t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>f.off(t,"mouseover",ft)),this._popper&&this._popper.destroy(),this._menu.classList.remove(Xs),this._element.classList.remove(Xs),this._element.setAttribute("aria-expanded","false"),b.removeDataAttribute(this._menu,"popper"),f.trigger(this._element,Vs,t))}_getConfig(t){if(t={...this.constructor.Default,...b.getDataAttributes(this._element),...t},h(Ws,t,this.constructor.DefaultType),"object"!=typeof t.reference||lt(t.reference)||"function"==typeof t.reference.getBoundingClientRect)return t;throw new TypeError("".concat(Ws.toUpperCase(),': Option "reference" provided type "object" without a required "getBoundingClientRect" method.'))}_createPopper(t){if(void 0===i)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:lt(this._config.reference)?e=u(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const n=this._getPopperConfig();t=n.modifiers.find(t=>"applyStyles"===t.name&&!1===t.enabled);this._popper=yo(e,this._menu,n),t&&b.setDataAttribute(this._menu,"popper","static")}_isShown(){let t=0Number.parseInt(t,10)):"function"==typeof e?t=>e(t,this._element):e}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem(t){var{key:t,target:e}=t;const n=y.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(ut);n.length&&bt(n,e,t===zs,!n.includes(e)).focus()}static jQueryInterface(e){return this.each(function(){const t=P.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError('No method named "'.concat(e,'"'));t[e]()}})}static clearMenus(n){if(!n||2!==n.button&&("keyup"!==n.type||"Tab"===n.key)){var i=y.find(Gs);for(let t=0,e=i.length;tNumber.parseInt(t,10)):"function"==typeof e?t=>e(t,this._element):e}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{altBoundary:this._config.flip,boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_bindShowEvent(){s.on(this._element,ha,t=>{s.trigger(this._element,ga,{relatedTarget:t.relatedTarget}).defaultPrevented?t.preventDefault():this._dropdownAnimationStart("show")})}_bindShownEvent(){s.on(this._parent,da,t=>{s.trigger(this._parent,ma,{relatedTarget:t.relatedTarget}).defaultPrevented&&t.preventDefault()})}_bindHideEvent(){s.on(this._parent,la,t=>{s.trigger(this._parent,fa,{relatedTarget:t.relatedTarget}).defaultPrevented?t.preventDefault():(this._menuStyle=this._menu.style.cssText,this._popperPlacement=this._menu.getAttribute("data-popper-placement"),this._mdbPopperConfig=this._menu.getAttribute("data-mdb-popper"))})}_bindHiddenEvent(){s.on(this._parent,ua,t=>{s.trigger(this._parent,pa,{relatedTarget:t.relatedTarget}).defaultPrevented?t.preventDefault():("static"!==this._config.display&&""!==this._menuStyle&&(this._menu.style.cssText=this._menuStyle),this._menu.setAttribute("data-popper-placement",this._popperPlacement),this._menu.setAttribute("data-mdb-popper",this._mdbPopperConfig),this._dropdownAnimationStart("hide"))})}_dropdownAnimationStart(t){"show"===t?(this._menu.classList.add(_a,va),this._menu.classList.remove(ba)):(this._menu.classList.add(_a,ba),this._menu.classList.remove(va)),this._bindAnimationEnd()}_bindAnimationEnd(){s.one(this._menu,"animationend",()=>{this._menu.classList.remove(_a,ba,va)})}}a.find('[data-mdb-toggle="dropdown"]').forEach(t=>{var e=ya.getInstance(t);e||new ya(t)}),o(()=>{const t=n();if(t){const e=t.fn[sa];t.fn[sa]=ya.jQueryInterface,t.fn[sa].Constructor=ya,t.fn[sa].noConflict=()=>(t.fn[sa]=e,ya.jQueryInterface)}});var wa=ya;const Ea="ripple",xa="mdb.ripple",Ca="ripple-surface",Ta="ripple-wave",Oa=[".btn",".ripple"],Aa="ripple-surface-unbound",Sa=[0,0,0],La=["primary","secondary","success","danger","warning","info","light","dark"],Ia={rippleCentered:!1,rippleColor:"",rippleDuration:"500ms",rippleRadius:0,rippleUnbound:!1},ka={rippleCentered:"boolean",rippleColor:"string",rippleDuration:"string",rippleRadius:"number",rippleUnbound:"boolean"};class Da{constructor(t,e){this._element=t,this._options=this._getConfig(e),this._element&&(r.setData(t,xa,this),c.addClass(this._element,Ca)),this._clickHandler=this._createRipple.bind(this),this._rippleTimer=null,this._isMinWidthSet=!1,this.init()}static get NAME(){return Ea}init(){this._addClickEvent(this._element)}dispose(){r.removeData(this._element,xa),s.off(this._element,"click",this._clickHandler),this._element=null,this._options=null}_autoInit(e){Oa.forEach(t=>{a.closest(e.target,t)&&(this._element=a.closest(e.target,t))}),this._element.style.minWidth||(c.style(this._element,{"min-width":"".concat(this._element.offsetWidth,"px")}),this._isMinWidthSet=!0),c.addClass(this._element,Ca),this._options=this._getConfig(),this._createRipple(e)}_addClickEvent(t){s.on(t,"mousedown",this._clickHandler)}_createRipple(t){c.hasClass(this._element,Ca)||c.addClass(this._element,Ca);var{layerX:t,layerY:e}=t,n=this._element.offsetHeight,i=this._element.offsetWidth,o=this._durationToMsNumber(this._options.rippleDuration),r={offsetX:this._options.rippleCentered?n/2:t,offsetY:this._options.rippleCentered?i/2:e,height:n,width:i},r=this._getDiameter(r),s=this._options.rippleRadius||r/2,a={delay:.5*o,duration:o-.5*o},i={left:this._options.rippleCentered?"".concat(i/2-s,"px"):"".concat(t-s,"px"),top:this._options.rippleCentered?"".concat(n/2-s,"px"):"".concat(e-s,"px"),height:"".concat(2*this._options.rippleRadius||r,"px"),width:"".concat(2*this._options.rippleRadius||r,"px"),transitionDelay:"0s, ".concat(a.delay,"ms"),transitionDuration:"".concat(o,"ms, ").concat(a.duration,"ms")},t=B("div");this._createHTMLRipple({wrapper:this._element,ripple:t,styles:i}),this._removeHTMLRipple({ripple:t,duration:o})}_createHTMLRipple(t){let{wrapper:e,ripple:n,styles:i}=t;Object.keys(i).forEach(t=>n.style[t]=i[t]),n.classList.add(Ta),""!==this._options.rippleColor&&(this._removeOldColorClasses(e),this._addColor(n,e)),this._toggleUnbound(e),this._appendRipple(n,e)}_removeHTMLRipple(t){let{ripple:e,duration:n}=t;this._rippleTimer&&(clearTimeout(this._rippleTimer),this._rippleTimer=null),this._rippleTimer=setTimeout(()=>{e&&(e.remove(),this._element&&(a.find(".".concat(Ta),this._element).forEach(t=>{t.remove()}),this._isMinWidthSet&&(c.style(this._element,{"min-width":""}),this._isMinWidthSet=!1),c.removeClass(this._element,Ca)))},n)}_durationToMsNumber(t){return Number(t.replace("ms","").replace("s","000"))}_getConfig(){var t=0Math.sqrt(t**2+e**2),a=e===n/2&&t===i/2;const c=!0==o&&!1==r,l=!0==o&&!0==r,u=!1==o&&!0==r,h=!1==o&&!1==r;o={topLeft:s(t,e),topRight:s(i-t,e),bottomLeft:s(t,n-e),bottomRight:s(i-t,n-e)};let d=0;return a||h?d=o.topLeft:u?d=o.topRight:l?d=o.bottomRight:c&&(d=o.bottomLeft),2*d}_appendRipple(t,e){e.appendChild(t),setTimeout(()=>{c.addClass(t,"active")},50)}_toggleUnbound(t){!0===this._options.rippleUnbound?c.addClass(t,Aa):t.classList.remove(Aa)}_addColor(t,e){La.find(t=>t===this._options.rippleColor.toLowerCase())?c.addClass(e,"".concat(Ca,"-").concat(this._options.rippleColor.toLowerCase())):(e=this._colorToRGB(this._options.rippleColor).join(","),e="rgba({{color}}, 0.2) 0, rgba({{color}}, 0.3) 40%, rgba({{color}}, 0.4) 50%, rgba({{color}}, 0.5) 60%, rgba({{color}}, 0) 70%".split("{{color}}").join("".concat(e)),t.style.backgroundImage="radial-gradient(circle, ".concat(e,")"))}_removeOldColorClasses(e){var t=new RegExp("".concat(Ca,"-[a-z]+"),"gi");const n=e.classList.value.match(t)||[];n.forEach(t=>{e.classList.remove(t)})}_colorToRGB(t){return"transparent"===t.toLowerCase()?Sa:"#"===t[0]?((e=t).length<7&&(e="#".concat(e[1]).concat(e[1]).concat(e[2]).concat(e[2]).concat(e[3]).concat(e[3])),[parseInt(e.substr(1,2),16),parseInt(e.substr(3,2),16),parseInt(e.substr(5,2),16)]):0===(t=-1===t.indexOf("rgb")?function(t){const e=document.body.appendChild(document.createElement("fictum"));var n="rgb(1, 2, 3)";return e.style.color=n,e.style.color!==n?Sa:(e.style.color=t,e.style.color===n||""===e.style.color?Sa:(t=getComputedStyle(e).color,document.body.removeChild(e),t))}(t):t).indexOf("rgb")?((e=(e=t).match(/[.\d]+/g).map(t=>+Number(t))).length=3,e):Sa;var e}static autoInitial(e){return function(t){e._autoInit(t)}}static jQueryInterface(t){return this.each(function(){return r.getData(this,xa)?null:new Da(this,t)})}static getInstance(t){return r.getData(t,xa)}static getOrCreateInstance(t){var e=1{s.one(document,"mousedown",t,Da.autoInitial(new Da))}),o(()=>{const t=n();if(t){const e=t.fn[Ea];t.fn[Ea]=Da.jQueryInterface,t.fn[Ea].Constructor=Da,t.fn[Ea].noConflict=()=>(t.fn[Ea]=e,Da.jQueryInterface)}});var Na=Da;const ja="range",Pa="mdb.range";const Ma="thumb-active";const Ha=".".concat("thumb-value");w=".".concat("range");class Ra{constructor(t){this._element=t,this._initiated=!1,this._element&&(r.setData(t,Pa,this),this.init())}static get NAME(){return ja}get rangeInput(){return a.findOne("input[type=range]",this._element)}init(){this._initiated||(this._addThumb(),this._updateValue(),this._thumbPositionUpdate(),this._handleEvents(),this._initiated=!0)}dispose(){this._disposeEvents(),r.removeData(this._element,Pa),this._element=null}_addThumb(){const t=B("span");c.addClass(t,"thumb"),t.innerHTML='',this._element.append(t)}_updateValue(){const t=a.findOne(Ha,this._element);t.textContent=this.rangeInput.value,this.rangeInput.oninput=()=>t.textContent=this.rangeInput.value}_handleEvents(){s.on(this.rangeInput,"mousedown",()=>this._showThumb()),s.on(this.rangeInput,"mouseup",()=>this._hideThumb()),s.on(this.rangeInput,"touchstart",()=>this._showThumb()),s.on(this.rangeInput,"touchend",()=>this._hideThumb()),s.on(this.rangeInput,"input",()=>this._thumbPositionUpdate())}_disposeEvents(){s.off(this.rangeInput,"mousedown",this._showThumb),s.off(this.rangeInput,"mouseup",this._hideThumb),s.off(this.rangeInput,"touchstart",this._showThumb),s.off(this.rangeInput,"touchend",this._hideThumb),s.off(this.rangeInput,"input",this._thumbPositionUpdate)}_showThumb(){c.addClass(this._element.lastElementChild,Ma)}_hideThumb(){c.removeClass(this._element.lastElementChild,Ma)}_thumbPositionUpdate(){var t=this.rangeInput,e=t.value,n=t.min||0,t=t.max||100;const i=this._element.lastElementChild;t=Number(100*(e-n)/(t-n));i.firstElementChild.textContent=e,c.style(i,{left:"calc(".concat(t,"% + (").concat(8-.15*t,"px))")})}static getInstance(t){return r.getData(t,Pa)}static getOrCreateInstance(t){var e=1new Ra(t)),o(()=>{const t=n();if(t){const e=t.fn[ja];t.fn[ja]=Ra.jQueryInterface,t.fn[ja].Constructor=Ra,t.fn[ja].noConflict=()=>(t.fn[ja]=e,Ra.jQueryInterface)}});var Ba=Ra}],i={},o.m=n,o.c=i,o.d=function(t,e,n){o.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},o.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)o.d(n,i,function(t){return e[t]}.bind(null,i));return n},o.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(e,"a",e),e},o.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},o.p="",o(o.s=120);function o(t){if(i[t])return i[t].exports;var e=i[t]={i:t,l:!1,exports:{}};return n[t].call(e.exports,e,e.exports,o),e.l=!0,e.exports}var n,i}); +//# sourceMappingURL=mdb.min.js.map \ No newline at end of file diff --git a/js/mdb.min.js.map b/js/mdb.min.js.map new file mode 100644 index 000000000..21d222e9f --- /dev/null +++ b/js/mdb.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["webpack://mdb/webpack/universalModuleDefinition","webpack://mdb/./node_modules/core-js/internals/global.js","webpack://mdb/./node_modules/core-js/internals/fails.js","webpack://mdb/./node_modules/core-js/modules/es.regexp.exec.js","webpack://mdb/./node_modules/core-js/internals/function-uncurry-this.js","webpack://mdb/./node_modules/core-js/internals/is-callable.js","webpack://mdb/./node_modules/core-js/internals/well-known-symbol.js","webpack://mdb/./node_modules/core-js/internals/descriptors.js","webpack://mdb/./node_modules/core-js/internals/has-own-property.js","webpack://mdb/./node_modules/core-js/modules/es.array.includes.js","webpack://mdb/./node_modules/core-js/internals/object-define-property.js","webpack://mdb/./node_modules/core-js/modules/es.array.iterator.js","webpack://mdb/./node_modules/core-js/internals/function-call.js","webpack://mdb/./node_modules/core-js/internals/an-object.js","webpack://mdb/./node_modules/core-js/modules/web.dom-collections.iterator.js","webpack://mdb/./node_modules/core-js/internals/is-object.js","webpack://mdb/./node_modules/core-js/internals/create-non-enumerable-property.js","webpack://mdb/./node_modules/core-js/internals/to-string.js","webpack://mdb/./node_modules/core-js/modules/es.regexp.constructor.js","webpack://mdb/./node_modules/core-js/internals/export.js","webpack://mdb/./node_modules/core-js/internals/to-indexed-object.js","webpack://mdb/./node_modules/core-js/internals/require-object-coercible.js","webpack://mdb/./node_modules/core-js/internals/get-built-in.js","webpack://mdb/./node_modules/core-js/internals/define-built-in.js","webpack://mdb/./node_modules/core-js/modules/es.string.replace.js","webpack://mdb/./node_modules/core-js/internals/create-property-descriptor.js","webpack://mdb/./node_modules/core-js/internals/classof-raw.js","webpack://mdb/./node_modules/core-js/internals/engine-user-agent.js","webpack://mdb/./node_modules/core-js/internals/is-pure.js","webpack://mdb/./node_modules/core-js/internals/to-object.js","webpack://mdb/./node_modules/core-js/internals/internal-state.js","webpack://mdb/./node_modules/core-js/internals/to-integer-or-infinity.js","webpack://mdb/./node_modules/core-js/internals/object-create.js","webpack://mdb/./node_modules/core-js/modules/es.string.trim.js","webpack://mdb/./node_modules/core-js/internals/function-bind-native.js","webpack://mdb/./node_modules/core-js/internals/to-property-key.js","webpack://mdb/./node_modules/core-js/internals/object-is-prototype-of.js","webpack://mdb/./node_modules/core-js/internals/shared.js","webpack://mdb/./node_modules/core-js/internals/shared-store.js","webpack://mdb/./node_modules/core-js/internals/set-global.js","webpack://mdb/./node_modules/core-js/internals/document-create-element.js","webpack://mdb/./node_modules/core-js/internals/function-name.js","webpack://mdb/./node_modules/core-js/internals/shared-key.js","webpack://mdb/./node_modules/core-js/internals/hidden-keys.js","webpack://mdb/./node_modules/core-js/internals/length-of-array-like.js","webpack://mdb/./node_modules/core-js/internals/enum-bug-keys.js","webpack://mdb/./node_modules/core-js/internals/regexp-exec.js","webpack://mdb/./node_modules/core-js/internals/iterators.js","webpack://mdb/./node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack://mdb/./node_modules/core-js/internals/is-symbol.js","webpack://mdb/./node_modules/core-js/internals/use-symbol-as-uid.js","webpack://mdb/./node_modules/core-js/internals/native-symbol.js","webpack://mdb/./node_modules/core-js/internals/engine-v8-version.js","webpack://mdb/./node_modules/core-js/internals/get-method.js","webpack://mdb/./node_modules/core-js/internals/a-callable.js","webpack://mdb/./node_modules/core-js/internals/uid.js","webpack://mdb/./node_modules/core-js/internals/ie8-dom-define.js","webpack://mdb/./node_modules/core-js/internals/v8-prototype-define-bug.js","webpack://mdb/./node_modules/core-js/internals/inspect-source.js","webpack://mdb/./node_modules/core-js/internals/object-get-own-property-names.js","webpack://mdb/./node_modules/core-js/internals/object-keys-internal.js","webpack://mdb/./node_modules/core-js/internals/array-includes.js","webpack://mdb/./node_modules/core-js/internals/to-absolute-index.js","webpack://mdb/./node_modules/core-js/internals/to-length.js","webpack://mdb/./node_modules/core-js/internals/is-forced.js","webpack://mdb/./node_modules/core-js/internals/regexp-flags.js","webpack://mdb/./node_modules/core-js/internals/regexp-sticky-helpers.js","webpack://mdb/./node_modules/core-js/internals/regexp-unsupported-dot-all.js","webpack://mdb/./node_modules/core-js/internals/regexp-unsupported-ncg.js","webpack://mdb/./node_modules/core-js/internals/whitespaces.js","webpack://mdb/./node_modules/core-js/internals/object-set-prototype-of.js","webpack://mdb/./node_modules/core-js/internals/add-to-unscopables.js","webpack://mdb/./node_modules/core-js/internals/iterators-core.js","webpack://mdb/./node_modules/core-js/internals/object-get-prototype-of.js","webpack://mdb/./node_modules/core-js/internals/set-to-string-tag.js","webpack://mdb/(webpack)/buildin/global.js","webpack://mdb/./node_modules/core-js/internals/object-property-is-enumerable.js","webpack://mdb/./node_modules/core-js/internals/indexed-object.js","webpack://mdb/./node_modules/core-js/internals/to-primitive.js","webpack://mdb/./node_modules/core-js/internals/try-to-string.js","webpack://mdb/./node_modules/core-js/internals/ordinary-to-primitive.js","webpack://mdb/./node_modules/core-js/internals/make-built-in.js","webpack://mdb/./node_modules/core-js/internals/native-weak-map.js","webpack://mdb/./node_modules/core-js/internals/copy-constructor-properties.js","webpack://mdb/./node_modules/core-js/internals/own-keys.js","webpack://mdb/./node_modules/core-js/internals/object-get-own-property-symbols.js","webpack://mdb/./node_modules/core-js/internals/classof.js","webpack://mdb/./node_modules/core-js/internals/to-string-tag-support.js","webpack://mdb/./node_modules/core-js/internals/object-define-properties.js","webpack://mdb/./node_modules/core-js/internals/object-keys.js","webpack://mdb/./node_modules/core-js/internals/html.js","webpack://mdb/./node_modules/core-js/internals/string-trim.js","webpack://mdb/./node_modules/core-js/internals/string-trim-forced.js","webpack://mdb/./node_modules/core-js/internals/inherit-if-required.js","webpack://mdb/./node_modules/core-js/internals/a-possible-prototype.js","webpack://mdb/./node_modules/core-js/internals/is-regexp.js","webpack://mdb/./node_modules/core-js/internals/regexp-get-flags.js","webpack://mdb/./node_modules/core-js/internals/proxy-accessor.js","webpack://mdb/./node_modules/core-js/internals/set-species.js","webpack://mdb/./node_modules/core-js/internals/function-apply.js","webpack://mdb/./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js","webpack://mdb/./node_modules/core-js/internals/advance-string-index.js","webpack://mdb/./node_modules/core-js/internals/string-multibyte.js","webpack://mdb/./node_modules/core-js/internals/get-substitution.js","webpack://mdb/./node_modules/core-js/internals/regexp-exec-abstract.js","webpack://mdb/./node_modules/core-js/internals/define-iterator.js","webpack://mdb/./node_modules/core-js/internals/create-iterator-constructor.js","webpack://mdb/./node_modules/core-js/internals/correct-prototype-getter.js","webpack://mdb/./node_modules/core-js/internals/dom-iterables.js","webpack://mdb/./node_modules/core-js/internals/dom-token-list-prototype.js","webpack://mdb/./node_modules/core-js/modules/es.array.sort.js","webpack://mdb/./node_modules/core-js/internals/array-sort.js","webpack://mdb/./node_modules/core-js/internals/array-slice-simple.js","webpack://mdb/./node_modules/core-js/internals/create-property.js","webpack://mdb/./node_modules/core-js/internals/array-method-is-strict.js","webpack://mdb/./node_modules/core-js/internals/engine-ff-version.js","webpack://mdb/./node_modules/core-js/internals/engine-is-ie-or-edge.js","webpack://mdb/./node_modules/core-js/internals/engine-webkit-version.js","webpack://mdb/./node_modules/detect-autofill/dist/detect-autofill.js","webpack://mdb/./src/js/mdb/util/index.js","webpack://mdb/./src/js/mdb/dom/data.js","webpack://mdb/./src/js/mdb/dom/event-handler.js","webpack://mdb/./src/js/mdb/dom/manipulator.js","webpack://mdb/./src/js/mdb/dom/selector-engine.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/util/index.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/dom/event-handler.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/dom/data.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/base-component.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/button.js","webpack://mdb/./src/js/free/button.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/dom/manipulator.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/dom/selector-engine.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/collapse.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/util/scrollbar.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/util/backdrop.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/util/focustrap.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/util/component-functions.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/offcanvas.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/alert.js","webpack://mdb/./src/js/free/alert.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/carousel.js","webpack://mdb/./src/js/free/carousel.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/modal.js","webpack://mdb/./src/js/free/modal.js","webpack://mdb/./node_modules/@popperjs/core/lib/enums.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getWindow.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/applyStyles.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/getBasePlacement.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/math.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/contains.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/within.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/expandToHashMap.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/arrow.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/getVariation.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/computeStyles.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/eventListeners.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/rectToClientRect.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/computeOffsets.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/detectOverflow.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/flip.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/hide.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/offset.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js","webpack://mdb/./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/getAltAxis.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js","webpack://mdb/./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/orderModifiers.js","webpack://mdb/./node_modules/@popperjs/core/lib/createPopper.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/debounce.js","webpack://mdb/./node_modules/@popperjs/core/lib/utils/mergeByName.js","webpack://mdb/./node_modules/@popperjs/core/lib/popper.js","webpack://mdb/./node_modules/@popperjs/core/lib/popper-lite.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/util/sanitizer.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/tooltip.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/popover.js","webpack://mdb/./src/js/free/popover.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/scrollspy.js","webpack://mdb/./src/js/free/scrollspy.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/tab.js","webpack://mdb/./src/js/free/tab.js","webpack://mdb/./src/js/free/tooltip.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/toast.js","webpack://mdb/./src/js/free/toast.js","webpack://mdb/./src/js/free/input.js","webpack://mdb/./src/js/bootstrap/mdb-prefix/dropdown.js","webpack://mdb/./src/js/free/dropdown.js","webpack://mdb/./src/js/free/ripple.js","webpack://mdb/./src/js/free/range.js","webpack://mdb/webpack/bootstrap"],"names":["root","factory","exports","module","define","amd","this","it","Math","check","globalThis","window","self","global","Function","exec","error","$","target","proto","forced","NATIVE_BIND","FunctionPrototype","prototype","bind","call","uncurryThis","fn","apply","arguments","argument","shared","hasOwn","uid","NATIVE_SYMBOL","USE_SYMBOL_AS_UID","WellKnownSymbolsStore","Symbol","symbolFor","createWellKnownSymbol","withoutSetter","name","description","fails","Object","defineProperty","get","toObject","hasOwnProperty","key","$includes","includes","addToUnscopables","Array","el","length","undefined","DESCRIPTORS","IE8_DOM_DEFINE","V8_PROTOTYPE_DEFINE_BUG","anObject","toPropertyKey","TypeError","$defineProperty","$getOwnPropertyDescriptor","getOwnPropertyDescriptor","ENUMERABLE","CONFIGURABLE","WRITABLE","f","O","P","Attributes","current","value","configurable","enumerable","writable","toIndexedObject","Iterators","InternalStateModule","defineIterator","IS_PURE","ARRAY_ITERATOR","setInternalState","set","getInternalState","getterFor","values","iterated","kind","type","index","state","done","Arguments","isObject","String","handlePrototype","CollectionPrototype","COLLECTION_NAME","ITERATOR","ArrayValues","createNonEnumerableProperty","TO_STRING_TAG","DOMIterables","METHOD_NAME","ArrayIteratorMethods","DOMTokenListPrototype","wellKnownSymbol","isCallable","definePropertyModule","createPropertyDescriptor","object","classof","isForced","inheritIfRequired","getOwnPropertyNames","isPrototypeOf","isRegExp","toString","getRegExpFlags","stickyHelpers","proxyAccessor","defineBuiltIn","enforceInternalState","enforce","setSpecies","UNSUPPORTED_DOT_ALL","UNSUPPORTED_NCG","MATCH","NativeRegExp","RegExp","RegExpPrototype","SyntaxError","charAt","replace","stringIndexOf","indexOf","stringSlice","slice","IS_NCG","re1","re2","CORRECT_NEW","MISSED_STICKY","UNSUPPORTED_Y","BASE_FORCED","RegExpWrapper","pattern","flags","dotAll","sticky","thisIsRegExp","patternIsRegExp","flagsAreUndefined","groups","rawPattern","constructor","source","rawFlags","handled","string","chr","result","named","names","brackets","ncg","groupid","groupname","handleNCG","raw","handleDotAll","keys","setGlobal","copyConstructorProperties","options","sourceProperty","descriptor","TARGET","GLOBAL","STATIC","stat","targetProperty","noTargetGet","sham","IndexedObject","requireObjectCoercible","namespace","method","makeBuiltIn","unsafe","simple","fixRegExpWellKnownSymbolLogic","toIntegerOrInfinity","toLength","advanceStringIndex","getMethod","getSubstitution","regExpExec","REPLACE","max","min","concat","push","REPLACE_KEEPS_$0","REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE","_","nativeReplace","maybeCallNative","UNSAFE_SUBSTITUTE","searchValue","replaceValue","replacer","rx","S","res","fullUnicode","functionalReplace","results","unicode","lastIndex","accumulatedResult","nextSourcePosition","i","matched","position","captures","j","namedCaptures","replacement","replacerArgs","re","a","bitmap","getBuiltIn","store","wmget","wmhas","wmset","has","STATE","NATIVE_WEAK_MAP","sharedKey","hiddenKeys","OBJECT_ALREADY_INITIALIZED","WeakMap","metadata","facade","TYPE","ceil","floor","number","EmptyConstructor","NullProtoObjectViaActiveX","activeXDocument","write","scriptTag","close","temp","parentWindow","definePropertiesModule","enumBugKeys","html","documentCreateElement","PROTOTYPE","SCRIPT","IE_PROTO","content","NullProtoObject","ActiveXObject","document","domain","iframe","JS","style","display","appendChild","src","iframeDocument","contentWindow","open","F","create","Properties","$trim","trim","forcedStringTrimMethod","test","toPrimitive","isSymbol","version","mode","copyright","license","SHARED","EXISTS","createElement","getDescriptor","PROPER","obj","regexpFlags","nativeExec","patchedExec","UPDATES_LAST_INDEX_WRONG","BROKEN_CARET","NPCG_INCLUDED","reCopy","match","group","str","charsAdded","strCopy","multiline","input","propertyIsEnumerableModule","$Symbol","iterator","V8_VERSION","getOwnPropertySymbols","symbol","userAgent","process","Deno","versions","v8","split","aCallable","V","func","tryToString","id","postfix","random","functionToString","inspectSource","internalObjectKeys","createMethod","IS_INCLUDES","$this","fromIndex","lengthOfArrayLike","toAbsoluteIndex","integer","feature","detection","data","normalize","POLYFILL","NATIVE","toLowerCase","that","hasIndices","ignoreCase","$RegExp","aPossiblePrototype","setPrototypeOf","setter","CORRECT_SETTER","__proto__","UNSCOPABLES","ArrayPrototype","IteratorPrototype","arrayIterator","getPrototypeOf","BUGGY_SAFARI_ITERATORS","PrototypeOfArrayIteratorPrototype","CORRECT_PROTOTYPE_GETTER","ObjectPrototype","TAG","g","e","$propertyIsEnumerable","propertyIsEnumerable","NASHORN_BUG","1","ordinaryToPrimitive","TO_PRIMITIVE","pref","exoticToPrim","val","valueOf","CONFIGURABLE_FUNCTION_NAME","CONFIGURABLE_LENGTH","TEMPLATE","getter","arity","join","ownKeys","getOwnPropertyDescriptorModule","exceptions","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","TO_STRING_TAG_SUPPORT","classofRaw","CORRECT_ARGUMENTS","tag","tryGet","callee","objectKeys","defineProperties","props","ltrim","rtrim","whitespaces","whitespace","start","end","PROPER_FUNCTION_NAME","dummy","Wrapper","NewTarget","NewTargetPrototype","regExpFlags","R","Target","Source","SPECIES","CONSTRUCTOR_NAME","Constructor","Reflect","regexpExec","KEY","FORCED","SHAM","uncurriedNativeRegExpMethod","SYMBOL","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","methods","nativeMethod","regexp","arg2","forceStringMethod","uncurriedNativeMethod","$exec","CONVERT_TO_STRING","pos","first","size","charCodeAt","second","codeAt","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","tailPos","m","symbols","ch","capture","n","returnThis","FunctionName","createIteratorConstructor","setToStringTag","IteratorsCore","VALUES","ENTRIES","Iterable","NAME","IteratorConstructor","next","DEFAULT","IS_SET","getIterationMethod","KIND","defaultIterator","IterablePrototype","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","entries","CurrentIteratorPrototype","ENUMERABLE_NEXT","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","classList","internalSort","arrayMethodIsStrict","FF","IE_OR_EDGE","V8","WEBKIT","un$Sort","sort","FAILS_ON_UNDEFINED","FAILS_ON_NULL","STRICT_METHOD","STABLE_SORT","code","fromCharCode","k","v","b","comparefn","array","itemsLength","items","arrayLength","x","y","mergeSort","middle","insertionSort","element","merge","left","arraySlice","right","llength","rlength","lindex","rindex","createProperty","fin","propertyKey","firefox","UA","webkit","r","o","t","454","d","Z","645","map","u","c","810","CustomEvent","cancelable","preventDefault","defaultPrevented","Error","bubbles","createEvent","initCustomEvent","detail","Event","379","querySelector","HTMLIFrameElement","contentDocument","head","identifier","base","l","s","css","media","sourceMap","references","updater","singleton","p","setAttribute","removeAttribute","btoa","unescape","encodeURIComponent","JSON","stringify","styleSheet","cssText","firstChild","removeChild","createTextNode","parentNode","attributes","nonce","nc","forEach","insert","filter","Boolean","childNodes","insertBefore","all","atob","splice","__esModule","default","hasAttribute","dispatchEvent","locals","addEventListener","animationName","inputType","getSelector","let","selector","getAttribute","hrefAttr","typeCheckConfig","componentName","config","configTypes","property","expectedTypes","valueType","nodeType","toUpperCase","getjQuery","jQuery","body","onDOMContentLoaded","callback","readyState","documentElement","dir","mapData","storeData","keyProperties","delete","Data","setData","instance","getData","removeData","namespaceRegex","stripNameRegex","stripUidRegex","eventRegistry","uidEvent","customEvents","mouseenter","mouseleave","nativeEvents","getUidEvent","getEvent","findHandler","events","handler","delegationSelector","uidEventList","len","event","originalHandler","normalizeParams","originalTypeEvent","delegationFn","delegation","typeEvent","custom","isNative","addHandler","oneOff","handlers","previousFn","domElements","querySelectorAll","delegateTarget","EventHandler","off","removeHandler","removeEventListener","on","one","inNamespace","isNamespace","elementEvent","removeNamespacedHandlers","storeElementEvent","handlerKey","keyHandlers","trigger","args","jQueryEvent","nativeDispatch","evt","isPropagationStopped","isImmediatePropagationStopped","isDefaultPrevented","initEvent","normalizeData","Number","normalizeDataKey","Manipulator","setDataAttribute","removeDataAttribute","getDataAttributes","dataset","startsWith","pureKey","getDataAttribute","offset","rect","getBoundingClientRect","top","scrollTop","scrollLeft","offsetTop","offsetLeft","assign","toggleClass","className","contains","remove","add","addClass","addStyle","removeClass","hasClass","SelectorEngine","closest","matches","find","Element","findOne","children","child","parents","ancestor","Node","ELEMENT_NODE","prev","previous","previousElementSibling","nextElementSibling","MILLISECONDS_MULTIPLIER","TRANSITION_END","getSelectorFromElement","getElementFromSelector","triggerTransitionEnd","isElement","jquery","getElement","isVisible","getClientRects","getComputedStyle","getPropertyValue","isDisabled","disabled","findShadowRoot","attachShadow","getRootNode","ShadowRoot","noop","reflow","offsetHeight","DOMContentLoadedCallbacks","isRTL","defineJQueryPlugin","plugin","JQUERY_NO_CONFLICT","jQueryInterface","noConflict","executeAfterTransition","transitionElement","emulatedDuration","transitionDuration","transitionDelay","floatTransitionDuration","parseFloat","floatTransitionDelay","getTransitionDurationFromElement","called","execute","setTimeout","getNextActiveElement","list","activeElement","shouldGetNext","isCycleAllowed","listLength","customEventsRegex","Set","getTypeEvent","wrapFn","relatedTarget","elementMap","Map","instanceMap","console","from","BaseComponent","_element","DATA_KEY","dispose","EVENT_KEY","propertyName","_queueCallback","isAnimated","getInstance","SELECTOR_DATA_TOGGLE","EVENT_CLICK_DATA_API","Button","toggle","each","getOrCreateInstance","button","EVENT_CLICK","EVENT_TRANSITIONEND","EVENT_MOUSEENTER","EVENT_MOUSELEAVE","EVENT_HIDE","EVENT_HIDDEN","EVENT_SHOW","EVENT_SHOWN","CLASS_NAME_FIXED_ACTION_BTN","BSButton","super","_fn","_init","_config","show","_buttonList","_bindListOpenTransitionEnd","height","_fullContainerHeight","_toggleVisibility","hide","_bindListHideTransitionEnd","_actionButton","_saveInitialHeights","_setInitialStyles","_bindInitialEvents","_bindMouseEnter","_isTouchDevice","_bindMouseLeave","_bindClick","_initialContainerHeight","action","listTranslate","transform","_buttonListElements","_getHeight","computed","_initialListHeight","marginBottom","pageYOffset","pageXOffset","focusableChildren","focusables","Default","parent","DefaultType","CLASS_NAME_SHOW","CLASS_NAME_COLLAPSE","CLASS_NAME_COLLAPSING","CLASS_NAME_COLLAPSED","CLASS_NAME_DEEPER_CHILDREN","Collapse","_isTransitioning","_getConfig","_triggerArray","toggleList","elem","filterElement","foundElem","_selector","_initializeChildren","_addAriaAndCollapsedClass","_isShown","actives","activesData","container","tempActiveData","startEvent","elemActive","dimension","_getDimension","capitalizedDimension","scrollSize","triggerArrayLength","selected","triggerArray","isOpen","tagName","selectorElements","SELECTOR_FIXED_CONTENT","SELECTOR_STICKY_CONTENT","ScrollBarHelper","getWidth","documentWidth","clientWidth","abs","innerWidth","width","_disableOverFlow","_setElementAttributes","calculatedValue","_saveInitialAttribute","overflow","styleProp","scrollbarWidth","_applyManipulationCallback","reset","_resetElementAttributes","actualValue","removeProperty","callBack","isOverflowing","rootElement","clickCallback","EVENT_MOUSEDOWN","Backdrop","_isAppended","_append","_getElement","_emulateAnimation","backdrop","append","trapElement","autofocus","EVENT_FOCUSIN","EVENT_KEYDOWN_TAB","TAB_NAV_BACKWARD","enableDismissTrigger","component","clickEvent","FocusTrap","_isActive","_lastTabNavDirection","activate","focus","_handleFocusin","_handleKeydown","deactivate","elements","shiftKey","DATA_API_KEY","EVENT_LOAD_DATA_API","keyboard","scroll","OPEN_SELECTOR","EVENT_KEYDOWN_DISMISS","Offcanvas","_backdrop","_initializeBackDrop","_focustrap","_initializeFocusTrap","_addEventListeners","visibility","blur","allReadyOpen","EVENT_CLOSE","EVENT_CLOSED","Alert","_destroyElement","EVENT_CLOSE_BS","EVENT_CLOSED_BS","BSAlert","_bindCloseEvent","_bindClosedEvent","interval","slide","pause","wrap","touch","ORDER_NEXT","ORDER_PREV","DIRECTION_LEFT","DIRECTION_RIGHT","KEY_TO_DIRECTION","EVENT_SLIDE","EVENT_SLID","EVENT_KEYDOWN","EVENT_TOUCHSTART","EVENT_TOUCHMOVE","EVENT_TOUCHEND","EVENT_POINTERDOWN","EVENT_POINTERUP","EVENT_DRAG_START","CLASS_NAME_ACTIVE","SELECTOR_ACTIVE_ITEM","Carousel","_items","_interval","_activeElement","_isPaused","_isSliding","touchTimeout","touchStartX","touchDeltaX","_indicatorsElement","_touchSupported","navigator","maxTouchPoints","_pointerEvent","PointerEvent","_slide","nextWhenVisible","hidden","cycle","clearInterval","_updateInterval","setInterval","visibilityState","to","activeIndex","_getItemIndex","order","_handleSwipe","absDeltax","direction","_keydown","_addTouchEventListeners","hasPointerPenTouch","pointerType","clientX","touches","move","clearTimeout","itemImg","_getItemByOrder","isNext","_triggerSlideEvent","eventDirectionName","targetIndex","_setActiveIndicatorElement","activeIndicator","indicators","parseInt","elementInterval","defaultInterval","directionOrOrder","_directionToOrder","activeElementIndex","nextElement","nextElementIndex","isCycling","directionalClassName","orderClassName","_orderToDirection","slideEvent","triggerSlidEvent","ride","carouselInterface","slideIndex","dataApiClickHandler","carousels","EVENT_SLIDE_BS","EVENT_SLID_BS","BSCarousel","_bindSlideEvent","_bindSlidEvent","EVENT_HIDE_PREVENTED","EVENT_RESIZE","EVENT_CLICK_DISMISS","EVENT_MOUSEUP_DISMISS","EVENT_MOUSEDOWN_DISMISS","CLASS_NAME_OPEN","CLASS_NAME_STATIC","Modal","_dialog","_ignoreBackdropClick","_scrollBar","_isAnimated","_adjustDialog","_setEscapeEvent","_setResizeEvent","_showBackdrop","_showElement","_hideModal","htmlElement","handleUpdate","modalBody","_triggerBackdropTransition","_resetAdjustments","currentTarget","hideEvent","scrollHeight","isModalOverflowing","clientHeight","overflowY","isBodyOverflowing","paddingLeft","paddingRight","allreadyOpenedModals","showEvent","modal","EVENT_HIDE_BS","EVENT_HIDE_PREVENTED_BS","EVENT_HIDDEN_BS","EVENT_SHOW_BS","EVENT_SHOWN_BS","BSModal","_bindShowEvent","_bindShownEvent","_bindHideEvent","_bindHiddenEvent","_bindHidePreventedEvent","selectorElement","bottom","auto","basePlacements","viewport","variationPlacements","reduce","acc","placement","beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","afterWrite","modifierPhases","getNodeName","nodeName","getWindow","node","ownerDocument","defaultView","isHTMLElement","HTMLElement","isShadowRoot","enabled","phase","_ref","styles","effect","_ref2","initialStyles","popper","strategy","margin","arrow","reference","attribute","requires","getBasePlacement","round","includeScale","scaleX","scaleY","offsetWidth","getLayoutRect","clientRect","rootNode","isSameNode","host","getDocumentElement","getParentNode","assignedSlot","getTrueOffsetParent","offsetParent","getOffsetParent","isFirefox","isIE","currentNode","perspective","contain","willChange","getContainingBlock","getMainAxisFromPlacement","within","getFreshSideObject","mergePaddingObject","paddingObject","expandToHashMap","hashMap","endDiff","center","arrowElement","popperOffsets","modifiersData","axis","basePlacement","padding","rects","arrowRect","minProp","maxProp","startDiff","clientSize","arrowOffsetParent","_state$modifiersData$","centerOffset","_options$element","requiresIfExists","getVariation","unsetSides","mapToStyles","widthProp","_Object$assign","popperRect","variation","offsets","gpuAcceleration","adaptive","roundOffsets","isFixed","_offsets$x","_offsets$y","_ref3","hasX","hasY","sideX","sideY","win","commonStyles","heightProp","visualViewport","_ref4","dpr","devicePixelRatio","_Object$assign2","_ref5","_options$gpuAccelerat","_options$adaptive","_options$roundOffsets","passive","_options$scroll","resize","_options$resize","scrollParents","scrollParent","update","hash","getOppositePlacement","getOppositeVariationPlacement","getWindowScroll","getWindowScrollBarX","isScrollParent","_getComputedStyle","overflowX","listScrollParents","getScrollParent","isBody","_element$ownerDocumen","updatedList","rectToClientRect","getClientRectFromMixedType","clippingParent","clientTop","clientLeft","winScroll","scrollWidth","getClippingRect","boundary","rootBoundary","clipperElement","mainClippingParents","clippingParents","firstClippingParent","clippingRect","accRect","computeOffsets","commonX","commonY","mainAxis","detectOverflow","_options","_options$placement","_options$boundary","_options$rootBoundary","_options$elementConte","elementContext","_options$altBoundary","altBoundary","_options$padding","clippingClientRect","contextElement","referenceClientRect","popperClientRect","elementClientRect","overflowOffsets","offsetData","multiply","_skip","_options$mainAxis","checkMainAxis","_options$altAxis","altAxis","checkAltAxis","specifiedFallbackPlacements","fallbackPlacements","_options$flipVariatio","flipVariations","allowedAutoPlacements","preferredPlacement","oppositePlacement","getExpandedFallbackPlacements","placements","_options$allowedAutoP","overflows","allowedPlacements","referenceRect","checksMap","makeFallbackChecks","firstFittingPlacement","_basePlacement","isStartVariation","isVertical","mainVariationSide","altVariationSide","checks","every","_i","fittingPlacement","_loop","getSideOffsets","preventedOffsets","isAnySideFullyClipped","some","side","preventOverflow","referenceOverflow","popperAltOverflow","referenceClippingOffsets","popperEscapeOffsets","isReferenceHidden","hasPopperEscaped","_options$offset","invertDistance","skidding","distance","_data$state$placement","_offsetModifierState$2","_offset","_len","_min","isOriginSide","_tetherMin","_preventedOffset","tether","_options$tether","tetherOffset","_options$tetherOffset","isBasePlacement","normalizedTetherOffsetValue","tetherOffsetValue","offsetModifierState","mainSide","altSide","additive","minLen","maxLen","arrowPaddingMin","arrowPaddingObject","arrowPaddingMax","arrowLen","minOffset","maxOffset","clientOffset","tetherMax","offsetModifierValue","_offsetModifierState$","preventedOffset","_max","_offsetModifierValue","_tetherMax","getCompositeRect","elementOrVirtualElement","isOffsetParentAnElement","offsetParentIsScaled","modifiers","visited","modifier","dep","depModifier","DEFAULT_OPTIONS","areValidElements","_key","popperGenerator","generatorOptions","_generatorOptions","_generatorOptions$def","defaultModifiers","_generatorOptions$def2","defaultOptions","pending","orderedModifiers","effectCleanupFns","isDestroyed","setOptions","setOptionsAction","merged","cleanupModifierEffects","existing","_ref3$options","cleanupFn","forceUpdate","_state$elements","_state$orderedModifie2","_state$orderedModifie","Promise","resolve","then","destroy","onFirstUpdate","eventListeners","uriAttributes","SAFE_URL_PATTERN","DATA_URL_PATTERN","DefaultAllowlist","area","br","col","div","em","hr","h1","h2","h3","h4","h5","h6","img","li","ol","pre","small","span","sub","sup","strong","ul","sanitizeHtml","unsafeHtml","allowList","sanitizeFn","domParser","DOMParser","createdDocument","parseFromString","elementName","attributeList","allowedAttributes","allowedAttributeList","attributeName","nodeValue","regExp","attributeRegex","allowedAttribute","innerHTML","DISALLOWED_ATTRIBUTES","animation","template","title","delay","customClass","sanitize","popperConfig","AttachmentMap","AUTO","TOP","RIGHT","BOTTOM","LEFT","HIDE","HIDDEN","SHOW","SHOWN","INSERTED","CLICK","FOCUSIN","FOCUSOUT","MOUSEENTER","MOUSELEAVE","CLASS_NAME_FADE","HOVER_STATE_SHOW","SELECTOR_TOOLTIP_INNER","SELECTOR_MODAL","EVENT_MODAL_HIDE","TRIGGER_HOVER","TRIGGER_FOCUS","Tooltip","Popper","_isEnabled","_timeout","_hoverState","_activeTrigger","_popper","tip","_setListeners","enable","disable","toggleEnabled","context","_initializeOnDelegatedTarget","click","_isWithActiveTrigger","_enter","_leave","getTipElement","_hideModalHandler","_disposePopper","isWithContent","shadowRoot","isInTheDom","getTitle","tipId","prefix","getElementById","getUID","attachment","_getAttachment","_addAttachmentClass","_getPopperConfig","_resolvePossibleFunction","prevHoverState","_cleanTipClass","setContent","_sanitizeAndSetContent","templateElement","setElementContent","textContent","updateAttachment","_getDelegateConfig","_getOffset","popperData","defaultBsPopperConfig","_handlePopperPlacementChange","_getBasicClassPrefix","triggers","eventIn","eventOut","_fixTitle","originalTitleType","dataAttributes","dataAttr","basicClassPrefixRegex","tabClass","token","tClass","Popover","_getContent","EVENT_INSERTED_BS","EVENT_INSERTED","BSPopover","_bindInsertedEvent","EVENT_ACTIVATE","EVENT_SCROLL","CLASS_NAME_DROPDOWN_ITEM","SELECTOR_NAV_LINKS","SELECTOR_LIST_ITEMS","SELECTOR_LINK_ITEMS","METHOD_POSITION","ScrollSpy","_scrollElement","_offsets","_targets","_activeTarget","_scrollHeight","_process","refresh","autoMethod","offsetMethod","offsetBase","_getScrollTop","targets","_getScrollHeight","targetSelector","targetBCR","item","_getOffsetHeight","innerHeight","maxScroll","_activate","_clear","queries","link","listGroup","navItem","EVENT_ACTIVATE_BS","CLASS_COLLAPSIBLE","SELECTOR_ACTIVE","SELECTOR_COLLAPSIBLE_SCROLLSPY","BSScrollSpy","_collapsibles","_bindActivateEvent","_getCollapsibles","_showSubsection","_hideSubsection","_hide","itemsToHide","_show","destinedHeight","collapsibleElements","collapsibleElement","listParent","listHeight","activeElements","active","collapsible","unactives","unactive","SELECTOR_ACTIVE_UL","Tab","listElement","itemSelector","complete","isTransitioning","_transitionComplete","dropdownChild","dropdownElement","dropdown","BSTab","_previous","hideEventMdb","BSTooltip","EVENT_MOUSEOVER","EVENT_MOUSEOUT","EVENT_FOCUSOUT","CLASS_NAME_SHOWING","autohide","Toast","_hasMouseInteraction","_hasKeyboardInteraction","_clearTimeout","_maybeScheduleHide","_onInteraction","isInteracting","BSToast","CLASSNAME_WRAPPER","CLASSNAME_ACTIVE","CLASSNAME_NOTCH","CLASSNAME_NOTCH_LEADING","CLASSNAME_NOTCH_MIDDLE","SELECTOR_OUTLINE_INPUT","SELECTOR_OUTLINE_TEXTAREA","SELECTOR_NOTCH","SELECTOR_NOTCH_LEADING","SELECTOR_NOTCH_MIDDLE","SELECTOR_HELPER","Input","_label","_labelWidth","_labelMarginLeft","_notchLeading","_notchMiddle","_notchTrailing","_initiated","_helper","_counter","_counterElement","_maxLength","_leadingIcon","init","_getLabelData","_applyDivs","_applyNotch","_getHelper","_getCounter","_getNotchData","forceActive","forceInactive","_removeBorder","_showPlaceholder","_getLabelWidth","_getLabelPositionInInputGroup","_toggleDefaultDatePlaceholder","maxLength","_showCounter","actualLength","_bindCounter","opacity","allNotchWrappers","notchWrapper","marginLeft","border","_getElements","prevLabelWidth","_deactivate","targetId","href","ESCAPE_KEY","ARROW_UP_KEY","ARROW_DOWN_KEY","REGEXP_KEYDOWN","EVENT_KEYDOWN_DATA_API","EVENT_KEYUP_DATA_API","SELECTOR_MENU","PLACEMENT_TOP","PLACEMENT_TOPEND","PLACEMENT_BOTTOM","PLACEMENT_BOTTOMEND","PLACEMENT_RIGHT","PLACEMENT_LEFT","autoClose","Dropdown","_menu","_getMenuElement","_inNavbar","_detectNavbar","getParentFromElement","_createPopper","_completeHide","referenceElement","isDisplayStatic","_getPlacement","parentDropdown","isEnd","_selectMenuItem","toggles","composedPath","isMenuTarget","isActive","stopPropagation","getToggleButton","clearMenus","dataApiKeydownHandler","flip","dropdownAnimation","EVENT_HIDE_MDB","EVENT_HIDDEN_MDB","EVENT_SHOW_MDB","EVENT_SHOWN_MDB","ANIMATION_CLASS","ANIMATION_SHOW_CLASS","ANIMATION_HIDE_CLASS","BSDropdown","_parent","_menuStyle","_popperPlacement","_mdbPopperConfig","isPrefersReducedMotionSet","matchMedia","_dropdownAnimationStart","_bindAnimationEnd","CLASSNAME_RIPPLE","CLASSNAME_RIPPLE_WAVE","SELECTOR_COMPONENT","CLASSNAME_UNBOUND","DEFAULT_RIPPLE_COLOR","BOOTSTRAP_COLORS","rippleCentered","rippleColor","rippleDuration","rippleRadius","rippleUnbound","Ripple","_clickHandler","_createRipple","_rippleTimer","_isMinWidthSet","_addClickEvent","_autoInit","minWidth","layerX","layerY","duration","_durationToMsNumber","diameterOptions","offsetX","offsetY","diameter","_getDiameter","radiusValue","rippleHTML","_createHTMLRipple","wrapper","ripple","_removeHTMLRipple","_removeOldColorClasses","_addColor","_toggleUnbound","_appendRipple","rippleEl","time","pythagorean","sideA","sideB","sqrt","positionCenter","quadrant","getCorner","topLeft","topRight","bottomLeft","bottomRight","color","rgbValue","_colorToRGB","gradientImage","backgroundImage","REGEXP_CLASS_COLOR","PARENT_CLASSS_COLOR","substr","tempElem","flag","namedColorsToRgba","autoInitial","SELECTOR_THUMB_VALUE","SELECTOR_WRAPPER","Range","_addThumb","_updateValue","_thumbPositionUpdate","_handleEvents","_disposeEvents","RANGE_THUMB","thumbValue","rangeInput","oninput","_showThumb","_hideThumb","lastElementChild","inputValue","minValue","maxValue","thumb","newValue","firstElementChild","installedModules","__webpack_require__","modules","toStringTag","ns","moduleId"],"mappings":"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","file":"js/mdb.min.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine(\"mdb\", [], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"mdb\"] = factory();\n\telse\n\t\troot[\"mdb\"] = factory();\n})(this, function() {\nreturn ","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line es-x/no-global-this -- safe\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n // eslint-disable-next-line no-restricted-globals -- safe\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func -- fallback\n (function () { return this; })() || Function('return this')();\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar exec = require('../internals/regexp-exec');\n\n// `RegExp.prototype.exec` method\n// https://tc39.es/ecma262/#sec-regexp.prototype.exec\n$({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {\n exec: exec\n});\n","var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar bind = FunctionPrototype.bind;\nvar call = FunctionPrototype.call;\nvar uncurryThis = NATIVE_BIND && bind.bind(call, call);\n\nmodule.exports = NATIVE_BIND ? function (fn) {\n return fn && uncurryThis(fn);\n} : function (fn) {\n return fn && function () {\n return call.apply(fn, arguments);\n };\n};\n","// `IsCallable` abstract operation\n// https://tc39.es/ecma262/#sec-iscallable\nmodule.exports = function (argument) {\n return typeof argument == 'function';\n};\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar hasOwn = require('../internals/has-own-property');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar symbolFor = Symbol && Symbol['for'];\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {\n var description = 'Symbol.' + name;\n if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {\n WellKnownSymbolsStore[name] = Symbol[name];\n } else if (USE_SYMBOL_AS_UID && symbolFor) {\n WellKnownSymbolsStore[name] = symbolFor(description);\n } else {\n WellKnownSymbolsStore[name] = createWellKnownSymbol(description);\n }\n } return WellKnownSymbolsStore[name];\n};\n","var fails = require('../internals/fails');\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar toObject = require('../internals/to-object');\n\nvar hasOwnProperty = uncurryThis({}.hasOwnProperty);\n\n// `HasOwnProperty` abstract operation\n// https://tc39.es/ecma262/#sec-hasownproperty\n// eslint-disable-next-line es-x/no-object-hasown -- safe\nmodule.exports = Object.hasOwn || function hasOwn(it, key) {\n return hasOwnProperty(toObject(it), key);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $includes = require('../internals/array-includes').includes;\nvar fails = require('../internals/fails');\nvar addToUnscopables = require('../internals/add-to-unscopables');\n\n// FF99+ bug\nvar BROKEN_ON_SPARSE = fails(function () {\n return !Array(1).includes();\n});\n\n// `Array.prototype.includes` method\n// https://tc39.es/ecma262/#sec-array.prototype.includes\n$({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {\n includes: function includes(el /* , fromIndex = 0 */) {\n return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('includes');\n","var global = require('../internals/global');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar V8_PROTOTYPE_DEFINE_BUG = require('../internals/v8-prototype-define-bug');\nvar anObject = require('../internals/an-object');\nvar toPropertyKey = require('../internals/to-property-key');\n\nvar TypeError = global.TypeError;\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar $defineProperty = Object.defineProperty;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar ENUMERABLE = 'enumerable';\nvar CONFIGURABLE = 'configurable';\nvar WRITABLE = 'writable';\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {\n var current = $getOwnPropertyDescriptor(O, P);\n if (current && current[WRITABLE]) {\n O[P] = Attributes.value;\n Attributes = {\n configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],\n enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],\n writable: false\n };\n }\n } return $defineProperty(O, P, Attributes);\n} : $defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return $defineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineProperty = require('../internals/object-define-property').f;\nvar defineIterator = require('../internals/define-iterator');\nvar IS_PURE = require('../internals/is-pure');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.es/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.es/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.es/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.es/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.es/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.es/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.es/ecma262/#sec-createmappedargumentsobject\nvar values = Iterators.Arguments = Iterators.Array;\n\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n\n// V8 ~ Chrome 45- bug\nif (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {\n defineProperty(values, 'name', { value: 'values' });\n} catch (error) { /* empty */ }\n","var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar call = Function.prototype.call;\n\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar String = global.String;\nvar TypeError = global.TypeError;\n\n// `Assert: Type(argument) is Object`\nmodule.exports = function (argument) {\n if (isObject(argument)) return argument;\n throw TypeError(String(argument) + ' is not an object');\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar DOMTokenListPrototype = require('../internals/dom-token-list-prototype');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nvar handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n};\n\nfor (var COLLECTION_NAME in DOMIterables) {\n handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);\n}\n\nhandlePrototype(DOMTokenListPrototype, 'DOMTokenList');\n","var isCallable = require('../internals/is-callable');\n\nmodule.exports = function (it) {\n return typeof it == 'object' ? it !== null : isCallable(it);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var global = require('../internals/global');\nvar classof = require('../internals/classof');\n\nvar String = global.String;\n\nmodule.exports = function (argument) {\n if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');\n return String(argument);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar global = require('../internals/global');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar isForced = require('../internals/is-forced');\nvar inheritIfRequired = require('../internals/inherit-if-required');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar getOwnPropertyNames = require('../internals/object-get-own-property-names').f;\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar isRegExp = require('../internals/is-regexp');\nvar toString = require('../internals/to-string');\nvar getRegExpFlags = require('../internals/regexp-get-flags');\nvar stickyHelpers = require('../internals/regexp-sticky-helpers');\nvar proxyAccessor = require('../internals/proxy-accessor');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar fails = require('../internals/fails');\nvar hasOwn = require('../internals/has-own-property');\nvar enforceInternalState = require('../internals/internal-state').enforce;\nvar setSpecies = require('../internals/set-species');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar UNSUPPORTED_DOT_ALL = require('../internals/regexp-unsupported-dot-all');\nvar UNSUPPORTED_NCG = require('../internals/regexp-unsupported-ncg');\n\nvar MATCH = wellKnownSymbol('match');\nvar NativeRegExp = global.RegExp;\nvar RegExpPrototype = NativeRegExp.prototype;\nvar SyntaxError = global.SyntaxError;\nvar exec = uncurryThis(RegExpPrototype.exec);\nvar charAt = uncurryThis(''.charAt);\nvar replace = uncurryThis(''.replace);\nvar stringIndexOf = uncurryThis(''.indexOf);\nvar stringSlice = uncurryThis(''.slice);\n// TODO: Use only propper RegExpIdentifierName\nvar IS_NCG = /^\\?<[^\\s\\d!#%&*+<=>@^][^\\s!#%&*+<=>@^]*>/;\nvar re1 = /a/g;\nvar re2 = /a/g;\n\n// \"new\" should create a new object, old webkit bug\nvar CORRECT_NEW = new NativeRegExp(re1) !== re1;\n\nvar MISSED_STICKY = stickyHelpers.MISSED_STICKY;\nvar UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;\n\nvar BASE_FORCED = DESCRIPTORS &&\n (!CORRECT_NEW || MISSED_STICKY || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG || fails(function () {\n re2[MATCH] = false;\n // RegExp constructor can alter flags and IsRegExp works correct with @@match\n return NativeRegExp(re1) != re1 || NativeRegExp(re2) == re2 || NativeRegExp(re1, 'i') != '/a/i';\n }));\n\nvar handleDotAll = function (string) {\n var length = string.length;\n var index = 0;\n var result = '';\n var brackets = false;\n var chr;\n for (; index <= length; index++) {\n chr = charAt(string, index);\n if (chr === '\\\\') {\n result += chr + charAt(string, ++index);\n continue;\n }\n if (!brackets && chr === '.') {\n result += '[\\\\s\\\\S]';\n } else {\n if (chr === '[') {\n brackets = true;\n } else if (chr === ']') {\n brackets = false;\n } result += chr;\n }\n } return result;\n};\n\nvar handleNCG = function (string) {\n var length = string.length;\n var index = 0;\n var result = '';\n var named = [];\n var names = {};\n var brackets = false;\n var ncg = false;\n var groupid = 0;\n var groupname = '';\n var chr;\n for (; index <= length; index++) {\n chr = charAt(string, index);\n if (chr === '\\\\') {\n chr = chr + charAt(string, ++index);\n } else if (chr === ']') {\n brackets = false;\n } else if (!brackets) switch (true) {\n case chr === '[':\n brackets = true;\n break;\n case chr === '(':\n if (exec(IS_NCG, stringSlice(string, index + 1))) {\n index += 2;\n ncg = true;\n }\n result += chr;\n groupid++;\n continue;\n case chr === '>' && ncg:\n if (groupname === '' || hasOwn(names, groupname)) {\n throw new SyntaxError('Invalid capture group name');\n }\n names[groupname] = true;\n named[named.length] = [groupname, groupid];\n ncg = false;\n groupname = '';\n continue;\n }\n if (ncg) groupname += chr;\n else result += chr;\n } return [result, named];\n};\n\n// `RegExp` constructor\n// https://tc39.es/ecma262/#sec-regexp-constructor\nif (isForced('RegExp', BASE_FORCED)) {\n var RegExpWrapper = function RegExp(pattern, flags) {\n var thisIsRegExp = isPrototypeOf(RegExpPrototype, this);\n var patternIsRegExp = isRegExp(pattern);\n var flagsAreUndefined = flags === undefined;\n var groups = [];\n var rawPattern = pattern;\n var rawFlags, dotAll, sticky, handled, result, state;\n\n if (!thisIsRegExp && patternIsRegExp && flagsAreUndefined && pattern.constructor === RegExpWrapper) {\n return pattern;\n }\n\n if (patternIsRegExp || isPrototypeOf(RegExpPrototype, pattern)) {\n pattern = pattern.source;\n if (flagsAreUndefined) flags = getRegExpFlags(rawPattern);\n }\n\n pattern = pattern === undefined ? '' : toString(pattern);\n flags = flags === undefined ? '' : toString(flags);\n rawPattern = pattern;\n\n if (UNSUPPORTED_DOT_ALL && 'dotAll' in re1) {\n dotAll = !!flags && stringIndexOf(flags, 's') > -1;\n if (dotAll) flags = replace(flags, /s/g, '');\n }\n\n rawFlags = flags;\n\n if (MISSED_STICKY && 'sticky' in re1) {\n sticky = !!flags && stringIndexOf(flags, 'y') > -1;\n if (sticky && UNSUPPORTED_Y) flags = replace(flags, /y/g, '');\n }\n\n if (UNSUPPORTED_NCG) {\n handled = handleNCG(pattern);\n pattern = handled[0];\n groups = handled[1];\n }\n\n result = inheritIfRequired(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype, RegExpWrapper);\n\n if (dotAll || sticky || groups.length) {\n state = enforceInternalState(result);\n if (dotAll) {\n state.dotAll = true;\n state.raw = RegExpWrapper(handleDotAll(pattern), rawFlags);\n }\n if (sticky) state.sticky = true;\n if (groups.length) state.groups = groups;\n }\n\n if (pattern !== rawPattern) try {\n // fails in old engines, but we have no alternatives for unsupported regex syntax\n createNonEnumerableProperty(result, 'source', rawPattern === '' ? '(?:)' : rawPattern);\n } catch (error) { /* empty */ }\n\n return result;\n };\n\n for (var keys = getOwnPropertyNames(NativeRegExp), index = 0; keys.length > index;) {\n proxyAccessor(RegExpWrapper, NativeRegExp, keys[index++]);\n }\n\n RegExpPrototype.constructor = RegExpWrapper;\n RegExpWrapper.prototype = RegExpPrototype;\n defineBuiltIn(global, 'RegExp', RegExpWrapper, { constructor: true });\n}\n\n// https://tc39.es/ecma262/#sec-get-regexp-@@species\nsetSpecies('RegExp');\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n options.name - the .name of the function if it does not match the key\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty == typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n defineBuiltIn(target, key, sourceProperty, options);\n }\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var global = require('../internals/global');\n\nvar TypeError = global.TypeError;\n\n// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\n\nvar aFunction = function (argument) {\n return isCallable(argument) ? argument : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];\n};\n","var global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar makeBuiltIn = require('../internals/make-built-in');\nvar setGlobal = require('../internals/set-global');\n\nmodule.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n var name = options && options.name !== undefined ? options.name : key;\n if (isCallable(value)) makeBuiltIn(value, name, options);\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return O;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n return O;\n};\n","'use strict';\nvar apply = require('../internals/function-apply');\nvar call = require('../internals/function-call');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar fails = require('../internals/fails');\nvar anObject = require('../internals/an-object');\nvar isCallable = require('../internals/is-callable');\nvar toIntegerOrInfinity = require('../internals/to-integer-or-infinity');\nvar toLength = require('../internals/to-length');\nvar toString = require('../internals/to-string');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar getMethod = require('../internals/get-method');\nvar getSubstitution = require('../internals/get-substitution');\nvar regExpExec = require('../internals/regexp-exec-abstract');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar REPLACE = wellKnownSymbol('replace');\nvar max = Math.max;\nvar min = Math.min;\nvar concat = uncurryThis([].concat);\nvar push = uncurryThis([].push);\nvar stringIndexOf = uncurryThis(''.indexOf);\nvar stringSlice = uncurryThis(''.slice);\n\nvar maybeToString = function (it) {\n return it === undefined ? it : String(it);\n};\n\n// IE <= 11 replaces $0 with the whole match, as if it was $&\n// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0\nvar REPLACE_KEEPS_$0 = (function () {\n // eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing\n return 'a'.replace(/./, '$0') === '$0';\n})();\n\n// Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string\nvar REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {\n if (/./[REPLACE]) {\n return /./[REPLACE]('a', '$0') === '';\n }\n return false;\n})();\n\nvar REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {\n var re = /./;\n re.exec = function () {\n var result = [];\n result.groups = { a: '7' };\n return result;\n };\n // eslint-disable-next-line regexp/no-useless-dollar-replacements -- false positive\n return ''.replace(re, '$
    ') !== '7';\n});\n\n// @@replace logic\nfixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {\n var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';\n\n return [\n // `String.prototype.replace` method\n // https://tc39.es/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var replacer = searchValue == undefined ? undefined : getMethod(searchValue, REPLACE);\n return replacer\n ? call(replacer, searchValue, O, replaceValue)\n : call(nativeReplace, toString(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace\n function (string, replaceValue) {\n var rx = anObject(this);\n var S = toString(string);\n\n if (\n typeof replaceValue == 'string' &&\n stringIndexOf(replaceValue, UNSAFE_SUBSTITUTE) === -1 &&\n stringIndexOf(replaceValue, '$<') === -1\n ) {\n var res = maybeCallNative(nativeReplace, rx, S, replaceValue);\n if (res.done) return res.value;\n }\n\n var functionalReplace = isCallable(replaceValue);\n if (!functionalReplace) replaceValue = toString(replaceValue);\n\n var global = rx.global;\n if (global) {\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n var results = [];\n while (true) {\n var result = regExpExec(rx, S);\n if (result === null) break;\n\n push(results, result);\n if (!global) break;\n\n var matchStr = toString(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n\n var matched = toString(result[0]);\n var position = max(min(toIntegerOrInfinity(result.index), S.length), 0);\n var captures = [];\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) push(captures, maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = concat([matched], captures, position, S);\n if (namedCaptures !== undefined) push(replacerArgs, namedCaptures);\n var replacement = toString(apply(replaceValue, undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += stringSlice(S, nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n return accumulatedResult + stringSlice(S, nextSourcePosition);\n }\n ];\n}, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\n\nvar toString = uncurryThis({}.toString);\nvar stringSlice = uncurryThis(''.slice);\n\nmodule.exports = function (it) {\n return stringSlice(toString(it), 8, -1);\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","module.exports = false;\n","var global = require('../internals/global');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nvar Object = global.Object;\n\n// `ToObject` abstract operation\n// https://tc39.es/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar hasOwn = require('../internals/has-own-property');\nvar shared = require('../internals/shared-store');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar OBJECT_ALREADY_INITIALIZED = 'Object already initialized';\nvar TypeError = global.TypeError;\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP || shared.state) {\n var store = shared.state || (shared.state = new WeakMap());\n var wmget = uncurryThis(store.get);\n var wmhas = uncurryThis(store.has);\n var wmset = uncurryThis(store.set);\n set = function (it, metadata) {\n if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);\n metadata.facade = it;\n wmset(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget(store, it) || {};\n };\n has = function (it) {\n return wmhas(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);\n metadata.facade = it;\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return hasOwn(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return hasOwn(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToIntegerOrInfinity` abstract operation\n// https://tc39.es/ecma262/#sec-tointegerorinfinity\nmodule.exports = function (argument) {\n var number = +argument;\n // eslint-disable-next-line no-self-compare -- safe\n return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);\n};\n","/* global ActiveXObject -- old IE, WSH */\nvar anObject = require('../internals/an-object');\nvar definePropertiesModule = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n activeXDocument = new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = typeof document != 'undefined'\n ? document.domain && activeXDocument\n ? NullProtoObjectViaActiveX(activeXDocument) // old IE\n : NullProtoObjectViaIFrame()\n : NullProtoObjectViaActiveX(activeXDocument); // WSH\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.es/ecma262/#sec-object.create\n// eslint-disable-next-line es-x/no-object-create -- safe\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : definePropertiesModule.f(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $trim = require('../internals/string-trim').trim;\nvar forcedStringTrimMethod = require('../internals/string-trim-forced');\n\n// `String.prototype.trim` method\n// https://tc39.es/ecma262/#sec-string.prototype.trim\n$({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {\n trim: function trim() {\n return $trim(this);\n }\n});\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es-x/no-function-prototype-bind -- safe\n var test = (function () { /* empty */ }).bind();\n // eslint-disable-next-line no-prototype-builtins -- safe\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});\n","var toPrimitive = require('../internals/to-primitive');\nvar isSymbol = require('../internals/is-symbol');\n\n// `ToPropertyKey` abstract operation\n// https://tc39.es/ecma262/#sec-topropertykey\nmodule.exports = function (argument) {\n var key = toPrimitive(argument, 'string');\n return isSymbol(key) ? key : key + '';\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\n\nmodule.exports = uncurryThis({}.isPrototypeOf);\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.22.5',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',\n license: 'https://github.com/zloirock/core-js/blob/v3.22.5/LICENSE',\n source: 'https://github.com/zloirock/core-js'\n});\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var global = require('../internals/global');\n\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nmodule.exports = function (key, value) {\n try {\n defineProperty(global, key, { value: value, configurable: true, writable: true });\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar hasOwn = require('../internals/has-own-property');\n\nvar FunctionPrototype = Function.prototype;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;\n\nvar EXISTS = hasOwn(FunctionPrototype, 'name');\n// additional protection from minified / mangled / dropped function names\nvar PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';\nvar CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));\n\nmodule.exports = {\n EXISTS: EXISTS,\n PROPER: PROPER,\n CONFIGURABLE: CONFIGURABLE\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = {};\n","var toLength = require('../internals/to-length');\n\n// `LengthOfArrayLike` abstract operation\n// https://tc39.es/ecma262/#sec-lengthofarraylike\nmodule.exports = function (obj) {\n return toLength(obj.length);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","'use strict';\n/* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */\n/* eslint-disable regexp/no-useless-quantifier -- testing */\nvar call = require('../internals/function-call');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar toString = require('../internals/to-string');\nvar regexpFlags = require('../internals/regexp-flags');\nvar stickyHelpers = require('../internals/regexp-sticky-helpers');\nvar shared = require('../internals/shared');\nvar create = require('../internals/object-create');\nvar getInternalState = require('../internals/internal-state').get;\nvar UNSUPPORTED_DOT_ALL = require('../internals/regexp-unsupported-dot-all');\nvar UNSUPPORTED_NCG = require('../internals/regexp-unsupported-ncg');\n\nvar nativeReplace = shared('native-string-replace', String.prototype.replace);\nvar nativeExec = RegExp.prototype.exec;\nvar patchedExec = nativeExec;\nvar charAt = uncurryThis(''.charAt);\nvar indexOf = uncurryThis(''.indexOf);\nvar replace = uncurryThis(''.replace);\nvar stringSlice = uncurryThis(''.slice);\n\nvar UPDATES_LAST_INDEX_WRONG = (function () {\n var re1 = /a/;\n var re2 = /b*/g;\n call(nativeExec, re1, 'a');\n call(nativeExec, re2, 'a');\n return re1.lastIndex !== 0 || re2.lastIndex !== 0;\n})();\n\nvar UNSUPPORTED_Y = stickyHelpers.BROKEN_CARET;\n\n// nonparticipating capturing group, copied from es5-shim's String#split patch.\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\n\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;\n\nif (PATCH) {\n patchedExec = function exec(string) {\n var re = this;\n var state = getInternalState(re);\n var str = toString(string);\n var raw = state.raw;\n var result, reCopy, lastIndex, match, i, object, group;\n\n if (raw) {\n raw.lastIndex = re.lastIndex;\n result = call(patchedExec, raw, str);\n re.lastIndex = raw.lastIndex;\n return result;\n }\n\n var groups = state.groups;\n var sticky = UNSUPPORTED_Y && re.sticky;\n var flags = call(regexpFlags, re);\n var source = re.source;\n var charsAdded = 0;\n var strCopy = str;\n\n if (sticky) {\n flags = replace(flags, 'y', '');\n if (indexOf(flags, 'g') === -1) {\n flags += 'g';\n }\n\n strCopy = stringSlice(str, re.lastIndex);\n // Support anchored sticky behavior.\n if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt(str, re.lastIndex - 1) !== '\\n')) {\n source = '(?: ' + source + ')';\n strCopy = ' ' + strCopy;\n charsAdded++;\n }\n // ^(? + rx + ) is needed, in combination with some str slicing, to\n // simulate the 'y' flag.\n reCopy = new RegExp('^(?:' + source + ')', flags);\n }\n\n if (NPCG_INCLUDED) {\n reCopy = new RegExp('^' + source + '$(?!\\\\s)', flags);\n }\n if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;\n\n match = call(nativeExec, sticky ? reCopy : re, strCopy);\n\n if (sticky) {\n if (match) {\n match.input = stringSlice(match.input, charsAdded);\n match[0] = stringSlice(match[0], charsAdded);\n match.index = re.lastIndex;\n re.lastIndex += match[0].length;\n } else re.lastIndex = 0;\n } else if (UPDATES_LAST_INDEX_WRONG && match) {\n re.lastIndex = re.global ? match.index + match[0].length : lastIndex;\n }\n if (NPCG_INCLUDED && match && match.length > 1) {\n // Fix browsers whose `exec` methods don't consistently return `undefined`\n // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/\n call(nativeReplace, match[0], reCopy, function () {\n for (i = 1; i < arguments.length - 2; i++) {\n if (arguments[i] === undefined) match[i] = undefined;\n }\n });\n }\n\n if (match && groups) {\n match.groups = object = create(null);\n for (i = 0; i < groups.length; i++) {\n group = groups[i];\n object[group[0]] = match[group[1]];\n }\n }\n\n return match;\n };\n}\n\nmodule.exports = patchedExec;\n","module.exports = {};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar call = require('../internals/function-call');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPropertyKey = require('../internals/to-property-key');\nvar hasOwn = require('../internals/has-own-property');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPropertyKey(P);\n if (IE8_DOM_DEFINE) try {\n return $getOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);\n};\n","var global = require('../internals/global');\nvar getBuiltIn = require('../internals/get-built-in');\nvar isCallable = require('../internals/is-callable');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar Object = global.Object;\n\nmodule.exports = USE_SYMBOL_AS_UID ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n var $Symbol = getBuiltIn('Symbol');\n return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it));\n};\n","/* eslint-disable es-x/no-symbol -- required for testing */\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n && !Symbol.sham\n && typeof Symbol.iterator == 'symbol';\n","/* eslint-disable es-x/no-symbol -- required for testing */\nvar V8_VERSION = require('../internals/engine-v8-version');\nvar fails = require('../internals/fails');\n\n// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n var symbol = Symbol();\n // Chrome 38 Symbol has incorrect toString conversion\n // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances\n return !String(symbol) || !(Object(symbol) instanceof Symbol) ||\n // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances\n !Symbol.sham && V8_VERSION && V8_VERSION < 41;\n});\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar Deno = global.Deno;\nvar versions = process && process.versions || Deno && Deno.version;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n // in old Chrome, versions of V8 isn't V8 = Chrome / 10\n // but their correct versions are not interesting for us\n version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);\n}\n\n// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`\n// so check `userAgent` even if `.v8` exists, but 0\nif (!version && userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = +match[1];\n }\n}\n\nmodule.exports = version;\n","var aCallable = require('../internals/a-callable');\n\n// `GetMethod` abstract operation\n// https://tc39.es/ecma262/#sec-getmethod\nmodule.exports = function (V, P) {\n var func = V[P];\n return func == null ? undefined : aCallable(func);\n};\n","var global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\nvar tryToString = require('../internals/try-to-string');\n\nvar TypeError = global.TypeError;\n\n// `Assert: IsCallable(argument) is true`\nmodule.exports = function (argument) {\n if (isCallable(argument)) return argument;\n throw TypeError(tryToString(argument) + ' is not a function');\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\n\nvar id = 0;\nvar postfix = Math.random();\nvar toString = uncurryThis(1.0.toString);\n\nmodule.exports = function (key) {\n return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thanks to IE8 for its funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\n\n// V8 ~ Chrome 36-\n// https://bugs.chromium.org/p/v8/issues/detail?id=3334\nmodule.exports = DESCRIPTORS && fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty(function () { /* empty */ }, 'prototype', {\n value: 42,\n writable: false\n }).prototype != 42;\n});\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar isCallable = require('../internals/is-callable');\nvar store = require('../internals/shared-store');\n\nvar functionToString = uncurryThis(Function.toString);\n\n// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper\nif (!isCallable(store.inspectSource)) {\n store.inspectSource = function (it) {\n return functionToString(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.es/ecma262/#sec-object.getownpropertynames\n// eslint-disable-next-line es-x/no-object-getownpropertynames -- safe\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar hasOwn = require('../internals/has-own-property');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar push = uncurryThis([].push);\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (hasOwn(O, key = names[i++])) {\n ~indexOf(result, key) || push(result, key);\n }\n return result;\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar lengthOfArrayLike = require('../internals/length-of-array-like');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = lengthOfArrayLike(O);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare -- NaN check\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare -- NaN check\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.es/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.es/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toIntegerOrInfinity = require('../internals/to-integer-or-infinity');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toIntegerOrInfinity(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","var toIntegerOrInfinity = require('../internals/to-integer-or-infinity');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.es/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : isCallable(detection) ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","'use strict';\nvar anObject = require('../internals/an-object');\n\n// `RegExp.prototype.flags` getter implementation\n// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.hasIndices) result += 'd';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.dotAll) result += 's';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","var fails = require('../internals/fails');\nvar global = require('../internals/global');\n\n// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError\nvar $RegExp = global.RegExp;\n\nvar UNSUPPORTED_Y = fails(function () {\n var re = $RegExp('a', 'y');\n re.lastIndex = 2;\n return re.exec('abcd') != null;\n});\n\n// UC Browser bug\n// https://github.com/zloirock/core-js/issues/1008\nvar MISSED_STICKY = UNSUPPORTED_Y || fails(function () {\n return !$RegExp('a', 'y').sticky;\n});\n\nvar BROKEN_CARET = UNSUPPORTED_Y || fails(function () {\n // https://bugzilla.mozilla.org/show_bug.cgi?id=773687\n var re = $RegExp('^r', 'gy');\n re.lastIndex = 2;\n return re.exec('str') != null;\n});\n\nmodule.exports = {\n BROKEN_CARET: BROKEN_CARET,\n MISSED_STICKY: MISSED_STICKY,\n UNSUPPORTED_Y: UNSUPPORTED_Y\n};\n","var fails = require('../internals/fails');\nvar global = require('../internals/global');\n\n// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError\nvar $RegExp = global.RegExp;\n\nmodule.exports = fails(function () {\n var re = $RegExp('.', 's');\n return !(re.dotAll && re.exec('\\n') && re.flags === 's');\n});\n","var fails = require('../internals/fails');\nvar global = require('../internals/global');\n\n// babel-minify and Closure Compiler transpiles RegExp('(?b)', 'g') -> /(?b)/g and it causes SyntaxError\nvar $RegExp = global.RegExp;\n\nmodule.exports = fails(function () {\n var re = $RegExp('(?b)', 'g');\n return re.exec('b').groups.a !== 'b' ||\n 'b'.replace(re, '$c') !== 'bc';\n});\n","// a string of all valid unicode whitespaces\nmodule.exports = '\\u0009\\u000A\\u000B\\u000C\\u000D\\u0020\\u00A0\\u1680\\u2000\\u2001\\u2002' +\n '\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n","/* eslint-disable no-proto -- safe */\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n// eslint-disable-next-line es-x/no-object-setprototypeof -- safe\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\n setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);\n setter(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","'use strict';\nvar fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\nvar create = require('../internals/object-create');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\n// `%IteratorPrototype%` object\n// https://tc39.es/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\n/* eslint-disable es-x/no-array-prototype-keys -- safe */\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nvar NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {\n var test = {};\n // FF44- legacy iterators case\n return IteratorPrototype[ITERATOR].call(test) !== test;\n});\n\nif (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};\nelse if (IS_PURE) IteratorPrototype = create(IteratorPrototype);\n\n// `%IteratorPrototype%[@@iterator]()` method\n// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator\nif (!isCallable(IteratorPrototype[ITERATOR])) {\n defineBuiltIn(IteratorPrototype, ITERATOR, function () {\n return this;\n });\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var global = require('../internals/global');\nvar hasOwn = require('../internals/has-own-property');\nvar isCallable = require('../internals/is-callable');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar Object = global.Object;\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n var object = toObject(O);\n if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];\n var constructor = object.constructor;\n if (isCallable(constructor) && object instanceof constructor) {\n return constructor.prototype;\n } return object instanceof Object ? ObjectPrototype : null;\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar hasOwn = require('../internals/has-own-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (target, TAG, STATIC) {\n if (target && !STATIC) target = target.prototype;\n if (target && !hasOwn(target, TO_STRING_TAG)) {\n defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","'use strict';\nvar $propertyIsEnumerable = {}.propertyIsEnumerable;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;\n","var global = require('../internals/global');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar Object = global.Object;\nvar split = uncurryThis(''.split);\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins -- safe\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split(it, '') : Object(it);\n} : Object;\n","var global = require('../internals/global');\nvar call = require('../internals/function-call');\nvar isObject = require('../internals/is-object');\nvar isSymbol = require('../internals/is-symbol');\nvar getMethod = require('../internals/get-method');\nvar ordinaryToPrimitive = require('../internals/ordinary-to-primitive');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TypeError = global.TypeError;\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\nmodule.exports = function (input, pref) {\n if (!isObject(input) || isSymbol(input)) return input;\n var exoticToPrim = getMethod(input, TO_PRIMITIVE);\n var result;\n if (exoticToPrim) {\n if (pref === undefined) pref = 'default';\n result = call(exoticToPrim, input, pref);\n if (!isObject(result) || isSymbol(result)) return result;\n throw TypeError(\"Can't convert object to primitive value\");\n }\n if (pref === undefined) pref = 'number';\n return ordinaryToPrimitive(input, pref);\n};\n","var global = require('../internals/global');\n\nvar String = global.String;\n\nmodule.exports = function (argument) {\n try {\n return String(argument);\n } catch (error) {\n return 'Object';\n }\n};\n","var global = require('../internals/global');\nvar call = require('../internals/function-call');\nvar isCallable = require('../internals/is-callable');\nvar isObject = require('../internals/is-object');\n\nvar TypeError = global.TypeError;\n\n// `OrdinaryToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-ordinarytoprimitive\nmodule.exports = function (input, pref) {\n var fn, val;\n if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;\n if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\nvar hasOwn = require('../internals/has-own-property');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar CONFIGURABLE_FUNCTION_NAME = require('../internals/function-name').CONFIGURABLE;\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar enforceInternalState = InternalStateModule.enforce;\nvar getInternalState = InternalStateModule.get;\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nvar CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {\n return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;\n});\n\nvar TEMPLATE = String(String).split('String');\n\nvar makeBuiltIn = module.exports = function (value, name, options) {\n if (String(name).slice(0, 7) === 'Symbol(') {\n name = '[' + String(name).replace(/^Symbol\\(([^)]*)\\)/, '$1') + ']';\n }\n if (options && options.getter) name = 'get ' + name;\n if (options && options.setter) name = 'set ' + name;\n if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {\n defineProperty(value, 'name', { value: name, configurable: true });\n }\n if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {\n defineProperty(value, 'length', { value: options.arity });\n }\n if (options && hasOwn(options, 'constructor') && options.constructor) {\n if (DESCRIPTORS) try {\n defineProperty(value, 'prototype', { writable: false });\n } catch (error) { /* empty */ }\n } else value.prototype = undefined;\n var state = enforceInternalState(value);\n if (!hasOwn(state, 'source')) {\n state.source = TEMPLATE.join(typeof name == 'string' ? name : '');\n } return value;\n};\n\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n// eslint-disable-next-line no-extend-native -- required\nFunction.prototype.toString = makeBuiltIn(function toString() {\n return isCallable(this) && getInternalState(this).source || inspectSource(this);\n}, 'toString');\n","var global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));\n","var hasOwn = require('../internals/has-own-property');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source, exceptions) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {\n defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\nvar concat = uncurryThis([].concat);\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;\n};\n","// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe\nexports.f = Object.getOwnPropertySymbols;\n","var global = require('../internals/global');\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar isCallable = require('../internals/is-callable');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar Object = global.Object;\n\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var DESCRIPTORS = require('../internals/descriptors');\nvar V8_PROTOTYPE_DEFINE_BUG = require('../internals/v8-prototype-define-bug');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.es/ecma262/#sec-object.defineproperties\n// eslint-disable-next-line es-x/no-object-defineproperties -- safe\nexports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var props = toIndexedObject(Properties);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);\n return O;\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.es/ecma262/#sec-object.keys\n// eslint-disable-next-line es-x/no-object-keys -- safe\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar toString = require('../internals/to-string');\nvar whitespaces = require('../internals/whitespaces');\n\nvar replace = uncurryThis(''.replace);\nvar whitespace = '[' + whitespaces + ']';\nvar ltrim = RegExp('^' + whitespace + whitespace + '*');\nvar rtrim = RegExp(whitespace + whitespace + '*$');\n\n// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation\nvar createMethod = function (TYPE) {\n return function ($this) {\n var string = toString(requireObjectCoercible($this));\n if (TYPE & 1) string = replace(string, ltrim, '');\n if (TYPE & 2) string = replace(string, rtrim, '');\n return string;\n };\n};\n\nmodule.exports = {\n // `String.prototype.{ trimLeft, trimStart }` methods\n // https://tc39.es/ecma262/#sec-string.prototype.trimstart\n start: createMethod(1),\n // `String.prototype.{ trimRight, trimEnd }` methods\n // https://tc39.es/ecma262/#sec-string.prototype.trimend\n end: createMethod(2),\n // `String.prototype.trim` method\n // https://tc39.es/ecma262/#sec-string.prototype.trim\n trim: createMethod(3)\n};\n","var PROPER_FUNCTION_NAME = require('../internals/function-name').PROPER;\nvar fails = require('../internals/fails');\nvar whitespaces = require('../internals/whitespaces');\n\nvar non = '\\u200B\\u0085\\u180E';\n\n// check that a method works with the correct list\n// of whitespaces and has a correct name\nmodule.exports = function (METHOD_NAME) {\n return fails(function () {\n return !!whitespaces[METHOD_NAME]()\n || non[METHOD_NAME]() !== non\n || (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);\n });\n};\n","var isCallable = require('../internals/is-callable');\nvar isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n isCallable(NewTarget = dummy.constructor) &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","var global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\n\nvar String = global.String;\nvar TypeError = global.TypeError;\n\nmodule.exports = function (argument) {\n if (typeof argument == 'object' || isCallable(argument)) return argument;\n throw TypeError(\"Can't set \" + String(argument) + ' as a prototype');\n};\n","var isObject = require('../internals/is-object');\nvar classof = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar MATCH = wellKnownSymbol('match');\n\n// `IsRegExp` abstract operation\n// https://tc39.es/ecma262/#sec-isregexp\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');\n};\n","var call = require('../internals/function-call');\nvar hasOwn = require('../internals/has-own-property');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar regExpFlags = require('../internals/regexp-flags');\n\nvar RegExpPrototype = RegExp.prototype;\n\nmodule.exports = function (R) {\n var flags = R.flags;\n return flags === undefined && !('flags' in RegExpPrototype) && !hasOwn(R, 'flags') && isPrototypeOf(RegExpPrototype, R)\n ? call(regExpFlags, R) : flags;\n};\n","var defineProperty = require('../internals/object-define-property').f;\n\nmodule.exports = function (Target, Source, key) {\n key in Target || defineProperty(Target, key, {\n configurable: true,\n get: function () { return Source[key]; },\n set: function (it) { Source[key] = it; }\n });\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar apply = FunctionPrototype.apply;\nvar call = FunctionPrototype.call;\n\n// eslint-disable-next-line es-x/no-reflect -- safe\nmodule.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {\n return call.apply(apply, arguments);\n});\n","'use strict';\n// TODO: Remove from `core-js@4` since it's moved to entry points\nrequire('../modules/es.regexp.exec');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar regexpExec = require('../internals/regexp-exec');\nvar fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nvar SPECIES = wellKnownSymbol('species');\nvar RegExpPrototype = RegExp.prototype;\n\nmodule.exports = function (KEY, exec, FORCED, SHAM) {\n var SYMBOL = wellKnownSymbol(KEY);\n\n var DELEGATES_TO_SYMBOL = !fails(function () {\n // String methods call symbol-named RegEp methods\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n });\n\n var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {\n // Symbol-named RegExp methods call .exec\n var execCalled = false;\n var re = /a/;\n\n if (KEY === 'split') {\n // We can't use real regex here since it causes deoptimization\n // and serious performance degradation in V8\n // https://github.com/zloirock/core-js/issues/306\n re = {};\n // RegExp[@@split] doesn't call the regex's exec method, but first creates\n // a new one. We need to return the patched regex when creating the new one.\n re.constructor = {};\n re.constructor[SPECIES] = function () { return re; };\n re.flags = '';\n re[SYMBOL] = /./[SYMBOL];\n }\n\n re.exec = function () { execCalled = true; return null; };\n\n re[SYMBOL]('');\n return !execCalled;\n });\n\n if (\n !DELEGATES_TO_SYMBOL ||\n !DELEGATES_TO_EXEC ||\n FORCED\n ) {\n var uncurriedNativeRegExpMethod = uncurryThis(/./[SYMBOL]);\n var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {\n var uncurriedNativeMethod = uncurryThis(nativeMethod);\n var $exec = regexp.exec;\n if ($exec === regexpExec || $exec === RegExpPrototype.exec) {\n if (DELEGATES_TO_SYMBOL && !forceStringMethod) {\n // The native String method already delegates to @@method (this\n // polyfilled function), leasing to infinite recursion.\n // We avoid it by directly calling the native @@method method.\n return { done: true, value: uncurriedNativeRegExpMethod(regexp, str, arg2) };\n }\n return { done: true, value: uncurriedNativeMethod(str, regexp, arg2) };\n }\n return { done: false };\n });\n\n defineBuiltIn(String.prototype, KEY, methods[0]);\n defineBuiltIn(RegExpPrototype, SYMBOL, methods[1]);\n }\n\n if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true);\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\n\n// `AdvanceStringIndex` abstract operation\n// https://tc39.es/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? charAt(S, index).length : 1);\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar toIntegerOrInfinity = require('../internals/to-integer-or-infinity');\nvar toString = require('../internals/to-string');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nvar charAt = uncurryThis(''.charAt);\nvar charCodeAt = uncurryThis(''.charCodeAt);\nvar stringSlice = uncurryThis(''.slice);\n\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = toString(requireObjectCoercible($this));\n var position = toIntegerOrInfinity(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = charCodeAt(S, position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = charCodeAt(S, position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING\n ? charAt(S, position)\n : first\n : CONVERT_TO_STRING\n ? stringSlice(S, position, position + 2)\n : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.es/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar toObject = require('../internals/to-object');\n\nvar floor = Math.floor;\nvar charAt = uncurryThis(''.charAt);\nvar replace = uncurryThis(''.replace);\nvar stringSlice = uncurryThis(''.slice);\nvar SUBSTITUTION_SYMBOLS = /\\$([$&'`]|\\d{1,2}|<[^>]*>)/g;\nvar SUBSTITUTION_SYMBOLS_NO_NAMED = /\\$([$&'`]|\\d{1,2})/g;\n\n// `GetSubstitution` abstract operation\n// https://tc39.es/ecma262/#sec-getsubstitution\nmodule.exports = function (matched, str, position, captures, namedCaptures, replacement) {\n var tailPos = position + matched.length;\n var m = captures.length;\n var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;\n if (namedCaptures !== undefined) {\n namedCaptures = toObject(namedCaptures);\n symbols = SUBSTITUTION_SYMBOLS;\n }\n return replace(replacement, symbols, function (match, ch) {\n var capture;\n switch (charAt(ch, 0)) {\n case '$': return '$';\n case '&': return matched;\n case '`': return stringSlice(str, 0, position);\n case \"'\": return stringSlice(str, tailPos);\n case '<':\n capture = namedCaptures[stringSlice(ch, 1, -1)];\n break;\n default: // \\d\\d?\n var n = +ch;\n if (n === 0) return match;\n if (n > m) {\n var f = floor(n / 10);\n if (f === 0) return match;\n if (f <= m) return captures[f - 1] === undefined ? charAt(ch, 1) : captures[f - 1] + charAt(ch, 1);\n return match;\n }\n capture = captures[n - 1];\n }\n return capture === undefined ? '' : capture;\n });\n};\n","var global = require('../internals/global');\nvar call = require('../internals/function-call');\nvar anObject = require('../internals/an-object');\nvar isCallable = require('../internals/is-callable');\nvar classof = require('../internals/classof-raw');\nvar regexpExec = require('../internals/regexp-exec');\n\nvar TypeError = global.TypeError;\n\n// `RegExpExec` abstract operation\n// https://tc39.es/ecma262/#sec-regexpexec\nmodule.exports = function (R, S) {\n var exec = R.exec;\n if (isCallable(exec)) {\n var result = call(exec, R, S);\n if (result !== null) anObject(result);\n return result;\n }\n if (classof(R) === 'RegExp') return call(regexpExec, R, S);\n throw TypeError('RegExp#exec called on incompatible receiver');\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar call = require('../internals/function-call');\nvar IS_PURE = require('../internals/is-pure');\nvar FunctionName = require('../internals/function-name');\nvar isCallable = require('../internals/is-callable');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar PROPER_FUNCTION_NAME = FunctionName.PROPER;\nvar CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) {\n defineBuiltIn(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array.prototype.{ values, @@iterator }.name in V8 / FF\n if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) {\n createNonEnumerableProperty(IterablePrototype, 'name', VALUES);\n } else {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return call(nativeIterator, this); };\n }\n }\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n defineBuiltIn(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n defineBuiltIn(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT });\n }\n Iterators[NAME] = defaultIterator;\n\n return methods;\n};\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","// in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList`\nvar documentCreateElement = require('../internals/document-create-element');\n\nvar classList = documentCreateElement('span').classList;\nvar DOMTokenListPrototype = classList && classList.constructor && classList.constructor.prototype;\n\nmodule.exports = DOMTokenListPrototype === Object.prototype ? undefined : DOMTokenListPrototype;\n","'use strict';\nvar $ = require('../internals/export');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar aCallable = require('../internals/a-callable');\nvar toObject = require('../internals/to-object');\nvar lengthOfArrayLike = require('../internals/length-of-array-like');\nvar toString = require('../internals/to-string');\nvar fails = require('../internals/fails');\nvar internalSort = require('../internals/array-sort');\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar FF = require('../internals/engine-ff-version');\nvar IE_OR_EDGE = require('../internals/engine-is-ie-or-edge');\nvar V8 = require('../internals/engine-v8-version');\nvar WEBKIT = require('../internals/engine-webkit-version');\n\nvar test = [];\nvar un$Sort = uncurryThis(test.sort);\nvar push = uncurryThis(test.push);\n\n// IE8-\nvar FAILS_ON_UNDEFINED = fails(function () {\n test.sort(undefined);\n});\n// V8 bug\nvar FAILS_ON_NULL = fails(function () {\n test.sort(null);\n});\n// Old WebKit\nvar STRICT_METHOD = arrayMethodIsStrict('sort');\n\nvar STABLE_SORT = !fails(function () {\n // feature detection can be too slow, so check engines versions\n if (V8) return V8 < 70;\n if (FF && FF > 3) return;\n if (IE_OR_EDGE) return true;\n if (WEBKIT) return WEBKIT < 603;\n\n var result = '';\n var code, chr, value, index;\n\n // generate an array with more 512 elements (Chakra and old V8 fails only in this case)\n for (code = 65; code < 76; code++) {\n chr = String.fromCharCode(code);\n\n switch (code) {\n case 66: case 69: case 70: case 72: value = 3; break;\n case 68: case 71: value = 4; break;\n default: value = 2;\n }\n\n for (index = 0; index < 47; index++) {\n test.push({ k: chr + index, v: value });\n }\n }\n\n test.sort(function (a, b) { return b.v - a.v; });\n\n for (index = 0; index < test.length; index++) {\n chr = test[index].k.charAt(0);\n if (result.charAt(result.length - 1) !== chr) result += chr;\n }\n\n return result !== 'DGBEFHACIJK';\n});\n\nvar FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD || !STABLE_SORT;\n\nvar getSortCompare = function (comparefn) {\n return function (x, y) {\n if (y === undefined) return -1;\n if (x === undefined) return 1;\n if (comparefn !== undefined) return +comparefn(x, y) || 0;\n return toString(x) > toString(y) ? 1 : -1;\n };\n};\n\n// `Array.prototype.sort` method\n// https://tc39.es/ecma262/#sec-array.prototype.sort\n$({ target: 'Array', proto: true, forced: FORCED }, {\n sort: function sort(comparefn) {\n if (comparefn !== undefined) aCallable(comparefn);\n\n var array = toObject(this);\n\n if (STABLE_SORT) return comparefn === undefined ? un$Sort(array) : un$Sort(array, comparefn);\n\n var items = [];\n var arrayLength = lengthOfArrayLike(array);\n var itemsLength, index;\n\n for (index = 0; index < arrayLength; index++) {\n if (index in array) push(items, array[index]);\n }\n\n internalSort(items, getSortCompare(comparefn));\n\n itemsLength = items.length;\n index = 0;\n\n while (index < itemsLength) array[index] = items[index++];\n while (index < arrayLength) delete array[index++];\n\n return array;\n }\n});\n","var arraySlice = require('../internals/array-slice-simple');\n\nvar floor = Math.floor;\n\nvar mergeSort = function (array, comparefn) {\n var length = array.length;\n var middle = floor(length / 2);\n return length < 8 ? insertionSort(array, comparefn) : merge(\n array,\n mergeSort(arraySlice(array, 0, middle), comparefn),\n mergeSort(arraySlice(array, middle), comparefn),\n comparefn\n );\n};\n\nvar insertionSort = function (array, comparefn) {\n var length = array.length;\n var i = 1;\n var element, j;\n\n while (i < length) {\n j = i;\n element = array[i];\n while (j && comparefn(array[j - 1], element) > 0) {\n array[j] = array[--j];\n }\n if (j !== i++) array[j] = element;\n } return array;\n};\n\nvar merge = function (array, left, right, comparefn) {\n var llength = left.length;\n var rlength = right.length;\n var lindex = 0;\n var rindex = 0;\n\n while (lindex < llength || rindex < rlength) {\n array[lindex + rindex] = (lindex < llength && rindex < rlength)\n ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++]\n : lindex < llength ? left[lindex++] : right[rindex++];\n } return array;\n};\n\nmodule.exports = mergeSort;\n","var global = require('../internals/global');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar lengthOfArrayLike = require('../internals/length-of-array-like');\nvar createProperty = require('../internals/create-property');\n\nvar Array = global.Array;\nvar max = Math.max;\n\nmodule.exports = function (O, start, end) {\n var length = lengthOfArrayLike(O);\n var k = toAbsoluteIndex(start, length);\n var fin = toAbsoluteIndex(end === undefined ? length : end, length);\n var result = Array(max(fin - k, 0));\n for (var n = 0; k < fin; k++, n++) createProperty(result, n, O[k]);\n result.length = n;\n return result;\n};\n","'use strict';\nvar toPropertyKey = require('../internals/to-property-key');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPropertyKey(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call -- required for testing\n method.call(null, argument || function () { return 1; }, 1);\n });\n};\n","var userAgent = require('../internals/engine-user-agent');\n\nvar firefox = userAgent.match(/firefox\\/(\\d+)/i);\n\nmodule.exports = !!firefox && +firefox[1];\n","var UA = require('../internals/engine-user-agent');\n\nmodule.exports = /MSIE|Trident/.test(UA);\n","var userAgent = require('../internals/engine-user-agent');\n\nvar webkit = userAgent.match(/AppleWebKit\\/(\\d+)\\./);\n\nmodule.exports = !!webkit && +webkit[1];\n","(()=>{var e={454:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});var r=n(645),o=n.n(r)()((function(e){return e[1]}));o.push([e.id,\"INPUT:-webkit-autofill,SELECT:-webkit-autofill,TEXTAREA:-webkit-autofill{animation-name:onautofillstart}INPUT:not(:-webkit-autofill),SELECT:not(:-webkit-autofill),TEXTAREA:not(:-webkit-autofill){animation-name:onautofillcancel}@keyframes onautofillstart{}@keyframes onautofillcancel{}\",\"\"]);const a=o},645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=e(t);return t[2]?\"@media \".concat(t[2],\" {\").concat(n,\"}\"):n})).join(\"\")},t.i=function(e,n,r){\"string\"==typeof e&&(e=[[null,e,\"\"]]);var o={};if(r)for(var a=0;a{!function(){if(\"undefined\"!=typeof window)try{var e=new window.CustomEvent(\"test\",{cancelable:!0});if(e.preventDefault(),!0!==e.defaultPrevented)throw new Error(\"Could not prevent default\")}catch(e){var t=function(e,t){var n,r;return(t=t||{}).bubbles=!!t.bubbles,t.cancelable=!!t.cancelable,(n=document.createEvent(\"CustomEvent\")).initCustomEvent(e,t.bubbles,t.cancelable,t.detail),r=n.preventDefault,n.preventDefault=function(){r.call(this);try{Object.defineProperty(this,\"defaultPrevented\",{get:function(){return!0}})}catch(e){this.defaultPrevented=!0}},n};t.prototype=window.Event.prototype,window.CustomEvent=t}}()},379:(e,t,n)=>{\"use strict\";var r,o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),a=[];function i(e){for(var t=-1,n=0;n{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{\"use strict\";var e=n(379),t=n.n(e),r=n(454);function o(e){if(!e.hasAttribute(\"autocompleted\")){e.setAttribute(\"autocompleted\",\"\");var t=new window.CustomEvent(\"onautocomplete\",{bubbles:!0,cancelable:!0,detail:null});e.dispatchEvent(t)||(e.value=\"\")}}function a(e){e.hasAttribute(\"autocompleted\")&&(e.removeAttribute(\"autocompleted\"),e.dispatchEvent(new window.CustomEvent(\"onautocomplete\",{bubbles:!0,cancelable:!1,detail:null})))}t()(r.Z,{insert:\"head\",singleton:!1}),r.Z.locals,n(810),document.addEventListener(\"animationstart\",(function(e){\"onautofillstart\"===e.animationName?o(e.target):a(e.target)}),!0),document.addEventListener(\"input\",(function(e){\"insertReplacementText\"!==e.inputType&&\"data\"in e?a(e.target):o(e.target)}),!0)})()})();","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.0.0-beta2): util/index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst MAX_UID = 1000000;\nconst MILLISECONDS_MULTIPLIER = 1000;\nconst TRANSITION_END = 'transitionend';\n\n// Shoutout AngusCroll (https://goo.gl/pxwQGp)\nconst toType = (obj) => {\n if (obj === null || obj === undefined) {\n return `${obj}`;\n }\n\n return {}.toString\n .call(obj)\n .match(/\\s([a-z]+)/i)[1]\n .toLowerCase();\n};\n\n/**\n * --------------------------------------------------------------------------\n * Public Util Api\n * --------------------------------------------------------------------------\n */\n\nconst getUID = (prefix) => {\n do {\n prefix += Math.floor(Math.random() * MAX_UID);\n } while (document.getElementById(prefix));\n\n return prefix;\n};\n\nconst getSelector = (element) => {\n let selector = element.getAttribute('data-mdb-target');\n\n if (!selector || selector === '#') {\n const hrefAttr = element.getAttribute('href');\n\n selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : null;\n }\n\n return selector;\n};\n\nconst getSelectorFromElement = (element) => {\n const selector = getSelector(element);\n\n if (selector) {\n return document.querySelector(selector) ? selector : null;\n }\n\n return null;\n};\n\nconst getElementFromSelector = (element) => {\n const selector = getSelector(element);\n\n return selector ? document.querySelector(selector) : null;\n};\n\nconst getTransitionDurationFromElement = (element) => {\n if (!element) {\n return 0;\n }\n\n // Get transition-duration of the element\n let { transitionDuration, transitionDelay } = window.getComputedStyle(element);\n\n const floatTransitionDuration = Number.parseFloat(transitionDuration);\n const floatTransitionDelay = Number.parseFloat(transitionDelay);\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0;\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0];\n transitionDelay = transitionDelay.split(',')[0];\n\n return (\n (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) *\n MILLISECONDS_MULTIPLIER\n );\n};\n\nconst triggerTransitionEnd = (element) => {\n element.dispatchEvent(new Event(TRANSITION_END));\n};\n\nconst isElement = (obj) => (obj[0] || obj).nodeType;\n\nconst emulateTransitionEnd = (element, duration) => {\n let called = false;\n const durationPadding = 5;\n const emulatedDuration = duration + durationPadding;\n\n function listener() {\n called = true;\n element.removeEventListener(TRANSITION_END, listener);\n }\n\n element.addEventListener(TRANSITION_END, listener);\n setTimeout(() => {\n if (!called) {\n triggerTransitionEnd(element);\n }\n }, emulatedDuration);\n};\n\nconst typeCheckConfig = (componentName, config, configTypes) => {\n Object.keys(configTypes).forEach((property) => {\n const expectedTypes = configTypes[property];\n const value = config[property];\n const valueType = value && isElement(value) ? 'element' : toType(value);\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new Error(\n `${componentName.toUpperCase()}: ` +\n `Option \"${property}\" provided type \"${valueType}\" ` +\n `but expected type \"${expectedTypes}\".`\n );\n }\n });\n};\n\nconst isVisible = (element) => {\n if (!element) {\n return false;\n }\n\n if (element.style && element.parentNode && element.parentNode.style) {\n const elementStyle = getComputedStyle(element);\n const parentNodeStyle = getComputedStyle(element.parentNode);\n\n return (\n elementStyle.display !== 'none' &&\n parentNodeStyle.display !== 'none' &&\n elementStyle.visibility !== 'hidden'\n );\n }\n\n return false;\n};\n\nconst findShadowRoot = (element) => {\n if (!document.documentElement.attachShadow) {\n return null;\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode();\n return root instanceof ShadowRoot ? root : null;\n }\n\n if (element instanceof ShadowRoot) {\n return element;\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null;\n }\n\n return findShadowRoot(element.parentNode);\n};\n\nconst noop = () => function () {};\n\nconst reflow = (element) => element.offsetHeight;\n\nconst getjQuery = () => {\n const { jQuery } = window;\n\n if (jQuery && !document.body.hasAttribute('data-mdb-no-jquery')) {\n return jQuery;\n }\n\n return null;\n};\n\nconst onDOMContentLoaded = (callback) => {\n if (document.readyState === 'loading') {\n document.addEventListener('DOMContentLoaded', callback);\n } else {\n callback();\n }\n};\n\nconst isRTL = document.documentElement.dir === 'rtl';\n\nconst array = (collection) => {\n return Array.from(collection);\n};\n\nconst element = (tag) => {\n return document.createElement(tag);\n};\n\nconst defineJQueryPlugin = (name, plugin) => {\n onDOMContentLoaded(() => {\n const $ = getjQuery();\n /* istanbul ignore if */\n if ($) {\n const JQUERY_NO_CONFLICT = $.fn[name];\n $.fn[name] = plugin.jQueryInterface;\n $.fn[name].Constructor = plugin;\n $.fn[name].noConflict = () => {\n $.fn[name] = JQUERY_NO_CONFLICT;\n return plugin.jQueryInterface;\n };\n }\n });\n};\n\nexport {\n getjQuery,\n TRANSITION_END,\n getUID,\n getSelectorFromElement,\n getElementFromSelector,\n getTransitionDurationFromElement,\n triggerTransitionEnd,\n isElement,\n emulateTransitionEnd,\n typeCheckConfig,\n isVisible,\n findShadowRoot,\n noop,\n reflow,\n array,\n element,\n onDOMContentLoaded,\n isRTL,\n defineJQueryPlugin,\n};\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.0.0-beta2): dom/data.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst mapData = (() => {\n const storeData = {};\n let id = 1;\n return {\n set(element, key, data) {\n if (typeof element[key] === 'undefined') {\n element[key] = {\n key,\n id,\n };\n id++;\n }\n\n storeData[element[key].id] = data;\n },\n get(element, key) {\n if (!element || typeof element[key] === 'undefined') {\n return null;\n }\n\n const keyProperties = element[key];\n if (keyProperties.key === key) {\n return storeData[keyProperties.id];\n }\n\n return null;\n },\n delete(element, key) {\n if (typeof element[key] === 'undefined') {\n return;\n }\n\n const keyProperties = element[key];\n if (keyProperties.key === key) {\n delete storeData[keyProperties.id];\n delete element[key];\n }\n },\n };\n})();\n\nconst Data = {\n setData(instance, key, data) {\n mapData.set(instance, key, data);\n },\n getData(instance, key) {\n return mapData.get(instance, key);\n },\n removeData(instance, key) {\n mapData.delete(instance, key);\n },\n};\n\nexport default Data;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.0.0-beta2): dom/event-handler.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport { getjQuery } from '../util/index';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst $ = getjQuery();\nconst namespaceRegex = /[^.]*(?=\\..*)\\.|.*/;\nconst stripNameRegex = /\\..*/;\nconst stripUidRegex = /::\\d+$/;\nconst eventRegistry = {}; // Events storage\nlet uidEvent = 1;\nconst customEvents = {\n mouseenter: 'mouseover',\n mouseleave: 'mouseout',\n};\nconst nativeEvents = [\n 'click',\n 'dblclick',\n 'mouseup',\n 'mousedown',\n 'contextmenu',\n 'mousewheel',\n 'DOMMouseScroll',\n 'mouseover',\n 'mouseout',\n 'mousemove',\n 'selectstart',\n 'selectend',\n 'keydown',\n 'keypress',\n 'keyup',\n 'orientationchange',\n 'touchstart',\n 'touchmove',\n 'touchend',\n 'touchcancel',\n 'pointerdown',\n 'pointermove',\n 'pointerup',\n 'pointerleave',\n 'pointercancel',\n 'gesturestart',\n 'gesturechange',\n 'gestureend',\n 'focus',\n 'blur',\n 'change',\n 'reset',\n 'select',\n 'submit',\n 'focusin',\n 'focusout',\n 'load',\n 'unload',\n 'beforeunload',\n 'resize',\n 'move',\n 'DOMContentLoaded',\n 'readystatechange',\n 'error',\n 'abort',\n 'scroll',\n];\n\n/**\n * ------------------------------------------------------------------------\n * Private methods\n * ------------------------------------------------------------------------\n */\n\nfunction getUidEvent(element, uid) {\n return (uid && `${uid}::${uidEvent++}`) || element.uidEvent || uidEvent++;\n}\n\nfunction getEvent(element) {\n const uid = getUidEvent(element);\n\n element.uidEvent = uid;\n eventRegistry[uid] = eventRegistry[uid] || {};\n\n return eventRegistry[uid];\n}\n\nfunction bootstrapHandler(element, fn) {\n return function handler(event) {\n event.delegateTarget = element;\n\n if (handler.oneOff) {\n EventHandler.off(element, event.type, fn);\n }\n\n return fn.apply(element, [event]);\n };\n}\n\nfunction bootstrapDelegationHandler(element, selector, fn) {\n return function handler(event) {\n const domElements = element.querySelectorAll(selector);\n\n for (let { target } = event; target && target !== this; target = target.parentNode) {\n for (let i = domElements.length; i--; '') {\n if (domElements[i] === target) {\n event.delegateTarget = target;\n\n if (handler.oneOff) {\n EventHandler.off(element, event.type, fn);\n }\n\n return fn.apply(target, [event]);\n }\n }\n }\n\n // To please ESLint\n return null;\n };\n}\n\nfunction findHandler(events, handler, delegationSelector = null) {\n const uidEventList = Object.keys(events);\n\n for (let i = 0, len = uidEventList.length; i < len; i++) {\n const event = events[uidEventList[i]];\n\n if (event.originalHandler === handler && event.delegationSelector === delegationSelector) {\n return event;\n }\n }\n\n return null;\n}\n\nfunction normalizeParams(originalTypeEvent, handler, delegationFn) {\n const delegation = typeof handler === 'string';\n const originalHandler = delegation ? delegationFn : handler;\n\n // allow to get the native events from namespaced events ('click.bs.button' --> 'click')\n let typeEvent = originalTypeEvent.replace(stripNameRegex, '');\n const custom = customEvents[typeEvent];\n\n if (custom) {\n typeEvent = custom;\n }\n\n const isNative = nativeEvents.indexOf(typeEvent) > -1;\n\n if (!isNative) {\n typeEvent = originalTypeEvent;\n }\n\n return [delegation, originalHandler, typeEvent];\n}\n\nfunction addHandler(element, originalTypeEvent, handler, delegationFn, oneOff) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n\n if (!handler) {\n handler = delegationFn;\n delegationFn = null;\n }\n\n const [delegation, originalHandler, typeEvent] = normalizeParams(\n originalTypeEvent,\n handler,\n delegationFn\n );\n const events = getEvent(element);\n const handlers = events[typeEvent] || (events[typeEvent] = {});\n const previousFn = findHandler(handlers, originalHandler, delegation ? handler : null);\n\n if (previousFn) {\n previousFn.oneOff = previousFn.oneOff && oneOff;\n\n return;\n }\n\n const uid = getUidEvent(originalHandler, originalTypeEvent.replace(namespaceRegex, ''));\n const fn = delegation\n ? bootstrapDelegationHandler(element, handler, delegationFn)\n : bootstrapHandler(element, handler);\n\n fn.delegationSelector = delegation ? handler : null;\n fn.originalHandler = originalHandler;\n fn.oneOff = oneOff;\n fn.uidEvent = uid;\n handlers[uid] = fn;\n\n element.addEventListener(typeEvent, fn, delegation);\n}\n\nfunction removeHandler(element, events, typeEvent, handler, delegationSelector) {\n const fn = findHandler(events[typeEvent], handler, delegationSelector);\n\n if (!fn) {\n return;\n }\n\n element.removeEventListener(typeEvent, fn, Boolean(delegationSelector));\n delete events[typeEvent][fn.uidEvent];\n}\n\nfunction removeNamespacedHandlers(element, events, typeEvent, namespace) {\n const storeElementEvent = events[typeEvent] || {};\n\n Object.keys(storeElementEvent).forEach((handlerKey) => {\n if (handlerKey.indexOf(namespace) > -1) {\n const event = storeElementEvent[handlerKey];\n\n removeHandler(element, events, typeEvent, event.originalHandler, event.delegationSelector);\n }\n });\n}\n\nconst EventHandler = {\n on(element, event, handler, delegationFn) {\n addHandler(element, event, handler, delegationFn, false);\n },\n\n one(element, event, handler, delegationFn) {\n addHandler(element, event, handler, delegationFn, true);\n },\n\n off(element, originalTypeEvent, handler, delegationFn) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n\n const [delegation, originalHandler, typeEvent] = normalizeParams(\n originalTypeEvent,\n handler,\n delegationFn\n );\n const inNamespace = typeEvent !== originalTypeEvent;\n const events = getEvent(element);\n const isNamespace = originalTypeEvent.charAt(0) === '.';\n\n if (typeof originalHandler !== 'undefined') {\n // Simplest case: handler is passed, remove that listener ONLY.\n if (!events || !events[typeEvent]) {\n return;\n }\n\n removeHandler(element, events, typeEvent, originalHandler, delegation ? handler : null);\n return;\n }\n\n if (isNamespace) {\n Object.keys(events).forEach((elementEvent) => {\n removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1));\n });\n }\n\n const storeElementEvent = events[typeEvent] || {};\n Object.keys(storeElementEvent).forEach((keyHandlers) => {\n const handlerKey = keyHandlers.replace(stripUidRegex, '');\n\n if (!inNamespace || originalTypeEvent.indexOf(handlerKey) > -1) {\n const event = storeElementEvent[keyHandlers];\n\n removeHandler(element, events, typeEvent, event.originalHandler, event.delegationSelector);\n }\n });\n },\n\n trigger(element, event, args) {\n if (typeof event !== 'string' || !element) {\n return null;\n }\n\n const typeEvent = event.replace(stripNameRegex, '');\n const inNamespace = event !== typeEvent;\n const isNative = nativeEvents.indexOf(typeEvent) > -1;\n\n let jQueryEvent;\n let bubbles = true;\n let nativeDispatch = true;\n let defaultPrevented = false;\n let evt = null;\n\n if (inNamespace && $) {\n jQueryEvent = $.Event(event, args);\n\n $(element).trigger(jQueryEvent);\n bubbles = !jQueryEvent.isPropagationStopped();\n nativeDispatch = !jQueryEvent.isImmediatePropagationStopped();\n defaultPrevented = jQueryEvent.isDefaultPrevented();\n }\n\n if (isNative) {\n evt = document.createEvent('HTMLEvents');\n evt.initEvent(typeEvent, bubbles, true);\n } else {\n evt = new CustomEvent(event, {\n bubbles,\n cancelable: true,\n });\n }\n\n // merge custom informations in our event\n if (typeof args !== 'undefined') {\n Object.keys(args).forEach((key) => {\n Object.defineProperty(evt, key, {\n get() {\n return args[key];\n },\n });\n });\n }\n\n if (defaultPrevented) {\n evt.preventDefault();\n }\n\n if (nativeDispatch) {\n element.dispatchEvent(evt);\n }\n\n if (evt.defaultPrevented && typeof jQueryEvent !== 'undefined') {\n jQueryEvent.preventDefault();\n }\n\n return evt;\n },\n};\n\nexport const EventHandlerMulti = {\n on(element, eventsName, handler, delegationFn) {\n const events = eventsName.split(' ');\n\n for (let i = 0; i < events.length; i++) {\n EventHandler.on(element, events[i], handler, delegationFn);\n }\n },\n off(element, originalTypeEvent, handler, delegationFn) {\n const events = originalTypeEvent.split(' ');\n\n for (let i = 0; i < events.length; i++) {\n EventHandler.off(element, events[i], handler, delegationFn);\n }\n },\n};\n\nexport default EventHandler;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.0.0-beta2): dom/manipulator.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nfunction normalizeData(val) {\n if (val === 'true') {\n return true;\n }\n\n if (val === 'false') {\n return false;\n }\n\n if (val === Number(val).toString()) {\n return Number(val);\n }\n\n if (val === '' || val === 'null') {\n return null;\n }\n\n return val;\n}\n\nfunction normalizeDataKey(key) {\n return key.replace(/[A-Z]/g, (chr) => `-${chr.toLowerCase()}`);\n}\n\nconst Manipulator = {\n setDataAttribute(element, key, value) {\n element.setAttribute(`data-mdb-${normalizeDataKey(key)}`, value);\n },\n\n removeDataAttribute(element, key) {\n element.removeAttribute(`data-mdb-${normalizeDataKey(key)}`);\n },\n\n getDataAttributes(element) {\n if (!element) {\n return {};\n }\n\n const attributes = {\n ...element.dataset,\n };\n\n Object.keys(attributes)\n .filter((key) => key.startsWith('mdb'))\n .forEach((key) => {\n let pureKey = key.replace(/^mdb/, '');\n pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length);\n attributes[pureKey] = normalizeData(attributes[key]);\n });\n\n return attributes;\n },\n\n getDataAttribute(element, key) {\n return normalizeData(element.getAttribute(`data-mdb-${normalizeDataKey(key)}`));\n },\n\n offset(element) {\n const rect = element.getBoundingClientRect();\n\n return {\n top: rect.top + document.body.scrollTop,\n left: rect.left + document.body.scrollLeft,\n };\n },\n\n position(element) {\n return {\n top: element.offsetTop,\n left: element.offsetLeft,\n };\n },\n\n style(element, style) {\n Object.assign(element.style, style);\n },\n\n toggleClass(element, className) {\n if (!element) {\n return;\n }\n\n if (element.classList.contains(className)) {\n element.classList.remove(className);\n } else {\n element.classList.add(className);\n }\n },\n\n addClass(element, className) {\n if (element.classList.contains(className)) return;\n element.classList.add(className);\n },\n\n addStyle(element, style) {\n Object.keys(style).forEach((property) => {\n element.style[property] = style[property];\n });\n },\n\n removeClass(element, className) {\n if (!element.classList.contains(className)) return;\n element.classList.remove(className);\n },\n\n hasClass(element, className) {\n return element.classList.contains(className);\n },\n};\n\nexport default Manipulator;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.0.0-beta2): dom/selector-engine.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NODE_TEXT = 3;\n\nconst SelectorEngine = {\n closest(element, selector) {\n return element.closest(selector);\n },\n\n matches(element, selector) {\n return element.matches(selector);\n },\n\n find(selector, element = document.documentElement) {\n return [].concat(...Element.prototype.querySelectorAll.call(element, selector));\n },\n\n findOne(selector, element = document.documentElement) {\n return Element.prototype.querySelector.call(element, selector);\n },\n\n children(element, selector) {\n const children = [].concat(...element.children);\n\n return children.filter((child) => child.matches(selector));\n },\n\n parents(element, selector) {\n const parents = [];\n\n let ancestor = element.parentNode;\n\n while (ancestor && ancestor.nodeType === Node.ELEMENT_NODE && ancestor.nodeType !== NODE_TEXT) {\n if (this.matches(ancestor, selector)) {\n parents.push(ancestor);\n }\n\n ancestor = ancestor.parentNode;\n }\n\n return parents;\n },\n\n prev(element, selector) {\n let previous = element.previousElementSibling;\n\n while (previous) {\n if (previous.matches(selector)) {\n return [previous];\n }\n\n previous = previous.previousElementSibling;\n }\n\n return [];\n },\n\n next(element, selector) {\n let next = element.nextElementSibling;\n\n while (next) {\n if (this.matches(next, selector)) {\n return [next];\n }\n\n next = next.nextElementSibling;\n }\n\n return [];\n },\n};\n\nexport default SelectorEngine;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): util/index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst MAX_UID = 1000000;\nconst MILLISECONDS_MULTIPLIER = 1000;\nconst TRANSITION_END = 'transitionend';\n\n// Shoutout AngusCroll (https://goo.gl/pxwQGp)\nconst toType = (obj) => {\n if (obj === null || obj === undefined) {\n return `${obj}`;\n }\n\n return {}.toString\n .call(obj)\n .match(/\\s([a-z]+)/i)[1]\n .toLowerCase();\n};\n\n/**\n * --------------------------------------------------------------------------\n * Public Util Api\n * --------------------------------------------------------------------------\n */\n\nconst getUID = (prefix) => {\n do {\n prefix += Math.floor(Math.random() * MAX_UID);\n } while (document.getElementById(prefix));\n\n return prefix;\n};\n\nconst getSelector = (element) => {\n let selector = element.getAttribute('data-mdb-target');\n\n if (!selector || selector === '#') {\n let hrefAttr = element.getAttribute('href');\n\n // The only valid content that could double as a selector are IDs or classes,\n // so everything starting with `#` or `.`. If a \"real\" URL is used as the selector,\n // `document.querySelector` will rightfully complain it is invalid.\n // See https://github.com/twbs/bootstrap/issues/32273\n if (!hrefAttr || (!hrefAttr.includes('#') && !hrefAttr.startsWith('.'))) {\n return null;\n }\n\n // Just in case some CMS puts out a full URL with the anchor appended\n if (hrefAttr.includes('#') && !hrefAttr.startsWith('#')) {\n hrefAttr = `#${hrefAttr.split('#')[1]}`;\n }\n\n selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : null;\n }\n\n return selector;\n};\n\nconst getSelectorFromElement = (element) => {\n const selector = getSelector(element);\n\n if (selector) {\n return document.querySelector(selector) ? selector : null;\n }\n\n return null;\n};\n\nconst getElementFromSelector = (element) => {\n const selector = getSelector(element);\n\n return selector ? document.querySelector(selector) : null;\n};\n\nconst getTransitionDurationFromElement = (element) => {\n if (!element) {\n return 0;\n }\n\n // Get transition-duration of the element\n let { transitionDuration, transitionDelay } = window.getComputedStyle(element);\n\n const floatTransitionDuration = Number.parseFloat(transitionDuration);\n const floatTransitionDelay = Number.parseFloat(transitionDelay);\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0;\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0];\n transitionDelay = transitionDelay.split(',')[0];\n\n return (\n (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) *\n MILLISECONDS_MULTIPLIER\n );\n};\n\nconst triggerTransitionEnd = (element) => {\n element.dispatchEvent(new Event(TRANSITION_END));\n};\n\nconst isElement = (obj) => {\n if (!obj || typeof obj !== 'object') {\n return false;\n }\n\n if (typeof obj.jquery !== 'undefined') {\n obj = obj[0];\n }\n\n return typeof obj.nodeType !== 'undefined';\n};\n\nconst getElement = (obj) => {\n if (isElement(obj)) {\n // it's a jQuery object or a node element\n return obj.jquery ? obj[0] : obj;\n }\n\n if (typeof obj === 'string' && obj.length > 0) {\n return document.querySelector(obj);\n }\n\n return null;\n};\n\nconst typeCheckConfig = (componentName, config, configTypes) => {\n Object.keys(configTypes).forEach((property) => {\n const expectedTypes = configTypes[property];\n const value = config[property];\n const valueType = value && isElement(value) ? 'element' : toType(value);\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new TypeError(\n `${componentName.toUpperCase()}: Option \"${property}\" provided type \"${valueType}\" but expected type \"${expectedTypes}\".`\n );\n }\n });\n};\n\nconst isVisible = (element) => {\n if (!isElement(element) || element.getClientRects().length === 0) {\n return false;\n }\n\n return getComputedStyle(element).getPropertyValue('visibility') === 'visible';\n};\n\nconst isDisabled = (element) => {\n if (!element || element.nodeType !== Node.ELEMENT_NODE) {\n return true;\n }\n\n if (element.classList.contains('disabled')) {\n return true;\n }\n\n if (typeof element.disabled !== 'undefined') {\n return element.disabled;\n }\n\n return element.hasAttribute('disabled') && element.getAttribute('disabled') !== 'false';\n};\n\nconst findShadowRoot = (element) => {\n if (!document.documentElement.attachShadow) {\n return null;\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode();\n return root instanceof ShadowRoot ? root : null;\n }\n\n if (element instanceof ShadowRoot) {\n return element;\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null;\n }\n\n return findShadowRoot(element.parentNode);\n};\n\nconst noop = () => {};\n\n/**\n * Trick to restart an element's animation\n *\n * @param {HTMLElement} element\n * @return void\n *\n * @see https://www.charistheo.io/blog/2021/02/restart-a-css-animation-with-javascript/#restarting-a-css-animation\n */\nconst reflow = (element) => {\n // eslint-disable-next-line no-unused-expressions\n element.offsetHeight;\n};\n\nconst getjQuery = () => {\n const { jQuery } = window;\n\n if (jQuery && !document.body.hasAttribute('data-mdb-no-jquery')) {\n return jQuery;\n }\n\n return null;\n};\n\nconst DOMContentLoadedCallbacks = [];\n\nconst onDOMContentLoaded = (callback) => {\n if (document.readyState === 'loading') {\n // add listener on the first call when the document is in loading state\n if (!DOMContentLoadedCallbacks.length) {\n document.addEventListener('DOMContentLoaded', () => {\n DOMContentLoadedCallbacks.forEach((callback) => callback());\n });\n }\n\n DOMContentLoadedCallbacks.push(callback);\n } else {\n callback();\n }\n};\n\nconst isRTL = () => document.documentElement.dir === 'rtl';\n\nconst defineJQueryPlugin = (plugin) => {\n onDOMContentLoaded(() => {\n const $ = getjQuery();\n /* istanbul ignore if */\n if ($) {\n const name = plugin.NAME;\n const JQUERY_NO_CONFLICT = $.fn[name];\n $.fn[name] = plugin.jQueryInterface;\n $.fn[name].Constructor = plugin;\n $.fn[name].noConflict = () => {\n $.fn[name] = JQUERY_NO_CONFLICT;\n return plugin.jQueryInterface;\n };\n }\n });\n};\n\nconst execute = (callback) => {\n if (typeof callback === 'function') {\n callback();\n }\n};\n\nconst executeAfterTransition = (callback, transitionElement, waitForTransition = true) => {\n if (!waitForTransition) {\n execute(callback);\n return;\n }\n\n const durationPadding = 5;\n const emulatedDuration = getTransitionDurationFromElement(transitionElement) + durationPadding;\n\n let called = false;\n\n const handler = ({ target }) => {\n if (target !== transitionElement) {\n return;\n }\n\n called = true;\n transitionElement.removeEventListener(TRANSITION_END, handler);\n execute(callback);\n };\n\n transitionElement.addEventListener(TRANSITION_END, handler);\n setTimeout(() => {\n if (!called) {\n triggerTransitionEnd(transitionElement);\n }\n }, emulatedDuration);\n};\n\n/**\n * Return the previous/next element of a list.\n *\n * @param {array} list The list of elements\n * @param activeElement The active element\n * @param shouldGetNext Choose to get next or previous element\n * @param isCycleAllowed\n * @return {Element|elem} The proper element\n */\nconst getNextActiveElement = (list, activeElement, shouldGetNext, isCycleAllowed) => {\n let index = list.indexOf(activeElement);\n\n // if the element does not exist in the list return an element depending on the direction and if cycle is allowed\n if (index === -1) {\n return list[!shouldGetNext && isCycleAllowed ? list.length - 1 : 0];\n }\n\n const listLength = list.length;\n\n index += shouldGetNext ? 1 : -1;\n\n if (isCycleAllowed) {\n index = (index + listLength) % listLength;\n }\n\n return list[Math.max(0, Math.min(index, listLength - 1))];\n};\n\nexport {\n getElement,\n getUID,\n getSelectorFromElement,\n getElementFromSelector,\n getTransitionDurationFromElement,\n triggerTransitionEnd,\n isElement,\n typeCheckConfig,\n isVisible,\n isDisabled,\n findShadowRoot,\n noop,\n getNextActiveElement,\n reflow,\n getjQuery,\n onDOMContentLoaded,\n isRTL,\n defineJQueryPlugin,\n execute,\n executeAfterTransition,\n};\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): dom/event-handler.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport { getjQuery } from '../util/index';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst namespaceRegex = /[^.]*(?=\\..*)\\.|.*/;\nconst stripNameRegex = /\\..*/;\nconst stripUidRegex = /::\\d+$/;\nconst eventRegistry = {}; // Events storage\nlet uidEvent = 1;\nconst customEvents = {\n mouseenter: 'mouseover',\n mouseleave: 'mouseout',\n};\nconst customEventsRegex = /^(mouseenter|mouseleave)/i;\nconst nativeEvents = new Set([\n 'click',\n 'dblclick',\n 'mouseup',\n 'mousedown',\n 'contextmenu',\n 'mousewheel',\n 'DOMMouseScroll',\n 'mouseover',\n 'mouseout',\n 'mousemove',\n 'selectstart',\n 'selectend',\n 'keydown',\n 'keypress',\n 'keyup',\n 'orientationchange',\n 'touchstart',\n 'touchmove',\n 'touchend',\n 'touchcancel',\n 'pointerdown',\n 'pointermove',\n 'pointerup',\n 'pointerleave',\n 'pointercancel',\n 'gesturestart',\n 'gesturechange',\n 'gestureend',\n 'focus',\n 'blur',\n 'change',\n 'reset',\n 'select',\n 'submit',\n 'focusin',\n 'focusout',\n 'load',\n 'unload',\n 'beforeunload',\n 'resize',\n 'move',\n 'DOMContentLoaded',\n 'readystatechange',\n 'error',\n 'abort',\n 'scroll',\n]);\n\n/**\n * ------------------------------------------------------------------------\n * Private methods\n * ------------------------------------------------------------------------\n */\n\nfunction getUidEvent(element, uid) {\n return (uid && `${uid}::${uidEvent++}`) || element.uidEvent || uidEvent++;\n}\n\nfunction getEvent(element) {\n const uid = getUidEvent(element);\n\n element.uidEvent = uid;\n eventRegistry[uid] = eventRegistry[uid] || {};\n\n return eventRegistry[uid];\n}\n\nfunction bootstrapHandler(element, fn) {\n return function handler(event) {\n event.delegateTarget = element;\n\n if (handler.oneOff) {\n EventHandler.off(element, event.type, fn);\n }\n\n return fn.apply(element, [event]);\n };\n}\n\nfunction bootstrapDelegationHandler(element, selector, fn) {\n return function handler(event) {\n const domElements = element.querySelectorAll(selector);\n\n for (let { target } = event; target && target !== this; target = target.parentNode) {\n for (let i = domElements.length; i--; ) {\n if (domElements[i] === target) {\n event.delegateTarget = target;\n\n if (handler.oneOff) {\n EventHandler.off(element, event.type, selector, fn);\n }\n\n return fn.apply(target, [event]);\n }\n }\n }\n\n // To please ESLint\n return null;\n };\n}\n\nfunction findHandler(events, handler, delegationSelector = null) {\n const uidEventList = Object.keys(events);\n\n for (let i = 0, len = uidEventList.length; i < len; i++) {\n const event = events[uidEventList[i]];\n\n if (event.originalHandler === handler && event.delegationSelector === delegationSelector) {\n return event;\n }\n }\n\n return null;\n}\n\nfunction normalizeParams(originalTypeEvent, handler, delegationFn) {\n const delegation = typeof handler === 'string';\n const originalHandler = delegation ? delegationFn : handler;\n\n let typeEvent = getTypeEvent(originalTypeEvent);\n const isNative = nativeEvents.has(typeEvent);\n\n if (!isNative) {\n typeEvent = originalTypeEvent;\n }\n\n return [delegation, originalHandler, typeEvent];\n}\n\nfunction addHandler(element, originalTypeEvent, handler, delegationFn, oneOff) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n\n if (!handler) {\n handler = delegationFn;\n delegationFn = null;\n }\n\n // in case of mouseenter or mouseleave wrap the handler within a function that checks for its DOM position\n // this prevents the handler from being dispatched the same way as mouseover or mouseout does\n if (customEventsRegex.test(originalTypeEvent)) {\n const wrapFn = (fn) => {\n return function (event) {\n if (\n !event.relatedTarget ||\n (event.relatedTarget !== event.delegateTarget &&\n !event.delegateTarget.contains(event.relatedTarget))\n ) {\n return fn.call(this, event);\n }\n };\n };\n\n if (delegationFn) {\n delegationFn = wrapFn(delegationFn);\n } else {\n handler = wrapFn(handler);\n }\n }\n\n const [delegation, originalHandler, typeEvent] = normalizeParams(\n originalTypeEvent,\n handler,\n delegationFn\n );\n const events = getEvent(element);\n const handlers = events[typeEvent] || (events[typeEvent] = {});\n const previousFn = findHandler(handlers, originalHandler, delegation ? handler : null);\n\n if (previousFn) {\n previousFn.oneOff = previousFn.oneOff && oneOff;\n\n return;\n }\n\n const uid = getUidEvent(originalHandler, originalTypeEvent.replace(namespaceRegex, ''));\n const fn = delegation\n ? bootstrapDelegationHandler(element, handler, delegationFn)\n : bootstrapHandler(element, handler);\n\n fn.delegationSelector = delegation ? handler : null;\n fn.originalHandler = originalHandler;\n fn.oneOff = oneOff;\n fn.uidEvent = uid;\n handlers[uid] = fn;\n\n element.addEventListener(typeEvent, fn, delegation);\n}\n\nfunction removeHandler(element, events, typeEvent, handler, delegationSelector) {\n const fn = findHandler(events[typeEvent], handler, delegationSelector);\n\n if (!fn) {\n return;\n }\n\n element.removeEventListener(typeEvent, fn, Boolean(delegationSelector));\n delete events[typeEvent][fn.uidEvent];\n}\n\nfunction removeNamespacedHandlers(element, events, typeEvent, namespace) {\n const storeElementEvent = events[typeEvent] || {};\n\n Object.keys(storeElementEvent).forEach((handlerKey) => {\n if (handlerKey.includes(namespace)) {\n const event = storeElementEvent[handlerKey];\n\n removeHandler(element, events, typeEvent, event.originalHandler, event.delegationSelector);\n }\n });\n}\n\nfunction getTypeEvent(event) {\n // allow to get the native events from namespaced events ('click.bs.button' --> 'click')\n event = event.replace(stripNameRegex, '');\n return customEvents[event] || event;\n}\n\nconst EventHandler = {\n on(element, event, handler, delegationFn) {\n addHandler(element, event, handler, delegationFn, false);\n },\n\n one(element, event, handler, delegationFn) {\n addHandler(element, event, handler, delegationFn, true);\n },\n\n off(element, originalTypeEvent, handler, delegationFn) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n\n const [delegation, originalHandler, typeEvent] = normalizeParams(\n originalTypeEvent,\n handler,\n delegationFn\n );\n const inNamespace = typeEvent !== originalTypeEvent;\n const events = getEvent(element);\n const isNamespace = originalTypeEvent.startsWith('.');\n\n if (typeof originalHandler !== 'undefined') {\n // Simplest case: handler is passed, remove that listener ONLY.\n if (!events || !events[typeEvent]) {\n return;\n }\n\n removeHandler(element, events, typeEvent, originalHandler, delegation ? handler : null);\n return;\n }\n\n if (isNamespace) {\n Object.keys(events).forEach((elementEvent) => {\n removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1));\n });\n }\n\n const storeElementEvent = events[typeEvent] || {};\n Object.keys(storeElementEvent).forEach((keyHandlers) => {\n const handlerKey = keyHandlers.replace(stripUidRegex, '');\n\n if (!inNamespace || originalTypeEvent.includes(handlerKey)) {\n const event = storeElementEvent[keyHandlers];\n\n removeHandler(element, events, typeEvent, event.originalHandler, event.delegationSelector);\n }\n });\n },\n\n trigger(element, event, args) {\n if (typeof event !== 'string' || !element) {\n return null;\n }\n\n const $ = getjQuery();\n const typeEvent = getTypeEvent(event);\n const inNamespace = event !== typeEvent;\n const isNative = nativeEvents.has(typeEvent);\n\n let jQueryEvent;\n let bubbles = true;\n let nativeDispatch = true;\n let defaultPrevented = false;\n let evt = null;\n\n if (inNamespace && $) {\n jQueryEvent = $.Event(event, args);\n\n $(element).trigger(jQueryEvent);\n bubbles = !jQueryEvent.isPropagationStopped();\n nativeDispatch = !jQueryEvent.isImmediatePropagationStopped();\n defaultPrevented = jQueryEvent.isDefaultPrevented();\n }\n\n if (isNative) {\n evt = document.createEvent('HTMLEvents');\n evt.initEvent(typeEvent, bubbles, true);\n } else {\n evt = new CustomEvent(event, {\n bubbles,\n cancelable: true,\n });\n }\n\n // merge custom information in our event\n if (typeof args !== 'undefined') {\n Object.keys(args).forEach((key) => {\n Object.defineProperty(evt, key, {\n get() {\n return args[key];\n },\n });\n });\n }\n\n if (defaultPrevented) {\n evt.preventDefault();\n }\n\n if (nativeDispatch) {\n element.dispatchEvent(evt);\n }\n\n if (evt.defaultPrevented && typeof jQueryEvent !== 'undefined') {\n jQueryEvent.preventDefault();\n }\n\n return evt;\n },\n};\n\nexport default EventHandler;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): dom/data.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst elementMap = new Map();\n\nexport default {\n set(element, key, instance) {\n if (!elementMap.has(element)) {\n elementMap.set(element, new Map());\n }\n\n const instanceMap = elementMap.get(element);\n\n // make it clear we only want one instance per element\n // can be removed later when multiple key/instances are fine to be used\n if (!instanceMap.has(key) && instanceMap.size !== 0) {\n // eslint-disable-next-line no-console\n console.error(\n `Bootstrap doesn't allow more than one instance per element. Bound instance: ${\n Array.from(instanceMap.keys())[0]\n }.`\n );\n return;\n }\n\n instanceMap.set(key, instance);\n },\n\n get(element, key) {\n if (elementMap.has(element)) {\n return elementMap.get(element).get(key) || null;\n }\n\n return null;\n },\n\n remove(element, key) {\n if (!elementMap.has(element)) {\n return;\n }\n\n const instanceMap = elementMap.get(element);\n\n instanceMap.delete(key);\n\n // free up element references if there are no instances left for an element\n if (instanceMap.size === 0) {\n elementMap.delete(element);\n }\n },\n};\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): base-component.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport Data from './dom/data';\nimport { executeAfterTransition, getElement } from './util/index';\nimport EventHandler from './dom/event-handler';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst VERSION = '5.1.3';\n\nclass BaseComponent {\n constructor(element) {\n element = getElement(element);\n\n if (!element) {\n return;\n }\n\n this._element = element;\n Data.set(this._element, this.constructor.DATA_KEY, this);\n }\n\n dispose() {\n Data.remove(this._element, this.constructor.DATA_KEY);\n EventHandler.off(this._element, this.constructor.EVENT_KEY);\n\n Object.getOwnPropertyNames(this).forEach((propertyName) => {\n this[propertyName] = null;\n });\n }\n\n _queueCallback(callback, element, isAnimated = true) {\n executeAfterTransition(callback, element, isAnimated);\n }\n\n /** Static */\n\n static getInstance(element) {\n return Data.get(getElement(element), this.DATA_KEY);\n }\n\n static getOrCreateInstance(element, config = {}) {\n return (\n this.getInstance(element) || new this(element, typeof config === 'object' ? config : null)\n );\n }\n\n static get VERSION() {\n return VERSION;\n }\n\n static get NAME() {\n throw new Error('You have to implement the static method \"NAME\", for each component!');\n }\n\n static get DATA_KEY() {\n return `bs.${this.NAME}`;\n }\n\n static get EVENT_KEY() {\n return `.${this.DATA_KEY}`;\n }\n}\n\nexport default BaseComponent;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport { defineJQueryPlugin } from './util/index';\nimport EventHandler from './dom/event-handler';\nimport BaseComponent from './base-component';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'button';\nconst DATA_KEY = 'bs.button';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst DATA_API_KEY = '.data-api';\n\nconst CLASS_NAME_ACTIVE = 'active';\n\nconst SELECTOR_DATA_TOGGLE = '[data-mdb-toggle=\"button\"]';\n\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Button extends BaseComponent {\n // Getters\n\n static get NAME() {\n return NAME;\n }\n\n // Public\n\n toggle() {\n // Toggle class and sync the `aria-pressed` attribute with the return value of the `.toggle()` method\n this._element.setAttribute('aria-pressed', this._element.classList.toggle(CLASS_NAME_ACTIVE));\n }\n\n // Static\n\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Button.getOrCreateInstance(this);\n\n if (config === 'toggle') {\n data[config]();\n }\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, (event) => {\n event.preventDefault();\n\n const button = event.target.closest(SELECTOR_DATA_TOGGLE);\n const data = Button.getOrCreateInstance(button);\n\n data.toggle();\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .Button to jQuery only if jQuery is present\n */\n\ndefineJQueryPlugin(Button);\n\nexport default Button;\n","import { getjQuery, onDOMContentLoaded } from '../mdb/util/index';\nimport Data from '../mdb/dom/data';\nimport EventHandler from '../mdb/dom/event-handler';\nimport Manipulator from '../mdb/dom/manipulator';\nimport SelectorEngine from '../mdb/dom/selector-engine';\n\nimport BSButton from '../bootstrap/mdb-prefix/button';\n\nconst NAME = 'button';\nconst DATA_KEY = `mdb.${NAME}`;\nconst EVENT_KEY = `.${DATA_KEY}`;\n\nconst EVENT_CLICK = `click${EVENT_KEY}`;\nconst EVENT_TRANSITIONEND = 'transitionend';\nconst EVENT_MOUSEENTER = 'mouseenter';\nconst EVENT_MOUSELEAVE = 'mouseleave';\nconst EVENT_HIDE = `hide${EVENT_KEY}`;\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`;\nconst EVENT_SHOW = `show${EVENT_KEY}`;\nconst EVENT_SHOWN = `shown${EVENT_KEY}`;\n\nconst CLASS_NAME_ACTIVE = 'active';\nconst CLASS_NAME_SHOWN = 'shown';\nconst CLASS_NAME_FIXED_ACTION_BTN = 'fixed-action-btn';\n\nconst SELECTOR_BUTTON = '[data-mdb-toggle=\"button\"]';\nconst SELECTOR_FIXED_CONTAINER = '.fixed-action-btn';\nconst SELECTOR_ACTION_BUTTON = '.fixed-action-btn:not(.smooth-scroll) > .btn-floating';\nconst SELECTOR_LIST_ELEMENT = 'ul .btn';\nconst SELECTOR_LIST = 'ul';\n\nclass Button extends BSButton {\n constructor(element) {\n super(element);\n this._fn = {};\n\n if (this._element) {\n Data.setData(this._element, DATA_KEY, this);\n this._init();\n }\n }\n\n // Static\n static get NAME() {\n return NAME;\n }\n\n static jQueryInterface(config, options) {\n return this.each(function () {\n let data = Data.getData(this, DATA_KEY);\n const _config = typeof config === 'object' && config;\n if (!data && /dispose/.test(config)) {\n return;\n }\n\n if (!data) {\n data = new Button(this, _config);\n }\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config](options);\n }\n });\n }\n\n // Getters\n get _actionButton() {\n return SelectorEngine.findOne(SELECTOR_ACTION_BUTTON, this._element);\n }\n\n get _buttonListElements() {\n return SelectorEngine.find(SELECTOR_LIST_ELEMENT, this._element);\n }\n\n get _buttonList() {\n return SelectorEngine.findOne(SELECTOR_LIST, this._element);\n }\n\n get _isTouchDevice() {\n return 'ontouchstart' in document.documentElement;\n }\n\n // Public\n show() {\n if (Manipulator.hasClass(this._element, CLASS_NAME_FIXED_ACTION_BTN)) {\n EventHandler.off(this._buttonList, EVENT_TRANSITIONEND);\n EventHandler.trigger(this._element, EVENT_SHOW);\n // EventHandler.on(this._buttonList, EVENT_TRANSITIONEND, this._bindListOpenTransitionEnd);\n this._bindListOpenTransitionEnd();\n Manipulator.addStyle(this._element, { height: `${this._fullContainerHeight}px` });\n this._toggleVisibility(true);\n }\n }\n\n hide() {\n if (Manipulator.hasClass(this._element, CLASS_NAME_FIXED_ACTION_BTN)) {\n EventHandler.off(this._buttonList, EVENT_TRANSITIONEND);\n EventHandler.trigger(this._element, EVENT_HIDE);\n // EventHandler.on(this._buttonList, EVENT_TRANSITIONEND, this._bindListHideTransitionEnd);\n this._bindListHideTransitionEnd();\n this._toggleVisibility(false);\n }\n }\n\n dispose() {\n if (Manipulator.hasClass(this._element, CLASS_NAME_FIXED_ACTION_BTN)) {\n EventHandler.off(this._actionButton, EVENT_CLICK);\n this._actionButton.removeEventListener(EVENT_MOUSEENTER, this._fn.mouseenter);\n this._element.removeEventListener(EVENT_MOUSELEAVE, this._fn.mouseleave);\n }\n\n super.dispose();\n }\n\n // Private\n _init() {\n if (Manipulator.hasClass(this._element, CLASS_NAME_FIXED_ACTION_BTN)) {\n this._saveInitialHeights();\n this._setInitialStyles();\n this._bindInitialEvents();\n }\n }\n\n _bindMouseEnter() {\n this._actionButton.addEventListener(\n EVENT_MOUSEENTER,\n // prettier-ignore\n this._fn.mouseenter = () => {\n if (!this._isTouchDevice) {\n this.show();\n }\n }\n // prettier-ignore\n );\n }\n\n _bindMouseLeave() {\n this._element.addEventListener(\n EVENT_MOUSELEAVE,\n // prettier-ignore\n this._fn.mouseleave = () => {\n this.hide();\n }\n // prettier-ignore\n );\n }\n\n _bindClick() {\n EventHandler.on(this._actionButton, EVENT_CLICK, () => {\n if (Manipulator.hasClass(this._element, CLASS_NAME_ACTIVE)) {\n this.hide();\n } else {\n this.show();\n }\n });\n }\n\n _bindListHideTransitionEnd() {\n EventHandler.on(this._buttonList, EVENT_TRANSITIONEND, (event) => {\n if (event.propertyName === 'transform') {\n EventHandler.off(this._buttonList, EVENT_TRANSITIONEND);\n this._element.style.height = `${this._initialContainerHeight}px`;\n EventHandler.trigger(this._element, EVENT_HIDDEN);\n }\n });\n }\n\n _bindListOpenTransitionEnd() {\n EventHandler.on(this._buttonList, EVENT_TRANSITIONEND, (event) => {\n if (event.propertyName === 'transform') {\n EventHandler.off(this._buttonList, EVENT_TRANSITIONEND);\n EventHandler.trigger(this._element, EVENT_SHOWN);\n }\n });\n }\n\n _toggleVisibility(isVisible) {\n const action = isVisible ? 'addClass' : 'removeClass';\n const listTranslate = isVisible ? 'translate(0)' : `translateY(${this._fullContainerHeight}px)`;\n Manipulator.addStyle(this._buttonList, { transform: listTranslate });\n\n if (this._buttonListElements) {\n this._buttonListElements.forEach((el) => Manipulator[action](el, CLASS_NAME_SHOWN));\n }\n Manipulator[action](this._element, CLASS_NAME_ACTIVE);\n }\n\n _getHeight(element) {\n const computed = window.getComputedStyle(element);\n const height = parseFloat(computed.getPropertyValue('height'));\n return height;\n }\n\n _saveInitialHeights() {\n this._initialContainerHeight = this._getHeight(this._element);\n this._initialListHeight = this._getHeight(this._buttonList);\n this._fullContainerHeight = this._initialContainerHeight + this._initialListHeight;\n }\n\n _bindInitialEvents() {\n this._bindClick();\n this._bindMouseEnter();\n this._bindMouseLeave();\n }\n\n _setInitialStyles() {\n this._buttonList.style.marginBottom = `${this._initialContainerHeight}px`;\n this._buttonList.style.transform = `translateY(${this._fullContainerHeight}px)`;\n\n this._element.style.height = `${this._initialContainerHeight}px`;\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation - auto initialization\n * ------------------------------------------------------------------------\n */\n\nSelectorEngine.find(SELECTOR_FIXED_CONTAINER).forEach((element) => {\n let instance = Button.getInstance(element);\n if (!instance) {\n instance = new Button(element);\n }\n return instance;\n});\n\nSelectorEngine.find(SELECTOR_BUTTON).forEach((element) => {\n let instance = Button.getInstance(element);\n if (!instance) {\n instance = new Button(element);\n }\n return instance;\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\nonDOMContentLoaded(() => {\n const $ = getjQuery();\n\n if ($) {\n const JQUERY_NO_CONFLICT = $.fn[NAME];\n $.fn[NAME] = Button.jQueryInterface;\n $.fn[NAME].Constructor = Button;\n $.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT;\n return Button.jQueryInterface;\n };\n }\n});\n\nexport default Button;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): dom/manipulator.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nfunction normalizeData(val) {\n if (val === 'true') {\n return true;\n }\n\n if (val === 'false') {\n return false;\n }\n\n if (val === Number(val).toString()) {\n return Number(val);\n }\n\n if (val === '' || val === 'null') {\n return null;\n }\n\n return val;\n}\n\nfunction normalizeDataKey(key) {\n return key.replace(/[A-Z]/g, (chr) => `-${chr.toLowerCase()}`);\n}\n\nconst Manipulator = {\n setDataAttribute(element, key, value) {\n element.setAttribute(`data-mdb-${normalizeDataKey(key)}`, value);\n },\n\n removeDataAttribute(element, key) {\n element.removeAttribute(`data-mdb-${normalizeDataKey(key)}`);\n },\n\n getDataAttributes(element) {\n if (!element) {\n return {};\n }\n\n const attributes = {};\n\n Object.keys(element.dataset)\n .filter((key) => key.startsWith('mdb'))\n .forEach((key) => {\n let pureKey = key.replace(/^mdb/, '');\n pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length);\n attributes[pureKey] = normalizeData(element.dataset[key]);\n });\n\n return attributes;\n },\n\n getDataAttribute(element, key) {\n return normalizeData(element.getAttribute(`data-mdb-${normalizeDataKey(key)}`));\n },\n\n offset(element) {\n const rect = element.getBoundingClientRect();\n\n return {\n top: rect.top + window.pageYOffset,\n left: rect.left + window.pageXOffset,\n };\n },\n\n position(element) {\n return {\n top: element.offsetTop,\n left: element.offsetLeft,\n };\n },\n};\n\nexport default Manipulator;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): dom/selector-engine.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nimport { isDisabled, isVisible } from '../util/index';\n\nconst NODE_TEXT = 3;\n\nconst SelectorEngine = {\n find(selector, element = document.documentElement) {\n return [].concat(...Element.prototype.querySelectorAll.call(element, selector));\n },\n\n findOne(selector, element = document.documentElement) {\n return Element.prototype.querySelector.call(element, selector);\n },\n\n children(element, selector) {\n return [].concat(...element.children).filter((child) => child.matches(selector));\n },\n\n parents(element, selector) {\n const parents = [];\n\n let ancestor = element.parentNode;\n\n while (ancestor && ancestor.nodeType === Node.ELEMENT_NODE && ancestor.nodeType !== NODE_TEXT) {\n if (ancestor.matches(selector)) {\n parents.push(ancestor);\n }\n\n ancestor = ancestor.parentNode;\n }\n\n return parents;\n },\n\n prev(element, selector) {\n let previous = element.previousElementSibling;\n\n while (previous) {\n if (previous.matches(selector)) {\n return [previous];\n }\n\n previous = previous.previousElementSibling;\n }\n\n return [];\n },\n\n next(element, selector) {\n let next = element.nextElementSibling;\n\n while (next) {\n if (next.matches(selector)) {\n return [next];\n }\n\n next = next.nextElementSibling;\n }\n\n return [];\n },\n\n focusableChildren(element) {\n const focusables = [\n 'a',\n 'button',\n 'input',\n 'textarea',\n 'select',\n 'details',\n '[tabindex]',\n '[contenteditable=\"true\"]',\n ]\n .map((selector) => `${selector}:not([tabindex^=\"-\"])`)\n .join(', ');\n\n return this.find(focusables, element).filter((el) => !isDisabled(el) && isVisible(el));\n },\n};\n\nexport default SelectorEngine;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n defineJQueryPlugin,\n getElement,\n getSelectorFromElement,\n getElementFromSelector,\n reflow,\n typeCheckConfig,\n} from './util/index';\nimport Data from './dom/data';\nimport EventHandler from './dom/event-handler';\nimport Manipulator from './dom/manipulator';\nimport SelectorEngine from './dom/selector-engine';\nimport BaseComponent from './base-component';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'collapse';\nconst DATA_KEY = 'bs.collapse';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst DATA_API_KEY = '.data-api';\n\nconst Default = {\n toggle: true,\n parent: null,\n};\n\nconst DefaultType = {\n toggle: 'boolean',\n parent: '(null|element)',\n};\n\nconst EVENT_SHOW = `show${EVENT_KEY}`;\nconst EVENT_SHOWN = `shown${EVENT_KEY}`;\nconst EVENT_HIDE = `hide${EVENT_KEY}`;\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`;\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;\n\nconst CLASS_NAME_SHOW = 'show';\nconst CLASS_NAME_COLLAPSE = 'collapse';\nconst CLASS_NAME_COLLAPSING = 'collapsing';\nconst CLASS_NAME_COLLAPSED = 'collapsed';\nconst CLASS_NAME_DEEPER_CHILDREN = `:scope .${CLASS_NAME_COLLAPSE} .${CLASS_NAME_COLLAPSE}`;\nconst CLASS_NAME_HORIZONTAL = 'collapse-horizontal';\n\nconst WIDTH = 'width';\nconst HEIGHT = 'height';\n\nconst SELECTOR_ACTIVES = '.collapse.show, .collapse.collapsing';\nconst SELECTOR_DATA_TOGGLE = '[data-mdb-toggle=\"collapse\"]';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Collapse extends BaseComponent {\n constructor(element, config) {\n super(element);\n\n this._isTransitioning = false;\n this._config = this._getConfig(config);\n this._triggerArray = [];\n\n const toggleList = SelectorEngine.find(SELECTOR_DATA_TOGGLE);\n\n for (let i = 0, len = toggleList.length; i < len; i++) {\n const elem = toggleList[i];\n const selector = getSelectorFromElement(elem);\n const filterElement = SelectorEngine.find(selector).filter(\n (foundElem) => foundElem === this._element\n );\n\n if (selector !== null && filterElement.length) {\n this._selector = selector;\n this._triggerArray.push(elem);\n }\n }\n\n this._initializeChildren();\n\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._triggerArray, this._isShown());\n }\n\n if (this._config.toggle) {\n this.toggle();\n }\n }\n\n // Getters\n\n static get Default() {\n return Default;\n }\n\n static get NAME() {\n return NAME;\n }\n\n // Public\n\n toggle() {\n if (this._isShown()) {\n this.hide();\n } else {\n this.show();\n }\n }\n\n show() {\n if (this._isTransitioning || this._isShown()) {\n return;\n }\n\n let actives = [];\n let activesData;\n\n if (this._config.parent) {\n const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent);\n actives = SelectorEngine.find(SELECTOR_ACTIVES, this._config.parent).filter(\n (elem) => !children.includes(elem)\n ); // remove children if greater depth\n }\n\n const container = SelectorEngine.findOne(this._selector);\n if (actives.length) {\n const tempActiveData = actives.find((elem) => container !== elem);\n activesData = tempActiveData ? Collapse.getInstance(tempActiveData) : null;\n\n if (activesData && activesData._isTransitioning) {\n return;\n }\n }\n\n const startEvent = EventHandler.trigger(this._element, EVENT_SHOW);\n if (startEvent.defaultPrevented) {\n return;\n }\n\n actives.forEach((elemActive) => {\n if (container !== elemActive) {\n Collapse.getOrCreateInstance(elemActive, { toggle: false }).hide();\n }\n\n if (!activesData) {\n Data.set(elemActive, DATA_KEY, null);\n }\n });\n\n const dimension = this._getDimension();\n\n this._element.classList.remove(CLASS_NAME_COLLAPSE);\n this._element.classList.add(CLASS_NAME_COLLAPSING);\n\n this._element.style[dimension] = 0;\n\n this._addAriaAndCollapsedClass(this._triggerArray, true);\n this._isTransitioning = true;\n\n const complete = () => {\n this._isTransitioning = false;\n\n this._element.classList.remove(CLASS_NAME_COLLAPSING);\n this._element.classList.add(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW);\n\n this._element.style[dimension] = '';\n\n EventHandler.trigger(this._element, EVENT_SHOWN);\n };\n\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);\n const scrollSize = `scroll${capitalizedDimension}`;\n\n this._queueCallback(complete, this._element, true);\n this._element.style[dimension] = `${this._element[scrollSize]}px`;\n }\n\n hide() {\n if (this._isTransitioning || !this._isShown()) {\n return;\n }\n\n const startEvent = EventHandler.trigger(this._element, EVENT_HIDE);\n if (startEvent.defaultPrevented) {\n return;\n }\n\n const dimension = this._getDimension();\n\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`;\n\n reflow(this._element);\n\n this._element.classList.add(CLASS_NAME_COLLAPSING);\n this._element.classList.remove(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW);\n\n const triggerArrayLength = this._triggerArray.length;\n for (let i = 0; i < triggerArrayLength; i++) {\n const trigger = this._triggerArray[i];\n const elem = getElementFromSelector(trigger);\n\n if (elem && !this._isShown(elem)) {\n this._addAriaAndCollapsedClass([trigger], false);\n }\n }\n\n this._isTransitioning = true;\n\n const complete = () => {\n this._isTransitioning = false;\n this._element.classList.remove(CLASS_NAME_COLLAPSING);\n this._element.classList.add(CLASS_NAME_COLLAPSE);\n EventHandler.trigger(this._element, EVENT_HIDDEN);\n };\n\n this._element.style[dimension] = '';\n\n this._queueCallback(complete, this._element, true);\n }\n\n _isShown(element = this._element) {\n return element.classList.contains(CLASS_NAME_SHOW);\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...Manipulator.getDataAttributes(this._element),\n ...config,\n };\n config.toggle = Boolean(config.toggle); // Coerce string values\n config.parent = getElement(config.parent);\n typeCheckConfig(NAME, config, DefaultType);\n return config;\n }\n\n _getDimension() {\n return this._element.classList.contains(CLASS_NAME_HORIZONTAL) ? WIDTH : HEIGHT;\n }\n\n _initializeChildren() {\n if (!this._config.parent) {\n return;\n }\n\n const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent);\n SelectorEngine.find(SELECTOR_DATA_TOGGLE, this._config.parent)\n .filter((elem) => !children.includes(elem))\n .forEach((element) => {\n const selected = getElementFromSelector(element);\n\n if (selected) {\n this._addAriaAndCollapsedClass([element], this._isShown(selected));\n }\n });\n }\n\n _addAriaAndCollapsedClass(triggerArray, isOpen) {\n if (!triggerArray.length) {\n return;\n }\n\n triggerArray.forEach((elem) => {\n if (isOpen) {\n elem.classList.remove(CLASS_NAME_COLLAPSED);\n } else {\n elem.classList.add(CLASS_NAME_COLLAPSED);\n }\n\n elem.setAttribute('aria-expanded', isOpen);\n });\n }\n\n // Static\n\n static jQueryInterface(config) {\n return this.each(function () {\n const _config = {};\n if (typeof config === 'string' && /show|hide/.test(config)) {\n _config.toggle = false;\n }\n\n const data = Collapse.getOrCreateInstance(this, _config);\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n\n data[config]();\n }\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (\n event.target.tagName === 'A' ||\n (event.delegateTarget && event.delegateTarget.tagName === 'A')\n ) {\n event.preventDefault();\n }\n\n const selector = getSelectorFromElement(this);\n const selectorElements = SelectorEngine.find(selector);\n\n selectorElements.forEach((element) => {\n Collapse.getOrCreateInstance(element, { toggle: false }).toggle();\n });\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .Collapse to jQuery only if jQuery is present\n */\n\ndefineJQueryPlugin(Collapse);\n\nexport default Collapse;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): util/scrollBar.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport SelectorEngine from '../dom/selector-engine';\nimport Manipulator from '../dom/manipulator';\nimport { isElement } from './index';\n\nconst SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top';\nconst SELECTOR_STICKY_CONTENT = '.sticky-top';\n\nclass ScrollBarHelper {\n constructor() {\n this._element = document.body;\n }\n\n getWidth() {\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth#usage_notes\n const documentWidth = document.documentElement.clientWidth;\n return Math.abs(window.innerWidth - documentWidth);\n }\n\n hide() {\n const width = this.getWidth();\n this._disableOverFlow();\n // give padding to element to balance the hidden scrollbar width\n this._setElementAttributes(\n this._element,\n 'paddingRight',\n (calculatedValue) => calculatedValue + width\n );\n // trick: We adjust positive paddingRight and negative marginRight to sticky-top elements to keep showing fullwidth\n this._setElementAttributes(\n SELECTOR_FIXED_CONTENT,\n 'paddingRight',\n (calculatedValue) => calculatedValue + width\n );\n this._setElementAttributes(\n SELECTOR_STICKY_CONTENT,\n 'marginRight',\n (calculatedValue) => calculatedValue - width\n );\n }\n\n _disableOverFlow() {\n this._saveInitialAttribute(this._element, 'overflow');\n this._element.style.overflow = 'hidden';\n }\n\n _setElementAttributes(selector, styleProp, callback) {\n const scrollbarWidth = this.getWidth();\n const manipulationCallBack = (element) => {\n if (element !== this._element && window.innerWidth > element.clientWidth + scrollbarWidth) {\n return;\n }\n\n this._saveInitialAttribute(element, styleProp);\n const calculatedValue = window.getComputedStyle(element)[styleProp];\n element.style[styleProp] = `${callback(Number.parseFloat(calculatedValue))}px`;\n };\n\n this._applyManipulationCallback(selector, manipulationCallBack);\n }\n\n reset() {\n this._resetElementAttributes(this._element, 'overflow');\n this._resetElementAttributes(this._element, 'paddingRight');\n this._resetElementAttributes(SELECTOR_FIXED_CONTENT, 'paddingRight');\n this._resetElementAttributes(SELECTOR_STICKY_CONTENT, 'marginRight');\n }\n\n _saveInitialAttribute(element, styleProp) {\n const actualValue = element.style[styleProp];\n if (actualValue) {\n Manipulator.setDataAttribute(element, styleProp, actualValue);\n }\n }\n\n _resetElementAttributes(selector, styleProp) {\n const manipulationCallBack = (element) => {\n const value = Manipulator.getDataAttribute(element, styleProp);\n if (typeof value === 'undefined') {\n element.style.removeProperty(styleProp);\n } else {\n Manipulator.removeDataAttribute(element, styleProp);\n element.style[styleProp] = value;\n }\n };\n\n this._applyManipulationCallback(selector, manipulationCallBack);\n }\n\n _applyManipulationCallback(selector, callBack) {\n if (isElement(selector)) {\n callBack(selector);\n } else {\n SelectorEngine.find(selector, this._element).forEach(callBack);\n }\n }\n\n isOverflowing() {\n return this.getWidth() > 0;\n }\n}\n\nexport default ScrollBarHelper;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): util/backdrop.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport EventHandler from '../dom/event-handler';\nimport { execute, executeAfterTransition, getElement, reflow, typeCheckConfig } from './index';\n\nconst Default = {\n className: 'modal-backdrop',\n isVisible: true, // if false, we use the backdrop helper without adding any element to the dom\n isAnimated: false,\n rootElement: 'body', // give the choice to place backdrop under different elements\n clickCallback: null,\n};\n\nconst DefaultType = {\n className: 'string',\n isVisible: 'boolean',\n isAnimated: 'boolean',\n rootElement: '(element|string)',\n clickCallback: '(function|null)',\n};\nconst NAME = 'backdrop';\nconst CLASS_NAME_FADE = 'fade';\nconst CLASS_NAME_SHOW = 'show';\n\nconst EVENT_MOUSEDOWN = `mousedown.bs.${NAME}`;\n\nclass Backdrop {\n constructor(config) {\n this._config = this._getConfig(config);\n this._isAppended = false;\n this._element = null;\n }\n\n show(callback) {\n if (!this._config.isVisible) {\n execute(callback);\n return;\n }\n\n this._append();\n\n if (this._config.isAnimated) {\n reflow(this._getElement());\n }\n\n this._getElement().classList.add(CLASS_NAME_SHOW);\n\n this._emulateAnimation(() => {\n execute(callback);\n });\n }\n\n hide(callback) {\n if (!this._config.isVisible) {\n execute(callback);\n return;\n }\n\n this._getElement().classList.remove(CLASS_NAME_SHOW);\n\n this._emulateAnimation(() => {\n this.dispose();\n execute(callback);\n });\n }\n\n // Private\n\n _getElement() {\n if (!this._element) {\n const backdrop = document.createElement('div');\n backdrop.className = this._config.className;\n if (this._config.isAnimated) {\n backdrop.classList.add(CLASS_NAME_FADE);\n }\n\n this._element = backdrop;\n }\n\n return this._element;\n }\n\n _getConfig(config) {\n config = {\n ...Default,\n ...(typeof config === 'object' ? config : {}),\n };\n\n // use getElement() with the default \"body\" to get a fresh Element on each instantiation\n config.rootElement = getElement(config.rootElement);\n typeCheckConfig(NAME, config, DefaultType);\n return config;\n }\n\n _append() {\n if (this._isAppended) {\n return;\n }\n\n this._config.rootElement.append(this._getElement());\n\n EventHandler.on(this._getElement(), EVENT_MOUSEDOWN, () => {\n execute(this._config.clickCallback);\n });\n\n this._isAppended = true;\n }\n\n dispose() {\n if (!this._isAppended) {\n return;\n }\n\n EventHandler.off(this._element, EVENT_MOUSEDOWN);\n\n this._element.remove();\n this._isAppended = false;\n }\n\n _emulateAnimation(callback) {\n executeAfterTransition(callback, this._getElement(), this._config.isAnimated);\n }\n}\n\nexport default Backdrop;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): util/focustrap.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport EventHandler from '../dom/event-handler';\nimport SelectorEngine from '../dom/selector-engine';\nimport { typeCheckConfig } from './index';\n\nconst Default = {\n trapElement: null, // The element to trap focus inside of\n autofocus: true,\n};\n\nconst DefaultType = {\n trapElement: 'element',\n autofocus: 'boolean',\n};\n\nconst NAME = 'focustrap';\nconst DATA_KEY = 'bs.focustrap';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst EVENT_FOCUSIN = `focusin${EVENT_KEY}`;\nconst EVENT_KEYDOWN_TAB = `keydown.tab${EVENT_KEY}`;\n\nconst TAB_KEY = 'Tab';\nconst TAB_NAV_FORWARD = 'forward';\nconst TAB_NAV_BACKWARD = 'backward';\n\nclass FocusTrap {\n constructor(config) {\n this._config = this._getConfig(config);\n this._isActive = false;\n this._lastTabNavDirection = null;\n }\n\n activate() {\n const { trapElement, autofocus } = this._config;\n\n if (this._isActive) {\n return;\n }\n\n if (autofocus) {\n trapElement.focus();\n }\n\n EventHandler.off(document, EVENT_KEY); // guard against infinite focus loop\n EventHandler.on(document, EVENT_FOCUSIN, (event) => this._handleFocusin(event));\n EventHandler.on(document, EVENT_KEYDOWN_TAB, (event) => this._handleKeydown(event));\n\n this._isActive = true;\n }\n\n deactivate() {\n if (!this._isActive) {\n return;\n }\n\n this._isActive = false;\n EventHandler.off(document, EVENT_KEY);\n }\n\n // Private\n\n _handleFocusin(event) {\n const { target } = event;\n const { trapElement } = this._config;\n\n if (target === document || target === trapElement || trapElement.contains(target)) {\n return;\n }\n\n const elements = SelectorEngine.focusableChildren(trapElement);\n\n if (elements.length === 0) {\n trapElement.focus();\n } else if (this._lastTabNavDirection === TAB_NAV_BACKWARD) {\n elements[elements.length - 1].focus();\n } else {\n elements[0].focus();\n }\n }\n\n _handleKeydown(event) {\n if (event.key !== TAB_KEY) {\n return;\n }\n\n this._lastTabNavDirection = event.shiftKey ? TAB_NAV_BACKWARD : TAB_NAV_FORWARD;\n }\n\n _getConfig(config) {\n config = {\n ...Default,\n ...(typeof config === 'object' ? config : {}),\n };\n typeCheckConfig(NAME, config, DefaultType);\n return config;\n }\n}\n\nexport default FocusTrap;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): util/component-functions.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport EventHandler from '../dom/event-handler';\nimport { getElementFromSelector, isDisabled } from './index';\n\nconst enableDismissTrigger = (component, method = 'hide') => {\n const clickEvent = `click.dismiss${component.EVENT_KEY}`;\n const name = component.NAME;\n\n EventHandler.on(document, clickEvent, `[data-mdb-dismiss=\"${name}\"]`, function (event) {\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n\n if (isDisabled(this)) {\n return;\n }\n\n const target = getElementFromSelector(this) || this.closest(`.${name}`);\n const instance = component.getOrCreateInstance(target);\n\n // Method argument is left, for Alert and only, as it doesn't implement the 'hide' method\n instance[method]();\n });\n};\n\nexport { enableDismissTrigger };\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): offcanvas.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n defineJQueryPlugin,\n getElementFromSelector,\n isDisabled,\n isVisible,\n typeCheckConfig,\n} from './util/index';\nimport ScrollBarHelper from './util/scrollbar';\nimport EventHandler from './dom/event-handler';\nimport BaseComponent from './base-component';\nimport SelectorEngine from './dom/selector-engine';\nimport Manipulator from './dom/manipulator';\nimport Backdrop from './util/backdrop';\nimport FocusTrap from './util/focustrap';\nimport { enableDismissTrigger } from './util/component-functions';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'offcanvas';\nconst DATA_KEY = 'bs.offcanvas';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst DATA_API_KEY = '.data-api';\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`;\nconst ESCAPE_KEY = 'Escape';\n\nconst Default = {\n backdrop: true,\n keyboard: true,\n scroll: false,\n};\n\nconst DefaultType = {\n backdrop: 'boolean',\n keyboard: 'boolean',\n scroll: 'boolean',\n};\n\nconst CLASS_NAME_SHOW = 'show';\nconst CLASS_NAME_BACKDROP = 'offcanvas-backdrop';\nconst OPEN_SELECTOR = '.offcanvas.show';\n\nconst EVENT_SHOW = `show${EVENT_KEY}`;\nconst EVENT_SHOWN = `shown${EVENT_KEY}`;\nconst EVENT_HIDE = `hide${EVENT_KEY}`;\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`;\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;\nconst EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`;\n\nconst SELECTOR_DATA_TOGGLE = '[data-mdb-toggle=\"offcanvas\"]';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Offcanvas extends BaseComponent {\n constructor(element, config) {\n super(element);\n\n this._config = this._getConfig(config);\n this._isShown = false;\n this._backdrop = this._initializeBackDrop();\n this._focustrap = this._initializeFocusTrap();\n this._addEventListeners();\n }\n\n // Getters\n\n static get NAME() {\n return NAME;\n }\n\n static get Default() {\n return Default;\n }\n\n // Public\n\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget);\n }\n\n show(relatedTarget) {\n if (this._isShown) {\n return;\n }\n\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, { relatedTarget });\n\n if (showEvent.defaultPrevented) {\n return;\n }\n\n this._isShown = true;\n this._element.style.visibility = 'visible';\n\n this._backdrop.show();\n\n if (!this._config.scroll) {\n new ScrollBarHelper().hide();\n }\n\n this._element.removeAttribute('aria-hidden');\n this._element.setAttribute('aria-modal', true);\n this._element.setAttribute('role', 'dialog');\n this._element.classList.add(CLASS_NAME_SHOW);\n\n const completeCallBack = () => {\n if (!this._config.scroll) {\n this._focustrap.activate();\n }\n\n EventHandler.trigger(this._element, EVENT_SHOWN, { relatedTarget });\n };\n\n this._queueCallback(completeCallBack, this._element, true);\n }\n\n hide() {\n if (!this._isShown) {\n return;\n }\n\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE);\n\n if (hideEvent.defaultPrevented) {\n return;\n }\n\n this._focustrap.deactivate();\n this._element.blur();\n this._isShown = false;\n this._element.classList.remove(CLASS_NAME_SHOW);\n this._backdrop.hide();\n\n const completeCallback = () => {\n this._element.setAttribute('aria-hidden', true);\n this._element.removeAttribute('aria-modal');\n this._element.removeAttribute('role');\n this._element.style.visibility = 'hidden';\n\n if (!this._config.scroll) {\n new ScrollBarHelper().reset();\n }\n\n EventHandler.trigger(this._element, EVENT_HIDDEN);\n };\n\n this._queueCallback(completeCallback, this._element, true);\n }\n\n dispose() {\n this._backdrop.dispose();\n this._focustrap.deactivate();\n super.dispose();\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...Manipulator.getDataAttributes(this._element),\n ...(typeof config === 'object' ? config : {}),\n };\n typeCheckConfig(NAME, config, DefaultType);\n return config;\n }\n\n _initializeBackDrop() {\n return new Backdrop({\n className: CLASS_NAME_BACKDROP,\n isVisible: this._config.backdrop,\n isAnimated: true,\n rootElement: this._element.parentNode,\n clickCallback: () => this.hide(),\n });\n }\n\n _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element,\n });\n }\n\n _addEventListeners() {\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, (event) => {\n if (this._config.keyboard && event.key === ESCAPE_KEY) {\n this.hide();\n }\n });\n }\n\n // Static\n\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Offcanvas.getOrCreateInstance(this, config);\n\n if (typeof config !== 'string') {\n return;\n }\n\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n\n data[config](this);\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n const target = getElementFromSelector(this);\n\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n\n if (isDisabled(this)) {\n return;\n }\n\n EventHandler.one(target, EVENT_HIDDEN, () => {\n // focus on trigger when it is closed\n if (isVisible(this)) {\n this.focus();\n }\n });\n\n // avoid conflict when clicking a toggler of an offcanvas, while another is open\n const allReadyOpen = SelectorEngine.findOne(OPEN_SELECTOR);\n if (allReadyOpen && allReadyOpen !== target) {\n Offcanvas.getInstance(allReadyOpen).hide();\n }\n\n const data = Offcanvas.getOrCreateInstance(target);\n data.toggle(this);\n});\n\nEventHandler.on(window, EVENT_LOAD_DATA_API, () =>\n SelectorEngine.find(OPEN_SELECTOR).forEach((el) => Offcanvas.getOrCreateInstance(el).show())\n);\n\nenableDismissTrigger(Offcanvas);\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\ndefineJQueryPlugin(Offcanvas);\n\nexport default Offcanvas;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport { defineJQueryPlugin } from './util/index';\nimport EventHandler from './dom/event-handler';\nimport BaseComponent from './base-component';\nimport { enableDismissTrigger } from './util/component-functions';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'alert';\nconst DATA_KEY = 'bs.alert';\nconst EVENT_KEY = `.${DATA_KEY}`;\n\nconst EVENT_CLOSE = `close${EVENT_KEY}`;\nconst EVENT_CLOSED = `closed${EVENT_KEY}`;\nconst CLASS_NAME_FADE = 'fade';\nconst CLASS_NAME_SHOW = 'show';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Alert extends BaseComponent {\n // Getters\n\n static get NAME() {\n return NAME;\n }\n\n // Public\n\n close() {\n const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE);\n\n if (closeEvent.defaultPrevented) {\n return;\n }\n\n this._element.classList.remove(CLASS_NAME_SHOW);\n\n const isAnimated = this._element.classList.contains(CLASS_NAME_FADE);\n this._queueCallback(() => this._destroyElement(), this._element, isAnimated);\n }\n\n // Private\n _destroyElement() {\n this._element.remove();\n EventHandler.trigger(this._element, EVENT_CLOSED);\n this.dispose();\n }\n\n // Static\n\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Alert.getOrCreateInstance(this);\n\n if (typeof config !== 'string') {\n return;\n }\n\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n\n data[config](this);\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\nenableDismissTrigger(Alert, 'close');\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .Alert to jQuery only if jQuery is present\n */\n\ndefineJQueryPlugin(Alert);\n\nexport default Alert;\n","import { getjQuery, onDOMContentLoaded } from '../mdb/util/index';\nimport EventHandler from '../mdb/dom/event-handler';\nimport SelectorEngine from '../mdb/dom/selector-engine';\nimport BSAlert from '../bootstrap/mdb-prefix/alert';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'alert';\nconst DATA_KEY = `mdb.${NAME}`;\nconst EVENT_KEY = `.${DATA_KEY}`;\n\nconst EVENT_CLOSE_BS = 'close.bs.alert';\nconst EVENT_CLOSED_BS = 'closed.bs.alert';\n\nconst EVENT_CLOSE = `close${EVENT_KEY}`;\nconst EVENT_CLOSED = `closed${EVENT_KEY}`;\n\nconst SELECTOR_ALERT = '.alert';\n\nclass Alert extends BSAlert {\n constructor(element, data = {}) {\n super(element, data);\n\n this._init();\n }\n\n dispose() {\n EventHandler.off(this._element, EVENT_CLOSE_BS);\n EventHandler.off(this._element, EVENT_CLOSED_BS);\n\n super.dispose();\n }\n\n // Getters\n static get NAME() {\n return NAME;\n }\n\n // Private\n _init() {\n this._bindCloseEvent();\n this._bindClosedEvent();\n }\n\n _bindCloseEvent() {\n EventHandler.on(this._element, EVENT_CLOSE_BS, () => {\n EventHandler.trigger(this._element, EVENT_CLOSE);\n });\n }\n\n _bindClosedEvent() {\n EventHandler.on(this._element, EVENT_CLOSED_BS, () => {\n EventHandler.trigger(this._element, EVENT_CLOSED);\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation - auto initialization\n * ------------------------------------------------------------------------\n */\n\nSelectorEngine.find(SELECTOR_ALERT).forEach((el) => {\n let instance = Alert.getInstance(el);\n if (!instance) {\n instance = new Alert(el);\n }\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .rating to jQuery only if jQuery is present\n */\nonDOMContentLoaded(() => {\n const $ = getjQuery();\n\n if ($) {\n const JQUERY_NO_CONFLICT = $.fn[NAME];\n $.fn[NAME] = Alert.jQueryInterface;\n $.fn[NAME].Constructor = Alert;\n $.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT;\n return Alert.jQueryInterface;\n };\n }\n});\n\nexport default Alert;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n defineJQueryPlugin,\n getElementFromSelector,\n isRTL,\n isVisible,\n getNextActiveElement,\n reflow,\n triggerTransitionEnd,\n typeCheckConfig,\n} from './util/index';\nimport EventHandler from './dom/event-handler';\nimport Manipulator from './dom/manipulator';\nimport SelectorEngine from './dom/selector-engine';\nimport BaseComponent from './base-component';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'carousel';\nconst DATA_KEY = 'bs.carousel';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst DATA_API_KEY = '.data-api';\n\nconst ARROW_LEFT_KEY = 'ArrowLeft';\nconst ARROW_RIGHT_KEY = 'ArrowRight';\nconst TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch\nconst SWIPE_THRESHOLD = 40;\n\nconst Default = {\n interval: 5000,\n keyboard: true,\n slide: false,\n pause: 'hover',\n wrap: true,\n touch: true,\n};\n\nconst DefaultType = {\n interval: '(number|boolean)',\n keyboard: 'boolean',\n slide: '(boolean|string)',\n pause: '(string|boolean)',\n wrap: 'boolean',\n touch: 'boolean',\n};\n\nconst ORDER_NEXT = 'next';\nconst ORDER_PREV = 'prev';\nconst DIRECTION_LEFT = 'left';\nconst DIRECTION_RIGHT = 'right';\n\nconst KEY_TO_DIRECTION = {\n [ARROW_LEFT_KEY]: DIRECTION_RIGHT,\n [ARROW_RIGHT_KEY]: DIRECTION_LEFT,\n};\n\nconst EVENT_SLIDE = `slide${EVENT_KEY}`;\nconst EVENT_SLID = `slid${EVENT_KEY}`;\nconst EVENT_KEYDOWN = `keydown${EVENT_KEY}`;\nconst EVENT_MOUSEENTER = `mouseenter${EVENT_KEY}`;\nconst EVENT_MOUSELEAVE = `mouseleave${EVENT_KEY}`;\nconst EVENT_TOUCHSTART = `touchstart${EVENT_KEY}`;\nconst EVENT_TOUCHMOVE = `touchmove${EVENT_KEY}`;\nconst EVENT_TOUCHEND = `touchend${EVENT_KEY}`;\nconst EVENT_POINTERDOWN = `pointerdown${EVENT_KEY}`;\nconst EVENT_POINTERUP = `pointerup${EVENT_KEY}`;\nconst EVENT_DRAG_START = `dragstart${EVENT_KEY}`;\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`;\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;\n\nconst CLASS_NAME_CAROUSEL = 'carousel';\nconst CLASS_NAME_ACTIVE = 'active';\nconst CLASS_NAME_SLIDE = 'slide';\nconst CLASS_NAME_END = 'carousel-item-end';\nconst CLASS_NAME_START = 'carousel-item-start';\nconst CLASS_NAME_NEXT = 'carousel-item-next';\nconst CLASS_NAME_PREV = 'carousel-item-prev';\nconst CLASS_NAME_POINTER_EVENT = 'pointer-event';\n\nconst SELECTOR_ACTIVE = '.active';\nconst SELECTOR_ACTIVE_ITEM = '.active.carousel-item';\nconst SELECTOR_ITEM = '.carousel-item';\nconst SELECTOR_ITEM_IMG = '.carousel-item img';\nconst SELECTOR_NEXT_PREV = '.carousel-item-next, .carousel-item-prev';\nconst SELECTOR_INDICATORS = '.carousel-indicators';\nconst SELECTOR_INDICATOR = '[data-mdb-target]';\nconst SELECTOR_DATA_SLIDE = '[data-mdb-slide], [data-mdb-slide-to]';\nconst SELECTOR_DATA_RIDE = '[data-mdb-ride=\"carousel\"]';\n\nconst POINTER_TYPE_TOUCH = 'touch';\nconst POINTER_TYPE_PEN = 'pen';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\nclass Carousel extends BaseComponent {\n constructor(element, config) {\n super(element);\n\n this._items = null;\n this._interval = null;\n this._activeElement = null;\n this._isPaused = false;\n this._isSliding = false;\n this.touchTimeout = null;\n this.touchStartX = 0;\n this.touchDeltaX = 0;\n\n this._config = this._getConfig(config);\n this._indicatorsElement = SelectorEngine.findOne(SELECTOR_INDICATORS, this._element);\n this._touchSupported =\n 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0;\n this._pointerEvent = Boolean(window.PointerEvent);\n\n this._addEventListeners();\n }\n\n // Getters\n\n static get Default() {\n return Default;\n }\n\n static get NAME() {\n return NAME;\n }\n\n // Public\n\n next() {\n this._slide(ORDER_NEXT);\n }\n\n nextWhenVisible() {\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden && isVisible(this._element)) {\n this.next();\n }\n }\n\n prev() {\n this._slide(ORDER_PREV);\n }\n\n pause(event) {\n if (!event) {\n this._isPaused = true;\n }\n\n if (SelectorEngine.findOne(SELECTOR_NEXT_PREV, this._element)) {\n triggerTransitionEnd(this._element);\n this.cycle(true);\n }\n\n clearInterval(this._interval);\n this._interval = null;\n }\n\n cycle(event) {\n if (!event) {\n this._isPaused = false;\n }\n\n if (this._interval) {\n clearInterval(this._interval);\n this._interval = null;\n }\n\n if (this._config && this._config.interval && !this._isPaused) {\n this._updateInterval();\n\n this._interval = setInterval(\n (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n this._config.interval\n );\n }\n }\n\n to(index) {\n this._activeElement = SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element);\n const activeIndex = this._getItemIndex(this._activeElement);\n\n if (index > this._items.length - 1 || index < 0) {\n return;\n }\n\n if (this._isSliding) {\n EventHandler.one(this._element, EVENT_SLID, () => this.to(index));\n return;\n }\n\n if (activeIndex === index) {\n this.pause();\n this.cycle();\n return;\n }\n\n const order = index > activeIndex ? ORDER_NEXT : ORDER_PREV;\n\n this._slide(order, this._items[index]);\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...Manipulator.getDataAttributes(this._element),\n ...(typeof config === 'object' ? config : {}),\n };\n typeCheckConfig(NAME, config, DefaultType);\n return config;\n }\n\n _handleSwipe() {\n const absDeltax = Math.abs(this.touchDeltaX);\n\n if (absDeltax <= SWIPE_THRESHOLD) {\n return;\n }\n\n const direction = absDeltax / this.touchDeltaX;\n\n this.touchDeltaX = 0;\n\n if (!direction) {\n return;\n }\n\n this._slide(direction > 0 ? DIRECTION_RIGHT : DIRECTION_LEFT);\n }\n\n _addEventListeners() {\n if (this._config.keyboard) {\n EventHandler.on(this._element, EVENT_KEYDOWN, (event) => this._keydown(event));\n }\n\n if (this._config.pause === 'hover') {\n EventHandler.on(this._element, EVENT_MOUSEENTER, (event) => this.pause(event));\n EventHandler.on(this._element, EVENT_MOUSELEAVE, (event) => this.cycle(event));\n }\n\n if (this._config.touch && this._touchSupported) {\n this._addTouchEventListeners();\n }\n }\n\n _addTouchEventListeners() {\n const hasPointerPenTouch = (event) => {\n return (\n this._pointerEvent &&\n (event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH)\n );\n };\n\n const start = (event) => {\n if (hasPointerPenTouch(event)) {\n this.touchStartX = event.clientX;\n } else if (!this._pointerEvent) {\n this.touchStartX = event.touches[0].clientX;\n }\n };\n\n const move = (event) => {\n // ensure swiping with one touch and not pinching\n this.touchDeltaX =\n event.touches && event.touches.length > 1 ? 0 : event.touches[0].clientX - this.touchStartX;\n };\n\n const end = (event) => {\n if (hasPointerPenTouch(event)) {\n this.touchDeltaX = event.clientX - this.touchStartX;\n }\n\n this._handleSwipe();\n if (this._config.pause === 'hover') {\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n\n this.pause();\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout);\n }\n\n this.touchTimeout = setTimeout(\n (event) => this.cycle(event),\n TOUCHEVENT_COMPAT_WAIT + this._config.interval\n );\n }\n };\n\n SelectorEngine.find(SELECTOR_ITEM_IMG, this._element).forEach((itemImg) => {\n EventHandler.on(itemImg, EVENT_DRAG_START, (event) => event.preventDefault());\n });\n\n if (this._pointerEvent) {\n EventHandler.on(this._element, EVENT_POINTERDOWN, (event) => start(event));\n EventHandler.on(this._element, EVENT_POINTERUP, (event) => end(event));\n\n this._element.classList.add(CLASS_NAME_POINTER_EVENT);\n } else {\n EventHandler.on(this._element, EVENT_TOUCHSTART, (event) => start(event));\n EventHandler.on(this._element, EVENT_TOUCHMOVE, (event) => move(event));\n EventHandler.on(this._element, EVENT_TOUCHEND, (event) => end(event));\n }\n }\n\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return;\n }\n\n const direction = KEY_TO_DIRECTION[event.key];\n if (direction) {\n event.preventDefault();\n this._slide(direction);\n }\n }\n\n _getItemIndex(element) {\n this._items =\n element && element.parentNode ? SelectorEngine.find(SELECTOR_ITEM, element.parentNode) : [];\n\n return this._items.indexOf(element);\n }\n\n _getItemByOrder(order, activeElement) {\n const isNext = order === ORDER_NEXT;\n return getNextActiveElement(this._items, activeElement, isNext, this._config.wrap);\n }\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex = this._getItemIndex(relatedTarget);\n const fromIndex = this._getItemIndex(\n SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element)\n );\n\n return EventHandler.trigger(this._element, EVENT_SLIDE, {\n relatedTarget,\n direction: eventDirectionName,\n from: fromIndex,\n to: targetIndex,\n });\n }\n\n _setActiveIndicatorElement(element) {\n if (this._indicatorsElement) {\n const activeIndicator = SelectorEngine.findOne(SELECTOR_ACTIVE, this._indicatorsElement);\n\n activeIndicator.classList.remove(CLASS_NAME_ACTIVE);\n activeIndicator.removeAttribute('aria-current');\n\n const indicators = SelectorEngine.find(SELECTOR_INDICATOR, this._indicatorsElement);\n\n for (let i = 0; i < indicators.length; i++) {\n if (\n Number.parseInt(indicators[i].getAttribute('data-mdb-slide-to'), 10) ===\n this._getItemIndex(element)\n ) {\n indicators[i].classList.add(CLASS_NAME_ACTIVE);\n indicators[i].setAttribute('aria-current', 'true');\n break;\n }\n }\n }\n }\n\n _updateInterval() {\n const element =\n this._activeElement || SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element);\n\n if (!element) {\n return;\n }\n\n const elementInterval = Number.parseInt(element.getAttribute('data-mdb-interval'), 10);\n\n if (elementInterval) {\n this._config.defaultInterval = this._config.defaultInterval || this._config.interval;\n this._config.interval = elementInterval;\n } else {\n this._config.interval = this._config.defaultInterval || this._config.interval;\n }\n }\n\n _slide(directionOrOrder, element) {\n const order = this._directionToOrder(directionOrOrder);\n const activeElement = SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element);\n const activeElementIndex = this._getItemIndex(activeElement);\n const nextElement = element || this._getItemByOrder(order, activeElement);\n\n const nextElementIndex = this._getItemIndex(nextElement);\n const isCycling = Boolean(this._interval);\n\n const isNext = order === ORDER_NEXT;\n const directionalClassName = isNext ? CLASS_NAME_START : CLASS_NAME_END;\n const orderClassName = isNext ? CLASS_NAME_NEXT : CLASS_NAME_PREV;\n const eventDirectionName = this._orderToDirection(order);\n\n if (nextElement && nextElement.classList.contains(CLASS_NAME_ACTIVE)) {\n this._isSliding = false;\n return;\n }\n\n if (this._isSliding) {\n return;\n }\n\n const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName);\n if (slideEvent.defaultPrevented) {\n return;\n }\n\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n return;\n }\n\n this._isSliding = true;\n\n if (isCycling) {\n this.pause();\n }\n\n this._setActiveIndicatorElement(nextElement);\n this._activeElement = nextElement;\n\n const triggerSlidEvent = () => {\n EventHandler.trigger(this._element, EVENT_SLID, {\n relatedTarget: nextElement,\n direction: eventDirectionName,\n from: activeElementIndex,\n to: nextElementIndex,\n });\n };\n\n if (this._element.classList.contains(CLASS_NAME_SLIDE)) {\n nextElement.classList.add(orderClassName);\n\n reflow(nextElement);\n\n activeElement.classList.add(directionalClassName);\n nextElement.classList.add(directionalClassName);\n\n const completeCallBack = () => {\n nextElement.classList.remove(directionalClassName, orderClassName);\n nextElement.classList.add(CLASS_NAME_ACTIVE);\n\n activeElement.classList.remove(CLASS_NAME_ACTIVE, orderClassName, directionalClassName);\n\n this._isSliding = false;\n\n setTimeout(triggerSlidEvent, 0);\n };\n\n this._queueCallback(completeCallBack, activeElement, true);\n } else {\n activeElement.classList.remove(CLASS_NAME_ACTIVE);\n nextElement.classList.add(CLASS_NAME_ACTIVE);\n\n this._isSliding = false;\n triggerSlidEvent();\n }\n\n if (isCycling) {\n this.cycle();\n }\n }\n\n _directionToOrder(direction) {\n if (![DIRECTION_RIGHT, DIRECTION_LEFT].includes(direction)) {\n return direction;\n }\n\n if (isRTL()) {\n return direction === DIRECTION_LEFT ? ORDER_PREV : ORDER_NEXT;\n }\n\n return direction === DIRECTION_LEFT ? ORDER_NEXT : ORDER_PREV;\n }\n\n _orderToDirection(order) {\n if (![ORDER_NEXT, ORDER_PREV].includes(order)) {\n return order;\n }\n\n if (isRTL()) {\n return order === ORDER_PREV ? DIRECTION_LEFT : DIRECTION_RIGHT;\n }\n\n return order === ORDER_PREV ? DIRECTION_RIGHT : DIRECTION_LEFT;\n }\n\n // Static\n\n static carouselInterface(element, config) {\n const data = Carousel.getOrCreateInstance(element, config);\n\n let { _config } = data;\n if (typeof config === 'object') {\n _config = {\n ..._config,\n ...config,\n };\n }\n\n const action = typeof config === 'string' ? config : _config.slide;\n\n if (typeof config === 'number') {\n data.to(config);\n } else if (typeof action === 'string') {\n if (typeof data[action] === 'undefined') {\n throw new TypeError(`No method named \"${action}\"`);\n }\n\n data[action]();\n } else if (_config.interval && _config.ride) {\n data.pause();\n data.cycle();\n }\n }\n\n static jQueryInterface(config) {\n return this.each(function () {\n Carousel.carouselInterface(this, config);\n });\n }\n\n static dataApiClickHandler(event) {\n const target = getElementFromSelector(this);\n\n if (!target || !target.classList.contains(CLASS_NAME_CAROUSEL)) {\n return;\n }\n\n const config = {\n ...Manipulator.getDataAttributes(target),\n ...Manipulator.getDataAttributes(this),\n };\n const slideIndex = this.getAttribute('data-mdb-slide-to');\n\n if (slideIndex) {\n config.interval = false;\n }\n\n Carousel.carouselInterface(target, config);\n\n if (slideIndex) {\n Carousel.getInstance(target).to(slideIndex);\n }\n\n event.preventDefault();\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_SLIDE, Carousel.dataApiClickHandler);\n\nEventHandler.on(window, EVENT_LOAD_DATA_API, () => {\n const carousels = SelectorEngine.find(SELECTOR_DATA_RIDE);\n\n for (let i = 0, len = carousels.length; i < len; i++) {\n Carousel.carouselInterface(carousels[i], Carousel.getInstance(carousels[i]));\n }\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .Carousel to jQuery only if jQuery is present\n */\n\ndefineJQueryPlugin(Carousel);\n\nexport default Carousel;\n","import { getjQuery, onDOMContentLoaded } from '../mdb/util/index';\nimport EventHandler from '../mdb/dom/event-handler';\nimport SelectorEngine from '../mdb/dom/selector-engine';\nimport Manipulator from '../mdb/dom/manipulator';\nimport BSCarousel from '../bootstrap/mdb-prefix/carousel';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'carousel';\nconst DATA_KEY = `mdb.${NAME}`;\nconst EVENT_KEY = `.${DATA_KEY}`;\n\nconst EVENT_SLIDE_BS = 'slide.bs.carousel';\nconst EVENT_SLID_BS = 'slid.bs.carousel';\n\nconst EVENT_SLIDE = `slide${EVENT_KEY}`;\nconst EVENT_SLID = `slid${EVENT_KEY}`;\n\nconst SELECTOR_DATA_RIDE = '[data-mdb-ride=\"carousel\"]';\n\nclass Carousel extends BSCarousel {\n constructor(element, data) {\n super(element, data);\n\n this._init();\n }\n\n dispose() {\n EventHandler.off(this._element, EVENT_SLIDE_BS);\n EventHandler.off(this._element, EVENT_SLID_BS);\n\n super.dispose();\n }\n\n // Getters\n static get NAME() {\n return NAME;\n }\n\n // Private\n _init() {\n this._bindSlideEvent();\n this._bindSlidEvent();\n }\n\n _bindSlideEvent() {\n EventHandler.on(this._element, EVENT_SLIDE_BS, (e) => {\n EventHandler.trigger(this._element, EVENT_SLIDE, {\n relatedTarget: e.relatedTarget,\n direction: e.direction,\n from: e.from,\n to: e.to,\n });\n });\n }\n\n _bindSlidEvent() {\n EventHandler.on(this._element, EVENT_SLID_BS, (e) => {\n EventHandler.trigger(this._element, EVENT_SLID, {\n relatedTarget: e.relatedTarget,\n direction: e.direction,\n from: e.from,\n to: e.to,\n });\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation - auto initialization\n * ------------------------------------------------------------------------\n */\n\nSelectorEngine.find(SELECTOR_DATA_RIDE).forEach((el) => {\n let instance = Carousel.getInstance(el);\n if (!instance) {\n instance = new Carousel(el, Manipulator.getDataAttributes(el));\n }\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .rating to jQuery only if jQuery is present\n */\n\nonDOMContentLoaded(() => {\n const $ = getjQuery();\n\n if ($) {\n const JQUERY_NO_CONFLICT = $.fn[NAME];\n $.fn[NAME] = Carousel.jQueryInterface;\n $.fn[NAME].Constructor = Carousel;\n $.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT;\n return Carousel.jQueryInterface;\n };\n }\n});\n\nexport default Carousel;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n defineJQueryPlugin,\n getElementFromSelector,\n isRTL,\n isVisible,\n reflow,\n typeCheckConfig,\n} from './util/index';\nimport EventHandler from './dom/event-handler';\nimport Manipulator from './dom/manipulator';\nimport SelectorEngine from './dom/selector-engine';\nimport ScrollBarHelper from './util/scrollbar';\nimport BaseComponent from './base-component';\nimport Backdrop from './util/backdrop';\nimport FocusTrap from './util/focustrap';\nimport { enableDismissTrigger } from './util/component-functions';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'modal';\nconst DATA_KEY = 'bs.modal';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst DATA_API_KEY = '.data-api';\nconst ESCAPE_KEY = 'Escape';\n\nconst Default = {\n backdrop: true,\n keyboard: true,\n focus: true,\n};\n\nconst DefaultType = {\n backdrop: '(boolean|string)',\n keyboard: 'boolean',\n focus: 'boolean',\n};\n\nconst EVENT_HIDE = `hide${EVENT_KEY}`;\nconst EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY}`;\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`;\nconst EVENT_SHOW = `show${EVENT_KEY}`;\nconst EVENT_SHOWN = `shown${EVENT_KEY}`;\nconst EVENT_RESIZE = `resize${EVENT_KEY}`;\nconst EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`;\nconst EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`;\nconst EVENT_MOUSEUP_DISMISS = `mouseup.dismiss${EVENT_KEY}`;\nconst EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY}`;\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;\n\nconst CLASS_NAME_OPEN = 'modal-open';\nconst CLASS_NAME_FADE = 'fade';\nconst CLASS_NAME_SHOW = 'show';\nconst CLASS_NAME_STATIC = 'modal-static';\n\nconst OPEN_SELECTOR = '.modal.show';\nconst SELECTOR_DIALOG = '.modal-dialog';\nconst SELECTOR_MODAL_BODY = '.modal-body';\nconst SELECTOR_DATA_TOGGLE = '[data-mdb-toggle=\"modal\"]';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Modal extends BaseComponent {\n constructor(element, config) {\n super(element);\n\n this._config = this._getConfig(config);\n this._dialog = SelectorEngine.findOne(SELECTOR_DIALOG, this._element);\n this._backdrop = this._initializeBackDrop();\n this._focustrap = this._initializeFocusTrap();\n this._isShown = false;\n this._ignoreBackdropClick = false;\n this._isTransitioning = false;\n this._scrollBar = new ScrollBarHelper();\n }\n\n // Getters\n\n static get Default() {\n return Default;\n }\n\n static get NAME() {\n return NAME;\n }\n\n // Public\n\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget);\n }\n\n show(relatedTarget) {\n if (this._isShown || this._isTransitioning) {\n return;\n }\n\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, {\n relatedTarget,\n });\n\n if (showEvent.defaultPrevented) {\n return;\n }\n\n this._isShown = true;\n\n if (this._isAnimated()) {\n this._isTransitioning = true;\n }\n\n this._scrollBar.hide();\n\n document.body.classList.add(CLASS_NAME_OPEN);\n\n this._adjustDialog();\n\n this._setEscapeEvent();\n this._setResizeEvent();\n\n EventHandler.on(this._dialog, EVENT_MOUSEDOWN_DISMISS, () => {\n EventHandler.one(this._element, EVENT_MOUSEUP_DISMISS, (event) => {\n if (event.target === this._element) {\n this._ignoreBackdropClick = true;\n }\n });\n });\n\n this._showBackdrop(() => this._showElement(relatedTarget));\n }\n\n hide() {\n if (!this._isShown || this._isTransitioning) {\n return;\n }\n\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE);\n\n if (hideEvent.defaultPrevented) {\n return;\n }\n\n this._isShown = false;\n const isAnimated = this._isAnimated();\n\n if (isAnimated) {\n this._isTransitioning = true;\n }\n\n this._setEscapeEvent();\n this._setResizeEvent();\n\n this._focustrap.deactivate();\n\n this._element.classList.remove(CLASS_NAME_SHOW);\n\n EventHandler.off(this._element, EVENT_CLICK_DISMISS);\n EventHandler.off(this._dialog, EVENT_MOUSEDOWN_DISMISS);\n\n this._queueCallback(() => this._hideModal(), this._element, isAnimated);\n }\n\n dispose() {\n [window, this._dialog].forEach((htmlElement) => EventHandler.off(htmlElement, EVENT_KEY));\n\n this._backdrop.dispose();\n this._focustrap.deactivate();\n super.dispose();\n }\n\n handleUpdate() {\n this._adjustDialog();\n }\n\n // Private\n\n _initializeBackDrop() {\n return new Backdrop({\n isVisible: Boolean(this._config.backdrop), // 'static' option will be translated to true, and booleans will keep their value\n isAnimated: this._isAnimated(),\n });\n }\n\n _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element,\n });\n }\n\n _getConfig(config) {\n config = {\n ...Default,\n ...Manipulator.getDataAttributes(this._element),\n ...(typeof config === 'object' ? config : {}),\n };\n typeCheckConfig(NAME, config, DefaultType);\n return config;\n }\n\n _showElement(relatedTarget) {\n const isAnimated = this._isAnimated();\n const modalBody = SelectorEngine.findOne(SELECTOR_MODAL_BODY, this._dialog);\n\n if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {\n // Don't move modal's DOM position\n document.body.append(this._element);\n }\n\n this._element.style.display = 'block';\n this._element.removeAttribute('aria-hidden');\n this._element.setAttribute('aria-modal', true);\n this._element.setAttribute('role', 'dialog');\n this._element.scrollTop = 0;\n\n if (modalBody) {\n modalBody.scrollTop = 0;\n }\n\n if (isAnimated) {\n reflow(this._element);\n }\n\n this._element.classList.add(CLASS_NAME_SHOW);\n\n const transitionComplete = () => {\n if (this._config.focus) {\n this._focustrap.activate();\n }\n\n this._isTransitioning = false;\n EventHandler.trigger(this._element, EVENT_SHOWN, {\n relatedTarget,\n });\n };\n\n this._queueCallback(transitionComplete, this._dialog, isAnimated);\n }\n\n _setEscapeEvent() {\n if (this._isShown) {\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, (event) => {\n if (this._config.keyboard && event.key === ESCAPE_KEY) {\n event.preventDefault();\n this.hide();\n } else if (!this._config.keyboard && event.key === ESCAPE_KEY) {\n this._triggerBackdropTransition();\n }\n });\n } else {\n EventHandler.off(this._element, EVENT_KEYDOWN_DISMISS);\n }\n }\n\n _setResizeEvent() {\n if (this._isShown) {\n EventHandler.on(window, EVENT_RESIZE, () => this._adjustDialog());\n } else {\n EventHandler.off(window, EVENT_RESIZE);\n }\n }\n\n _hideModal() {\n this._element.style.display = 'none';\n this._element.setAttribute('aria-hidden', true);\n this._element.removeAttribute('aria-modal');\n this._element.removeAttribute('role');\n this._isTransitioning = false;\n this._backdrop.hide(() => {\n document.body.classList.remove(CLASS_NAME_OPEN);\n this._resetAdjustments();\n this._scrollBar.reset();\n EventHandler.trigger(this._element, EVENT_HIDDEN);\n });\n }\n\n _showBackdrop(callback) {\n EventHandler.on(this._element, EVENT_CLICK_DISMISS, (event) => {\n if (this._ignoreBackdropClick) {\n this._ignoreBackdropClick = false;\n return;\n }\n\n if (event.target !== event.currentTarget) {\n return;\n }\n\n if (this._config.backdrop === true) {\n this.hide();\n } else if (this._config.backdrop === 'static') {\n this._triggerBackdropTransition();\n }\n });\n\n this._backdrop.show(callback);\n }\n\n _isAnimated() {\n return this._element.classList.contains(CLASS_NAME_FADE);\n }\n\n _triggerBackdropTransition() {\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED);\n if (hideEvent.defaultPrevented) {\n return;\n }\n\n const { classList, scrollHeight, style } = this._element;\n const isModalOverflowing = scrollHeight > document.documentElement.clientHeight;\n\n // return if the following background transition hasn't yet completed\n if (\n (!isModalOverflowing && style.overflowY === 'hidden') ||\n classList.contains(CLASS_NAME_STATIC)\n ) {\n return;\n }\n\n if (!isModalOverflowing) {\n style.overflowY = 'hidden';\n }\n\n classList.add(CLASS_NAME_STATIC);\n this._queueCallback(() => {\n classList.remove(CLASS_NAME_STATIC);\n if (!isModalOverflowing) {\n this._queueCallback(() => {\n style.overflowY = '';\n }, this._dialog);\n }\n }, this._dialog);\n\n this._element.focus();\n }\n\n // ----------------------------------------------------------------------\n // the following methods are used to handle overflowing modals\n // ----------------------------------------------------------------------\n\n _adjustDialog() {\n const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;\n const scrollbarWidth = this._scrollBar.getWidth();\n const isBodyOverflowing = scrollbarWidth > 0;\n\n if (\n (!isBodyOverflowing && isModalOverflowing && !isRTL()) ||\n (isBodyOverflowing && !isModalOverflowing && isRTL())\n ) {\n this._element.style.paddingLeft = `${scrollbarWidth}px`;\n }\n\n if (\n (isBodyOverflowing && !isModalOverflowing && !isRTL()) ||\n (!isBodyOverflowing && isModalOverflowing && isRTL())\n ) {\n this._element.style.paddingRight = `${scrollbarWidth}px`;\n }\n }\n\n _resetAdjustments() {\n this._element.style.paddingLeft = '';\n this._element.style.paddingRight = '';\n }\n\n // Static\n\n static jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n const data = Modal.getOrCreateInstance(this, config);\n\n if (typeof config !== 'string') {\n return;\n }\n\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n\n data[config](relatedTarget);\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n const target = getElementFromSelector(this);\n\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n\n EventHandler.one(target, EVENT_SHOW, (showEvent) => {\n if (showEvent.defaultPrevented) {\n // only register focus restorer if modal will actually get shown\n return;\n }\n\n EventHandler.one(target, EVENT_HIDDEN, () => {\n if (isVisible(this)) {\n this.focus();\n }\n });\n });\n\n // avoid conflict when clicking moddal toggler while another one is open\n const allreadyOpenedModals = SelectorEngine.find(OPEN_SELECTOR);\n allreadyOpenedModals.forEach((modal) => {\n if (!modal.classList.contains('modal-non-invasive-show')) {\n Modal.getInstance(modal).hide();\n }\n });\n\n const data = Modal.getOrCreateInstance(target);\n\n data.toggle(this);\n});\n\nenableDismissTrigger(Modal);\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .Modal to jQuery only if jQuery is present\n */\n\ndefineJQueryPlugin(Modal);\n\nexport default Modal;\n","import { getjQuery, getSelectorFromElement, onDOMContentLoaded } from '../mdb/util/index';\nimport EventHandler from '../mdb/dom/event-handler';\nimport SelectorEngine from '../mdb/dom/selector-engine';\nimport BSModal from '../bootstrap/mdb-prefix/modal';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'modal';\nconst DATA_KEY = `mdb.${NAME}`;\nconst EVENT_KEY = `.${DATA_KEY}`;\n\nconst EVENT_HIDE_BS = 'hide.bs.modal';\nconst EVENT_HIDE_PREVENTED_BS = 'hidePrevented.bs.modal';\nconst EVENT_HIDDEN_BS = 'hidden.bs.modal';\nconst EVENT_SHOW_BS = 'show.bs.modal';\nconst EVENT_SHOWN_BS = 'shown.bs.modal';\n\nconst EVENT_HIDE = `hide${EVENT_KEY}`;\nconst EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY}`;\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`;\nconst EVENT_SHOW = `show${EVENT_KEY}`;\nconst EVENT_SHOWN = `shown${EVENT_KEY}`;\n\nconst SELECTOR_DATA_TOGGLE = '[data-mdb-toggle=\"modal\"]';\n\nclass Modal extends BSModal {\n constructor(element, data) {\n super(element, data);\n\n this._init();\n }\n\n dispose() {\n EventHandler.off(this._element, EVENT_SHOW_BS);\n EventHandler.off(this._element, EVENT_SHOWN_BS);\n EventHandler.off(this._element, EVENT_HIDE_BS);\n EventHandler.off(this._element, EVENT_HIDDEN_BS);\n EventHandler.off(this._element, EVENT_HIDE_PREVENTED_BS);\n\n super.dispose();\n }\n\n // Getters\n static get NAME() {\n return NAME;\n }\n\n // Private\n _init() {\n this._bindShowEvent();\n this._bindShownEvent();\n this._bindHideEvent();\n this._bindHiddenEvent();\n this._bindHidePreventedEvent();\n }\n\n _bindShowEvent() {\n EventHandler.on(this._element, EVENT_SHOW_BS, (e) => {\n EventHandler.trigger(this._element, EVENT_SHOW, { relatedTarget: e.relatedTarget });\n });\n }\n\n _bindShownEvent() {\n EventHandler.on(this._element, EVENT_SHOWN_BS, (e) => {\n EventHandler.trigger(this._element, EVENT_SHOWN, { relatedTarget: e.relatedTarget });\n });\n }\n\n _bindHideEvent() {\n EventHandler.on(this._element, EVENT_HIDE_BS, () => {\n EventHandler.trigger(this._element, EVENT_HIDE);\n });\n }\n\n _bindHiddenEvent() {\n EventHandler.on(this._element, EVENT_HIDDEN_BS, () => {\n EventHandler.trigger(this._element, EVENT_HIDDEN);\n });\n }\n\n _bindHidePreventedEvent() {\n EventHandler.on(this._element, EVENT_HIDE_PREVENTED_BS, () => {\n EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED);\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation - auto initialization\n * ------------------------------------------------------------------------\n */\n\nSelectorEngine.find(SELECTOR_DATA_TOGGLE).forEach((el) => {\n const selector = getSelectorFromElement(el);\n const selectorElement = SelectorEngine.findOne(selector);\n\n let instance = Modal.getInstance(selectorElement);\n if (!instance) {\n instance = new Modal(selectorElement);\n }\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .modal to jQuery only if jQuery is present\n */\n\nonDOMContentLoaded(() => {\n const $ = getjQuery();\n\n if ($) {\n const JQUERY_NO_CONFLICT = $.fn[NAME];\n $.fn[NAME] = Modal.jQueryInterface;\n $.fn[NAME].Constructor = Modal;\n $.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT;\n return Modal.jQueryInterface;\n };\n }\n});\n\nexport default Modal;\n","export var top = 'top';\nexport var bottom = 'bottom';\nexport var right = 'right';\nexport var left = 'left';\nexport var auto = 'auto';\nexport var basePlacements = [top, bottom, right, left];\nexport var start = 'start';\nexport var end = 'end';\nexport var clippingParents = 'clippingParents';\nexport var viewport = 'viewport';\nexport var popper = 'popper';\nexport var reference = 'reference';\nexport var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) {\n return acc.concat([placement + \"-\" + start, placement + \"-\" + end]);\n}, []);\nexport var placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) {\n return acc.concat([placement, placement + \"-\" + start, placement + \"-\" + end]);\n}, []); // modifiers that need to read the DOM\n\nexport var beforeRead = 'beforeRead';\nexport var read = 'read';\nexport var afterRead = 'afterRead'; // pure-logic modifiers\n\nexport var beforeMain = 'beforeMain';\nexport var main = 'main';\nexport var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state)\n\nexport var beforeWrite = 'beforeWrite';\nexport var write = 'write';\nexport var afterWrite = 'afterWrite';\nexport var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];","export default function getNodeName(element) {\n return element ? (element.nodeName || '').toLowerCase() : null;\n}","export default function getWindow(node) {\n if (node == null) {\n return window;\n }\n\n if (node.toString() !== '[object Window]') {\n var ownerDocument = node.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView || window : window;\n }\n\n return node;\n}","import getWindow from \"./getWindow.js\";\n\nfunction isElement(node) {\n var OwnElement = getWindow(node).Element;\n return node instanceof OwnElement || node instanceof Element;\n}\n\nfunction isHTMLElement(node) {\n var OwnElement = getWindow(node).HTMLElement;\n return node instanceof OwnElement || node instanceof HTMLElement;\n}\n\nfunction isShadowRoot(node) {\n // IE 11 has no ShadowRoot\n if (typeof ShadowRoot === 'undefined') {\n return false;\n }\n\n var OwnElement = getWindow(node).ShadowRoot;\n return node instanceof OwnElement || node instanceof ShadowRoot;\n}\n\nexport { isElement, isHTMLElement, isShadowRoot };","import getNodeName from \"../dom-utils/getNodeName.js\";\nimport { isHTMLElement } from \"../dom-utils/instanceOf.js\"; // This modifier takes the styles prepared by the `computeStyles` modifier\n// and applies them to the HTMLElements such as popper and arrow\n\nfunction applyStyles(_ref) {\n var state = _ref.state;\n Object.keys(state.elements).forEach(function (name) {\n var style = state.styles[name] || {};\n var attributes = state.attributes[name] || {};\n var element = state.elements[name]; // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n } // Flow doesn't support to extend this property, but it's the most\n // effective way to apply styles to an HTMLElement\n // $FlowFixMe[cannot-write]\n\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (name) {\n var value = attributes[name];\n\n if (value === false) {\n element.removeAttribute(name);\n } else {\n element.setAttribute(name, value === true ? '' : value);\n }\n });\n });\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state;\n var initialStyles = {\n popper: {\n position: state.options.strategy,\n left: '0',\n top: '0',\n margin: '0'\n },\n arrow: {\n position: 'absolute'\n },\n reference: {}\n };\n Object.assign(state.elements.popper.style, initialStyles.popper);\n state.styles = initialStyles;\n\n if (state.elements.arrow) {\n Object.assign(state.elements.arrow.style, initialStyles.arrow);\n }\n\n return function () {\n Object.keys(state.elements).forEach(function (name) {\n var element = state.elements[name];\n var attributes = state.attributes[name] || {};\n var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them\n\n var style = styleProperties.reduce(function (style, property) {\n style[property] = '';\n return style;\n }, {}); // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n }\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (attribute) {\n element.removeAttribute(attribute);\n });\n });\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'applyStyles',\n enabled: true,\n phase: 'write',\n fn: applyStyles,\n effect: effect,\n requires: ['computeStyles']\n};","import { auto } from \"../enums.js\";\nexport default function getBasePlacement(placement) {\n return placement.split('-')[0];\n}","export var max = Math.max;\nexport var min = Math.min;\nexport var round = Math.round;","import { isHTMLElement } from \"./instanceOf.js\";\nimport { round } from \"../utils/math.js\";\nexport default function getBoundingClientRect(element, includeScale) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n\n var rect = element.getBoundingClientRect();\n var scaleX = 1;\n var scaleY = 1;\n\n if (isHTMLElement(element) && includeScale) {\n var offsetHeight = element.offsetHeight;\n var offsetWidth = element.offsetWidth; // Do not attempt to divide by 0, otherwise we get `Infinity` as scale\n // Fallback to 1 in case both values are `0`\n\n if (offsetWidth > 0) {\n scaleX = round(rect.width) / offsetWidth || 1;\n }\n\n if (offsetHeight > 0) {\n scaleY = round(rect.height) / offsetHeight || 1;\n }\n }\n\n return {\n width: rect.width / scaleX,\n height: rect.height / scaleY,\n top: rect.top / scaleY,\n right: rect.right / scaleX,\n bottom: rect.bottom / scaleY,\n left: rect.left / scaleX,\n x: rect.left / scaleX,\n y: rect.top / scaleY\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\"; // Returns the layout rect of an element relative to its offsetParent. Layout\n// means it doesn't take into account transforms.\n\nexport default function getLayoutRect(element) {\n var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed.\n // Fixes https://github.com/popperjs/popper-core/issues/1223\n\n var width = element.offsetWidth;\n var height = element.offsetHeight;\n\n if (Math.abs(clientRect.width - width) <= 1) {\n width = clientRect.width;\n }\n\n if (Math.abs(clientRect.height - height) <= 1) {\n height = clientRect.height;\n }\n\n return {\n x: element.offsetLeft,\n y: element.offsetTop,\n width: width,\n height: height\n };\n}","import { isShadowRoot } from \"./instanceOf.js\";\nexport default function contains(parent, child) {\n var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method\n\n if (parent.contains(child)) {\n return true;\n } // then fallback to custom implementation with Shadow DOM support\n else if (rootNode && isShadowRoot(rootNode)) {\n var next = child;\n\n do {\n if (next && parent.isSameNode(next)) {\n return true;\n } // $FlowFixMe[prop-missing]: need a better way to handle this...\n\n\n next = next.parentNode || next.host;\n } while (next);\n } // Give up, the result is false\n\n\n return false;\n}","import getWindow from \"./getWindow.js\";\nexport default function getComputedStyle(element) {\n return getWindow(element).getComputedStyle(element);\n}","import { isElement } from \"./instanceOf.js\";\nexport default function getDocumentElement(element) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing]\n element.document) || window.document).documentElement;\n}","import getNodeName from \"./getNodeName.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport { isShadowRoot } from \"./instanceOf.js\";\nexport default function getParentNode(element) {\n if (getNodeName(element) === 'html') {\n return element;\n }\n\n return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle\n // $FlowFixMe[incompatible-return]\n // $FlowFixMe[prop-missing]\n element.assignedSlot || // step into the shadow DOM of the parent of a slotted node\n element.parentNode || ( // DOM Element detected\n isShadowRoot(element) ? element.host : null) || // ShadowRoot detected\n // $FlowFixMe[incompatible-call]: HTMLElement is a Node\n getDocumentElement(element) // fallback\n\n );\n}","import getWindow from \"./getWindow.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isHTMLElement, isShadowRoot } from \"./instanceOf.js\";\nimport isTableElement from \"./isTableElement.js\";\nimport getParentNode from \"./getParentNode.js\";\n\nfunction getTrueOffsetParent(element) {\n if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837\n getComputedStyle(element).position === 'fixed') {\n return null;\n }\n\n return element.offsetParent;\n} // `.offsetParent` reports `null` for fixed elements, while absolute elements\n// return the containing block\n\n\nfunction getContainingBlock(element) {\n var isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') !== -1;\n var isIE = navigator.userAgent.indexOf('Trident') !== -1;\n\n if (isIE && isHTMLElement(element)) {\n // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport\n var elementCss = getComputedStyle(element);\n\n if (elementCss.position === 'fixed') {\n return null;\n }\n }\n\n var currentNode = getParentNode(element);\n\n if (isShadowRoot(currentNode)) {\n currentNode = currentNode.host;\n }\n\n while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) {\n var css = getComputedStyle(currentNode); // This is non-exhaustive but covers the most common CSS properties that\n // create a containing block.\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n\n if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {\n return currentNode;\n } else {\n currentNode = currentNode.parentNode;\n }\n }\n\n return null;\n} // Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\n\n\nexport default function getOffsetParent(element) {\n var window = getWindow(element);\n var offsetParent = getTrueOffsetParent(element);\n\n while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === 'static') {\n offsetParent = getTrueOffsetParent(offsetParent);\n }\n\n if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle(offsetParent).position === 'static')) {\n return window;\n }\n\n return offsetParent || getContainingBlock(element) || window;\n}","import getNodeName from \"./getNodeName.js\";\nexport default function isTableElement(element) {\n return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0;\n}","export default function getMainAxisFromPlacement(placement) {\n return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';\n}","import { max as mathMax, min as mathMin } from \"./math.js\";\nexport function within(min, value, max) {\n return mathMax(min, mathMin(value, max));\n}\nexport function withinMaxClamp(min, value, max) {\n var v = within(min, value, max);\n return v > max ? max : v;\n}","export default function getFreshSideObject() {\n return {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n };\n}","import getFreshSideObject from \"./getFreshSideObject.js\";\nexport default function mergePaddingObject(paddingObject) {\n return Object.assign({}, getFreshSideObject(), paddingObject);\n}","export default function expandToHashMap(value, keys) {\n return keys.reduce(function (hashMap, key) {\n hashMap[key] = value;\n return hashMap;\n }, {});\n}","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport contains from \"../dom-utils/contains.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport { within } from \"../utils/within.js\";\nimport mergePaddingObject from \"../utils/mergePaddingObject.js\";\nimport expandToHashMap from \"../utils/expandToHashMap.js\";\nimport { left, right, basePlacements, top, bottom } from \"../enums.js\";\nimport { isHTMLElement } from \"../dom-utils/instanceOf.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar toPaddingObject = function toPaddingObject(padding, state) {\n padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, {\n placement: state.placement\n })) : padding;\n return mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n};\n\nfunction arrow(_ref) {\n var _state$modifiersData$;\n\n var state = _ref.state,\n name = _ref.name,\n options = _ref.options;\n var arrowElement = state.elements.arrow;\n var popperOffsets = state.modifiersData.popperOffsets;\n var basePlacement = getBasePlacement(state.placement);\n var axis = getMainAxisFromPlacement(basePlacement);\n var isVertical = [left, right].indexOf(basePlacement) >= 0;\n var len = isVertical ? 'height' : 'width';\n\n if (!arrowElement || !popperOffsets) {\n return;\n }\n\n var paddingObject = toPaddingObject(options.padding, state);\n var arrowRect = getLayoutRect(arrowElement);\n var minProp = axis === 'y' ? top : left;\n var maxProp = axis === 'y' ? bottom : right;\n var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len];\n var startDiff = popperOffsets[axis] - state.rects.reference[axis];\n var arrowOffsetParent = getOffsetParent(arrowElement);\n var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0;\n var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is\n // outside of the popper bounds\n\n var min = paddingObject[minProp];\n var max = clientSize - arrowRect[len] - paddingObject[maxProp];\n var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference;\n var offset = within(min, center, max); // Prevents breaking syntax highlighting...\n\n var axisProp = axis;\n state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$);\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state,\n options = _ref2.options;\n var _options$element = options.element,\n arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element;\n\n if (arrowElement == null) {\n return;\n } // CSS selector\n\n\n if (typeof arrowElement === 'string') {\n arrowElement = state.elements.popper.querySelector(arrowElement);\n\n if (!arrowElement) {\n return;\n }\n }\n\n if (process.env.NODE_ENV !== \"production\") {\n if (!isHTMLElement(arrowElement)) {\n console.error(['Popper: \"arrow\" element must be an HTMLElement (not an SVGElement).', 'To use an SVG arrow, wrap it in an HTMLElement that will be used as', 'the arrow.'].join(' '));\n }\n }\n\n if (!contains(state.elements.popper, arrowElement)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(['Popper: \"arrow\" modifier\\'s `element` must be a child of the popper', 'element.'].join(' '));\n }\n\n return;\n }\n\n state.elements.arrow = arrowElement;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'arrow',\n enabled: true,\n phase: 'main',\n fn: arrow,\n effect: effect,\n requires: ['popperOffsets'],\n requiresIfExists: ['preventOverflow']\n};","export default function getVariation(placement) {\n return placement.split('-')[1];\n}","import { top, left, right, bottom, end } from \"../enums.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getWindow from \"../dom-utils/getWindow.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getComputedStyle from \"../dom-utils/getComputedStyle.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport { round } from \"../utils/math.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar unsetSides = {\n top: 'auto',\n right: 'auto',\n bottom: 'auto',\n left: 'auto'\n}; // Round the offsets to the nearest suitable subpixel based on the DPR.\n// Zooming can change the DPR, but it seems to report a value that will\n// cleanly divide the values into the appropriate subpixels.\n\nfunction roundOffsetsByDPR(_ref) {\n var x = _ref.x,\n y = _ref.y;\n var win = window;\n var dpr = win.devicePixelRatio || 1;\n return {\n x: round(x * dpr) / dpr || 0,\n y: round(y * dpr) / dpr || 0\n };\n}\n\nexport function mapToStyles(_ref2) {\n var _Object$assign2;\n\n var popper = _ref2.popper,\n popperRect = _ref2.popperRect,\n placement = _ref2.placement,\n variation = _ref2.variation,\n offsets = _ref2.offsets,\n position = _ref2.position,\n gpuAcceleration = _ref2.gpuAcceleration,\n adaptive = _ref2.adaptive,\n roundOffsets = _ref2.roundOffsets,\n isFixed = _ref2.isFixed;\n var _offsets$x = offsets.x,\n x = _offsets$x === void 0 ? 0 : _offsets$x,\n _offsets$y = offsets.y,\n y = _offsets$y === void 0 ? 0 : _offsets$y;\n\n var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({\n x: x,\n y: y\n }) : {\n x: x,\n y: y\n };\n\n x = _ref3.x;\n y = _ref3.y;\n var hasX = offsets.hasOwnProperty('x');\n var hasY = offsets.hasOwnProperty('y');\n var sideX = left;\n var sideY = top;\n var win = window;\n\n if (adaptive) {\n var offsetParent = getOffsetParent(popper);\n var heightProp = 'clientHeight';\n var widthProp = 'clientWidth';\n\n if (offsetParent === getWindow(popper)) {\n offsetParent = getDocumentElement(popper);\n\n if (getComputedStyle(offsetParent).position !== 'static' && position === 'absolute') {\n heightProp = 'scrollHeight';\n widthProp = 'scrollWidth';\n }\n } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it\n\n\n offsetParent = offsetParent;\n\n if (placement === top || (placement === left || placement === right) && variation === end) {\n sideY = bottom;\n var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing]\n offsetParent[heightProp];\n y -= offsetY - popperRect.height;\n y *= gpuAcceleration ? 1 : -1;\n }\n\n if (placement === left || (placement === top || placement === bottom) && variation === end) {\n sideX = right;\n var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing]\n offsetParent[widthProp];\n x -= offsetX - popperRect.width;\n x *= gpuAcceleration ? 1 : -1;\n }\n }\n\n var commonStyles = Object.assign({\n position: position\n }, adaptive && unsetSides);\n\n var _ref4 = roundOffsets === true ? roundOffsetsByDPR({\n x: x,\n y: y\n }) : {\n x: x,\n y: y\n };\n\n x = _ref4.x;\n y = _ref4.y;\n\n if (gpuAcceleration) {\n var _Object$assign;\n\n return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? \"translate(\" + x + \"px, \" + y + \"px)\" : \"translate3d(\" + x + \"px, \" + y + \"px, 0)\", _Object$assign));\n }\n\n return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + \"px\" : '', _Object$assign2[sideX] = hasX ? x + \"px\" : '', _Object$assign2.transform = '', _Object$assign2));\n}\n\nfunction computeStyles(_ref5) {\n var state = _ref5.state,\n options = _ref5.options;\n var _options$gpuAccelerat = options.gpuAcceleration,\n gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat,\n _options$adaptive = options.adaptive,\n adaptive = _options$adaptive === void 0 ? true : _options$adaptive,\n _options$roundOffsets = options.roundOffsets,\n roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets;\n\n if (process.env.NODE_ENV !== \"production\") {\n var transitionProperty = getComputedStyle(state.elements.popper).transitionProperty || '';\n\n if (adaptive && ['transform', 'top', 'right', 'bottom', 'left'].some(function (property) {\n return transitionProperty.indexOf(property) >= 0;\n })) {\n console.warn(['Popper: Detected CSS transitions on at least one of the following', 'CSS properties: \"transform\", \"top\", \"right\", \"bottom\", \"left\".', '\\n\\n', 'Disable the \"computeStyles\" modifier\\'s `adaptive` option to allow', 'for smooth transitions, or remove these properties from the CSS', 'transition declaration on the popper element if only transitioning', 'opacity or background-color for example.', '\\n\\n', 'We recommend using the popper element as a wrapper around an inner', 'element that can have any CSS property transitioned for animations.'].join(' '));\n }\n }\n\n var commonStyles = {\n placement: getBasePlacement(state.placement),\n variation: getVariation(state.placement),\n popper: state.elements.popper,\n popperRect: state.rects.popper,\n gpuAcceleration: gpuAcceleration,\n isFixed: state.options.strategy === 'fixed'\n };\n\n if (state.modifiersData.popperOffsets != null) {\n state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.popperOffsets,\n position: state.options.strategy,\n adaptive: adaptive,\n roundOffsets: roundOffsets\n })));\n }\n\n if (state.modifiersData.arrow != null) {\n state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.arrow,\n position: 'absolute',\n adaptive: false,\n roundOffsets: roundOffsets\n })));\n }\n\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-placement': state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'computeStyles',\n enabled: true,\n phase: 'beforeWrite',\n fn: computeStyles,\n data: {}\n};","import getWindow from \"../dom-utils/getWindow.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar passive = {\n passive: true\n};\n\nfunction effect(_ref) {\n var state = _ref.state,\n instance = _ref.instance,\n options = _ref.options;\n var _options$scroll = options.scroll,\n scroll = _options$scroll === void 0 ? true : _options$scroll,\n _options$resize = options.resize,\n resize = _options$resize === void 0 ? true : _options$resize;\n var window = getWindow(state.elements.popper);\n var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper);\n\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.addEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.addEventListener('resize', instance.update, passive);\n }\n\n return function () {\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.removeEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.removeEventListener('resize', instance.update, passive);\n }\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'eventListeners',\n enabled: true,\n phase: 'write',\n fn: function fn() {},\n effect: effect,\n data: {}\n};","var hash = {\n left: 'right',\n right: 'left',\n bottom: 'top',\n top: 'bottom'\n};\nexport default function getOppositePlacement(placement) {\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}","var hash = {\n start: 'end',\n end: 'start'\n};\nexport default function getOppositeVariationPlacement(placement) {\n return placement.replace(/start|end/g, function (matched) {\n return hash[matched];\n });\n}","import getWindow from \"./getWindow.js\";\nexport default function getWindowScroll(node) {\n var win = getWindow(node);\n var scrollLeft = win.pageXOffset;\n var scrollTop = win.pageYOffset;\n return {\n scrollLeft: scrollLeft,\n scrollTop: scrollTop\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nexport default function getWindowScrollBarX(element) {\n // If has a CSS width greater than the viewport, then this will be\n // incorrect for RTL.\n // Popper 1 is broken in this case and never had a bug report so let's assume\n // it's not an issue. I don't think anyone ever specifies width on \n // anyway.\n // Browsers where the left scrollbar doesn't cause an issue report `0` for\n // this (e.g. Edge 2019, IE11, Safari)\n return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;\n}","import getComputedStyle from \"./getComputedStyle.js\";\nexport default function isScrollParent(element) {\n // Firefox wants us to check `-x` and `-y` variations as well\n var _getComputedStyle = getComputedStyle(element),\n overflow = _getComputedStyle.overflow,\n overflowX = _getComputedStyle.overflowX,\n overflowY = _getComputedStyle.overflowY;\n\n return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);\n}","import getScrollParent from \"./getScrollParent.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport getWindow from \"./getWindow.js\";\nimport isScrollParent from \"./isScrollParent.js\";\n/*\ngiven a DOM element, return the list of all scroll parents, up the list of ancesors\nuntil we get to the top window object. This list is what we attach scroll listeners\nto, because if any of these parent elements scroll, we'll need to re-calculate the\nreference element's position.\n*/\n\nexport default function listScrollParents(element, list) {\n var _element$ownerDocumen;\n\n if (list === void 0) {\n list = [];\n }\n\n var scrollParent = getScrollParent(element);\n var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body);\n var win = getWindow(scrollParent);\n var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent;\n var updatedList = list.concat(target);\n return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here\n updatedList.concat(listScrollParents(getParentNode(target)));\n}","import getParentNode from \"./getParentNode.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nexport default function getScrollParent(node) {\n if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return node.ownerDocument.body;\n }\n\n if (isHTMLElement(node) && isScrollParent(node)) {\n return node;\n }\n\n return getScrollParent(getParentNode(node));\n}","export default function rectToClientRect(rect) {\n return Object.assign({}, rect, {\n left: rect.x,\n top: rect.y,\n right: rect.x + rect.width,\n bottom: rect.y + rect.height\n });\n}","import { viewport } from \"../enums.js\";\nimport getViewportRect from \"./getViewportRect.js\";\nimport getDocumentRect from \"./getDocumentRect.js\";\nimport listScrollParents from \"./listScrollParents.js\";\nimport getOffsetParent from \"./getOffsetParent.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isElement, isHTMLElement } from \"./instanceOf.js\";\nimport getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport contains from \"./contains.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport rectToClientRect from \"../utils/rectToClientRect.js\";\nimport { max, min } from \"../utils/math.js\";\n\nfunction getInnerBoundingClientRect(element) {\n var rect = getBoundingClientRect(element);\n rect.top = rect.top + element.clientTop;\n rect.left = rect.left + element.clientLeft;\n rect.bottom = rect.top + element.clientHeight;\n rect.right = rect.left + element.clientWidth;\n rect.width = element.clientWidth;\n rect.height = element.clientHeight;\n rect.x = rect.left;\n rect.y = rect.top;\n return rect;\n}\n\nfunction getClientRectFromMixedType(element, clippingParent) {\n return clippingParent === viewport ? rectToClientRect(getViewportRect(element)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent) : rectToClientRect(getDocumentRect(getDocumentElement(element)));\n} // A \"clipping parent\" is an overflowable container with the characteristic of\n// clipping (or hiding) overflowing elements with a position different from\n// `initial`\n\n\nfunction getClippingParents(element) {\n var clippingParents = listScrollParents(getParentNode(element));\n var canEscapeClipping = ['absolute', 'fixed'].indexOf(getComputedStyle(element).position) >= 0;\n var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element;\n\n if (!isElement(clipperElement)) {\n return [];\n } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414\n\n\n return clippingParents.filter(function (clippingParent) {\n return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== 'body';\n });\n} // Gets the maximum area that the element is visible in due to any number of\n// clipping parents\n\n\nexport default function getClippingRect(element, boundary, rootBoundary) {\n var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary);\n var clippingParents = [].concat(mainClippingParents, [rootBoundary]);\n var firstClippingParent = clippingParents[0];\n var clippingRect = clippingParents.reduce(function (accRect, clippingParent) {\n var rect = getClientRectFromMixedType(element, clippingParent);\n accRect.top = max(rect.top, accRect.top);\n accRect.right = min(rect.right, accRect.right);\n accRect.bottom = min(rect.bottom, accRect.bottom);\n accRect.left = max(rect.left, accRect.left);\n return accRect;\n }, getClientRectFromMixedType(element, firstClippingParent));\n clippingRect.width = clippingRect.right - clippingRect.left;\n clippingRect.height = clippingRect.bottom - clippingRect.top;\n clippingRect.x = clippingRect.left;\n clippingRect.y = clippingRect.top;\n return clippingRect;\n}","import getWindow from \"./getWindow.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nexport default function getViewportRect(element) {\n var win = getWindow(element);\n var html = getDocumentElement(element);\n var visualViewport = win.visualViewport;\n var width = html.clientWidth;\n var height = html.clientHeight;\n var x = 0;\n var y = 0; // NB: This isn't supported on iOS <= 12. If the keyboard is open, the popper\n // can be obscured underneath it.\n // Also, `html.clientHeight` adds the bottom bar height in Safari iOS, even\n // if it isn't open, so if this isn't available, the popper will be detected\n // to overflow the bottom of the screen too early.\n\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height; // Uses Layout Viewport (like Chrome; Safari does not currently)\n // In Chrome, it returns a value very close to 0 (+/-) but contains rounding\n // errors due to floating point numbers, so we need to check precision.\n // Safari returns a number <= 0, usually < -1 when pinch-zoomed\n // Feature detection fails in mobile emulation mode in Chrome.\n // Math.abs(win.innerWidth / visualViewport.scale - visualViewport.width) <\n // 0.001\n // Fallback here: \"Not Safari\" userAgent\n\n if (!/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n\n return {\n width: width,\n height: height,\n x: x + getWindowScrollBarX(element),\n y: y\n };\n}","import getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nimport { max } from \"../utils/math.js\"; // Gets the entire size of the scrollable document area, even extending outside\n// of the `` and `` rect bounds if horizontally scrollable\n\nexport default function getDocumentRect(element) {\n var _element$ownerDocumen;\n\n var html = getDocumentElement(element);\n var winScroll = getWindowScroll(element);\n var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;\n var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);\n var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);\n var x = -winScroll.scrollLeft + getWindowScrollBarX(element);\n var y = -winScroll.scrollTop;\n\n if (getComputedStyle(body || html).direction === 'rtl') {\n x += max(html.clientWidth, body ? body.clientWidth : 0) - width;\n }\n\n return {\n width: width,\n height: height,\n x: x,\n y: y\n };\n}","import getBasePlacement from \"./getBasePlacement.js\";\nimport getVariation from \"./getVariation.js\";\nimport getMainAxisFromPlacement from \"./getMainAxisFromPlacement.js\";\nimport { top, right, bottom, left, start, end } from \"../enums.js\";\nexport default function computeOffsets(_ref) {\n var reference = _ref.reference,\n element = _ref.element,\n placement = _ref.placement;\n var basePlacement = placement ? getBasePlacement(placement) : null;\n var variation = placement ? getVariation(placement) : null;\n var commonX = reference.x + reference.width / 2 - element.width / 2;\n var commonY = reference.y + reference.height / 2 - element.height / 2;\n var offsets;\n\n switch (basePlacement) {\n case top:\n offsets = {\n x: commonX,\n y: reference.y - element.height\n };\n break;\n\n case bottom:\n offsets = {\n x: commonX,\n y: reference.y + reference.height\n };\n break;\n\n case right:\n offsets = {\n x: reference.x + reference.width,\n y: commonY\n };\n break;\n\n case left:\n offsets = {\n x: reference.x - element.width,\n y: commonY\n };\n break;\n\n default:\n offsets = {\n x: reference.x,\n y: reference.y\n };\n }\n\n var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null;\n\n if (mainAxis != null) {\n var len = mainAxis === 'y' ? 'height' : 'width';\n\n switch (variation) {\n case start:\n offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2);\n break;\n\n case end:\n offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2);\n break;\n\n default:\n }\n }\n\n return offsets;\n}","import getClippingRect from \"../dom-utils/getClippingRect.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getBoundingClientRect from \"../dom-utils/getBoundingClientRect.js\";\nimport computeOffsets from \"./computeOffsets.js\";\nimport rectToClientRect from \"./rectToClientRect.js\";\nimport { clippingParents, reference, popper, bottom, top, right, basePlacements, viewport } from \"../enums.js\";\nimport { isElement } from \"../dom-utils/instanceOf.js\";\nimport mergePaddingObject from \"./mergePaddingObject.js\";\nimport expandToHashMap from \"./expandToHashMap.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport default function detectOverflow(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n _options$placement = _options.placement,\n placement = _options$placement === void 0 ? state.placement : _options$placement,\n _options$boundary = _options.boundary,\n boundary = _options$boundary === void 0 ? clippingParents : _options$boundary,\n _options$rootBoundary = _options.rootBoundary,\n rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary,\n _options$elementConte = _options.elementContext,\n elementContext = _options$elementConte === void 0 ? popper : _options$elementConte,\n _options$altBoundary = _options.altBoundary,\n altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary,\n _options$padding = _options.padding,\n padding = _options$padding === void 0 ? 0 : _options$padding;\n var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n var altContext = elementContext === popper ? reference : popper;\n var popperRect = state.rects.popper;\n var element = state.elements[altBoundary ? altContext : elementContext];\n var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary);\n var referenceClientRect = getBoundingClientRect(state.elements.reference);\n var popperOffsets = computeOffsets({\n reference: referenceClientRect,\n element: popperRect,\n strategy: 'absolute',\n placement: placement\n });\n var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets));\n var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect\n // 0 or negative = within the clipping rect\n\n var overflowOffsets = {\n top: clippingClientRect.top - elementClientRect.top + paddingObject.top,\n bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,\n left: clippingClientRect.left - elementClientRect.left + paddingObject.left,\n right: elementClientRect.right - clippingClientRect.right + paddingObject.right\n };\n var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element\n\n if (elementContext === popper && offsetData) {\n var offset = offsetData[placement];\n Object.keys(overflowOffsets).forEach(function (key) {\n var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;\n var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x';\n overflowOffsets[key] += offset[axis] * multiply;\n });\n }\n\n return overflowOffsets;\n}","import getOppositePlacement from \"../utils/getOppositePlacement.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getOppositeVariationPlacement from \"../utils/getOppositeVariationPlacement.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport computeAutoPlacement from \"../utils/computeAutoPlacement.js\";\nimport { bottom, top, start, right, left, auto } from \"../enums.js\";\nimport getVariation from \"../utils/getVariation.js\"; // eslint-disable-next-line import/no-unused-modules\n\nfunction getExpandedFallbackPlacements(placement) {\n if (getBasePlacement(placement) === auto) {\n return [];\n }\n\n var oppositePlacement = getOppositePlacement(placement);\n return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)];\n}\n\nfunction flip(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n\n if (state.modifiersData[name]._skip) {\n return;\n }\n\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis,\n specifiedFallbackPlacements = options.fallbackPlacements,\n padding = options.padding,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n _options$flipVariatio = options.flipVariations,\n flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio,\n allowedAutoPlacements = options.allowedAutoPlacements;\n var preferredPlacement = state.options.placement;\n var basePlacement = getBasePlacement(preferredPlacement);\n var isBasePlacement = basePlacement === preferredPlacement;\n var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement));\n var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) {\n return acc.concat(getBasePlacement(placement) === auto ? computeAutoPlacement(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n flipVariations: flipVariations,\n allowedAutoPlacements: allowedAutoPlacements\n }) : placement);\n }, []);\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var checksMap = new Map();\n var makeFallbackChecks = true;\n var firstFittingPlacement = placements[0];\n\n for (var i = 0; i < placements.length; i++) {\n var placement = placements[i];\n\n var _basePlacement = getBasePlacement(placement);\n\n var isStartVariation = getVariation(placement) === start;\n var isVertical = [top, bottom].indexOf(_basePlacement) >= 0;\n var len = isVertical ? 'width' : 'height';\n var overflow = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n altBoundary: altBoundary,\n padding: padding\n });\n var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top;\n\n if (referenceRect[len] > popperRect[len]) {\n mainVariationSide = getOppositePlacement(mainVariationSide);\n }\n\n var altVariationSide = getOppositePlacement(mainVariationSide);\n var checks = [];\n\n if (checkMainAxis) {\n checks.push(overflow[_basePlacement] <= 0);\n }\n\n if (checkAltAxis) {\n checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0);\n }\n\n if (checks.every(function (check) {\n return check;\n })) {\n firstFittingPlacement = placement;\n makeFallbackChecks = false;\n break;\n }\n\n checksMap.set(placement, checks);\n }\n\n if (makeFallbackChecks) {\n // `2` may be desired in some cases – research later\n var numberOfChecks = flipVariations ? 3 : 1;\n\n var _loop = function _loop(_i) {\n var fittingPlacement = placements.find(function (placement) {\n var checks = checksMap.get(placement);\n\n if (checks) {\n return checks.slice(0, _i).every(function (check) {\n return check;\n });\n }\n });\n\n if (fittingPlacement) {\n firstFittingPlacement = fittingPlacement;\n return \"break\";\n }\n };\n\n for (var _i = numberOfChecks; _i > 0; _i--) {\n var _ret = _loop(_i);\n\n if (_ret === \"break\") break;\n }\n }\n\n if (state.placement !== firstFittingPlacement) {\n state.modifiersData[name]._skip = true;\n state.placement = firstFittingPlacement;\n state.reset = true;\n }\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'flip',\n enabled: true,\n phase: 'main',\n fn: flip,\n requiresIfExists: ['offset'],\n data: {\n _skip: false\n }\n};","import getVariation from \"./getVariation.js\";\nimport { variationPlacements, basePlacements, placements as allPlacements } from \"../enums.js\";\nimport detectOverflow from \"./detectOverflow.js\";\nimport getBasePlacement from \"./getBasePlacement.js\";\nexport default function computeAutoPlacement(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n placement = _options.placement,\n boundary = _options.boundary,\n rootBoundary = _options.rootBoundary,\n padding = _options.padding,\n flipVariations = _options.flipVariations,\n _options$allowedAutoP = _options.allowedAutoPlacements,\n allowedAutoPlacements = _options$allowedAutoP === void 0 ? allPlacements : _options$allowedAutoP;\n var variation = getVariation(placement);\n var placements = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) {\n return getVariation(placement) === variation;\n }) : basePlacements;\n var allowedPlacements = placements.filter(function (placement) {\n return allowedAutoPlacements.indexOf(placement) >= 0;\n });\n\n if (allowedPlacements.length === 0) {\n allowedPlacements = placements;\n\n if (process.env.NODE_ENV !== \"production\") {\n console.error(['Popper: The `allowedAutoPlacements` option did not allow any', 'placements. Ensure the `placement` option matches the variation', 'of the allowed placements.', 'For example, \"auto\" cannot be used to allow \"bottom-start\".', 'Use \"auto-start\" instead.'].join(' '));\n }\n } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions...\n\n\n var overflows = allowedPlacements.reduce(function (acc, placement) {\n acc[placement] = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding\n })[getBasePlacement(placement)];\n return acc;\n }, {});\n return Object.keys(overflows).sort(function (a, b) {\n return overflows[a] - overflows[b];\n });\n}","import { top, bottom, left, right } from \"../enums.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\n\nfunction getSideOffsets(overflow, rect, preventedOffsets) {\n if (preventedOffsets === void 0) {\n preventedOffsets = {\n x: 0,\n y: 0\n };\n }\n\n return {\n top: overflow.top - rect.height - preventedOffsets.y,\n right: overflow.right - rect.width + preventedOffsets.x,\n bottom: overflow.bottom - rect.height + preventedOffsets.y,\n left: overflow.left - rect.width - preventedOffsets.x\n };\n}\n\nfunction isAnySideFullyClipped(overflow) {\n return [top, right, bottom, left].some(function (side) {\n return overflow[side] >= 0;\n });\n}\n\nfunction hide(_ref) {\n var state = _ref.state,\n name = _ref.name;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var preventedOffsets = state.modifiersData.preventOverflow;\n var referenceOverflow = detectOverflow(state, {\n elementContext: 'reference'\n });\n var popperAltOverflow = detectOverflow(state, {\n altBoundary: true\n });\n var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect);\n var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets);\n var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets);\n var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets);\n state.modifiersData[name] = {\n referenceClippingOffsets: referenceClippingOffsets,\n popperEscapeOffsets: popperEscapeOffsets,\n isReferenceHidden: isReferenceHidden,\n hasPopperEscaped: hasPopperEscaped\n };\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-reference-hidden': isReferenceHidden,\n 'data-popper-escaped': hasPopperEscaped\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'hide',\n enabled: true,\n phase: 'main',\n requiresIfExists: ['preventOverflow'],\n fn: hide\n};","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport { top, left, right, placements } from \"../enums.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport function distanceAndSkiddingToXY(placement, rects, offset) {\n var basePlacement = getBasePlacement(placement);\n var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1;\n\n var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, {\n placement: placement\n })) : offset,\n skidding = _ref[0],\n distance = _ref[1];\n\n skidding = skidding || 0;\n distance = (distance || 0) * invertDistance;\n return [left, right].indexOf(basePlacement) >= 0 ? {\n x: distance,\n y: skidding\n } : {\n x: skidding,\n y: distance\n };\n}\n\nfunction offset(_ref2) {\n var state = _ref2.state,\n options = _ref2.options,\n name = _ref2.name;\n var _options$offset = options.offset,\n offset = _options$offset === void 0 ? [0, 0] : _options$offset;\n var data = placements.reduce(function (acc, placement) {\n acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset);\n return acc;\n }, {});\n var _data$state$placement = data[state.placement],\n x = _data$state$placement.x,\n y = _data$state$placement.y;\n\n if (state.modifiersData.popperOffsets != null) {\n state.modifiersData.popperOffsets.x += x;\n state.modifiersData.popperOffsets.y += y;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'offset',\n enabled: true,\n phase: 'main',\n requires: ['popperOffsets'],\n fn: offset\n};","import computeOffsets from \"../utils/computeOffsets.js\";\n\nfunction popperOffsets(_ref) {\n var state = _ref.state,\n name = _ref.name;\n // Offsets are the actual position the popper needs to have to be\n // properly positioned near its reference element\n // This is the most basic placement, and will be adjusted by\n // the modifiers in the next step\n state.modifiersData[name] = computeOffsets({\n reference: state.rects.reference,\n element: state.rects.popper,\n strategy: 'absolute',\n placement: state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'popperOffsets',\n enabled: true,\n phase: 'read',\n fn: popperOffsets,\n data: {}\n};","import { top, left, right, bottom, start } from \"../enums.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport getAltAxis from \"../utils/getAltAxis.js\";\nimport { within, withinMaxClamp } from \"../utils/within.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport getFreshSideObject from \"../utils/getFreshSideObject.js\";\nimport { min as mathMin, max as mathMax } from \"../utils/math.js\";\n\nfunction preventOverflow(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n padding = options.padding,\n _options$tether = options.tether,\n tether = _options$tether === void 0 ? true : _options$tether,\n _options$tetherOffset = options.tetherOffset,\n tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset;\n var overflow = detectOverflow(state, {\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n altBoundary: altBoundary\n });\n var basePlacement = getBasePlacement(state.placement);\n var variation = getVariation(state.placement);\n var isBasePlacement = !variation;\n var mainAxis = getMainAxisFromPlacement(basePlacement);\n var altAxis = getAltAxis(mainAxis);\n var popperOffsets = state.modifiersData.popperOffsets;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, {\n placement: state.placement\n })) : tetherOffset;\n var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? {\n mainAxis: tetherOffsetValue,\n altAxis: tetherOffsetValue\n } : Object.assign({\n mainAxis: 0,\n altAxis: 0\n }, tetherOffsetValue);\n var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null;\n var data = {\n x: 0,\n y: 0\n };\n\n if (!popperOffsets) {\n return;\n }\n\n if (checkMainAxis) {\n var _offsetModifierState$;\n\n var mainSide = mainAxis === 'y' ? top : left;\n var altSide = mainAxis === 'y' ? bottom : right;\n var len = mainAxis === 'y' ? 'height' : 'width';\n var offset = popperOffsets[mainAxis];\n var min = offset + overflow[mainSide];\n var max = offset - overflow[altSide];\n var additive = tether ? -popperRect[len] / 2 : 0;\n var minLen = variation === start ? referenceRect[len] : popperRect[len];\n var maxLen = variation === start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go\n // outside the reference bounds\n\n var arrowElement = state.elements.arrow;\n var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : {\n width: 0,\n height: 0\n };\n var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : getFreshSideObject();\n var arrowPaddingMin = arrowPaddingObject[mainSide];\n var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want\n // to include its full size in the calculation. If the reference is small\n // and near the edge of a boundary, the popper can overflow even if the\n // reference is not overflowing as well (e.g. virtual elements with no\n // width or height)\n\n var arrowLen = within(0, referenceRect[len], arrowRect[len]);\n var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis;\n var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis;\n var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow);\n var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0;\n var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0;\n var tetherMin = offset + minOffset - offsetModifierValue - clientOffset;\n var tetherMax = offset + maxOffset - offsetModifierValue;\n var preventedOffset = within(tether ? mathMin(min, tetherMin) : min, offset, tether ? mathMax(max, tetherMax) : max);\n popperOffsets[mainAxis] = preventedOffset;\n data[mainAxis] = preventedOffset - offset;\n }\n\n if (checkAltAxis) {\n var _offsetModifierState$2;\n\n var _mainSide = mainAxis === 'x' ? top : left;\n\n var _altSide = mainAxis === 'x' ? bottom : right;\n\n var _offset = popperOffsets[altAxis];\n\n var _len = altAxis === 'y' ? 'height' : 'width';\n\n var _min = _offset + overflow[_mainSide];\n\n var _max = _offset - overflow[_altSide];\n\n var isOriginSide = [top, left].indexOf(basePlacement) !== -1;\n\n var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0;\n\n var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis;\n\n var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max;\n\n var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max);\n\n popperOffsets[altAxis] = _preventedOffset;\n data[altAxis] = _preventedOffset - _offset;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'preventOverflow',\n enabled: true,\n phase: 'main',\n fn: preventOverflow,\n requiresIfExists: ['offset']\n};","export default function getAltAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getNodeScroll from \"./getNodeScroll.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport { round } from \"../utils/math.js\";\n\nfunction isElementScaled(element) {\n var rect = element.getBoundingClientRect();\n var scaleX = round(rect.width) / element.offsetWidth || 1;\n var scaleY = round(rect.height) / element.offsetHeight || 1;\n return scaleX !== 1 || scaleY !== 1;\n} // Returns the composite rect of an element relative to its offsetParent.\n// Composite means it takes into account transforms as well as layout.\n\n\nexport default function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {\n if (isFixed === void 0) {\n isFixed = false;\n }\n\n var isOffsetParentAnElement = isHTMLElement(offsetParent);\n var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent);\n var documentElement = getDocumentElement(offsetParent);\n var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled);\n var scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n var offsets = {\n x: 0,\n y: 0\n };\n\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078\n isScrollParent(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n\n if (isHTMLElement(offsetParent)) {\n offsets = getBoundingClientRect(offsetParent, true);\n offsets.x += offsetParent.clientLeft;\n offsets.y += offsetParent.clientTop;\n } else if (documentElement) {\n offsets.x = getWindowScrollBarX(documentElement);\n }\n }\n\n return {\n x: rect.left + scroll.scrollLeft - offsets.x,\n y: rect.top + scroll.scrollTop - offsets.y,\n width: rect.width,\n height: rect.height\n };\n}","import getWindowScroll from \"./getWindowScroll.js\";\nimport getWindow from \"./getWindow.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getHTMLElementScroll from \"./getHTMLElementScroll.js\";\nexport default function getNodeScroll(node) {\n if (node === getWindow(node) || !isHTMLElement(node)) {\n return getWindowScroll(node);\n } else {\n return getHTMLElementScroll(node);\n }\n}","export default function getHTMLElementScroll(element) {\n return {\n scrollLeft: element.scrollLeft,\n scrollTop: element.scrollTop\n };\n}","import { modifierPhases } from \"../enums.js\"; // source: https://stackoverflow.com/questions/49875255\n\nfunction order(modifiers) {\n var map = new Map();\n var visited = new Set();\n var result = [];\n modifiers.forEach(function (modifier) {\n map.set(modifier.name, modifier);\n }); // On visiting object, check for its dependencies and visit them recursively\n\n function sort(modifier) {\n visited.add(modifier.name);\n var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []);\n requires.forEach(function (dep) {\n if (!visited.has(dep)) {\n var depModifier = map.get(dep);\n\n if (depModifier) {\n sort(depModifier);\n }\n }\n });\n result.push(modifier);\n }\n\n modifiers.forEach(function (modifier) {\n if (!visited.has(modifier.name)) {\n // check for visited object\n sort(modifier);\n }\n });\n return result;\n}\n\nexport default function orderModifiers(modifiers) {\n // order based on dependencies\n var orderedModifiers = order(modifiers); // order based on phase\n\n return modifierPhases.reduce(function (acc, phase) {\n return acc.concat(orderedModifiers.filter(function (modifier) {\n return modifier.phase === phase;\n }));\n }, []);\n}","import getCompositeRect from \"./dom-utils/getCompositeRect.js\";\nimport getLayoutRect from \"./dom-utils/getLayoutRect.js\";\nimport listScrollParents from \"./dom-utils/listScrollParents.js\";\nimport getOffsetParent from \"./dom-utils/getOffsetParent.js\";\nimport getComputedStyle from \"./dom-utils/getComputedStyle.js\";\nimport orderModifiers from \"./utils/orderModifiers.js\";\nimport debounce from \"./utils/debounce.js\";\nimport validateModifiers from \"./utils/validateModifiers.js\";\nimport uniqueBy from \"./utils/uniqueBy.js\";\nimport getBasePlacement from \"./utils/getBasePlacement.js\";\nimport mergeByName from \"./utils/mergeByName.js\";\nimport detectOverflow from \"./utils/detectOverflow.js\";\nimport { isElement } from \"./dom-utils/instanceOf.js\";\nimport { auto } from \"./enums.js\";\nvar INVALID_ELEMENT_ERROR = 'Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.';\nvar INFINITE_LOOP_ERROR = 'Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.';\nvar DEFAULT_OPTIONS = {\n placement: 'bottom',\n modifiers: [],\n strategy: 'absolute'\n};\n\nfunction areValidElements() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return !args.some(function (element) {\n return !(element && typeof element.getBoundingClientRect === 'function');\n });\n}\n\nexport function popperGenerator(generatorOptions) {\n if (generatorOptions === void 0) {\n generatorOptions = {};\n }\n\n var _generatorOptions = generatorOptions,\n _generatorOptions$def = _generatorOptions.defaultModifiers,\n defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def,\n _generatorOptions$def2 = _generatorOptions.defaultOptions,\n defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;\n return function createPopper(reference, popper, options) {\n if (options === void 0) {\n options = defaultOptions;\n }\n\n var state = {\n placement: 'bottom',\n orderedModifiers: [],\n options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),\n modifiersData: {},\n elements: {\n reference: reference,\n popper: popper\n },\n attributes: {},\n styles: {}\n };\n var effectCleanupFns = [];\n var isDestroyed = false;\n var instance = {\n state: state,\n setOptions: function setOptions(setOptionsAction) {\n var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction;\n cleanupModifierEffects();\n state.options = Object.assign({}, defaultOptions, state.options, options);\n state.scrollParents = {\n reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [],\n popper: listScrollParents(popper)\n }; // Orders the modifiers based on their dependencies and `phase`\n // properties\n\n var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers\n\n state.orderedModifiers = orderedModifiers.filter(function (m) {\n return m.enabled;\n }); // Validate the provided modifiers so that the consumer will get warned\n // if one of the modifiers is invalid for any reason\n\n if (process.env.NODE_ENV !== \"production\") {\n var modifiers = uniqueBy([].concat(orderedModifiers, state.options.modifiers), function (_ref) {\n var name = _ref.name;\n return name;\n });\n validateModifiers(modifiers);\n\n if (getBasePlacement(state.options.placement) === auto) {\n var flipModifier = state.orderedModifiers.find(function (_ref2) {\n var name = _ref2.name;\n return name === 'flip';\n });\n\n if (!flipModifier) {\n console.error(['Popper: \"auto\" placements require the \"flip\" modifier be', 'present and enabled to work.'].join(' '));\n }\n }\n\n var _getComputedStyle = getComputedStyle(popper),\n marginTop = _getComputedStyle.marginTop,\n marginRight = _getComputedStyle.marginRight,\n marginBottom = _getComputedStyle.marginBottom,\n marginLeft = _getComputedStyle.marginLeft; // We no longer take into account `margins` on the popper, and it can\n // cause bugs with positioning, so we'll warn the consumer\n\n\n if ([marginTop, marginRight, marginBottom, marginLeft].some(function (margin) {\n return parseFloat(margin);\n })) {\n console.warn(['Popper: CSS \"margin\" styles cannot be used to apply padding', 'between the popper and its reference element or boundary.', 'To replicate margin, use the `offset` modifier, as well as', 'the `padding` option in the `preventOverflow` and `flip`', 'modifiers.'].join(' '));\n }\n }\n\n runModifierEffects();\n return instance.update();\n },\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: function forceUpdate() {\n if (isDestroyed) {\n return;\n }\n\n var _state$elements = state.elements,\n reference = _state$elements.reference,\n popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements\n // anymore\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return;\n } // Store the reference and popper rects to be read by modifiers\n\n\n state.rects = {\n reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'),\n popper: getLayoutRect(popper)\n }; // Modifiers have the ability to reset the current update cycle. The\n // most common use case for this is the `flip` modifier changing the\n // placement, which then needs to re-run all the modifiers, because the\n // logic was previously ran for the previous placement and is therefore\n // stale/incorrect\n\n state.reset = false;\n state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier\n // is filled with the initial data specified by the modifier. This means\n // it doesn't persist and is fresh on each update.\n // To ensure persistent data, use `${name}#persistent`\n\n state.orderedModifiers.forEach(function (modifier) {\n return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);\n });\n var __debug_loops__ = 0;\n\n for (var index = 0; index < state.orderedModifiers.length; index++) {\n if (process.env.NODE_ENV !== \"production\") {\n __debug_loops__ += 1;\n\n if (__debug_loops__ > 100) {\n console.error(INFINITE_LOOP_ERROR);\n break;\n }\n }\n\n if (state.reset === true) {\n state.reset = false;\n index = -1;\n continue;\n }\n\n var _state$orderedModifie = state.orderedModifiers[index],\n fn = _state$orderedModifie.fn,\n _state$orderedModifie2 = _state$orderedModifie.options,\n _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2,\n name = _state$orderedModifie.name;\n\n if (typeof fn === 'function') {\n state = fn({\n state: state,\n options: _options,\n name: name,\n instance: instance\n }) || state;\n }\n }\n },\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: debounce(function () {\n return new Promise(function (resolve) {\n instance.forceUpdate();\n resolve(state);\n });\n }),\n destroy: function destroy() {\n cleanupModifierEffects();\n isDestroyed = true;\n }\n };\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return instance;\n }\n\n instance.setOptions(options).then(function (state) {\n if (!isDestroyed && options.onFirstUpdate) {\n options.onFirstUpdate(state);\n }\n }); // Modifiers have the ability to execute arbitrary code before the first\n // update cycle runs. They will be executed in the same order as the update\n // cycle. This is useful when a modifier adds some persistent data that\n // other modifiers need to use, but the modifier is run after the dependent\n // one.\n\n function runModifierEffects() {\n state.orderedModifiers.forEach(function (_ref3) {\n var name = _ref3.name,\n _ref3$options = _ref3.options,\n options = _ref3$options === void 0 ? {} : _ref3$options,\n effect = _ref3.effect;\n\n if (typeof effect === 'function') {\n var cleanupFn = effect({\n state: state,\n name: name,\n instance: instance,\n options: options\n });\n\n var noopFn = function noopFn() {};\n\n effectCleanupFns.push(cleanupFn || noopFn);\n }\n });\n }\n\n function cleanupModifierEffects() {\n effectCleanupFns.forEach(function (fn) {\n return fn();\n });\n effectCleanupFns = [];\n }\n\n return instance;\n };\n}\nexport var createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules\n\nexport { detectOverflow };","export default function debounce(fn) {\n var pending;\n return function () {\n if (!pending) {\n pending = new Promise(function (resolve) {\n Promise.resolve().then(function () {\n pending = undefined;\n resolve(fn());\n });\n });\n }\n\n return pending;\n };\n}","export default function mergeByName(modifiers) {\n var merged = modifiers.reduce(function (merged, current) {\n var existing = merged[current.name];\n merged[current.name] = existing ? Object.assign({}, existing, current, {\n options: Object.assign({}, existing.options, current.options),\n data: Object.assign({}, existing.data, current.data)\n }) : current;\n return merged;\n }, {}); // IE11 does not support Object.values\n\n return Object.keys(merged).map(function (key) {\n return merged[key];\n });\n}","import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nimport offset from \"./modifiers/offset.js\";\nimport flip from \"./modifiers/flip.js\";\nimport preventOverflow from \"./modifiers/preventOverflow.js\";\nimport arrow from \"./modifiers/arrow.js\";\nimport hide from \"./modifiers/hide.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles, offset, flip, preventOverflow, arrow, hide];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow }; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper as createPopperLite } from \"./popper-lite.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport * from \"./modifiers/index.js\";","import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow };","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): util/sanitizer.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst uriAttributes = new Set([\n 'background',\n 'cite',\n 'href',\n 'itemtype',\n 'longdesc',\n 'poster',\n 'src',\n 'xlink:href',\n]);\n\nconst ARIA_ATTRIBUTE_PATTERN = /^aria-[\\w-]*$/i;\n\n/**\n * A pattern that recognizes a commonly useful subset of URLs that are safe.\n *\n * Shoutout to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i;\n\n/**\n * A pattern that matches safe data URLs. Only matches image, video and audio types.\n *\n * Shoutout to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst DATA_URL_PATTERN =\n /^data:(?:image\\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\\/(?:mpeg|mp4|ogg|webm)|audio\\/(?:mp3|oga|ogg|opus));base64,[\\d+/a-z]+=*$/i;\n\nconst allowedAttribute = (attribute, allowedAttributeList) => {\n const attributeName = attribute.nodeName.toLowerCase();\n\n if (allowedAttributeList.includes(attributeName)) {\n if (uriAttributes.has(attributeName)) {\n return Boolean(\n SAFE_URL_PATTERN.test(attribute.nodeValue) || DATA_URL_PATTERN.test(attribute.nodeValue)\n );\n }\n\n return true;\n }\n\n const regExp = allowedAttributeList.filter((attributeRegex) => attributeRegex instanceof RegExp);\n\n // Check if a regular expression validates the attribute.\n for (let i = 0, len = regExp.length; i < len; i++) {\n if (regExp[i].test(attributeName)) {\n return true;\n }\n }\n\n return false;\n};\n\nexport const DefaultAllowlist = {\n // Global attributes allowed on any supplied element below.\n '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],\n a: ['target', 'href', 'title', 'rel'],\n area: [],\n b: [],\n br: [],\n col: [],\n code: [],\n div: [],\n em: [],\n hr: [],\n h1: [],\n h2: [],\n h3: [],\n h4: [],\n h5: [],\n h6: [],\n i: [],\n img: ['src', 'srcset', 'alt', 'title', 'width', 'height'],\n li: [],\n ol: [],\n p: [],\n pre: [],\n s: [],\n small: [],\n span: [],\n sub: [],\n sup: [],\n strong: [],\n u: [],\n ul: [],\n};\n\nexport function sanitizeHtml(unsafeHtml, allowList, sanitizeFn) {\n if (!unsafeHtml.length) {\n return unsafeHtml;\n }\n\n if (sanitizeFn && typeof sanitizeFn === 'function') {\n return sanitizeFn(unsafeHtml);\n }\n\n const domParser = new window.DOMParser();\n const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html');\n const elements = [].concat(...createdDocument.body.querySelectorAll('*'));\n\n for (let i = 0, len = elements.length; i < len; i++) {\n const element = elements[i];\n const elementName = element.nodeName.toLowerCase();\n\n if (!Object.keys(allowList).includes(elementName)) {\n element.remove();\n\n continue;\n }\n\n const attributeList = [].concat(...element.attributes);\n const allowedAttributes = [].concat(allowList['*'] || [], allowList[elementName] || []);\n\n attributeList.forEach((attribute) => {\n if (!allowedAttribute(attribute, allowedAttributes)) {\n element.removeAttribute(attribute.nodeName);\n }\n });\n }\n\n return createdDocument.body.innerHTML;\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport * as Popper from '@popperjs/core';\n\nimport {\n defineJQueryPlugin,\n findShadowRoot,\n getElement,\n getUID,\n isElement,\n isRTL,\n noop,\n typeCheckConfig,\n} from './util/index';\nimport { DefaultAllowlist, sanitizeHtml } from './util/sanitizer';\nimport Data from './dom/data';\nimport EventHandler from './dom/event-handler';\nimport Manipulator from './dom/manipulator';\nimport SelectorEngine from './dom/selector-engine';\nimport BaseComponent from './base-component';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'tooltip';\nconst DATA_KEY = 'bs.tooltip';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst CLASS_PREFIX = 'bs-tooltip';\nconst DISALLOWED_ATTRIBUTES = new Set(['sanitize', 'allowList', 'sanitizeFn']);\n\nconst DefaultType = {\n animation: 'boolean',\n template: 'string',\n title: '(string|element|function)',\n trigger: 'string',\n delay: '(number|object)',\n html: 'boolean',\n selector: '(string|boolean)',\n placement: '(string|function)',\n offset: '(array|string|function)',\n container: '(string|element|boolean)',\n fallbackPlacements: 'array',\n boundary: '(string|element)',\n customClass: '(string|function)',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n allowList: 'object',\n popperConfig: '(null|object|function)',\n};\n\nconst AttachmentMap = {\n AUTO: 'auto',\n TOP: 'top',\n RIGHT: isRTL() ? 'left' : 'right',\n BOTTOM: 'bottom',\n LEFT: isRTL() ? 'right' : 'left',\n};\n\nconst Default = {\n animation: true,\n template:\n '
    ' +\n '
    ' +\n '
    ' +\n '
    ',\n trigger: 'hover focus',\n title: '',\n delay: 0,\n html: false,\n selector: false,\n placement: 'top',\n offset: [0, 0],\n container: false,\n fallbackPlacements: ['top', 'right', 'bottom', 'left'],\n boundary: 'clippingParents',\n customClass: '',\n sanitize: true,\n sanitizeFn: null,\n allowList: DefaultAllowlist,\n popperConfig: null,\n};\n\nconst Event = {\n HIDE: `hide${EVENT_KEY}`,\n HIDDEN: `hidden${EVENT_KEY}`,\n SHOW: `show${EVENT_KEY}`,\n SHOWN: `shown${EVENT_KEY}`,\n INSERTED: `inserted${EVENT_KEY}`,\n CLICK: `click${EVENT_KEY}`,\n FOCUSIN: `focusin${EVENT_KEY}`,\n FOCUSOUT: `focusout${EVENT_KEY}`,\n MOUSEENTER: `mouseenter${EVENT_KEY}`,\n MOUSELEAVE: `mouseleave${EVENT_KEY}`,\n};\n\nconst CLASS_NAME_FADE = 'fade';\nconst CLASS_NAME_MODAL = 'modal';\nconst CLASS_NAME_SHOW = 'show';\n\nconst HOVER_STATE_SHOW = 'show';\nconst HOVER_STATE_OUT = 'out';\n\nconst SELECTOR_TOOLTIP_INNER = '.tooltip-inner';\nconst SELECTOR_MODAL = `.${CLASS_NAME_MODAL}`;\n\nconst EVENT_MODAL_HIDE = 'hide.bs.modal';\n\nconst TRIGGER_HOVER = 'hover';\nconst TRIGGER_FOCUS = 'focus';\nconst TRIGGER_CLICK = 'click';\nconst TRIGGER_MANUAL = 'manual';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Tooltip extends BaseComponent {\n constructor(element, config) {\n if (typeof Popper === 'undefined') {\n throw new TypeError(\"Bootstrap's tooltips require Popper (https://popper.js.org)\");\n }\n\n super(element);\n\n // private\n this._isEnabled = true;\n this._timeout = 0;\n this._hoverState = '';\n this._activeTrigger = {};\n this._popper = null;\n\n // Protected\n this._config = this._getConfig(config);\n this.tip = null;\n\n this._setListeners();\n }\n\n // Getters\n\n static get Default() {\n return Default;\n }\n\n static get NAME() {\n return NAME;\n }\n\n static get Event() {\n return Event;\n }\n\n static get DefaultType() {\n return DefaultType;\n }\n\n // Public\n\n enable() {\n this._isEnabled = true;\n }\n\n disable() {\n this._isEnabled = false;\n }\n\n toggleEnabled() {\n this._isEnabled = !this._isEnabled;\n }\n\n toggle(event) {\n if (!this._isEnabled) {\n return;\n }\n\n if (event) {\n const context = this._initializeOnDelegatedTarget(event);\n\n context._activeTrigger.click = !context._activeTrigger.click;\n\n if (context._isWithActiveTrigger()) {\n context._enter(null, context);\n } else {\n context._leave(null, context);\n }\n } else {\n if (this.getTipElement().classList.contains(CLASS_NAME_SHOW)) {\n this._leave(null, this);\n return;\n }\n\n this._enter(null, this);\n }\n }\n\n dispose() {\n clearTimeout(this._timeout);\n\n EventHandler.off(\n this._element.closest(SELECTOR_MODAL),\n EVENT_MODAL_HIDE,\n this._hideModalHandler\n );\n\n if (this.tip) {\n this.tip.remove();\n }\n\n this._disposePopper();\n super.dispose();\n }\n\n show() {\n if (this._element.style.display === 'none') {\n throw new Error('Please use show on visible elements');\n }\n\n if (!(this.isWithContent() && this._isEnabled)) {\n return;\n }\n\n const showEvent = EventHandler.trigger(this._element, this.constructor.Event.SHOW);\n const shadowRoot = findShadowRoot(this._element);\n const isInTheDom =\n shadowRoot === null\n ? this._element.ownerDocument.documentElement.contains(this._element)\n : shadowRoot.contains(this._element);\n\n if (showEvent.defaultPrevented || !isInTheDom) {\n return;\n }\n\n // A trick to recreate a tooltip in case a new title is given by using the NOT documented `data-mdb-original-title`\n // This will be removed later in favor of a `setContent` method\n if (\n this.constructor.NAME === 'tooltip' &&\n this.tip &&\n this.getTitle() !== this.tip.querySelector(SELECTOR_TOOLTIP_INNER).innerHTML\n ) {\n this._disposePopper();\n this.tip.remove();\n this.tip = null;\n }\n\n const tip = this.getTipElement();\n const tipId = getUID(this.constructor.NAME);\n\n tip.setAttribute('id', tipId);\n this._element.setAttribute('aria-describedby', tipId);\n\n if (this._config.animation) {\n tip.classList.add(CLASS_NAME_FADE);\n }\n\n const placement =\n typeof this._config.placement === 'function'\n ? this._config.placement.call(this, tip, this._element)\n : this._config.placement;\n\n const attachment = this._getAttachment(placement);\n this._addAttachmentClass(attachment);\n\n const { container } = this._config;\n Data.set(tip, this.constructor.DATA_KEY, this);\n\n if (!this._element.ownerDocument.documentElement.contains(this.tip)) {\n container.append(tip);\n EventHandler.trigger(this._element, this.constructor.Event.INSERTED);\n }\n\n if (this._popper) {\n this._popper.update();\n } else {\n this._popper = Popper.createPopper(this._element, tip, this._getPopperConfig(attachment));\n }\n\n tip.classList.add(CLASS_NAME_SHOW);\n\n const customClass = this._resolvePossibleFunction(this._config.customClass);\n if (customClass) {\n tip.classList.add(...customClass.split(' '));\n }\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n [].concat(...document.body.children).forEach((element) => {\n EventHandler.on(element, 'mouseover', noop);\n });\n }\n\n const complete = () => {\n const prevHoverState = this._hoverState;\n\n this._hoverState = null;\n EventHandler.trigger(this._element, this.constructor.Event.SHOWN);\n\n if (prevHoverState === HOVER_STATE_OUT) {\n this._leave(null, this);\n }\n };\n\n const isAnimated = this.tip.classList.contains(CLASS_NAME_FADE);\n this._queueCallback(complete, this.tip, isAnimated);\n }\n\n hide() {\n if (!this._popper) {\n return;\n }\n\n const tip = this.getTipElement();\n const complete = () => {\n if (this._isWithActiveTrigger()) {\n return;\n }\n\n if (this._hoverState !== HOVER_STATE_SHOW) {\n tip.remove();\n }\n\n this._cleanTipClass();\n this._element.removeAttribute('aria-describedby');\n EventHandler.trigger(this._element, this.constructor.Event.HIDDEN);\n\n this._disposePopper();\n };\n\n const hideEvent = EventHandler.trigger(this._element, this.constructor.Event.HIDE);\n if (hideEvent.defaultPrevented) {\n return;\n }\n\n tip.classList.remove(CLASS_NAME_SHOW);\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n []\n .concat(...document.body.children)\n .forEach((element) => EventHandler.off(element, 'mouseover', noop));\n }\n\n this._activeTrigger[TRIGGER_CLICK] = false;\n this._activeTrigger[TRIGGER_FOCUS] = false;\n this._activeTrigger[TRIGGER_HOVER] = false;\n\n const isAnimated = this.tip.classList.contains(CLASS_NAME_FADE);\n this._queueCallback(complete, this.tip, isAnimated);\n this._hoverState = '';\n }\n\n update() {\n if (this._popper !== null) {\n this._popper.update();\n }\n }\n\n // Protected\n\n isWithContent() {\n return Boolean(this.getTitle());\n }\n\n getTipElement() {\n if (this.tip) {\n return this.tip;\n }\n\n const element = document.createElement('div');\n element.innerHTML = this._config.template;\n\n const tip = element.children[0];\n this.setContent(tip);\n tip.classList.remove(CLASS_NAME_FADE, CLASS_NAME_SHOW);\n\n this.tip = tip;\n return this.tip;\n }\n\n setContent(tip) {\n this._sanitizeAndSetContent(tip, this.getTitle(), SELECTOR_TOOLTIP_INNER);\n }\n\n _sanitizeAndSetContent(template, content, selector) {\n const templateElement = SelectorEngine.findOne(selector, template);\n\n if (!content && templateElement) {\n templateElement.remove();\n return;\n }\n\n // we use append for html objects to maintain js events\n this.setElementContent(templateElement, content);\n }\n\n setElementContent(element, content) {\n if (element === null) {\n return;\n }\n\n if (isElement(content)) {\n content = getElement(content);\n\n // content is a DOM node or a jQuery\n if (this._config.html) {\n if (content.parentNode !== element) {\n element.innerHTML = '';\n element.append(content);\n }\n } else {\n element.textContent = content.textContent;\n }\n\n return;\n }\n\n if (this._config.html) {\n if (this._config.sanitize) {\n content = sanitizeHtml(content, this._config.allowList, this._config.sanitizeFn);\n }\n\n element.innerHTML = content;\n } else {\n element.textContent = content;\n }\n }\n\n getTitle() {\n const title = this._element.getAttribute('data-mdb-original-title') || this._config.title;\n\n return this._resolvePossibleFunction(title);\n }\n\n updateAttachment(attachment) {\n if (attachment === 'right') {\n return 'end';\n }\n\n if (attachment === 'left') {\n return 'start';\n }\n\n return attachment;\n }\n\n // Private\n\n _initializeOnDelegatedTarget(event, context) {\n return (\n context ||\n this.constructor.getOrCreateInstance(event.delegateTarget, this._getDelegateConfig())\n );\n }\n\n _getOffset() {\n const { offset } = this._config;\n\n if (typeof offset === 'string') {\n return offset.split(',').map((val) => Number.parseInt(val, 10));\n }\n\n if (typeof offset === 'function') {\n return (popperData) => offset(popperData, this._element);\n }\n\n return offset;\n }\n\n _resolvePossibleFunction(content) {\n return typeof content === 'function' ? content.call(this._element) : content;\n }\n\n _getPopperConfig(attachment) {\n const defaultBsPopperConfig = {\n placement: attachment,\n modifiers: [\n {\n name: 'flip',\n options: {\n fallbackPlacements: this._config.fallbackPlacements,\n },\n },\n {\n name: 'offset',\n options: {\n offset: this._getOffset(),\n },\n },\n {\n name: 'preventOverflow',\n options: {\n boundary: this._config.boundary,\n },\n },\n {\n name: 'arrow',\n options: {\n element: `.${this.constructor.NAME}-arrow`,\n },\n },\n {\n name: 'onChange',\n enabled: true,\n phase: 'afterWrite',\n fn: (data) => this._handlePopperPlacementChange(data),\n },\n ],\n onFirstUpdate: (data) => {\n if (data.options.placement !== data.placement) {\n this._handlePopperPlacementChange(data);\n }\n },\n };\n\n return {\n ...defaultBsPopperConfig,\n ...(typeof this._config.popperConfig === 'function'\n ? this._config.popperConfig(defaultBsPopperConfig)\n : this._config.popperConfig),\n };\n }\n\n _addAttachmentClass(attachment) {\n this.getTipElement().classList.add(\n `${this._getBasicClassPrefix()}-${this.updateAttachment(attachment)}`\n );\n }\n\n _getAttachment(placement) {\n return AttachmentMap[placement.toUpperCase()];\n }\n\n _setListeners() {\n const triggers = this._config.trigger.split(' ');\n\n triggers.forEach((trigger) => {\n if (trigger === 'click') {\n EventHandler.on(\n this._element,\n this.constructor.Event.CLICK,\n this._config.selector,\n (event) => this.toggle(event)\n );\n } else if (trigger !== TRIGGER_MANUAL) {\n const eventIn =\n trigger === TRIGGER_HOVER\n ? this.constructor.Event.MOUSEENTER\n : this.constructor.Event.FOCUSIN;\n const eventOut =\n trigger === TRIGGER_HOVER\n ? this.constructor.Event.MOUSELEAVE\n : this.constructor.Event.FOCUSOUT;\n\n EventHandler.on(this._element, eventIn, this._config.selector, (event) =>\n this._enter(event)\n );\n EventHandler.on(this._element, eventOut, this._config.selector, (event) =>\n this._leave(event)\n );\n }\n });\n\n this._hideModalHandler = () => {\n if (this._element) {\n this.hide();\n }\n };\n\n EventHandler.on(\n this._element.closest(SELECTOR_MODAL),\n EVENT_MODAL_HIDE,\n this._hideModalHandler\n );\n\n if (this._config.selector) {\n this._config = {\n ...this._config,\n trigger: 'manual',\n selector: '',\n };\n } else {\n this._fixTitle();\n }\n }\n\n _fixTitle() {\n const title = this._element.getAttribute('title');\n const originalTitleType = typeof this._element.getAttribute('data-mdb-original-title');\n\n if (title || originalTitleType !== 'string') {\n this._element.setAttribute('data-mdb-original-title', title || '');\n if (title && !this._element.getAttribute('aria-label') && !this._element.textContent) {\n this._element.setAttribute('aria-label', title);\n }\n\n this._element.setAttribute('title', '');\n }\n }\n\n _enter(event, context) {\n context = this._initializeOnDelegatedTarget(event, context);\n\n if (event) {\n context._activeTrigger[event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER] = true;\n }\n\n if (\n context.getTipElement().classList.contains(CLASS_NAME_SHOW) ||\n context._hoverState === HOVER_STATE_SHOW\n ) {\n context._hoverState = HOVER_STATE_SHOW;\n return;\n }\n\n clearTimeout(context._timeout);\n\n context._hoverState = HOVER_STATE_SHOW;\n\n if (!context._config.delay || !context._config.delay.show) {\n context.show();\n return;\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HOVER_STATE_SHOW) {\n context.show();\n }\n }, context._config.delay.show);\n }\n\n _leave(event, context) {\n context = this._initializeOnDelegatedTarget(event, context);\n\n if (event) {\n context._activeTrigger[event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER] =\n context._element.contains(event.relatedTarget);\n }\n\n if (context._isWithActiveTrigger()) {\n return;\n }\n\n clearTimeout(context._timeout);\n\n context._hoverState = HOVER_STATE_OUT;\n\n if (!context._config.delay || !context._config.delay.hide) {\n context.hide();\n return;\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HOVER_STATE_OUT) {\n context.hide();\n }\n }, context._config.delay.hide);\n }\n\n _isWithActiveTrigger() {\n for (const trigger in this._activeTrigger) {\n if (this._activeTrigger[trigger]) {\n return true;\n }\n }\n\n return false;\n }\n\n _getConfig(config) {\n const dataAttributes = Manipulator.getDataAttributes(this._element);\n\n Object.keys(dataAttributes).forEach((dataAttr) => {\n if (DISALLOWED_ATTRIBUTES.has(dataAttr)) {\n delete dataAttributes[dataAttr];\n }\n });\n\n config = {\n ...this.constructor.Default,\n ...dataAttributes,\n ...(typeof config === 'object' && config ? config : {}),\n };\n\n config.container = config.container === false ? document.body : getElement(config.container);\n\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay,\n };\n }\n\n if (typeof config.title === 'number') {\n config.title = config.title.toString();\n }\n\n if (typeof config.content === 'number') {\n config.content = config.content.toString();\n }\n\n typeCheckConfig(NAME, config, this.constructor.DefaultType);\n\n if (config.sanitize) {\n config.template = sanitizeHtml(config.template, config.allowList, config.sanitizeFn);\n }\n\n return config;\n }\n\n _getDelegateConfig() {\n const config = {};\n\n for (const key in this._config) {\n if (this.constructor.Default[key] !== this._config[key]) {\n config[key] = this._config[key];\n }\n }\n\n // In the future can be replaced with:\n // const keysWithDifferentValues = Object.entries(this._config).filter(entry => this.constructor.Default[entry[0]] !== this._config[entry[0]])\n // `Object.fromEntries(keysWithDifferentValues)`\n return config;\n }\n\n _cleanTipClass() {\n const tip = this.getTipElement();\n const basicClassPrefixRegex = new RegExp(`(^|\\\\s)${this._getBasicClassPrefix()}\\\\S+`, 'g');\n const tabClass = tip.getAttribute('class').match(basicClassPrefixRegex);\n if (tabClass !== null && tabClass.length > 0) {\n tabClass.map((token) => token.trim()).forEach((tClass) => tip.classList.remove(tClass));\n }\n }\n\n _getBasicClassPrefix() {\n return CLASS_PREFIX;\n }\n\n _handlePopperPlacementChange(popperData) {\n const { state } = popperData;\n\n if (!state) {\n return;\n }\n\n this.tip = state.elements.popper;\n this._cleanTipClass();\n this._addAttachmentClass(this._getAttachment(state.placement));\n }\n\n _disposePopper() {\n if (this._popper) {\n this._popper.destroy();\n this._popper = null;\n }\n }\n\n // Static\n\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Tooltip.getOrCreateInstance(this, config);\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n\n data[config]();\n }\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .Tooltip to jQuery only if jQuery is present\n */\n\ndefineJQueryPlugin(Tooltip);\n\nexport default Tooltip;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport { defineJQueryPlugin } from './util/index';\nimport Tooltip from './tooltip';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'popover';\nconst DATA_KEY = 'bs.popover';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst CLASS_PREFIX = 'bs-popover';\n\nconst Default = {\n ...Tooltip.Default,\n placement: 'right',\n offset: [0, 8],\n trigger: 'click',\n content: '',\n template:\n '
    ' +\n '
    ' +\n '

    ' +\n '
    ' +\n '
    ',\n};\n\nconst DefaultType = {\n ...Tooltip.DefaultType,\n content: '(string|element|function)',\n};\n\nconst Event = {\n HIDE: `hide${EVENT_KEY}`,\n HIDDEN: `hidden${EVENT_KEY}`,\n SHOW: `show${EVENT_KEY}`,\n SHOWN: `shown${EVENT_KEY}`,\n INSERTED: `inserted${EVENT_KEY}`,\n CLICK: `click${EVENT_KEY}`,\n FOCUSIN: `focusin${EVENT_KEY}`,\n FOCUSOUT: `focusout${EVENT_KEY}`,\n MOUSEENTER: `mouseenter${EVENT_KEY}`,\n MOUSELEAVE: `mouseleave${EVENT_KEY}`,\n};\n\nconst SELECTOR_TITLE = '.popover-header';\nconst SELECTOR_CONTENT = '.popover-body';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Popover extends Tooltip {\n // Getters\n\n static get Default() {\n return Default;\n }\n\n static get NAME() {\n return NAME;\n }\n\n static get Event() {\n return Event;\n }\n\n static get DefaultType() {\n return DefaultType;\n }\n\n // Overrides\n\n isWithContent() {\n return this.getTitle() || this._getContent();\n }\n\n setContent(tip) {\n this._sanitizeAndSetContent(tip, this.getTitle(), SELECTOR_TITLE);\n this._sanitizeAndSetContent(tip, this._getContent(), SELECTOR_CONTENT);\n }\n\n // Private\n\n _getContent() {\n return this._resolvePossibleFunction(this._config.content);\n }\n\n _getBasicClassPrefix() {\n return CLASS_PREFIX;\n }\n\n // Static\n\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Popover.getOrCreateInstance(this, config);\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n\n data[config]();\n }\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .Popover to jQuery only if jQuery is present\n */\n\ndefineJQueryPlugin(Popover);\n\nexport default Popover;\n","import { getjQuery, onDOMContentLoaded } from '../mdb/util/index';\nimport EventHandler from '../mdb/dom/event-handler';\nimport SelectorEngine from '../mdb/dom/selector-engine';\nimport BSPopover from '../bootstrap/mdb-prefix/popover';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'popover';\nconst DATA_KEY = `mdb.${NAME}`;\nconst EVENT_KEY = `.${DATA_KEY}`;\n\nconst EVENT_SHOW_BS = 'show.bs.popover';\nconst EVENT_SHOWN_BS = 'shown.bs.popover';\nconst EVENT_HIDE_BS = 'hide.bs.popover';\nconst EVENT_HIDDEN_BS = 'hidden.bs.popover';\nconst EVENT_INSERTED_BS = 'inserted.bs.popover';\n\nconst EVENT_SHOW = `show${EVENT_KEY}`;\nconst EVENT_SHOWN = `shown${EVENT_KEY}`;\nconst EVENT_HIDE = `hide${EVENT_KEY}`;\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`;\nconst EVENT_INSERTED = `inserted${EVENT_KEY}`;\n\nconst SELECTOR_DATA_TOGGLE = '[data-mdb-toggle=\"popover\"]';\n\nclass Popover extends BSPopover {\n constructor(element, data) {\n super(element, data);\n\n this._init();\n }\n\n dispose() {\n EventHandler.off(this.element, EVENT_SHOW_BS);\n EventHandler.off(this.element, EVENT_SHOWN_BS);\n EventHandler.off(this.element, EVENT_HIDE_BS);\n EventHandler.off(this.element, EVENT_HIDDEN_BS);\n EventHandler.off(this.element, EVENT_INSERTED_BS);\n\n super.dispose();\n }\n\n // Getters\n static get NAME() {\n return NAME;\n }\n\n // Private\n _init() {\n this._bindShowEvent();\n this._bindShownEvent();\n this._bindHideEvent();\n this._bindHiddenEvent();\n this._bindInsertedEvent();\n }\n\n _bindShowEvent() {\n EventHandler.on(this.element, EVENT_SHOW_BS, () => {\n EventHandler.trigger(this.element, EVENT_SHOW);\n });\n }\n\n _bindShownEvent() {\n EventHandler.on(this.element, EVENT_SHOWN_BS, () => {\n EventHandler.trigger(this.element, EVENT_SHOWN);\n });\n }\n\n _bindHideEvent() {\n EventHandler.on(this.element, EVENT_HIDE_BS, () => {\n EventHandler.trigger(this.element, EVENT_HIDE);\n });\n }\n\n _bindHiddenEvent() {\n EventHandler.on(this.element, EVENT_HIDDEN_BS, () => {\n EventHandler.trigger(this.element, EVENT_HIDDEN);\n });\n }\n\n _bindInsertedEvent() {\n EventHandler.on(this.element, EVENT_INSERTED_BS, () => {\n EventHandler.trigger(this.element, EVENT_INSERTED);\n });\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation - auto initialization\n * ------------------------------------------------------------------------\n */\n\nSelectorEngine.find(SELECTOR_DATA_TOGGLE).forEach((el) => {\n let instance = Popover.getInstance(el);\n if (!instance) {\n instance = new Popover(el);\n }\n});\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n * add .rating to jQuery only if jQuery is present\n */\n\nonDOMContentLoaded(() => {\n const $ = getjQuery();\n\n if ($) {\n const JQUERY_NO_CONFLICT = $.fn[NAME];\n $.fn[NAME] = Popover.jQueryInterface;\n $.fn[NAME].Constructor = Popover;\n $.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT;\n return Popover.jQueryInterface;\n };\n }\n});\n\nexport default Popover;\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v5.1.3): scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n defineJQueryPlugin,\n getElement,\n getSelectorFromElement,\n typeCheckConfig,\n} from './util/index';\nimport EventHandler from './dom/event-handler';\nimport Manipulator from './dom/manipulator';\nimport SelectorEngine from './dom/selector-engine';\nimport BaseComponent from './base-component';\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'scrollspy';\nconst DATA_KEY = 'bs.scrollspy';\nconst EVENT_KEY = `.${DATA_KEY}`;\nconst DATA_API_KEY = '.data-api';\n\nconst Default = {\n offset: 10,\n method: 'auto',\n target: '',\n};\n\nconst DefaultType = {\n offset: 'number',\n method: 'string',\n target: '(string|element)',\n};\n\nconst EVENT_ACTIVATE = `activate${EVENT_KEY}`;\nconst EVENT_SCROLL = `scroll${EVENT_KEY}`;\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`;\n\nconst CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item';\nconst CLASS_NAME_ACTIVE = 'active';\n\nconst SELECTOR_DATA_SPY = '[data-mdb-spy=\"scroll\"]';\nconst SELECTOR_NAV_LIST_GROUP = '.nav, .list-group';\nconst SELECTOR_NAV_LINKS = '.nav-link';\nconst SELECTOR_NAV_ITEMS = '.nav-item';\nconst SELECTOR_LIST_ITEMS = '.list-group-item';\nconst SELECTOR_LINK_ITEMS = `${SELECTOR_NAV_LINKS}, ${SELECTOR_LIST_ITEMS}, .${CLASS_NAME_DROPDOWN_ITEM}`;\nconst SELECTOR_DROPDOWN = '.dropdown';\nconst SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';\n\nconst METHOD_OFFSET = 'offset';\nconst METHOD_POSITION = 'position';\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass ScrollSpy extends BaseComponent {\n constructor(element, config) {\n super(element);\n if (!getSelectorFromElement(element)) {\n return;\n }\n this._scrollElement = this._element.tagName === 'BODY' ? window : this._element;\n this._config = this._getConfig(config);\n this._offsets = [];\n this._targets = [];\n this._activeTarget = null;\n this._scrollHeight = 0;\n\n EventHandler.on(this._scrollElement, EVENT_SCROLL, () => this._process());\n\n this.refresh();\n this._process();\n }\n\n // Getters\n\n static get Default() {\n return Default;\n }\n\n static get NAME() {\n return NAME;\n }\n\n // Public\n\n refresh() {\n const autoMethod =\n this._scrollElement === this._scrollElement.window ? METHOD_OFFSET : METHOD_POSITION;\n\n const offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method;\n\n const offsetBase = offsetMethod === METHOD_POSITION ? this._getScrollTop() : 0;\n\n this._offsets = [];\n this._targets = [];\n this._scrollHeight = this._getScrollHeight();\n\n const targets = SelectorEngine.find(SELECTOR_LINK_ITEMS, this._config.target);\n\n targets\n .map((element) => {\n const targetSelector = getSelectorFromElement(element);\n const target = targetSelector ? SelectorEngine.findOne(targetSelector) : null;\n\n if (target) {\n const targetBCR = target.getBoundingClientRect();\n if (targetBCR.width || targetBCR.height) {\n return [Manipulator[offsetMethod](target).top + offsetBase, targetSelector];\n }\n }\n\n return null;\n })\n .filter((item) => item)\n .sort((a, b) => a[0] - b[0])\n .forEach((item) => {\n this._offsets.push(item[0]);\n this._targets.push(item[1]);\n });\n }\n\n dispose() {\n EventHandler.off(this._scrollElement, EVENT_KEY);\n super.dispose();\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...Manipulator.getDataAttributes(this._element),\n ...(typeof config === 'object' && config ? config : {}),\n };\n\n config.target = getElement(config.target) || document.documentElement;\n\n typeCheckConfig(NAME, config, DefaultType);\n\n return config;\n }\n\n _getScrollTop() {\n return this._scrollElement === window\n ? this._scrollElement.pageYOffset\n : this._scrollElement.scrollTop;\n }\n\n _getScrollHeight() {\n return (\n this._scrollElement.scrollHeight ||\n Math.max(document.body.scrollHeight, document.documentElement.scrollHeight)\n );\n }\n\n _getOffsetHeight() {\n return this._scrollElement === window\n ? window.innerHeight\n : this._scrollElement.getBoundingClientRect().height;\n }\n\n _process() {\n const scrollTop = this._getScrollTop() + this._config.offset;\n const scrollHeight = this._getScrollHeight();\n const maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight();\n\n if (this._scrollHeight !== scrollHeight) {\n this.refresh();\n }\n\n if (scrollTop >= maxScroll) {\n const target = this._targets[this._targets.length - 1];\n\n if (this._activeTarget !== target) {\n this._activate(target);\n }\n\n return;\n }\n\n if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {\n this._activeTarget = null;\n this._clear();\n return;\n }\n\n for (let i = this._offsets.length; i--; ) {\n const isActiveTarget =\n this._activeTarget !== this._targets[i] &&\n scrollTop >= this._offsets[i] &&\n (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]);\n\n if (isActiveTarget) {\n this._activate(this._targets[i]);\n }\n }\n }\n\n _activate(target) {\n this._activeTarget = target;\n\n this._clear();\n\n const queries = SELECTOR_LINK_ITEMS.split(',').map(\n (selector) => `${selector}[data-mdb-target=\"${target}\"],${selector}[href=\"${target}\"]`\n );\n\n const link = SelectorEngine.findOne(queries.join(','), this._config.target);\n\n link.classList.add(CLASS_NAME_ACTIVE);\n if (link.classList.contains(CLASS_NAME_DROPDOWN_ITEM)) {\n SelectorEngine.findOne(\n SELECTOR_DROPDOWN_TOGGLE,\n link.closest(SELECTOR_DROPDOWN)\n ).classList.add(CLASS_NAME_ACTIVE);\n } else {\n SelectorEngine.parents(link, SELECTOR_NAV_LIST_GROUP).forEach((listGroup) => {\n // Set triggered links parents as active\n // With both