Path: blob/master/src/main/resources/static/scss/custom.css
113 views
@charset "UTF-8";1/* For design in bootstrap look at:2Colors and Text: https://getbootstrap.com/docs/5.0/utilities/colors/3Background: https://getbootstrap.com/docs/5.0/utilities/background/45Key Colors6$blue: #0d6efd;7$indigo: #6610f2;8$purple: #6f42c1;9$pink: #d63384;10$red: #dc3545;11$orange: #fd7e14;12$yellow: #ffc107;13$green: #198754;14$teal: #20c997;15$cyan: #0dcaf0;16$gray-100: #f8f9fa;17$gray-600: #6c757d;18$gray-900: #212529;1920Key Colors map to ...21$primary: $blue;22$secondary: $gray-600;23$success: $green;24$info: $cyan;25$warning: $yellow;26$danger: $red;27$light: $gray-100;28$dark: $gray-900;2930Key colors are are mapped to words we use in HTML (text-primary, text-dark, bg-primary, bg-dark)31$theme-colors: (32"primary": $primary,33"secondary": $secondary,34"success": $success,35"info": $info,36"warning": $warning,37"danger": $danger,38"light": $light,39"dark": $dark40);4142*/43/*!44* Bootstrap v5.1.3 (https://getbootstrap.com/)45* Copyright 2011-2021 The Bootstrap Authors46* Copyright 2011-2021 Twitter, Inc.47* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)48*/49:root {50--bs-blue: #0d6efd;51--bs-indigo: #6610f2;52--bs-purple: #6f42c1;53--bs-pink: #d63384;54--bs-red: #dc3545;55--bs-orange: #fd7e14;56--bs-yellow: #ffc107;57--bs-green: #198754;58--bs-teal: #20c997;59--bs-cyan: #0dcaf0;60--bs-white: #fff;61--bs-gray: #6c757d;62--bs-gray-dark: #343a40;63--bs-gray-100: #f8f9fa;64--bs-gray-200: #e9ecef;65--bs-gray-300: #dee2e6;66--bs-gray-400: #ced4da;67--bs-gray-500: #adb5bd;68--bs-gray-600: #6c757d;69--bs-gray-700: #495057;70--bs-gray-800: #343a40;71--bs-gray-900: #212529;72--bs-primary: #a1a9bd;73--bs-secondary: #5B9D82;74--bs-success: #198754;75--bs-info: #0dcaf0;76--bs-warning: #ffc107;77--bs-danger: #dc3545;78--bs-light: #f8f9fa;79--bs-dark: #212529;80--bs-primary-rgb: 161, 169, 189;81--bs-secondary-rgb: 91, 157, 130;82--bs-success-rgb: 25, 135, 84;83--bs-info-rgb: 13, 202, 240;84--bs-warning-rgb: 255, 193, 7;85--bs-danger-rgb: 220, 53, 69;86--bs-light-rgb: 248, 249, 250;87--bs-dark-rgb: 33, 37, 41;88--bs-white-rgb: 255, 255, 255;89--bs-black-rgb: 0, 0, 0;90--bs-body-color-rgb: 33, 37, 41;91--bs-body-bg-rgb: 207, 216, 220;92--bs-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";93--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;94--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));95--bs-body-font-family: var(--bs-font-sans-serif);96--bs-body-font-size: 1rem;97--bs-body-font-weight: 400;98--bs-body-line-height: 1.5;99--bs-body-color: #212529;100--bs-body-bg: #cfd8dc;101}102103*,104*::before,105*::after {106box-sizing: border-box;107}108109@media (prefers-reduced-motion: no-preference) {110:root {111scroll-behavior: smooth;112}113}114115body {116margin: 0;117font-family: var(--bs-body-font-family);118font-size: var(--bs-body-font-size);119font-weight: var(--bs-body-font-weight);120line-height: var(--bs-body-line-height);121color: var(--bs-body-color);122text-align: var(--bs-body-text-align);123background-color: var(--bs-body-bg);124-webkit-text-size-adjust: 100%;125-webkit-tap-highlight-color: rgba(0, 0, 0, 0);126}127128hr {129margin: 1rem 0;130color: inherit;131background-color: currentColor;132border: 0;133opacity: 0.25;134}135136hr:not([size]) {137height: 1px;138}139140.dark-mode h6, .dark-mode .h6, .dark-mode h5, .dark-mode .h5, .dark-mode h4, .dark-mode .h4, .dark-mode h3, .dark-mode .h3, .dark-mode h2, .dark-mode .h2, .dark-mode h1, .dark-mode .h1, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {141margin-top: 0;142margin-bottom: 0.5rem;143font-weight: 500;144line-height: 1.2;145}146147h1, .dark-mode .h1, .h1 {148font-size: calc(1.375rem + 1.5vw);149}150@media (min-width: 1200px) {151h1, .dark-mode .h1, .h1 {152font-size: 2.5rem;153}154}155156h2, .dark-mode .h2, .h2 {157font-size: calc(1.325rem + 0.9vw);158}159@media (min-width: 1200px) {160h2, .dark-mode .h2, .h2 {161font-size: 2rem;162}163}164165h3, .dark-mode .h3, .h3 {166font-size: calc(1.3rem + 0.6vw);167}168@media (min-width: 1200px) {169h3, .dark-mode .h3, .h3 {170font-size: 1.75rem;171}172}173174h4, .dark-mode .h4, .h4 {175font-size: calc(1.275rem + 0.3vw);176}177@media (min-width: 1200px) {178h4, .dark-mode .h4, .h4 {179font-size: 1.5rem;180}181}182183h5, .dark-mode .h5, .h5 {184font-size: 1.25rem;185}186187h6, .dark-mode .h6, .h6 {188font-size: 1rem;189}190191p {192margin-top: 0;193margin-bottom: 1rem;194}195196abbr[title],197abbr[data-bs-original-title] {198text-decoration: underline dotted;199cursor: help;200text-decoration-skip-ink: none;201}202203address {204margin-bottom: 1rem;205font-style: normal;206line-height: inherit;207}208209ol,210ul {211padding-left: 2rem;212}213214ol,215ul,216dl {217margin-top: 0;218margin-bottom: 1rem;219}220221ol ol,222ul ul,223ol ul,224ul ol {225margin-bottom: 0;226}227228dt {229font-weight: 700;230}231232dd {233margin-bottom: 0.5rem;234margin-left: 0;235}236237blockquote {238margin: 0 0 1rem;239}240241b,242strong {243font-weight: bolder;244}245246small, .dark-mode .small, .small {247font-size: 0.875em;248}249250mark, .dark-mode .mark, .mark {251padding: 0.2em;252background-color: #fcf8e3;253}254255sub,256sup {257position: relative;258font-size: 0.75em;259line-height: 0;260vertical-align: baseline;261}262263sub {264bottom: -0.25em;265}266267sup {268top: -0.5em;269}270271a {272color: #a1a9bd;273text-decoration: underline;274}275a:hover {276color: #818797;277}278279a:not([href]):not([class]), a:not([href]):not([class]):hover {280color: inherit;281text-decoration: none;282}283284pre,285code,286kbd,287samp {288font-family: var(--bs-font-monospace);289font-size: 1em;290direction: ltr /* rtl:ignore */;291unicode-bidi: bidi-override;292}293294pre {295display: block;296margin-top: 0;297margin-bottom: 1rem;298overflow: auto;299font-size: 0.875em;300}301pre code {302font-size: inherit;303color: inherit;304word-break: normal;305}306307code {308font-size: 0.875em;309color: #d63384;310word-wrap: break-word;311}312a > code {313color: inherit;314}315316kbd {317padding: 0.2rem 0.4rem;318font-size: 0.875em;319color: #fff;320background-color: #212529;321border-radius: 0.2rem;322}323kbd kbd {324padding: 0;325font-size: 1em;326font-weight: 700;327}328329figure {330margin: 0 0 1rem;331}332333img,334svg {335vertical-align: middle;336}337338table {339caption-side: bottom;340border-collapse: collapse;341}342343caption {344padding-top: 0.5rem;345padding-bottom: 0.5rem;346color: #6c757d;347text-align: left;348}349350th {351text-align: inherit;352text-align: -webkit-match-parent;353}354355thead,356tbody,357tfoot,358tr,359td,360th {361border-color: inherit;362border-style: solid;363border-width: 0;364}365366label {367display: inline-block;368}369370button {371border-radius: 0;372}373374button:focus:not(:focus-visible) {375outline: 0;376}377378input,379button,380select,381optgroup,382textarea {383margin: 0;384font-family: inherit;385font-size: inherit;386line-height: inherit;387}388389button,390select {391text-transform: none;392}393394[role=button] {395cursor: pointer;396}397398select {399word-wrap: normal;400}401select:disabled {402opacity: 1;403}404405[list]::-webkit-calendar-picker-indicator {406display: none;407}408409button,410[type=button],411[type=reset],412[type=submit] {413-webkit-appearance: button;414}415button:not(:disabled),416[type=button]:not(:disabled),417[type=reset]:not(:disabled),418[type=submit]:not(:disabled) {419cursor: pointer;420}421422::-moz-focus-inner {423padding: 0;424border-style: none;425}426427textarea {428resize: vertical;429}430431fieldset {432min-width: 0;433padding: 0;434margin: 0;435border: 0;436}437438legend {439float: left;440width: 100%;441padding: 0;442margin-bottom: 0.5rem;443font-size: calc(1.275rem + 0.3vw);444line-height: inherit;445}446@media (min-width: 1200px) {447legend {448font-size: 1.5rem;449}450}451legend + * {452clear: left;453}454455::-webkit-datetime-edit-fields-wrapper,456::-webkit-datetime-edit-text,457::-webkit-datetime-edit-minute,458::-webkit-datetime-edit-hour-field,459::-webkit-datetime-edit-day-field,460::-webkit-datetime-edit-month-field,461::-webkit-datetime-edit-year-field {462padding: 0;463}464465::-webkit-inner-spin-button {466height: auto;467}468469[type=search] {470outline-offset: -2px;471-webkit-appearance: textfield;472}473474/* rtl:raw:475[type="tel"],476[type="url"],477[type="email"],478[type="number"] {479direction: ltr;480}481*/482::-webkit-search-decoration {483-webkit-appearance: none;484}485486::-webkit-color-swatch-wrapper {487padding: 0;488}489490::file-selector-button {491font: inherit;492}493494::-webkit-file-upload-button {495font: inherit;496-webkit-appearance: button;497}498499output {500display: inline-block;501}502503iframe {504border: 0;505}506507summary {508display: list-item;509cursor: pointer;510}511512progress {513vertical-align: baseline;514}515516[hidden] {517display: none !important;518}519520.lead {521font-size: 1.25rem;522font-weight: 300;523}524525.display-1 {526font-size: calc(1.625rem + 4.5vw);527font-weight: 300;528line-height: 1.2;529}530@media (min-width: 1200px) {531.display-1 {532font-size: 5rem;533}534}535536.display-2 {537font-size: calc(1.575rem + 3.9vw);538font-weight: 300;539line-height: 1.2;540}541@media (min-width: 1200px) {542.display-2 {543font-size: 4.5rem;544}545}546547.display-3 {548font-size: calc(1.525rem + 3.3vw);549font-weight: 300;550line-height: 1.2;551}552@media (min-width: 1200px) {553.display-3 {554font-size: 4rem;555}556}557558.display-4 {559font-size: calc(1.475rem + 2.7vw);560font-weight: 300;561line-height: 1.2;562}563@media (min-width: 1200px) {564.display-4 {565font-size: 3.5rem;566}567}568569.display-5 {570font-size: calc(1.425rem + 2.1vw);571font-weight: 300;572line-height: 1.2;573}574@media (min-width: 1200px) {575.display-5 {576font-size: 3rem;577}578}579580.display-6 {581font-size: calc(1.375rem + 1.5vw);582font-weight: 300;583line-height: 1.2;584}585@media (min-width: 1200px) {586.display-6 {587font-size: 2.5rem;588}589}590591.list-unstyled {592padding-left: 0;593list-style: none;594}595596.list-inline {597padding-left: 0;598list-style: none;599}600601.list-inline-item {602display: inline-block;603}604.list-inline-item:not(:last-child) {605margin-right: 0.5rem;606}607608.initialism {609font-size: 0.875em;610text-transform: uppercase;611}612613.blockquote {614margin-bottom: 1rem;615font-size: 1.25rem;616}617.blockquote > :last-child {618margin-bottom: 0;619}620621.blockquote-footer {622margin-top: -1rem;623margin-bottom: 1rem;624font-size: 0.875em;625color: #6c757d;626}627.blockquote-footer::before {628content: "— ";629}630631.img-fluid {632max-width: 100%;633height: auto;634}635636.img-thumbnail {637padding: 0.25rem;638background-color: #cfd8dc;639border: 1px solid #dee2e6;640border-radius: 0.25rem;641max-width: 100%;642height: auto;643}644645.figure {646display: inline-block;647}648649.figure-img {650margin-bottom: 0.5rem;651line-height: 1;652}653654.figure-caption {655font-size: 0.875em;656color: #6c757d;657}658659.container,660.container-fluid,661.dark-mode .container-xxl,662.dark-mode .container-xl,663.dark-mode .container-lg,664.dark-mode .container-md,665.dark-mode .container-sm,666.container-xxl,667.container-xl,668.container-lg,669.container-md,670.container-sm {671width: 100%;672padding-right: var(--bs-gutter-x, 0.75rem);673padding-left: var(--bs-gutter-x, 0.75rem);674margin-right: auto;675margin-left: auto;676}677678@media (min-width: 576px) {679.dark-mode .container-sm, .dark-mode .container, .container-sm, .container {680max-width: 540px;681}682}683@media (min-width: 768px) {684.dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container, .container-md, .container-sm, .container {685max-width: 720px;686}687}688@media (min-width: 992px) {689.dark-mode .container-lg, .dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container, .container-lg, .container-md, .container-sm, .container {690max-width: 960px;691}692}693@media (min-width: 1200px) {694.dark-mode .container-xl, .dark-mode .container-lg, .dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container, .container-xl, .container-lg, .container-md, .container-sm, .container {695max-width: 1140px;696}697}698@media (min-width: 1400px) {699.dark-mode .container-xxl, .dark-mode .container-xl, .dark-mode .container-lg, .dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {700max-width: 1320px;701}702}703.row {704--bs-gutter-x: 1.5rem;705--bs-gutter-y: 0;706display: flex;707flex-wrap: wrap;708margin-top: calc(-1 * var(--bs-gutter-y));709margin-right: calc(-0.5 * var(--bs-gutter-x));710margin-left: calc(-0.5 * var(--bs-gutter-x));711}712.row > * {713flex-shrink: 0;714width: 100%;715max-width: 100%;716padding-right: calc(var(--bs-gutter-x) * 0.5);717padding-left: calc(var(--bs-gutter-x) * 0.5);718margin-top: var(--bs-gutter-y);719}720721.col {722flex: 1 0 0%;723}724725.row-cols-auto > * {726flex: 0 0 auto;727width: auto;728}729730.row-cols-1 > * {731flex: 0 0 auto;732width: 100%;733}734735.row-cols-2 > * {736flex: 0 0 auto;737width: 50%;738}739740.row-cols-3 > * {741flex: 0 0 auto;742width: 33.3333333333%;743}744745.row-cols-4 > * {746flex: 0 0 auto;747width: 25%;748}749750.row-cols-5 > * {751flex: 0 0 auto;752width: 20%;753}754755.row-cols-6 > * {756flex: 0 0 auto;757width: 16.6666666667%;758}759760.col-auto {761flex: 0 0 auto;762width: auto;763}764765.col-1 {766flex: 0 0 auto;767width: 8.33333333%;768}769770.col-2 {771flex: 0 0 auto;772width: 16.66666667%;773}774775.col-3 {776flex: 0 0 auto;777width: 25%;778}779780.col-4 {781flex: 0 0 auto;782width: 33.33333333%;783}784785.col-5 {786flex: 0 0 auto;787width: 41.66666667%;788}789790.col-6 {791flex: 0 0 auto;792width: 50%;793}794795.col-7 {796flex: 0 0 auto;797width: 58.33333333%;798}799800.col-8 {801flex: 0 0 auto;802width: 66.66666667%;803}804805.col-9 {806flex: 0 0 auto;807width: 75%;808}809810.col-10 {811flex: 0 0 auto;812width: 83.33333333%;813}814815.col-11 {816flex: 0 0 auto;817width: 91.66666667%;818}819820.col-12 {821flex: 0 0 auto;822width: 100%;823}824825.offset-1 {826margin-left: 8.33333333%;827}828829.offset-2 {830margin-left: 16.66666667%;831}832833.offset-3 {834margin-left: 25%;835}836837.offset-4 {838margin-left: 33.33333333%;839}840841.offset-5 {842margin-left: 41.66666667%;843}844845.offset-6 {846margin-left: 50%;847}848849.offset-7 {850margin-left: 58.33333333%;851}852853.offset-8 {854margin-left: 66.66666667%;855}856857.offset-9 {858margin-left: 75%;859}860861.offset-10 {862margin-left: 83.33333333%;863}864865.offset-11 {866margin-left: 91.66666667%;867}868869.g-0,870.gx-0 {871--bs-gutter-x: 0;872}873874.g-0,875.gy-0 {876--bs-gutter-y: 0;877}878879.g-1,880.gx-1 {881--bs-gutter-x: 0.25rem;882}883884.g-1,885.gy-1 {886--bs-gutter-y: 0.25rem;887}888889.g-2,890.gx-2 {891--bs-gutter-x: 0.5rem;892}893894.g-2,895.gy-2 {896--bs-gutter-y: 0.5rem;897}898899.g-3,900.gx-3 {901--bs-gutter-x: 1rem;902}903904.g-3,905.gy-3 {906--bs-gutter-y: 1rem;907}908909.g-4,910.gx-4 {911--bs-gutter-x: 1.5rem;912}913914.g-4,915.gy-4 {916--bs-gutter-y: 1.5rem;917}918919.g-5,920.gx-5 {921--bs-gutter-x: 3rem;922}923924.g-5,925.gy-5 {926--bs-gutter-y: 3rem;927}928929@media (min-width: 576px) {930.col-sm {931flex: 1 0 0%;932}933934.row-cols-sm-auto > * {935flex: 0 0 auto;936width: auto;937}938939.row-cols-sm-1 > * {940flex: 0 0 auto;941width: 100%;942}943944.row-cols-sm-2 > * {945flex: 0 0 auto;946width: 50%;947}948949.row-cols-sm-3 > * {950flex: 0 0 auto;951width: 33.3333333333%;952}953954.row-cols-sm-4 > * {955flex: 0 0 auto;956width: 25%;957}958959.row-cols-sm-5 > * {960flex: 0 0 auto;961width: 20%;962}963964.row-cols-sm-6 > * {965flex: 0 0 auto;966width: 16.6666666667%;967}968969.col-sm-auto {970flex: 0 0 auto;971width: auto;972}973974.col-sm-1 {975flex: 0 0 auto;976width: 8.33333333%;977}978979.col-sm-2 {980flex: 0 0 auto;981width: 16.66666667%;982}983984.col-sm-3 {985flex: 0 0 auto;986width: 25%;987}988989.col-sm-4 {990flex: 0 0 auto;991width: 33.33333333%;992}993994.col-sm-5 {995flex: 0 0 auto;996width: 41.66666667%;997}998999.col-sm-6 {1000flex: 0 0 auto;1001width: 50%;1002}10031004.col-sm-7 {1005flex: 0 0 auto;1006width: 58.33333333%;1007}10081009.col-sm-8 {1010flex: 0 0 auto;1011width: 66.66666667%;1012}10131014.col-sm-9 {1015flex: 0 0 auto;1016width: 75%;1017}10181019.col-sm-10 {1020flex: 0 0 auto;1021width: 83.33333333%;1022}10231024.col-sm-11 {1025flex: 0 0 auto;1026width: 91.66666667%;1027}10281029.col-sm-12 {1030flex: 0 0 auto;1031width: 100%;1032}10331034.offset-sm-0 {1035margin-left: 0;1036}10371038.offset-sm-1 {1039margin-left: 8.33333333%;1040}10411042.offset-sm-2 {1043margin-left: 16.66666667%;1044}10451046.offset-sm-3 {1047margin-left: 25%;1048}10491050.offset-sm-4 {1051margin-left: 33.33333333%;1052}10531054.offset-sm-5 {1055margin-left: 41.66666667%;1056}10571058.offset-sm-6 {1059margin-left: 50%;1060}10611062.offset-sm-7 {1063margin-left: 58.33333333%;1064}10651066.offset-sm-8 {1067margin-left: 66.66666667%;1068}10691070.offset-sm-9 {1071margin-left: 75%;1072}10731074.offset-sm-10 {1075margin-left: 83.33333333%;1076}10771078.offset-sm-11 {1079margin-left: 91.66666667%;1080}10811082.g-sm-0,1083.gx-sm-0 {1084--bs-gutter-x: 0;1085}10861087.g-sm-0,1088.gy-sm-0 {1089--bs-gutter-y: 0;1090}10911092.g-sm-1,1093.gx-sm-1 {1094--bs-gutter-x: 0.25rem;1095}10961097.g-sm-1,1098.gy-sm-1 {1099--bs-gutter-y: 0.25rem;1100}11011102.g-sm-2,1103.gx-sm-2 {1104--bs-gutter-x: 0.5rem;1105}11061107.g-sm-2,1108.gy-sm-2 {1109--bs-gutter-y: 0.5rem;1110}11111112.g-sm-3,1113.gx-sm-3 {1114--bs-gutter-x: 1rem;1115}11161117.g-sm-3,1118.gy-sm-3 {1119--bs-gutter-y: 1rem;1120}11211122.g-sm-4,1123.gx-sm-4 {1124--bs-gutter-x: 1.5rem;1125}11261127.g-sm-4,1128.gy-sm-4 {1129--bs-gutter-y: 1.5rem;1130}11311132.g-sm-5,1133.gx-sm-5 {1134--bs-gutter-x: 3rem;1135}11361137.g-sm-5,1138.gy-sm-5 {1139--bs-gutter-y: 3rem;1140}1141}1142@media (min-width: 768px) {1143.col-md {1144flex: 1 0 0%;1145}11461147.row-cols-md-auto > * {1148flex: 0 0 auto;1149width: auto;1150}11511152.row-cols-md-1 > * {1153flex: 0 0 auto;1154width: 100%;1155}11561157.row-cols-md-2 > * {1158flex: 0 0 auto;1159width: 50%;1160}11611162.row-cols-md-3 > * {1163flex: 0 0 auto;1164width: 33.3333333333%;1165}11661167.row-cols-md-4 > * {1168flex: 0 0 auto;1169width: 25%;1170}11711172.row-cols-md-5 > * {1173flex: 0 0 auto;1174width: 20%;1175}11761177.row-cols-md-6 > * {1178flex: 0 0 auto;1179width: 16.6666666667%;1180}11811182.col-md-auto {1183flex: 0 0 auto;1184width: auto;1185}11861187.col-md-1 {1188flex: 0 0 auto;1189width: 8.33333333%;1190}11911192.col-md-2 {1193flex: 0 0 auto;1194width: 16.66666667%;1195}11961197.col-md-3 {1198flex: 0 0 auto;1199width: 25%;1200}12011202.col-md-4 {1203flex: 0 0 auto;1204width: 33.33333333%;1205}12061207.col-md-5 {1208flex: 0 0 auto;1209width: 41.66666667%;1210}12111212.col-md-6 {1213flex: 0 0 auto;1214width: 50%;1215}12161217.col-md-7 {1218flex: 0 0 auto;1219width: 58.33333333%;1220}12211222.col-md-8 {1223flex: 0 0 auto;1224width: 66.66666667%;1225}12261227.col-md-9 {1228flex: 0 0 auto;1229width: 75%;1230}12311232.col-md-10 {1233flex: 0 0 auto;1234width: 83.33333333%;1235}12361237.col-md-11 {1238flex: 0 0 auto;1239width: 91.66666667%;1240}12411242.col-md-12 {1243flex: 0 0 auto;1244width: 100%;1245}12461247.offset-md-0 {1248margin-left: 0;1249}12501251.offset-md-1 {1252margin-left: 8.33333333%;1253}12541255.offset-md-2 {1256margin-left: 16.66666667%;1257}12581259.offset-md-3 {1260margin-left: 25%;1261}12621263.offset-md-4 {1264margin-left: 33.33333333%;1265}12661267.offset-md-5 {1268margin-left: 41.66666667%;1269}12701271.offset-md-6 {1272margin-left: 50%;1273}12741275.offset-md-7 {1276margin-left: 58.33333333%;1277}12781279.offset-md-8 {1280margin-left: 66.66666667%;1281}12821283.offset-md-9 {1284margin-left: 75%;1285}12861287.offset-md-10 {1288margin-left: 83.33333333%;1289}12901291.offset-md-11 {1292margin-left: 91.66666667%;1293}12941295.g-md-0,1296.gx-md-0 {1297--bs-gutter-x: 0;1298}12991300.g-md-0,1301.gy-md-0 {1302--bs-gutter-y: 0;1303}13041305.g-md-1,1306.gx-md-1 {1307--bs-gutter-x: 0.25rem;1308}13091310.g-md-1,1311.gy-md-1 {1312--bs-gutter-y: 0.25rem;1313}13141315.g-md-2,1316.gx-md-2 {1317--bs-gutter-x: 0.5rem;1318}13191320.g-md-2,1321.gy-md-2 {1322--bs-gutter-y: 0.5rem;1323}13241325.g-md-3,1326.gx-md-3 {1327--bs-gutter-x: 1rem;1328}13291330.g-md-3,1331.gy-md-3 {1332--bs-gutter-y: 1rem;1333}13341335.g-md-4,1336.gx-md-4 {1337--bs-gutter-x: 1.5rem;1338}13391340.g-md-4,1341.gy-md-4 {1342--bs-gutter-y: 1.5rem;1343}13441345.g-md-5,1346.gx-md-5 {1347--bs-gutter-x: 3rem;1348}13491350.g-md-5,1351.gy-md-5 {1352--bs-gutter-y: 3rem;1353}1354}1355@media (min-width: 992px) {1356.col-lg {1357flex: 1 0 0%;1358}13591360.row-cols-lg-auto > * {1361flex: 0 0 auto;1362width: auto;1363}13641365.row-cols-lg-1 > * {1366flex: 0 0 auto;1367width: 100%;1368}13691370.row-cols-lg-2 > * {1371flex: 0 0 auto;1372width: 50%;1373}13741375.row-cols-lg-3 > * {1376flex: 0 0 auto;1377width: 33.3333333333%;1378}13791380.row-cols-lg-4 > * {1381flex: 0 0 auto;1382width: 25%;1383}13841385.row-cols-lg-5 > * {1386flex: 0 0 auto;1387width: 20%;1388}13891390.row-cols-lg-6 > * {1391flex: 0 0 auto;1392width: 16.6666666667%;1393}13941395.col-lg-auto {1396flex: 0 0 auto;1397width: auto;1398}13991400.col-lg-1 {1401flex: 0 0 auto;1402width: 8.33333333%;1403}14041405.col-lg-2 {1406flex: 0 0 auto;1407width: 16.66666667%;1408}14091410.col-lg-3 {1411flex: 0 0 auto;1412width: 25%;1413}14141415.col-lg-4 {1416flex: 0 0 auto;1417width: 33.33333333%;1418}14191420.col-lg-5 {1421flex: 0 0 auto;1422width: 41.66666667%;1423}14241425.col-lg-6 {1426flex: 0 0 auto;1427width: 50%;1428}14291430.col-lg-7 {1431flex: 0 0 auto;1432width: 58.33333333%;1433}14341435.col-lg-8 {1436flex: 0 0 auto;1437width: 66.66666667%;1438}14391440.col-lg-9 {1441flex: 0 0 auto;1442width: 75%;1443}14441445.col-lg-10 {1446flex: 0 0 auto;1447width: 83.33333333%;1448}14491450.col-lg-11 {1451flex: 0 0 auto;1452width: 91.66666667%;1453}14541455.col-lg-12 {1456flex: 0 0 auto;1457width: 100%;1458}14591460.offset-lg-0 {1461margin-left: 0;1462}14631464.offset-lg-1 {1465margin-left: 8.33333333%;1466}14671468.offset-lg-2 {1469margin-left: 16.66666667%;1470}14711472.offset-lg-3 {1473margin-left: 25%;1474}14751476.offset-lg-4 {1477margin-left: 33.33333333%;1478}14791480.offset-lg-5 {1481margin-left: 41.66666667%;1482}14831484.offset-lg-6 {1485margin-left: 50%;1486}14871488.offset-lg-7 {1489margin-left: 58.33333333%;1490}14911492.offset-lg-8 {1493margin-left: 66.66666667%;1494}14951496.offset-lg-9 {1497margin-left: 75%;1498}14991500.offset-lg-10 {1501margin-left: 83.33333333%;1502}15031504.offset-lg-11 {1505margin-left: 91.66666667%;1506}15071508.g-lg-0,1509.gx-lg-0 {1510--bs-gutter-x: 0;1511}15121513.g-lg-0,1514.gy-lg-0 {1515--bs-gutter-y: 0;1516}15171518.g-lg-1,1519.gx-lg-1 {1520--bs-gutter-x: 0.25rem;1521}15221523.g-lg-1,1524.gy-lg-1 {1525--bs-gutter-y: 0.25rem;1526}15271528.g-lg-2,1529.gx-lg-2 {1530--bs-gutter-x: 0.5rem;1531}15321533.g-lg-2,1534.gy-lg-2 {1535--bs-gutter-y: 0.5rem;1536}15371538.g-lg-3,1539.gx-lg-3 {1540--bs-gutter-x: 1rem;1541}15421543.g-lg-3,1544.gy-lg-3 {1545--bs-gutter-y: 1rem;1546}15471548.g-lg-4,1549.gx-lg-4 {1550--bs-gutter-x: 1.5rem;1551}15521553.g-lg-4,1554.gy-lg-4 {1555--bs-gutter-y: 1.5rem;1556}15571558.g-lg-5,1559.gx-lg-5 {1560--bs-gutter-x: 3rem;1561}15621563.g-lg-5,1564.gy-lg-5 {1565--bs-gutter-y: 3rem;1566}1567}1568@media (min-width: 1200px) {1569.col-xl {1570flex: 1 0 0%;1571}15721573.row-cols-xl-auto > * {1574flex: 0 0 auto;1575width: auto;1576}15771578.row-cols-xl-1 > * {1579flex: 0 0 auto;1580width: 100%;1581}15821583.row-cols-xl-2 > * {1584flex: 0 0 auto;1585width: 50%;1586}15871588.row-cols-xl-3 > * {1589flex: 0 0 auto;1590width: 33.3333333333%;1591}15921593.row-cols-xl-4 > * {1594flex: 0 0 auto;1595width: 25%;1596}15971598.row-cols-xl-5 > * {1599flex: 0 0 auto;1600width: 20%;1601}16021603.row-cols-xl-6 > * {1604flex: 0 0 auto;1605width: 16.6666666667%;1606}16071608.col-xl-auto {1609flex: 0 0 auto;1610width: auto;1611}16121613.col-xl-1 {1614flex: 0 0 auto;1615width: 8.33333333%;1616}16171618.col-xl-2 {1619flex: 0 0 auto;1620width: 16.66666667%;1621}16221623.col-xl-3 {1624flex: 0 0 auto;1625width: 25%;1626}16271628.col-xl-4 {1629flex: 0 0 auto;1630width: 33.33333333%;1631}16321633.col-xl-5 {1634flex: 0 0 auto;1635width: 41.66666667%;1636}16371638.col-xl-6 {1639flex: 0 0 auto;1640width: 50%;1641}16421643.col-xl-7 {1644flex: 0 0 auto;1645width: 58.33333333%;1646}16471648.col-xl-8 {1649flex: 0 0 auto;1650width: 66.66666667%;1651}16521653.col-xl-9 {1654flex: 0 0 auto;1655width: 75%;1656}16571658.col-xl-10 {1659flex: 0 0 auto;1660width: 83.33333333%;1661}16621663.col-xl-11 {1664flex: 0 0 auto;1665width: 91.66666667%;1666}16671668.col-xl-12 {1669flex: 0 0 auto;1670width: 100%;1671}16721673.offset-xl-0 {1674margin-left: 0;1675}16761677.offset-xl-1 {1678margin-left: 8.33333333%;1679}16801681.offset-xl-2 {1682margin-left: 16.66666667%;1683}16841685.offset-xl-3 {1686margin-left: 25%;1687}16881689.offset-xl-4 {1690margin-left: 33.33333333%;1691}16921693.offset-xl-5 {1694margin-left: 41.66666667%;1695}16961697.offset-xl-6 {1698margin-left: 50%;1699}17001701.offset-xl-7 {1702margin-left: 58.33333333%;1703}17041705.offset-xl-8 {1706margin-left: 66.66666667%;1707}17081709.offset-xl-9 {1710margin-left: 75%;1711}17121713.offset-xl-10 {1714margin-left: 83.33333333%;1715}17161717.offset-xl-11 {1718margin-left: 91.66666667%;1719}17201721.g-xl-0,1722.gx-xl-0 {1723--bs-gutter-x: 0;1724}17251726.g-xl-0,1727.gy-xl-0 {1728--bs-gutter-y: 0;1729}17301731.g-xl-1,1732.gx-xl-1 {1733--bs-gutter-x: 0.25rem;1734}17351736.g-xl-1,1737.gy-xl-1 {1738--bs-gutter-y: 0.25rem;1739}17401741.g-xl-2,1742.gx-xl-2 {1743--bs-gutter-x: 0.5rem;1744}17451746.g-xl-2,1747.gy-xl-2 {1748--bs-gutter-y: 0.5rem;1749}17501751.g-xl-3,1752.gx-xl-3 {1753--bs-gutter-x: 1rem;1754}17551756.g-xl-3,1757.gy-xl-3 {1758--bs-gutter-y: 1rem;1759}17601761.g-xl-4,1762.gx-xl-4 {1763--bs-gutter-x: 1.5rem;1764}17651766.g-xl-4,1767.gy-xl-4 {1768--bs-gutter-y: 1.5rem;1769}17701771.g-xl-5,1772.gx-xl-5 {1773--bs-gutter-x: 3rem;1774}17751776.g-xl-5,1777.gy-xl-5 {1778--bs-gutter-y: 3rem;1779}1780}1781@media (min-width: 1400px) {1782.col-xxl {1783flex: 1 0 0%;1784}17851786.row-cols-xxl-auto > * {1787flex: 0 0 auto;1788width: auto;1789}17901791.row-cols-xxl-1 > * {1792flex: 0 0 auto;1793width: 100%;1794}17951796.row-cols-xxl-2 > * {1797flex: 0 0 auto;1798width: 50%;1799}18001801.row-cols-xxl-3 > * {1802flex: 0 0 auto;1803width: 33.3333333333%;1804}18051806.row-cols-xxl-4 > * {1807flex: 0 0 auto;1808width: 25%;1809}18101811.row-cols-xxl-5 > * {1812flex: 0 0 auto;1813width: 20%;1814}18151816.row-cols-xxl-6 > * {1817flex: 0 0 auto;1818width: 16.6666666667%;1819}18201821.col-xxl-auto {1822flex: 0 0 auto;1823width: auto;1824}18251826.col-xxl-1 {1827flex: 0 0 auto;1828width: 8.33333333%;1829}18301831.col-xxl-2 {1832flex: 0 0 auto;1833width: 16.66666667%;1834}18351836.col-xxl-3 {1837flex: 0 0 auto;1838width: 25%;1839}18401841.col-xxl-4 {1842flex: 0 0 auto;1843width: 33.33333333%;1844}18451846.col-xxl-5 {1847flex: 0 0 auto;1848width: 41.66666667%;1849}18501851.col-xxl-6 {1852flex: 0 0 auto;1853width: 50%;1854}18551856.col-xxl-7 {1857flex: 0 0 auto;1858width: 58.33333333%;1859}18601861.col-xxl-8 {1862flex: 0 0 auto;1863width: 66.66666667%;1864}18651866.col-xxl-9 {1867flex: 0 0 auto;1868width: 75%;1869}18701871.col-xxl-10 {1872flex: 0 0 auto;1873width: 83.33333333%;1874}18751876.col-xxl-11 {1877flex: 0 0 auto;1878width: 91.66666667%;1879}18801881.col-xxl-12 {1882flex: 0 0 auto;1883width: 100%;1884}18851886.offset-xxl-0 {1887margin-left: 0;1888}18891890.offset-xxl-1 {1891margin-left: 8.33333333%;1892}18931894.offset-xxl-2 {1895margin-left: 16.66666667%;1896}18971898.offset-xxl-3 {1899margin-left: 25%;1900}19011902.offset-xxl-4 {1903margin-left: 33.33333333%;1904}19051906.offset-xxl-5 {1907margin-left: 41.66666667%;1908}19091910.offset-xxl-6 {1911margin-left: 50%;1912}19131914.offset-xxl-7 {1915margin-left: 58.33333333%;1916}19171918.offset-xxl-8 {1919margin-left: 66.66666667%;1920}19211922.offset-xxl-9 {1923margin-left: 75%;1924}19251926.offset-xxl-10 {1927margin-left: 83.33333333%;1928}19291930.offset-xxl-11 {1931margin-left: 91.66666667%;1932}19331934.g-xxl-0,1935.gx-xxl-0 {1936--bs-gutter-x: 0;1937}19381939.g-xxl-0,1940.gy-xxl-0 {1941--bs-gutter-y: 0;1942}19431944.g-xxl-1,1945.gx-xxl-1 {1946--bs-gutter-x: 0.25rem;1947}19481949.g-xxl-1,1950.gy-xxl-1 {1951--bs-gutter-y: 0.25rem;1952}19531954.g-xxl-2,1955.gx-xxl-2 {1956--bs-gutter-x: 0.5rem;1957}19581959.g-xxl-2,1960.gy-xxl-2 {1961--bs-gutter-y: 0.5rem;1962}19631964.g-xxl-3,1965.gx-xxl-3 {1966--bs-gutter-x: 1rem;1967}19681969.g-xxl-3,1970.gy-xxl-3 {1971--bs-gutter-y: 1rem;1972}19731974.g-xxl-4,1975.gx-xxl-4 {1976--bs-gutter-x: 1.5rem;1977}19781979.g-xxl-4,1980.gy-xxl-4 {1981--bs-gutter-y: 1.5rem;1982}19831984.g-xxl-5,1985.gx-xxl-5 {1986--bs-gutter-x: 3rem;1987}19881989.g-xxl-5,1990.gy-xxl-5 {1991--bs-gutter-y: 3rem;1992}1993}1994.table {1995--bs-table-bg: transparent;1996--bs-table-accent-bg: transparent;1997--bs-table-striped-color: #212529;1998--bs-table-striped-bg: rgba(0, 0, 0, 0.05);1999--bs-table-active-color: #212529;2000--bs-table-active-bg: rgba(0, 0, 0, 0.1);2001--bs-table-hover-color: #212529;2002--bs-table-hover-bg: rgba(0, 0, 0, 0.075);2003width: 100%;2004margin-bottom: 1rem;2005color: #212529;2006vertical-align: top;2007border-color: #dee2e6;2008}2009.table > :not(caption) > * > * {2010padding: 0.5rem 0.5rem;2011background-color: var(--bs-table-bg);2012border-bottom-width: 1px;2013box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);2014}2015.table > tbody {2016vertical-align: inherit;2017}2018.table > thead {2019vertical-align: bottom;2020}2021.table > :not(:first-child) {2022border-top: 2px solid currentColor;2023}20242025.caption-top {2026caption-side: top;2027}20282029.table-sm > :not(caption) > * > * {2030padding: 0.25rem 0.25rem;2031}20322033.table-bordered > :not(caption) > * {2034border-width: 1px 0;2035}2036.table-bordered > :not(caption) > * > * {2037border-width: 0 1px;2038}20392040.table-borderless > :not(caption) > * > * {2041border-bottom-width: 0;2042}2043.table-borderless > :not(:first-child) {2044border-top-width: 0;2045}20462047.table-striped > tbody > tr:nth-of-type(odd) > * {2048--bs-table-accent-bg: var(--bs-table-striped-bg);2049color: var(--bs-table-striped-color);2050}20512052.table-active {2053--bs-table-accent-bg: var(--bs-table-active-bg);2054color: var(--bs-table-active-color);2055}20562057.table-hover > tbody > tr:hover > * {2058--bs-table-accent-bg: var(--bs-table-hover-bg);2059color: var(--bs-table-hover-color);2060}20612062.table-primary {2063--bs-table-bg: #eceef2;2064--bs-table-striped-bg: #e0e2e6;2065--bs-table-striped-color: #000;2066--bs-table-active-bg: #d4d6da;2067--bs-table-active-color: #000;2068--bs-table-hover-bg: #dadce0;2069--bs-table-hover-color: #000;2070color: #000;2071border-color: #d4d6da;2072}20732074.table-secondary {2075--bs-table-bg: #deebe6;2076--bs-table-striped-bg: #d3dfdb;2077--bs-table-striped-color: #000;2078--bs-table-active-bg: #c8d4cf;2079--bs-table-active-color: #000;2080--bs-table-hover-bg: #cdd9d5;2081--bs-table-hover-color: #000;2082color: #000;2083border-color: #c8d4cf;2084}20852086.table-success {2087--bs-table-bg: #d1e7dd;2088--bs-table-striped-bg: #c7dbd2;2089--bs-table-striped-color: #000;2090--bs-table-active-bg: #bcd0c7;2091--bs-table-active-color: #000;2092--bs-table-hover-bg: #c1d6cc;2093--bs-table-hover-color: #000;2094color: #000;2095border-color: #bcd0c7;2096}20972098.table-info {2099--bs-table-bg: #cff4fc;2100--bs-table-striped-bg: #c5e8ef;2101--bs-table-striped-color: #000;2102--bs-table-active-bg: #badce3;2103--bs-table-active-color: #000;2104--bs-table-hover-bg: #bfe2e9;2105--bs-table-hover-color: #000;2106color: #000;2107border-color: #badce3;2108}21092110.table-warning {2111--bs-table-bg: #fff3cd;2112--bs-table-striped-bg: #f2e7c3;2113--bs-table-striped-color: #000;2114--bs-table-active-bg: #e6dbb9;2115--bs-table-active-color: #000;2116--bs-table-hover-bg: #ece1be;2117--bs-table-hover-color: #000;2118color: #000;2119border-color: #e6dbb9;2120}21212122.table-danger {2123--bs-table-bg: #f8d7da;2124--bs-table-striped-bg: #eccccf;2125--bs-table-striped-color: #000;2126--bs-table-active-bg: #dfc2c4;2127--bs-table-active-color: #000;2128--bs-table-hover-bg: #e5c7ca;2129--bs-table-hover-color: #000;2130color: #000;2131border-color: #dfc2c4;2132}21332134.table-light {2135--bs-table-bg: #f8f9fa;2136--bs-table-striped-bg: #ecedee;2137--bs-table-striped-color: #000;2138--bs-table-active-bg: #dfe0e1;2139--bs-table-active-color: #000;2140--bs-table-hover-bg: #e5e6e7;2141--bs-table-hover-color: #000;2142color: #000;2143border-color: #dfe0e1;2144}21452146.table-dark {2147--bs-table-bg: #212529;2148--bs-table-striped-bg: #2c3034;2149--bs-table-striped-color: #fff;2150--bs-table-active-bg: #373b3e;2151--bs-table-active-color: #fff;2152--bs-table-hover-bg: #323539;2153--bs-table-hover-color: #fff;2154color: #fff;2155border-color: #373b3e;2156}21572158.table-responsive {2159overflow-x: auto;2160-webkit-overflow-scrolling: touch;2161}21622163@media (max-width: 575.98px) {2164.table-responsive-sm {2165overflow-x: auto;2166-webkit-overflow-scrolling: touch;2167}2168}2169@media (max-width: 767.98px) {2170.table-responsive-md {2171overflow-x: auto;2172-webkit-overflow-scrolling: touch;2173}2174}2175@media (max-width: 991.98px) {2176.table-responsive-lg {2177overflow-x: auto;2178-webkit-overflow-scrolling: touch;2179}2180}2181@media (max-width: 1199.98px) {2182.table-responsive-xl {2183overflow-x: auto;2184-webkit-overflow-scrolling: touch;2185}2186}2187@media (max-width: 1399.98px) {2188.table-responsive-xxl {2189overflow-x: auto;2190-webkit-overflow-scrolling: touch;2191}2192}2193.form-label {2194margin-bottom: 0.5rem;2195}21962197.col-form-label {2198padding-top: calc(0.375rem + 1px);2199padding-bottom: calc(0.375rem + 1px);2200margin-bottom: 0;2201font-size: inherit;2202line-height: 1.5;2203}22042205.col-form-label-lg {2206padding-top: calc(0.5rem + 1px);2207padding-bottom: calc(0.5rem + 1px);2208font-size: 1.25rem;2209}22102211.col-form-label-sm {2212padding-top: calc(0.25rem + 1px);2213padding-bottom: calc(0.25rem + 1px);2214font-size: 0.875rem;2215}22162217.form-text {2218margin-top: 0.25rem;2219font-size: 0.875em;2220color: #6c757d;2221}22222223.form-control {2224display: block;2225width: 100%;2226padding: 0.375rem 0.75rem;2227font-size: 1rem;2228font-weight: 400;2229line-height: 1.5;2230color: #212529;2231background-color: #cfd8dc;2232background-clip: padding-box;2233border: 1px solid #ced4da;2234appearance: none;2235border-radius: 0.25rem;2236transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;2237}2238@media (prefers-reduced-motion: reduce) {2239.form-control {2240transition: none;2241}2242}2243.form-control[type=file] {2244overflow: hidden;2245}2246.form-control[type=file]:not(:disabled):not([readonly]) {2247cursor: pointer;2248}2249.form-control:focus {2250color: #212529;2251background-color: #cfd8dc;2252border-color: #d0d4de;2253outline: 0;2254box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);2255}2256.form-control::-webkit-date-and-time-value {2257height: 1.5em;2258}2259.form-control::placeholder {2260color: #6c757d;2261opacity: 1;2262}2263.form-control:disabled, .form-control[readonly] {2264background-color: #e9ecef;2265opacity: 1;2266}2267.form-control::file-selector-button {2268padding: 0.375rem 0.75rem;2269margin: -0.375rem -0.75rem;2270margin-inline-end: 0.75rem;2271color: #212529;2272background-color: #e9ecef;2273pointer-events: none;2274border-color: inherit;2275border-style: solid;2276border-width: 0;2277border-inline-end-width: 1px;2278border-radius: 0;2279transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;2280}2281@media (prefers-reduced-motion: reduce) {2282.form-control::file-selector-button {2283transition: none;2284}2285}2286.form-control:hover:not(:disabled):not([readonly])::file-selector-button {2287background-color: #dde0e3;2288}2289.form-control::-webkit-file-upload-button {2290padding: 0.375rem 0.75rem;2291margin: -0.375rem -0.75rem;2292margin-inline-end: 0.75rem;2293color: #212529;2294background-color: #e9ecef;2295pointer-events: none;2296border-color: inherit;2297border-style: solid;2298border-width: 0;2299border-inline-end-width: 1px;2300border-radius: 0;2301transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;2302}2303@media (prefers-reduced-motion: reduce) {2304.form-control::-webkit-file-upload-button {2305transition: none;2306}2307}2308.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {2309background-color: #dde0e3;2310}23112312.form-control-plaintext {2313display: block;2314width: 100%;2315padding: 0.375rem 0;2316margin-bottom: 0;2317line-height: 1.5;2318color: #212529;2319background-color: transparent;2320border: solid transparent;2321border-width: 1px 0;2322}2323.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {2324padding-right: 0;2325padding-left: 0;2326}23272328.form-control-sm {2329min-height: calc(1.5em + 0.5rem + 2px);2330padding: 0.25rem 0.5rem;2331font-size: 0.875rem;2332border-radius: 0.2rem;2333}2334.form-control-sm::file-selector-button {2335padding: 0.25rem 0.5rem;2336margin: -0.25rem -0.5rem;2337margin-inline-end: 0.5rem;2338}2339.form-control-sm::-webkit-file-upload-button {2340padding: 0.25rem 0.5rem;2341margin: -0.25rem -0.5rem;2342margin-inline-end: 0.5rem;2343}23442345.form-control-lg {2346min-height: calc(1.5em + 1rem + 2px);2347padding: 0.5rem 1rem;2348font-size: 1.25rem;2349border-radius: 0.3rem;2350}2351.form-control-lg::file-selector-button {2352padding: 0.5rem 1rem;2353margin: -0.5rem -1rem;2354margin-inline-end: 1rem;2355}2356.form-control-lg::-webkit-file-upload-button {2357padding: 0.5rem 1rem;2358margin: -0.5rem -1rem;2359margin-inline-end: 1rem;2360}23612362textarea.form-control {2363min-height: calc(1.5em + 0.75rem + 2px);2364}2365textarea.form-control-sm {2366min-height: calc(1.5em + 0.5rem + 2px);2367}2368textarea.form-control-lg {2369min-height: calc(1.5em + 1rem + 2px);2370}23712372.form-control-color {2373width: 3rem;2374height: auto;2375padding: 0.375rem;2376}2377.form-control-color:not(:disabled):not([readonly]) {2378cursor: pointer;2379}2380.form-control-color::-moz-color-swatch {2381height: 1.5em;2382border-radius: 0.25rem;2383}2384.form-control-color::-webkit-color-swatch {2385height: 1.5em;2386border-radius: 0.25rem;2387}23882389.form-select {2390display: block;2391width: 100%;2392padding: 0.375rem 2.25rem 0.375rem 0.75rem;2393-moz-padding-start: calc(0.75rem - 3px);2394font-size: 1rem;2395font-weight: 400;2396line-height: 1.5;2397color: #212529;2398background-color: #cfd8dc;2399background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");2400background-repeat: no-repeat;2401background-position: right 0.75rem center;2402background-size: 16px 12px;2403border: 1px solid #ced4da;2404border-radius: 0.25rem;2405transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;2406appearance: none;2407}2408@media (prefers-reduced-motion: reduce) {2409.form-select {2410transition: none;2411}2412}2413.form-select:focus {2414border-color: #d0d4de;2415outline: 0;2416box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);2417}2418.form-select[multiple], .form-select[size]:not([size="1"]) {2419padding-right: 0.75rem;2420background-image: none;2421}2422.form-select:disabled {2423background-color: #e9ecef;2424}2425.form-select:-moz-focusring {2426color: transparent;2427text-shadow: 0 0 0 #212529;2428}24292430.form-select-sm {2431padding-top: 0.25rem;2432padding-bottom: 0.25rem;2433padding-left: 0.5rem;2434font-size: 0.875rem;2435border-radius: 0.2rem;2436}24372438.form-select-lg {2439padding-top: 0.5rem;2440padding-bottom: 0.5rem;2441padding-left: 1rem;2442font-size: 1.25rem;2443border-radius: 0.3rem;2444}24452446.form-check {2447display: block;2448min-height: 1.5rem;2449padding-left: 1.5em;2450margin-bottom: 0.125rem;2451}2452.form-check .form-check-input {2453float: left;2454margin-left: -1.5em;2455}24562457.form-check-input {2458width: 1em;2459height: 1em;2460margin-top: 0.25em;2461vertical-align: top;2462background-color: #cfd8dc;2463background-repeat: no-repeat;2464background-position: center;2465background-size: contain;2466border: 1px solid rgba(0, 0, 0, 0.25);2467appearance: none;2468color-adjust: exact;2469}2470.form-check-input[type=checkbox] {2471border-radius: 0.25em;2472}2473.form-check-input[type=radio] {2474border-radius: 50%;2475}2476.form-check-input:active {2477filter: brightness(90%);2478}2479.form-check-input:focus {2480border-color: #d0d4de;2481outline: 0;2482box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);2483}2484.form-check-input:checked {2485background-color: #a1a9bd;2486border-color: #a1a9bd;2487}2488.form-check-input:checked[type=checkbox] {2489background-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");2490}2491.form-check-input:checked[type=radio] {2492background-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");2493}2494.form-check-input[type=checkbox]:indeterminate {2495background-color: #a1a9bd;2496border-color: #a1a9bd;2497background-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");2498}2499.form-check-input:disabled {2500pointer-events: none;2501filter: none;2502opacity: 0.5;2503}2504.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {2505opacity: 0.5;2506}25072508.form-switch {2509padding-left: 2.5em;2510}2511.form-switch .form-check-input {2512width: 2em;2513margin-left: -2.5em;2514background-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");2515background-position: left center;2516border-radius: 2em;2517transition: background-position 0.15s ease-in-out;2518}2519@media (prefers-reduced-motion: reduce) {2520.form-switch .form-check-input {2521transition: none;2522}2523}2524.form-switch .form-check-input:focus {2525background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23d0d4de'/%3e%3c/svg%3e");2526}2527.form-switch .form-check-input:checked {2528background-position: right center;2529background-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");2530}25312532.form-check-inline {2533display: inline-block;2534margin-right: 1rem;2535}25362537.btn-check {2538position: absolute;2539clip: rect(0, 0, 0, 0);2540pointer-events: none;2541}2542.btn-check[disabled] + .btn, .btn-check:disabled + .btn {2543pointer-events: none;2544filter: none;2545opacity: 0.65;2546}25472548.form-range {2549width: 100%;2550height: 1.5rem;2551padding: 0;2552background-color: transparent;2553appearance: none;2554}2555.form-range:focus {2556outline: 0;2557}2558.form-range:focus::-webkit-slider-thumb {2559box-shadow: 0 0 0 1px #cfd8dc, 0 0 0 0.25rem rgba(161, 169, 189, 0.25);2560}2561.form-range:focus::-moz-range-thumb {2562box-shadow: 0 0 0 1px #cfd8dc, 0 0 0 0.25rem rgba(161, 169, 189, 0.25);2563}2564.form-range::-moz-focus-outer {2565border: 0;2566}2567.form-range::-webkit-slider-thumb {2568width: 1rem;2569height: 1rem;2570margin-top: -0.25rem;2571background-color: #a1a9bd;2572border: 0;2573border-radius: 1rem;2574transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;2575appearance: none;2576}2577@media (prefers-reduced-motion: reduce) {2578.form-range::-webkit-slider-thumb {2579transition: none;2580}2581}2582.form-range::-webkit-slider-thumb:active {2583background-color: #e3e5eb;2584}2585.form-range::-webkit-slider-runnable-track {2586width: 100%;2587height: 0.5rem;2588color: transparent;2589cursor: pointer;2590background-color: #dee2e6;2591border-color: transparent;2592border-radius: 1rem;2593}2594.form-range::-moz-range-thumb {2595width: 1rem;2596height: 1rem;2597background-color: #a1a9bd;2598border: 0;2599border-radius: 1rem;2600transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;2601appearance: none;2602}2603@media (prefers-reduced-motion: reduce) {2604.form-range::-moz-range-thumb {2605transition: none;2606}2607}2608.form-range::-moz-range-thumb:active {2609background-color: #e3e5eb;2610}2611.form-range::-moz-range-track {2612width: 100%;2613height: 0.5rem;2614color: transparent;2615cursor: pointer;2616background-color: #dee2e6;2617border-color: transparent;2618border-radius: 1rem;2619}2620.form-range:disabled {2621pointer-events: none;2622}2623.form-range:disabled::-webkit-slider-thumb {2624background-color: #adb5bd;2625}2626.form-range:disabled::-moz-range-thumb {2627background-color: #adb5bd;2628}26292630.form-floating {2631position: relative;2632}2633.form-floating > .form-control,2634.form-floating > .form-select {2635height: calc(3.5rem + 2px);2636line-height: 1.25;2637}2638.form-floating > label {2639position: absolute;2640top: 0;2641left: 0;2642height: 100%;2643padding: 1rem 0.75rem;2644pointer-events: none;2645border: 1px solid transparent;2646transform-origin: 0 0;2647transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;2648}2649@media (prefers-reduced-motion: reduce) {2650.form-floating > label {2651transition: none;2652}2653}2654.form-floating > .form-control {2655padding: 1rem 0.75rem;2656}2657.form-floating > .form-control::placeholder {2658color: transparent;2659}2660.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {2661padding-top: 1.625rem;2662padding-bottom: 0.625rem;2663}2664.form-floating > .form-control:-webkit-autofill {2665padding-top: 1.625rem;2666padding-bottom: 0.625rem;2667}2668.form-floating > .form-select {2669padding-top: 1.625rem;2670padding-bottom: 0.625rem;2671}2672.form-floating > .form-control:focus ~ label,2673.form-floating > .form-control:not(:placeholder-shown) ~ label,2674.form-floating > .form-select ~ label {2675opacity: 0.65;2676transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);2677}2678.form-floating > .form-control:-webkit-autofill ~ label {2679opacity: 0.65;2680transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);2681}26822683.input-group {2684position: relative;2685display: flex;2686flex-wrap: wrap;2687align-items: stretch;2688width: 100%;2689}2690.input-group > .form-control,2691.input-group > .form-select {2692position: relative;2693flex: 1 1 auto;2694width: 1%;2695min-width: 0;2696}2697.input-group > .form-control:focus,2698.input-group > .form-select:focus {2699z-index: 3;2700}2701.input-group .btn {2702position: relative;2703z-index: 2;2704}2705.input-group .btn:focus {2706z-index: 3;2707}27082709.input-group-text {2710display: flex;2711align-items: center;2712padding: 0.375rem 0.75rem;2713font-size: 1rem;2714font-weight: 400;2715line-height: 1.5;2716color: #212529;2717text-align: center;2718white-space: nowrap;2719background-color: #e9ecef;2720border: 1px solid #ced4da;2721border-radius: 0.25rem;2722}27232724.input-group-lg > .form-control,2725.input-group-lg > .form-select,2726.input-group-lg > .input-group-text,2727.input-group-lg > .btn {2728padding: 0.5rem 1rem;2729font-size: 1.25rem;2730border-radius: 0.3rem;2731}27322733.input-group-sm > .form-control,2734.input-group-sm > .form-select,2735.input-group-sm > .input-group-text,2736.input-group-sm > .btn {2737padding: 0.25rem 0.5rem;2738font-size: 0.875rem;2739border-radius: 0.2rem;2740}27412742.input-group-lg > .form-select,2743.input-group-sm > .form-select {2744padding-right: 3rem;2745}27462747.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),2748.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {2749border-top-right-radius: 0;2750border-bottom-right-radius: 0;2751}2752.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),2753.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {2754border-top-right-radius: 0;2755border-bottom-right-radius: 0;2756}2757.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {2758margin-left: -1px;2759border-top-left-radius: 0;2760border-bottom-left-radius: 0;2761}27622763.valid-feedback {2764display: none;2765width: 100%;2766margin-top: 0.25rem;2767font-size: 0.875em;2768color: #198754;2769}27702771.valid-tooltip {2772position: absolute;2773top: 100%;2774z-index: 5;2775display: none;2776max-width: 100%;2777padding: 0.25rem 0.5rem;2778margin-top: 0.1rem;2779font-size: 0.875rem;2780color: #fff;2781background-color: rgba(25, 135, 84, 0.9);2782border-radius: 0.25rem;2783}27842785.was-validated :valid ~ .valid-feedback,2786.was-validated :valid ~ .valid-tooltip,2787.is-valid ~ .valid-feedback,2788.is-valid ~ .valid-tooltip {2789display: block;2790}27912792.was-validated .form-control:valid, .form-control.is-valid {2793border-color: #198754;2794padding-right: calc(1.5em + 0.75rem);2795background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' 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");2796background-repeat: no-repeat;2797background-position: right calc(0.375em + 0.1875rem) center;2798background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);2799}2800.was-validated .form-control:valid:focus, .form-control.is-valid:focus {2801border-color: #198754;2802box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);2803}28042805.was-validated textarea.form-control:valid, textarea.form-control.is-valid {2806padding-right: calc(1.5em + 0.75rem);2807background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);2808}28092810.was-validated .form-select:valid, .form-select.is-valid {2811border-color: #198754;2812}2813.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"] {2814padding-right: 4.125rem;2815background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' 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='%23198754' 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");2816background-position: right 0.75rem center, center right 2.25rem;2817background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);2818}2819.was-validated .form-select:valid:focus, .form-select.is-valid:focus {2820border-color: #198754;2821box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);2822}28232824.was-validated .form-check-input:valid, .form-check-input.is-valid {2825border-color: #198754;2826}2827.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {2828background-color: #198754;2829}2830.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {2831box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);2832}2833.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {2834color: #198754;2835}28362837.form-check-inline .form-check-input ~ .valid-feedback {2838margin-left: 0.5em;2839}28402841.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,2842.was-validated .input-group .form-select:valid,2843.input-group .form-select.is-valid {2844z-index: 1;2845}2846.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,2847.was-validated .input-group .form-select:valid:focus,2848.input-group .form-select.is-valid:focus {2849z-index: 3;2850}28512852.invalid-feedback {2853display: none;2854width: 100%;2855margin-top: 0.25rem;2856font-size: 0.875em;2857color: #dc3545;2858}28592860.invalid-tooltip {2861position: absolute;2862top: 100%;2863z-index: 5;2864display: none;2865max-width: 100%;2866padding: 0.25rem 0.5rem;2867margin-top: 0.1rem;2868font-size: 0.875rem;2869color: #fff;2870background-color: rgba(220, 53, 69, 0.9);2871border-radius: 0.25rem;2872}28732874.was-validated :invalid ~ .invalid-feedback,2875.was-validated :invalid ~ .invalid-tooltip,2876.is-invalid ~ .invalid-feedback,2877.is-invalid ~ .invalid-tooltip {2878display: block;2879}28802881.was-validated .form-control:invalid, .form-control.is-invalid {2882border-color: #dc3545;2883padding-right: calc(1.5em + 0.75rem);2884background-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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");2885background-repeat: no-repeat;2886background-position: right calc(0.375em + 0.1875rem) center;2887background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);2888}2889.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {2890border-color: #dc3545;2891box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);2892}28932894.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {2895padding-right: calc(1.5em + 0.75rem);2896background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);2897}28982899.was-validated .form-select:invalid, .form-select.is-invalid {2900border-color: #dc3545;2901}2902.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"] {2903padding-right: 4.125rem;2904background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' 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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");2905background-position: right 0.75rem center, center right 2.25rem;2906background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);2907}2908.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {2909border-color: #dc3545;2910box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);2911}29122913.was-validated .form-check-input:invalid, .form-check-input.is-invalid {2914border-color: #dc3545;2915}2916.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {2917background-color: #dc3545;2918}2919.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {2920box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);2921}2922.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {2923color: #dc3545;2924}29252926.form-check-inline .form-check-input ~ .invalid-feedback {2927margin-left: 0.5em;2928}29292930.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,2931.was-validated .input-group .form-select:invalid,2932.input-group .form-select.is-invalid {2933z-index: 2;2934}2935.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,2936.was-validated .input-group .form-select:invalid:focus,2937.input-group .form-select.is-invalid:focus {2938z-index: 3;2939}29402941.btn {2942display: inline-block;2943font-weight: 400;2944line-height: 1.5;2945color: #212529;2946text-align: center;2947text-decoration: none;2948vertical-align: middle;2949cursor: pointer;2950user-select: none;2951background-color: transparent;2952border: 1px solid transparent;2953padding: 0.375rem 0.75rem;2954font-size: 1rem;2955border-radius: 0.25rem;2956transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;2957}2958@media (prefers-reduced-motion: reduce) {2959.btn {2960transition: none;2961}2962}2963.btn:hover {2964color: #212529;2965}2966.btn-check:focus + .btn, .btn:focus {2967outline: 0;2968box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);2969}2970.btn:disabled, .btn.disabled, fieldset:disabled .btn {2971pointer-events: none;2972opacity: 0.65;2973}29742975.btn-primary {2976color: #000;2977background-color: #a1a9bd;2978border-color: #a1a9bd;2979}2980.btn-primary:hover {2981color: #000;2982background-color: #afb6c7;2983border-color: #aab2c4;2984}2985.btn-check:focus + .btn-primary, .btn-primary:focus {2986color: #000;2987background-color: #afb6c7;2988border-color: #aab2c4;2989box-shadow: 0 0 0 0.25rem rgba(137, 144, 161, 0.5);2990}2991.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {2992color: #000;2993background-color: #b4baca;2994border-color: #aab2c4;2995}2996.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 {2997box-shadow: 0 0 0 0.25rem rgba(137, 144, 161, 0.5);2998}2999.btn-primary:disabled, .btn-primary.disabled {3000color: #000;3001background-color: #a1a9bd;3002border-color: #a1a9bd;3003}30043005.btn-secondary {3006color: #000;3007background-color: #5B9D82;3008border-color: #5B9D82;3009}3010.btn-secondary:hover {3011color: #000;3012background-color: #74ac95;3013border-color: #6ba78f;3014}3015.btn-check:focus + .btn-secondary, .btn-secondary:focus {3016color: #000;3017background-color: #74ac95;3018border-color: #6ba78f;3019box-shadow: 0 0 0 0.25rem rgba(77, 133, 111, 0.5);3020}3021.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {3022color: #000;3023background-color: #7cb19b;3024border-color: #6ba78f;3025}3026.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 {3027box-shadow: 0 0 0 0.25rem rgba(77, 133, 111, 0.5);3028}3029.btn-secondary:disabled, .btn-secondary.disabled {3030color: #000;3031background-color: #5B9D82;3032border-color: #5B9D82;3033}30343035.btn-success {3036color: #fff;3037background-color: #198754;3038border-color: #198754;3039}3040.btn-success:hover {3041color: #fff;3042background-color: #157347;3043border-color: #146c43;3044}3045.btn-check:focus + .btn-success, .btn-success:focus {3046color: #fff;3047background-color: #157347;3048border-color: #146c43;3049box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);3050}3051.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {3052color: #fff;3053background-color: #146c43;3054border-color: #13653f;3055}3056.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 {3057box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);3058}3059.btn-success:disabled, .btn-success.disabled {3060color: #fff;3061background-color: #198754;3062border-color: #198754;3063}30643065.btn-info {3066color: #000;3067background-color: #0dcaf0;3068border-color: #0dcaf0;3069}3070.btn-info:hover {3071color: #000;3072background-color: #31d2f2;3073border-color: #25cff2;3074}3075.btn-check:focus + .btn-info, .btn-info:focus {3076color: #000;3077background-color: #31d2f2;3078border-color: #25cff2;3079box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);3080}3081.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {3082color: #000;3083background-color: #3dd5f3;3084border-color: #25cff2;3085}3086.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 {3087box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);3088}3089.btn-info:disabled, .btn-info.disabled {3090color: #000;3091background-color: #0dcaf0;3092border-color: #0dcaf0;3093}30943095.btn-warning {3096color: #000;3097background-color: #ffc107;3098border-color: #ffc107;3099}3100.btn-warning:hover {3101color: #000;3102background-color: #ffca2c;3103border-color: #ffc720;3104}3105.btn-check:focus + .btn-warning, .btn-warning:focus {3106color: #000;3107background-color: #ffca2c;3108border-color: #ffc720;3109box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);3110}3111.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {3112color: #000;3113background-color: #ffcd39;3114border-color: #ffc720;3115}3116.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 {3117box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);3118}3119.btn-warning:disabled, .btn-warning.disabled {3120color: #000;3121background-color: #ffc107;3122border-color: #ffc107;3123}31243125.btn-danger {3126color: #fff;3127background-color: #dc3545;3128border-color: #dc3545;3129}3130.btn-danger:hover {3131color: #fff;3132background-color: #bb2d3b;3133border-color: #b02a37;3134}3135.btn-check:focus + .btn-danger, .btn-danger:focus {3136color: #fff;3137background-color: #bb2d3b;3138border-color: #b02a37;3139box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);3140}3141.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {3142color: #fff;3143background-color: #b02a37;3144border-color: #a52834;3145}3146.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 {3147box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);3148}3149.btn-danger:disabled, .btn-danger.disabled {3150color: #fff;3151background-color: #dc3545;3152border-color: #dc3545;3153}31543155.btn-light {3156color: #000;3157background-color: #f8f9fa;3158border-color: #f8f9fa;3159}3160.btn-light:hover {3161color: #000;3162background-color: #f9fafb;3163border-color: #f9fafb;3164}3165.btn-check:focus + .btn-light, .btn-light:focus {3166color: #000;3167background-color: #f9fafb;3168border-color: #f9fafb;3169box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);3170}3171.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {3172color: #000;3173background-color: #f9fafb;3174border-color: #f9fafb;3175}3176.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 {3177box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);3178}3179.btn-light:disabled, .btn-light.disabled {3180color: #000;3181background-color: #f8f9fa;3182border-color: #f8f9fa;3183}31843185.btn-dark {3186color: #fff;3187background-color: #212529;3188border-color: #212529;3189}3190.btn-dark:hover {3191color: #fff;3192background-color: #1c1f23;3193border-color: #1a1e21;3194}3195.btn-check:focus + .btn-dark, .btn-dark:focus {3196color: #fff;3197background-color: #1c1f23;3198border-color: #1a1e21;3199box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);3200}3201.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {3202color: #fff;3203background-color: #1a1e21;3204border-color: #191c1f;3205}3206.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 {3207box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);3208}3209.btn-dark:disabled, .btn-dark.disabled {3210color: #fff;3211background-color: #212529;3212border-color: #212529;3213}32143215.btn-outline-primary {3216color: #a1a9bd;3217border-color: #a1a9bd;3218}3219.btn-outline-primary:hover {3220color: #000;3221background-color: #a1a9bd;3222border-color: #a1a9bd;3223}3224.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {3225box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.5);3226}3227.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 {3228color: #000;3229background-color: #a1a9bd;3230border-color: #a1a9bd;3231}3232.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 {3233box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.5);3234}3235.btn-outline-primary:disabled, .btn-outline-primary.disabled {3236color: #a1a9bd;3237background-color: transparent;3238}32393240.btn-outline-secondary {3241color: #5B9D82;3242border-color: #5B9D82;3243}3244.btn-outline-secondary:hover {3245color: #000;3246background-color: #5B9D82;3247border-color: #5B9D82;3248}3249.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {3250box-shadow: 0 0 0 0.25rem rgba(91, 157, 130, 0.5);3251}3252.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 {3253color: #000;3254background-color: #5B9D82;3255border-color: #5B9D82;3256}3257.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 {3258box-shadow: 0 0 0 0.25rem rgba(91, 157, 130, 0.5);3259}3260.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {3261color: #5B9D82;3262background-color: transparent;3263}32643265.btn-outline-success {3266color: #198754;3267border-color: #198754;3268}3269.btn-outline-success:hover {3270color: #fff;3271background-color: #198754;3272border-color: #198754;3273}3274.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {3275box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);3276}3277.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 {3278color: #fff;3279background-color: #198754;3280border-color: #198754;3281}3282.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 {3283box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);3284}3285.btn-outline-success:disabled, .btn-outline-success.disabled {3286color: #198754;3287background-color: transparent;3288}32893290.btn-outline-info {3291color: #0dcaf0;3292border-color: #0dcaf0;3293}3294.btn-outline-info:hover {3295color: #000;3296background-color: #0dcaf0;3297border-color: #0dcaf0;3298}3299.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {3300box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);3301}3302.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 {3303color: #000;3304background-color: #0dcaf0;3305border-color: #0dcaf0;3306}3307.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 {3308box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);3309}3310.btn-outline-info:disabled, .btn-outline-info.disabled {3311color: #0dcaf0;3312background-color: transparent;3313}33143315.btn-outline-warning {3316color: #ffc107;3317border-color: #ffc107;3318}3319.btn-outline-warning:hover {3320color: #000;3321background-color: #ffc107;3322border-color: #ffc107;3323}3324.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {3325box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);3326}3327.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 {3328color: #000;3329background-color: #ffc107;3330border-color: #ffc107;3331}3332.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 {3333box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);3334}3335.btn-outline-warning:disabled, .btn-outline-warning.disabled {3336color: #ffc107;3337background-color: transparent;3338}33393340.btn-outline-danger {3341color: #dc3545;3342border-color: #dc3545;3343}3344.btn-outline-danger:hover {3345color: #fff;3346background-color: #dc3545;3347border-color: #dc3545;3348}3349.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {3350box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);3351}3352.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 {3353color: #fff;3354background-color: #dc3545;3355border-color: #dc3545;3356}3357.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 {3358box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);3359}3360.btn-outline-danger:disabled, .btn-outline-danger.disabled {3361color: #dc3545;3362background-color: transparent;3363}33643365.btn-outline-light {3366color: #f8f9fa;3367border-color: #f8f9fa;3368}3369.btn-outline-light:hover {3370color: #000;3371background-color: #f8f9fa;3372border-color: #f8f9fa;3373}3374.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {3375box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);3376}3377.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 {3378color: #000;3379background-color: #f8f9fa;3380border-color: #f8f9fa;3381}3382.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 {3383box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);3384}3385.btn-outline-light:disabled, .btn-outline-light.disabled {3386color: #f8f9fa;3387background-color: transparent;3388}33893390.btn-outline-dark {3391color: #212529;3392border-color: #212529;3393}3394.btn-outline-dark:hover {3395color: #fff;3396background-color: #212529;3397border-color: #212529;3398}3399.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {3400box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);3401}3402.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 {3403color: #fff;3404background-color: #212529;3405border-color: #212529;3406}3407.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 {3408box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);3409}3410.btn-outline-dark:disabled, .btn-outline-dark.disabled {3411color: #212529;3412background-color: transparent;3413}34143415.btn-link {3416font-weight: 400;3417color: #a1a9bd;3418text-decoration: underline;3419}3420.btn-link:hover {3421color: #818797;3422}3423.btn-link:disabled, .btn-link.disabled {3424color: #6c757d;3425}34263427.btn-lg, .dark-mode .btn-group-lg > .btn, .btn-group-lg > .btn {3428padding: 0.5rem 1rem;3429font-size: 1.25rem;3430border-radius: 0.3rem;3431}34323433.btn-sm, .dark-mode .btn-group-sm > .btn, .btn-group-sm > .btn {3434padding: 0.25rem 0.5rem;3435font-size: 0.875rem;3436border-radius: 0.2rem;3437}34383439.fade {3440transition: opacity 0.15s linear;3441}3442@media (prefers-reduced-motion: reduce) {3443.fade {3444transition: none;3445}3446}3447.fade:not(.show) {3448opacity: 0;3449}34503451.collapse:not(.show) {3452display: none;3453}34543455.collapsing {3456height: 0;3457overflow: hidden;3458transition: height 0.35s ease;3459}3460@media (prefers-reduced-motion: reduce) {3461.collapsing {3462transition: none;3463}3464}3465.collapsing.collapse-horizontal {3466width: 0;3467height: auto;3468transition: width 0.35s ease;3469}3470@media (prefers-reduced-motion: reduce) {3471.collapsing.collapse-horizontal {3472transition: none;3473}3474}34753476.dropup,3477.dropend,3478.dropdown,3479.dropstart {3480position: relative;3481}34823483.dropdown-toggle {3484white-space: nowrap;3485}3486.dropdown-toggle::after {3487display: inline-block;3488margin-left: 0.255em;3489vertical-align: 0.255em;3490content: "";3491border-top: 0.3em solid;3492border-right: 0.3em solid transparent;3493border-bottom: 0;3494border-left: 0.3em solid transparent;3495}3496.dropdown-toggle:empty::after {3497margin-left: 0;3498}34993500.dropdown-menu {3501position: absolute;3502z-index: 1000;3503display: none;3504min-width: 10rem;3505padding: 0.5rem 0;3506margin: 0;3507font-size: 1rem;3508color: #212529;3509text-align: left;3510list-style: none;3511background-color: #fff;3512background-clip: padding-box;3513border: 1px solid rgba(0, 0, 0, 0.15);3514border-radius: 0.25rem;3515}3516.dropdown-menu[data-bs-popper] {3517top: 100%;3518left: 0;3519margin-top: 0.125rem;3520}35213522.dropdown-menu-start {3523--bs-position: start;3524}3525.dropdown-menu-start[data-bs-popper] {3526right: auto;3527left: 0;3528}35293530.dropdown-menu-end {3531--bs-position: end;3532}3533.dropdown-menu-end[data-bs-popper] {3534right: 0;3535left: auto;3536}35373538@media (min-width: 576px) {3539.dropdown-menu-sm-start {3540--bs-position: start;3541}3542.dropdown-menu-sm-start[data-bs-popper] {3543right: auto;3544left: 0;3545}35463547.dropdown-menu-sm-end {3548--bs-position: end;3549}3550.dropdown-menu-sm-end[data-bs-popper] {3551right: 0;3552left: auto;3553}3554}3555@media (min-width: 768px) {3556.dropdown-menu-md-start {3557--bs-position: start;3558}3559.dropdown-menu-md-start[data-bs-popper] {3560right: auto;3561left: 0;3562}35633564.dropdown-menu-md-end {3565--bs-position: end;3566}3567.dropdown-menu-md-end[data-bs-popper] {3568right: 0;3569left: auto;3570}3571}3572@media (min-width: 992px) {3573.dropdown-menu-lg-start {3574--bs-position: start;3575}3576.dropdown-menu-lg-start[data-bs-popper] {3577right: auto;3578left: 0;3579}35803581.dropdown-menu-lg-end {3582--bs-position: end;3583}3584.dropdown-menu-lg-end[data-bs-popper] {3585right: 0;3586left: auto;3587}3588}3589@media (min-width: 1200px) {3590.dropdown-menu-xl-start {3591--bs-position: start;3592}3593.dropdown-menu-xl-start[data-bs-popper] {3594right: auto;3595left: 0;3596}35973598.dropdown-menu-xl-end {3599--bs-position: end;3600}3601.dropdown-menu-xl-end[data-bs-popper] {3602right: 0;3603left: auto;3604}3605}3606@media (min-width: 1400px) {3607.dropdown-menu-xxl-start {3608--bs-position: start;3609}3610.dropdown-menu-xxl-start[data-bs-popper] {3611right: auto;3612left: 0;3613}36143615.dropdown-menu-xxl-end {3616--bs-position: end;3617}3618.dropdown-menu-xxl-end[data-bs-popper] {3619right: 0;3620left: auto;3621}3622}3623.dropup .dropdown-menu[data-bs-popper] {3624top: auto;3625bottom: 100%;3626margin-top: 0;3627margin-bottom: 0.125rem;3628}3629.dropup .dropdown-toggle::after {3630display: inline-block;3631margin-left: 0.255em;3632vertical-align: 0.255em;3633content: "";3634border-top: 0;3635border-right: 0.3em solid transparent;3636border-bottom: 0.3em solid;3637border-left: 0.3em solid transparent;3638}3639.dropup .dropdown-toggle:empty::after {3640margin-left: 0;3641}36423643.dropend .dropdown-menu[data-bs-popper] {3644top: 0;3645right: auto;3646left: 100%;3647margin-top: 0;3648margin-left: 0.125rem;3649}3650.dropend .dropdown-toggle::after {3651display: inline-block;3652margin-left: 0.255em;3653vertical-align: 0.255em;3654content: "";3655border-top: 0.3em solid transparent;3656border-right: 0;3657border-bottom: 0.3em solid transparent;3658border-left: 0.3em solid;3659}3660.dropend .dropdown-toggle:empty::after {3661margin-left: 0;3662}3663.dropend .dropdown-toggle::after {3664vertical-align: 0;3665}36663667.dropstart .dropdown-menu[data-bs-popper] {3668top: 0;3669right: 100%;3670left: auto;3671margin-top: 0;3672margin-right: 0.125rem;3673}3674.dropstart .dropdown-toggle::after {3675display: inline-block;3676margin-left: 0.255em;3677vertical-align: 0.255em;3678content: "";3679}3680.dropstart .dropdown-toggle::after {3681display: none;3682}3683.dropstart .dropdown-toggle::before {3684display: inline-block;3685margin-right: 0.255em;3686vertical-align: 0.255em;3687content: "";3688border-top: 0.3em solid transparent;3689border-right: 0.3em solid;3690border-bottom: 0.3em solid transparent;3691}3692.dropstart .dropdown-toggle:empty::after {3693margin-left: 0;3694}3695.dropstart .dropdown-toggle::before {3696vertical-align: 0;3697}36983699.dropdown-divider {3700height: 0;3701margin: 0.5rem 0;3702overflow: hidden;3703border-top: 1px solid rgba(0, 0, 0, 0.15);3704}37053706.dropdown-item {3707display: block;3708width: 100%;3709padding: 0.25rem 1rem;3710clear: both;3711font-weight: 400;3712color: #212529;3713text-align: inherit;3714text-decoration: none;3715white-space: nowrap;3716background-color: transparent;3717border: 0;3718}3719.dropdown-item:hover, .dropdown-item:focus {3720color: #1e2125;3721background-color: #e9ecef;3722}3723.dropdown-item.active, .dropdown-item:active {3724color: #fff;3725text-decoration: none;3726background-color: #a1a9bd;3727}3728.dropdown-item.disabled, .dropdown-item:disabled {3729color: #adb5bd;3730pointer-events: none;3731background-color: transparent;3732}37333734.dropdown-menu.show {3735display: block;3736}37373738.dropdown-header {3739display: block;3740padding: 0.5rem 1rem;3741margin-bottom: 0;3742font-size: 0.875rem;3743color: #6c757d;3744white-space: nowrap;3745}37463747.dropdown-item-text {3748display: block;3749padding: 0.25rem 1rem;3750color: #212529;3751}37523753.dropdown-menu-dark {3754color: #dee2e6;3755background-color: #343a40;3756border-color: rgba(0, 0, 0, 0.15);3757}3758.dropdown-menu-dark .dropdown-item {3759color: #dee2e6;3760}3761.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {3762color: #fff;3763background-color: rgba(255, 255, 255, 0.15);3764}3765.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {3766color: #fff;3767background-color: #a1a9bd;3768}3769.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {3770color: #adb5bd;3771}3772.dropdown-menu-dark .dropdown-divider {3773border-color: rgba(0, 0, 0, 0.15);3774}3775.dropdown-menu-dark .dropdown-item-text {3776color: #dee2e6;3777}3778.dropdown-menu-dark .dropdown-header {3779color: #adb5bd;3780}37813782.btn-group,3783.btn-group-vertical {3784position: relative;3785display: inline-flex;3786vertical-align: middle;3787}3788.btn-group > .btn,3789.btn-group-vertical > .btn {3790position: relative;3791flex: 1 1 auto;3792}3793.btn-group > .btn-check:checked + .btn,3794.btn-group > .btn-check:focus + .btn,3795.btn-group > .btn:hover,3796.btn-group > .btn:focus,3797.btn-group > .btn:active,3798.btn-group > .btn.active,3799.btn-group-vertical > .btn-check:checked + .btn,3800.btn-group-vertical > .btn-check:focus + .btn,3801.btn-group-vertical > .btn:hover,3802.btn-group-vertical > .btn:focus,3803.btn-group-vertical > .btn:active,3804.btn-group-vertical > .btn.active {3805z-index: 1;3806}38073808.btn-toolbar {3809display: flex;3810flex-wrap: wrap;3811justify-content: flex-start;3812}3813.btn-toolbar .input-group {3814width: auto;3815}38163817.btn-group > .btn:not(:first-child),3818.btn-group > .btn-group:not(:first-child) {3819margin-left: -1px;3820}3821.btn-group > .btn:not(:last-child):not(.dropdown-toggle),3822.btn-group > .btn-group:not(:last-child) > .btn {3823border-top-right-radius: 0;3824border-bottom-right-radius: 0;3825}3826.btn-group > .btn:nth-child(n+3),3827.btn-group > :not(.btn-check) + .btn,3828.btn-group > .btn-group:not(:first-child) > .btn {3829border-top-left-radius: 0;3830border-bottom-left-radius: 0;3831}38323833.dropdown-toggle-split {3834padding-right: 0.5625rem;3835padding-left: 0.5625rem;3836}3837.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {3838margin-left: 0;3839}3840.dropstart .dropdown-toggle-split::before {3841margin-right: 0;3842}38433844.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {3845padding-right: 0.375rem;3846padding-left: 0.375rem;3847}38483849.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {3850padding-right: 0.75rem;3851padding-left: 0.75rem;3852}38533854.btn-group-vertical {3855flex-direction: column;3856align-items: flex-start;3857justify-content: center;3858}3859.btn-group-vertical > .btn,3860.btn-group-vertical > .btn-group {3861width: 100%;3862}3863.btn-group-vertical > .btn:not(:first-child),3864.btn-group-vertical > .btn-group:not(:first-child) {3865margin-top: -1px;3866}3867.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),3868.btn-group-vertical > .btn-group:not(:last-child) > .btn {3869border-bottom-right-radius: 0;3870border-bottom-left-radius: 0;3871}3872.btn-group-vertical > .btn ~ .btn,3873.btn-group-vertical > .btn-group:not(:first-child) > .btn {3874border-top-left-radius: 0;3875border-top-right-radius: 0;3876}38773878.nav {3879display: flex;3880flex-wrap: wrap;3881padding-left: 0;3882margin-bottom: 0;3883list-style: none;3884}38853886.nav-link {3887display: block;3888padding: 0.5rem 1rem;3889color: #a1a9bd;3890text-decoration: none;3891transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;3892}3893@media (prefers-reduced-motion: reduce) {3894.nav-link {3895transition: none;3896}3897}3898.nav-link:hover, .nav-link:focus {3899color: #818797;3900}3901.nav-link.disabled {3902color: #6c757d;3903pointer-events: none;3904cursor: default;3905}39063907.nav-tabs {3908border-bottom: 1px solid #dee2e6;3909}3910.nav-tabs .nav-link {3911margin-bottom: -1px;3912background: none;3913border: 1px solid transparent;3914border-top-left-radius: 0.25rem;3915border-top-right-radius: 0.25rem;3916}3917.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {3918border-color: #e9ecef #e9ecef #dee2e6;3919isolation: isolate;3920}3921.nav-tabs .nav-link.disabled {3922color: #6c757d;3923background-color: transparent;3924border-color: transparent;3925}3926.nav-tabs .nav-link.active,3927.nav-tabs .nav-item.show .nav-link {3928color: #495057;3929background-color: #cfd8dc;3930border-color: #dee2e6 #dee2e6 #cfd8dc;3931}3932.nav-tabs .dropdown-menu {3933margin-top: -1px;3934border-top-left-radius: 0;3935border-top-right-radius: 0;3936}39373938.nav-pills .nav-link {3939background: none;3940border: 0;3941border-radius: 0.25rem;3942}3943.nav-pills .nav-link.active,3944.nav-pills .show > .nav-link {3945color: #fff;3946background-color: #a1a9bd;3947}39483949.nav-fill > .nav-link,3950.nav-fill .nav-item {3951flex: 1 1 auto;3952text-align: center;3953}39543955.nav-justified > .nav-link,3956.nav-justified .nav-item {3957flex-basis: 0;3958flex-grow: 1;3959text-align: center;3960}39613962.nav-fill .nav-item .nav-link,3963.nav-justified .nav-item .nav-link {3964width: 100%;3965}39663967.tab-content > .tab-pane {3968display: none;3969}3970.tab-content > .active {3971display: block;3972}39733974.navbar {3975position: relative;3976display: flex;3977flex-wrap: wrap;3978align-items: center;3979justify-content: space-between;3980padding-top: 0.5rem;3981padding-bottom: 0.5rem;3982}3983.dark-mode .navbar > .container,3984.dark-mode .navbar > .container-fluid, .navbar > .container,3985.navbar > .container-fluid,3986.dark-mode .navbar > .container-xxl,3987.dark-mode .navbar > .container-xl,3988.dark-mode .navbar > .container-lg,3989.dark-mode .navbar > .container-md,3990.dark-mode .navbar > .container-sm,3991.navbar > .container-sm,3992.navbar > .container-md,3993.navbar > .container-lg,3994.navbar > .container-xl,3995.navbar > .container-xxl {3996display: flex;3997flex-wrap: inherit;3998align-items: center;3999justify-content: space-between;4000}4001.navbar-brand {4002padding-top: 0.3125rem;4003padding-bottom: 0.3125rem;4004margin-right: 1rem;4005font-size: 1.25rem;4006text-decoration: none;4007white-space: nowrap;4008}4009.navbar-nav {4010display: flex;4011flex-direction: column;4012padding-left: 0;4013margin-bottom: 0;4014list-style: none;4015}4016.navbar-nav .nav-link {4017padding-right: 0;4018padding-left: 0;4019}4020.navbar-nav .dropdown-menu {4021position: static;4022}40234024.navbar-text {4025padding-top: 0.5rem;4026padding-bottom: 0.5rem;4027}40284029.navbar-collapse {4030flex-basis: 100%;4031flex-grow: 1;4032align-items: center;4033}40344035.navbar-toggler {4036padding: 0.25rem 0.75rem;4037font-size: 1.25rem;4038line-height: 1;4039background-color: transparent;4040border: 1px solid transparent;4041border-radius: 0.25rem;4042transition: box-shadow 0.15s ease-in-out;4043}4044@media (prefers-reduced-motion: reduce) {4045.navbar-toggler {4046transition: none;4047}4048}4049.navbar-toggler:hover {4050text-decoration: none;4051}4052.navbar-toggler:focus {4053text-decoration: none;4054outline: 0;4055box-shadow: 0 0 0 0.25rem;4056}40574058.navbar-toggler-icon {4059display: inline-block;4060width: 1.5em;4061height: 1.5em;4062vertical-align: middle;4063background-repeat: no-repeat;4064background-position: center;4065background-size: 100%;4066}40674068.navbar-nav-scroll {4069max-height: var(--bs-scroll-height, 75vh);4070overflow-y: auto;4071}40724073@media (min-width: 576px) {4074.navbar-expand-sm {4075flex-wrap: nowrap;4076justify-content: flex-start;4077}4078.navbar-expand-sm .navbar-nav {4079flex-direction: row;4080}4081.navbar-expand-sm .navbar-nav .dropdown-menu {4082position: absolute;4083}4084.navbar-expand-sm .navbar-nav .nav-link {4085padding-right: 0.5rem;4086padding-left: 0.5rem;4087}4088.navbar-expand-sm .navbar-nav-scroll {4089overflow: visible;4090}4091.navbar-expand-sm .navbar-collapse {4092display: flex !important;4093flex-basis: auto;4094}4095.navbar-expand-sm .navbar-toggler {4096display: none;4097}4098.navbar-expand-sm .offcanvas-header {4099display: none;4100}4101.navbar-expand-sm .offcanvas {4102position: inherit;4103bottom: 0;4104z-index: 1000;4105flex-grow: 1;4106visibility: visible !important;4107background-color: transparent;4108border-right: 0;4109border-left: 0;4110transition: none;4111transform: none;4112}4113.navbar-expand-sm .offcanvas-top,4114.navbar-expand-sm .offcanvas-bottom {4115height: auto;4116border-top: 0;4117border-bottom: 0;4118}4119.navbar-expand-sm .offcanvas-body {4120display: flex;4121flex-grow: 0;4122padding: 0;4123overflow-y: visible;4124}4125}4126@media (min-width: 768px) {4127.navbar-expand-md {4128flex-wrap: nowrap;4129justify-content: flex-start;4130}4131.navbar-expand-md .navbar-nav {4132flex-direction: row;4133}4134.navbar-expand-md .navbar-nav .dropdown-menu {4135position: absolute;4136}4137.navbar-expand-md .navbar-nav .nav-link {4138padding-right: 0.5rem;4139padding-left: 0.5rem;4140}4141.navbar-expand-md .navbar-nav-scroll {4142overflow: visible;4143}4144.navbar-expand-md .navbar-collapse {4145display: flex !important;4146flex-basis: auto;4147}4148.navbar-expand-md .navbar-toggler {4149display: none;4150}4151.navbar-expand-md .offcanvas-header {4152display: none;4153}4154.navbar-expand-md .offcanvas {4155position: inherit;4156bottom: 0;4157z-index: 1000;4158flex-grow: 1;4159visibility: visible !important;4160background-color: transparent;4161border-right: 0;4162border-left: 0;4163transition: none;4164transform: none;4165}4166.navbar-expand-md .offcanvas-top,4167.navbar-expand-md .offcanvas-bottom {4168height: auto;4169border-top: 0;4170border-bottom: 0;4171}4172.navbar-expand-md .offcanvas-body {4173display: flex;4174flex-grow: 0;4175padding: 0;4176overflow-y: visible;4177}4178}4179@media (min-width: 992px) {4180.navbar-expand-lg {4181flex-wrap: nowrap;4182justify-content: flex-start;4183}4184.navbar-expand-lg .navbar-nav {4185flex-direction: row;4186}4187.navbar-expand-lg .navbar-nav .dropdown-menu {4188position: absolute;4189}4190.navbar-expand-lg .navbar-nav .nav-link {4191padding-right: 0.5rem;4192padding-left: 0.5rem;4193}4194.navbar-expand-lg .navbar-nav-scroll {4195overflow: visible;4196}4197.navbar-expand-lg .navbar-collapse {4198display: flex !important;4199flex-basis: auto;4200}4201.navbar-expand-lg .navbar-toggler {4202display: none;4203}4204.navbar-expand-lg .offcanvas-header {4205display: none;4206}4207.navbar-expand-lg .offcanvas {4208position: inherit;4209bottom: 0;4210z-index: 1000;4211flex-grow: 1;4212visibility: visible !important;4213background-color: transparent;4214border-right: 0;4215border-left: 0;4216transition: none;4217transform: none;4218}4219.navbar-expand-lg .offcanvas-top,4220.navbar-expand-lg .offcanvas-bottom {4221height: auto;4222border-top: 0;4223border-bottom: 0;4224}4225.navbar-expand-lg .offcanvas-body {4226display: flex;4227flex-grow: 0;4228padding: 0;4229overflow-y: visible;4230}4231}4232@media (min-width: 1200px) {4233.navbar-expand-xl {4234flex-wrap: nowrap;4235justify-content: flex-start;4236}4237.navbar-expand-xl .navbar-nav {4238flex-direction: row;4239}4240.navbar-expand-xl .navbar-nav .dropdown-menu {4241position: absolute;4242}4243.navbar-expand-xl .navbar-nav .nav-link {4244padding-right: 0.5rem;4245padding-left: 0.5rem;4246}4247.navbar-expand-xl .navbar-nav-scroll {4248overflow: visible;4249}4250.navbar-expand-xl .navbar-collapse {4251display: flex !important;4252flex-basis: auto;4253}4254.navbar-expand-xl .navbar-toggler {4255display: none;4256}4257.navbar-expand-xl .offcanvas-header {4258display: none;4259}4260.navbar-expand-xl .offcanvas {4261position: inherit;4262bottom: 0;4263z-index: 1000;4264flex-grow: 1;4265visibility: visible !important;4266background-color: transparent;4267border-right: 0;4268border-left: 0;4269transition: none;4270transform: none;4271}4272.navbar-expand-xl .offcanvas-top,4273.navbar-expand-xl .offcanvas-bottom {4274height: auto;4275border-top: 0;4276border-bottom: 0;4277}4278.navbar-expand-xl .offcanvas-body {4279display: flex;4280flex-grow: 0;4281padding: 0;4282overflow-y: visible;4283}4284}4285@media (min-width: 1400px) {4286.navbar-expand-xxl {4287flex-wrap: nowrap;4288justify-content: flex-start;4289}4290.navbar-expand-xxl .navbar-nav {4291flex-direction: row;4292}4293.navbar-expand-xxl .navbar-nav .dropdown-menu {4294position: absolute;4295}4296.navbar-expand-xxl .navbar-nav .nav-link {4297padding-right: 0.5rem;4298padding-left: 0.5rem;4299}4300.navbar-expand-xxl .navbar-nav-scroll {4301overflow: visible;4302}4303.navbar-expand-xxl .navbar-collapse {4304display: flex !important;4305flex-basis: auto;4306}4307.navbar-expand-xxl .navbar-toggler {4308display: none;4309}4310.navbar-expand-xxl .offcanvas-header {4311display: none;4312}4313.navbar-expand-xxl .offcanvas {4314position: inherit;4315bottom: 0;4316z-index: 1000;4317flex-grow: 1;4318visibility: visible !important;4319background-color: transparent;4320border-right: 0;4321border-left: 0;4322transition: none;4323transform: none;4324}4325.navbar-expand-xxl .offcanvas-top,4326.navbar-expand-xxl .offcanvas-bottom {4327height: auto;4328border-top: 0;4329border-bottom: 0;4330}4331.navbar-expand-xxl .offcanvas-body {4332display: flex;4333flex-grow: 0;4334padding: 0;4335overflow-y: visible;4336}4337}4338.navbar-expand {4339flex-wrap: nowrap;4340justify-content: flex-start;4341}4342.navbar-expand .navbar-nav {4343flex-direction: row;4344}4345.navbar-expand .navbar-nav .dropdown-menu {4346position: absolute;4347}4348.navbar-expand .navbar-nav .nav-link {4349padding-right: 0.5rem;4350padding-left: 0.5rem;4351}4352.navbar-expand .navbar-nav-scroll {4353overflow: visible;4354}4355.navbar-expand .navbar-collapse {4356display: flex !important;4357flex-basis: auto;4358}4359.navbar-expand .navbar-toggler {4360display: none;4361}4362.navbar-expand .offcanvas-header {4363display: none;4364}4365.navbar-expand .offcanvas {4366position: inherit;4367bottom: 0;4368z-index: 1000;4369flex-grow: 1;4370visibility: visible !important;4371background-color: transparent;4372border-right: 0;4373border-left: 0;4374transition: none;4375transform: none;4376}4377.navbar-expand .offcanvas-top,4378.navbar-expand .offcanvas-bottom {4379height: auto;4380border-top: 0;4381border-bottom: 0;4382}4383.navbar-expand .offcanvas-body {4384display: flex;4385flex-grow: 0;4386padding: 0;4387overflow-y: visible;4388}43894390.navbar-light .navbar-brand {4391color: rgba(0, 0, 0, 0.9);4392}4393.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {4394color: rgba(0, 0, 0, 0.9);4395}4396.navbar-light .navbar-nav .nav-link {4397color: rgba(0, 0, 0, 0.55);4398}4399.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {4400color: rgba(0, 0, 0, 0.7);4401}4402.navbar-light .navbar-nav .nav-link.disabled {4403color: rgba(0, 0, 0, 0.3);4404}4405.navbar-light .navbar-nav .show > .nav-link,4406.navbar-light .navbar-nav .nav-link.active {4407color: rgba(0, 0, 0, 0.9);4408}4409.navbar-light .navbar-toggler {4410color: rgba(0, 0, 0, 0.55);4411border-color: rgba(0, 0, 0, 0.1);4412}4413.navbar-light .navbar-toggler-icon {4414background-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");4415}4416.navbar-light .navbar-text {4417color: rgba(0, 0, 0, 0.55);4418}4419.navbar-light .navbar-text a,4420.navbar-light .navbar-text a:hover,4421.navbar-light .navbar-text a:focus {4422color: rgba(0, 0, 0, 0.9);4423}44244425.navbar-dark .navbar-brand {4426color: #fff;4427}4428.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {4429color: #fff;4430}4431.navbar-dark .navbar-nav .nav-link {4432color: rgba(255, 255, 255, 0.55);4433}4434.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {4435color: rgba(255, 255, 255, 0.75);4436}4437.navbar-dark .navbar-nav .nav-link.disabled {4438color: rgba(255, 255, 255, 0.25);4439}4440.navbar-dark .navbar-nav .show > .nav-link,4441.navbar-dark .navbar-nav .nav-link.active {4442color: #fff;4443}4444.navbar-dark .navbar-toggler {4445color: rgba(255, 255, 255, 0.55);4446border-color: rgba(255, 255, 255, 0.1);4447}4448.navbar-dark .navbar-toggler-icon {4449background-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");4450}4451.navbar-dark .navbar-text {4452color: rgba(255, 255, 255, 0.55);4453}4454.navbar-dark .navbar-text a,4455.navbar-dark .navbar-text a:hover,4456.navbar-dark .navbar-text a:focus {4457color: #fff;4458}44594460.card {4461position: relative;4462display: flex;4463flex-direction: column;4464min-width: 0;4465word-wrap: break-word;4466background-color: #fff;4467background-clip: border-box;4468border: 1px solid rgba(0, 0, 0, 0.125);4469border-radius: 0.25rem;4470}4471.card > hr {4472margin-right: 0;4473margin-left: 0;4474}4475.card > .list-group {4476border-top: inherit;4477border-bottom: inherit;4478}4479.card > .list-group:first-child {4480border-top-width: 0;4481border-top-left-radius: calc(0.25rem - 1px);4482border-top-right-radius: calc(0.25rem - 1px);4483}4484.card > .list-group:last-child {4485border-bottom-width: 0;4486border-bottom-right-radius: calc(0.25rem - 1px);4487border-bottom-left-radius: calc(0.25rem - 1px);4488}4489.card > .card-header + .list-group,4490.card > .list-group + .card-footer {4491border-top: 0;4492}44934494.card-body {4495flex: 1 1 auto;4496padding: 1rem 1rem;4497}44984499.card-title {4500margin-bottom: 0.5rem;4501}45024503.card-subtitle {4504margin-top: -0.25rem;4505margin-bottom: 0;4506}45074508.card-text:last-child {4509margin-bottom: 0;4510}45114512.card-link + .card-link {4513margin-left: 1rem;4514}45154516.card-header {4517padding: 0.5rem 1rem;4518margin-bottom: 0;4519background-color: rgba(0, 0, 0, 0.03);4520border-bottom: 1px solid rgba(0, 0, 0, 0.125);4521}4522.card-header:first-child {4523border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;4524}45254526.card-footer {4527padding: 0.5rem 1rem;4528background-color: rgba(0, 0, 0, 0.03);4529border-top: 1px solid rgba(0, 0, 0, 0.125);4530}4531.card-footer:last-child {4532border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);4533}45344535.card-header-tabs {4536margin-right: -0.5rem;4537margin-bottom: -0.5rem;4538margin-left: -0.5rem;4539border-bottom: 0;4540}4541.card-header-tabs .nav-link.active {4542background-color: #fff;4543border-bottom-color: #fff;4544}45454546.card-header-pills {4547margin-right: -0.5rem;4548margin-left: -0.5rem;4549}45504551.card-img-overlay {4552position: absolute;4553top: 0;4554right: 0;4555bottom: 0;4556left: 0;4557padding: 1rem;4558border-radius: calc(0.25rem - 1px);4559}45604561.card-img,4562.card-img-top,4563.card-img-bottom {4564width: 100%;4565}45664567.card-img,4568.card-img-top {4569border-top-left-radius: calc(0.25rem - 1px);4570border-top-right-radius: calc(0.25rem - 1px);4571}45724573.card-img,4574.card-img-bottom {4575border-bottom-right-radius: calc(0.25rem - 1px);4576border-bottom-left-radius: calc(0.25rem - 1px);4577}45784579.card-group > .card {4580margin-bottom: 0.75rem;4581}4582@media (min-width: 576px) {4583.card-group {4584display: flex;4585flex-flow: row wrap;4586}4587.card-group > .card {4588flex: 1 0 0%;4589margin-bottom: 0;4590}4591.card-group > .card + .card {4592margin-left: 0;4593border-left: 0;4594}4595.card-group > .card:not(:last-child) {4596border-top-right-radius: 0;4597border-bottom-right-radius: 0;4598}4599.card-group > .card:not(:last-child) .card-img-top,4600.card-group > .card:not(:last-child) .card-header {4601border-top-right-radius: 0;4602}4603.card-group > .card:not(:last-child) .card-img-bottom,4604.card-group > .card:not(:last-child) .card-footer {4605border-bottom-right-radius: 0;4606}4607.card-group > .card:not(:first-child) {4608border-top-left-radius: 0;4609border-bottom-left-radius: 0;4610}4611.card-group > .card:not(:first-child) .card-img-top,4612.card-group > .card:not(:first-child) .card-header {4613border-top-left-radius: 0;4614}4615.card-group > .card:not(:first-child) .card-img-bottom,4616.card-group > .card:not(:first-child) .card-footer {4617border-bottom-left-radius: 0;4618}4619}46204621.accordion-button {4622position: relative;4623display: flex;4624align-items: center;4625width: 100%;4626padding: 1rem 1.25rem;4627font-size: 1rem;4628color: #212529;4629text-align: left;4630background-color: #cfd8dc;4631border: 0;4632border-radius: 0;4633overflow-anchor: none;4634transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;4635}4636@media (prefers-reduced-motion: reduce) {4637.accordion-button {4638transition: none;4639}4640}4641.accordion-button:not(.collapsed) {4642color: #9198aa;4643background-color: #f6f6f8;4644box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);4645}4646.accordion-button:not(.collapsed)::after {4647background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239198aa'%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");4648transform: rotate(-180deg);4649}4650.accordion-button::after {4651flex-shrink: 0;4652width: 1.25rem;4653height: 1.25rem;4654margin-left: auto;4655content: "";4656background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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");4657background-repeat: no-repeat;4658background-size: 1.25rem;4659transition: transform 0.2s ease-in-out;4660}4661@media (prefers-reduced-motion: reduce) {4662.accordion-button::after {4663transition: none;4664}4665}4666.accordion-button:hover {4667z-index: 2;4668}4669.accordion-button:focus {4670z-index: 3;4671border-color: #d0d4de;4672outline: 0;4673box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);4674}46754676.accordion-header {4677margin-bottom: 0;4678}46794680.accordion-item {4681background-color: #cfd8dc;4682border: 1px solid rgba(0, 0, 0, 0.125);4683}4684.accordion-item:first-of-type {4685border-top-left-radius: 0.25rem;4686border-top-right-radius: 0.25rem;4687}4688.accordion-item:first-of-type .accordion-button {4689border-top-left-radius: calc(0.25rem - 1px);4690border-top-right-radius: calc(0.25rem - 1px);4691}4692.accordion-item:not(:first-of-type) {4693border-top: 0;4694}4695.accordion-item:last-of-type {4696border-bottom-right-radius: 0.25rem;4697border-bottom-left-radius: 0.25rem;4698}4699.accordion-item:last-of-type .accordion-button.collapsed {4700border-bottom-right-radius: calc(0.25rem - 1px);4701border-bottom-left-radius: calc(0.25rem - 1px);4702}4703.accordion-item:last-of-type .accordion-collapse {4704border-bottom-right-radius: 0.25rem;4705border-bottom-left-radius: 0.25rem;4706}47074708.accordion-body {4709padding: 1rem 1.25rem;4710}47114712.accordion-flush .accordion-collapse {4713border-width: 0;4714}4715.accordion-flush .accordion-item {4716border-right: 0;4717border-left: 0;4718border-radius: 0;4719}4720.accordion-flush .accordion-item:first-child {4721border-top: 0;4722}4723.accordion-flush .accordion-item:last-child {4724border-bottom: 0;4725}4726.accordion-flush .accordion-item .accordion-button {4727border-radius: 0;4728}47294730.breadcrumb {4731display: flex;4732flex-wrap: wrap;4733padding: 0 0;4734margin-bottom: 1rem;4735list-style: none;4736}47374738.breadcrumb-item + .breadcrumb-item {4739padding-left: 0.5rem;4740}4741.breadcrumb-item + .breadcrumb-item::before {4742float: left;4743padding-right: 0.5rem;4744color: #6c757d;4745content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;4746}4747.breadcrumb-item.active {4748color: #6c757d;4749}47504751.pagination {4752display: flex;4753padding-left: 0;4754list-style: none;4755}47564757.page-link {4758position: relative;4759display: block;4760color: #a1a9bd;4761text-decoration: none;4762background-color: #fff;4763border: 1px solid #dee2e6;4764transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;4765}4766@media (prefers-reduced-motion: reduce) {4767.page-link {4768transition: none;4769}4770}4771.page-link:hover {4772z-index: 2;4773color: #818797;4774background-color: #e9ecef;4775border-color: #dee2e6;4776}4777.page-link:focus {4778z-index: 3;4779color: #818797;4780background-color: #e9ecef;4781outline: 0;4782box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);4783}47844785.page-item:not(:first-child) .page-link {4786margin-left: -1px;4787}4788.page-item.active .page-link {4789z-index: 3;4790color: #fff;4791background-color: #a1a9bd;4792border-color: #a1a9bd;4793}4794.page-item.disabled .page-link {4795color: #6c757d;4796pointer-events: none;4797background-color: #fff;4798border-color: #dee2e6;4799}48004801.page-link {4802padding: 0.375rem 0.75rem;4803}48044805.page-item:first-child .page-link {4806border-top-left-radius: 0.25rem;4807border-bottom-left-radius: 0.25rem;4808}4809.page-item:last-child .page-link {4810border-top-right-radius: 0.25rem;4811border-bottom-right-radius: 0.25rem;4812}48134814.pagination-lg .page-link {4815padding: 0.75rem 1.5rem;4816font-size: 1.25rem;4817}4818.pagination-lg .page-item:first-child .page-link {4819border-top-left-radius: 0.3rem;4820border-bottom-left-radius: 0.3rem;4821}4822.pagination-lg .page-item:last-child .page-link {4823border-top-right-radius: 0.3rem;4824border-bottom-right-radius: 0.3rem;4825}48264827.pagination-sm .page-link {4828padding: 0.25rem 0.5rem;4829font-size: 0.875rem;4830}4831.pagination-sm .page-item:first-child .page-link {4832border-top-left-radius: 0.2rem;4833border-bottom-left-radius: 0.2rem;4834}4835.pagination-sm .page-item:last-child .page-link {4836border-top-right-radius: 0.2rem;4837border-bottom-right-radius: 0.2rem;4838}48394840.badge {4841display: inline-block;4842padding: 0.35em 0.65em;4843font-size: 0.75em;4844font-weight: 700;4845line-height: 1;4846color: #fff;4847text-align: center;4848white-space: nowrap;4849vertical-align: baseline;4850border-radius: 0.25rem;4851}4852.badge:empty {4853display: none;4854}48554856.btn .badge {4857position: relative;4858top: -1px;4859}48604861.alert {4862position: relative;4863padding: 1rem 1rem;4864margin-bottom: 1rem;4865border: 1px solid transparent;4866border-radius: 0.25rem;4867}48684869.alert-heading {4870color: inherit;4871}48724873.alert-link {4874font-weight: 700;4875}48764877.alert-dismissible {4878padding-right: 3rem;4879}4880.alert-dismissible .btn-close {4881position: absolute;4882top: 0;4883right: 0;4884z-index: 2;4885padding: 1.25rem 1rem;4886}48874888.alert-primary {4889color: #616571;4890background-color: #eceef2;4891border-color: #e3e5eb;4892}4893.alert-primary .alert-link {4894color: #4e515a;4895}48964897.alert-secondary {4898color: #375e4e;4899background-color: #deebe6;4900border-color: #cee2da;4901}4902.alert-secondary .alert-link {4903color: #2c4b3e;4904}49054906.alert-success {4907color: #0f5132;4908background-color: #d1e7dd;4909border-color: #badbcc;4910}4911.alert-success .alert-link {4912color: #0c4128;4913}49144915.alert-info {4916color: #055160;4917background-color: #cff4fc;4918border-color: #b6effb;4919}4920.alert-info .alert-link {4921color: #04414d;4922}49234924.alert-warning {4925color: #664d03;4926background-color: #fff3cd;4927border-color: #ffecb5;4928}4929.alert-warning .alert-link {4930color: #523e02;4931}49324933.alert-danger {4934color: #842029;4935background-color: #f8d7da;4936border-color: #f5c2c7;4937}4938.alert-danger .alert-link {4939color: #6a1a21;4940}49414942.alert-light {4943color: #636464;4944background-color: #fefefe;4945border-color: #fdfdfe;4946}4947.alert-light .alert-link {4948color: #4f5050;4949}49504951.alert-dark {4952color: #141619;4953background-color: #d3d3d4;4954border-color: #bcbebf;4955}4956.alert-dark .alert-link {4957color: #101214;4958}49594960@keyframes progress-bar-stripes {49610% {4962background-position-x: 1rem;4963}4964}4965.progress {4966display: flex;4967height: 1rem;4968overflow: hidden;4969font-size: 0.75rem;4970background-color: #e9ecef;4971border-radius: 0.25rem;4972}49734974.progress-bar {4975display: flex;4976flex-direction: column;4977justify-content: center;4978overflow: hidden;4979color: #fff;4980text-align: center;4981white-space: nowrap;4982background-color: #a1a9bd;4983transition: width 0.6s ease;4984}4985@media (prefers-reduced-motion: reduce) {4986.progress-bar {4987transition: none;4988}4989}49904991.progress-bar-striped {4992background-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);4993background-size: 1rem 1rem;4994}49954996.progress-bar-animated {4997animation: 1s linear infinite progress-bar-stripes;4998}4999@media (prefers-reduced-motion: reduce) {5000.progress-bar-animated {5001animation: none;5002}5003}50045005.list-group {5006display: flex;5007flex-direction: column;5008padding-left: 0;5009margin-bottom: 0;5010border-radius: 0.25rem;5011}50125013.list-group-numbered {5014list-style-type: none;5015counter-reset: section;5016}5017.list-group-numbered > li::before {5018content: counters(section, ".") ". ";5019counter-increment: section;5020}50215022.list-group-item-action {5023width: 100%;5024color: #495057;5025text-align: inherit;5026}5027.list-group-item-action:hover, .list-group-item-action:focus {5028z-index: 1;5029color: #495057;5030text-decoration: none;5031background-color: #f8f9fa;5032}5033.list-group-item-action:active {5034color: #212529;5035background-color: #e9ecef;5036}50375038.list-group-item {5039position: relative;5040display: block;5041padding: 0.5rem 1rem;5042color: #212529;5043text-decoration: none;5044background-color: #fff;5045border: 1px solid rgba(0, 0, 0, 0.125);5046}5047.list-group-item:first-child {5048border-top-left-radius: inherit;5049border-top-right-radius: inherit;5050}5051.list-group-item:last-child {5052border-bottom-right-radius: inherit;5053border-bottom-left-radius: inherit;5054}5055.list-group-item.disabled, .list-group-item:disabled {5056color: #6c757d;5057pointer-events: none;5058background-color: #fff;5059}5060.list-group-item.active {5061z-index: 2;5062color: #fff;5063background-color: #a1a9bd;5064border-color: #a1a9bd;5065}5066.list-group-item + .list-group-item {5067border-top-width: 0;5068}5069.list-group-item + .list-group-item.active {5070margin-top: -1px;5071border-top-width: 1px;5072}50735074.list-group-horizontal {5075flex-direction: row;5076}5077.list-group-horizontal > .list-group-item:first-child {5078border-bottom-left-radius: 0.25rem;5079border-top-right-radius: 0;5080}5081.list-group-horizontal > .list-group-item:last-child {5082border-top-right-radius: 0.25rem;5083border-bottom-left-radius: 0;5084}5085.list-group-horizontal > .list-group-item.active {5086margin-top: 0;5087}5088.list-group-horizontal > .list-group-item + .list-group-item {5089border-top-width: 1px;5090border-left-width: 0;5091}5092.list-group-horizontal > .list-group-item + .list-group-item.active {5093margin-left: -1px;5094border-left-width: 1px;5095}50965097@media (min-width: 576px) {5098.list-group-horizontal-sm {5099flex-direction: row;5100}5101.list-group-horizontal-sm > .list-group-item:first-child {5102border-bottom-left-radius: 0.25rem;5103border-top-right-radius: 0;5104}5105.list-group-horizontal-sm > .list-group-item:last-child {5106border-top-right-radius: 0.25rem;5107border-bottom-left-radius: 0;5108}5109.list-group-horizontal-sm > .list-group-item.active {5110margin-top: 0;5111}5112.list-group-horizontal-sm > .list-group-item + .list-group-item {5113border-top-width: 1px;5114border-left-width: 0;5115}5116.list-group-horizontal-sm > .list-group-item + .list-group-item.active {5117margin-left: -1px;5118border-left-width: 1px;5119}5120}5121@media (min-width: 768px) {5122.list-group-horizontal-md {5123flex-direction: row;5124}5125.list-group-horizontal-md > .list-group-item:first-child {5126border-bottom-left-radius: 0.25rem;5127border-top-right-radius: 0;5128}5129.list-group-horizontal-md > .list-group-item:last-child {5130border-top-right-radius: 0.25rem;5131border-bottom-left-radius: 0;5132}5133.list-group-horizontal-md > .list-group-item.active {5134margin-top: 0;5135}5136.list-group-horizontal-md > .list-group-item + .list-group-item {5137border-top-width: 1px;5138border-left-width: 0;5139}5140.list-group-horizontal-md > .list-group-item + .list-group-item.active {5141margin-left: -1px;5142border-left-width: 1px;5143}5144}5145@media (min-width: 992px) {5146.list-group-horizontal-lg {5147flex-direction: row;5148}5149.list-group-horizontal-lg > .list-group-item:first-child {5150border-bottom-left-radius: 0.25rem;5151border-top-right-radius: 0;5152}5153.list-group-horizontal-lg > .list-group-item:last-child {5154border-top-right-radius: 0.25rem;5155border-bottom-left-radius: 0;5156}5157.list-group-horizontal-lg > .list-group-item.active {5158margin-top: 0;5159}5160.list-group-horizontal-lg > .list-group-item + .list-group-item {5161border-top-width: 1px;5162border-left-width: 0;5163}5164.list-group-horizontal-lg > .list-group-item + .list-group-item.active {5165margin-left: -1px;5166border-left-width: 1px;5167}5168}5169@media (min-width: 1200px) {5170.list-group-horizontal-xl {5171flex-direction: row;5172}5173.list-group-horizontal-xl > .list-group-item:first-child {5174border-bottom-left-radius: 0.25rem;5175border-top-right-radius: 0;5176}5177.list-group-horizontal-xl > .list-group-item:last-child {5178border-top-right-radius: 0.25rem;5179border-bottom-left-radius: 0;5180}5181.list-group-horizontal-xl > .list-group-item.active {5182margin-top: 0;5183}5184.list-group-horizontal-xl > .list-group-item + .list-group-item {5185border-top-width: 1px;5186border-left-width: 0;5187}5188.list-group-horizontal-xl > .list-group-item + .list-group-item.active {5189margin-left: -1px;5190border-left-width: 1px;5191}5192}5193@media (min-width: 1400px) {5194.list-group-horizontal-xxl {5195flex-direction: row;5196}5197.list-group-horizontal-xxl > .list-group-item:first-child {5198border-bottom-left-radius: 0.25rem;5199border-top-right-radius: 0;5200}5201.list-group-horizontal-xxl > .list-group-item:last-child {5202border-top-right-radius: 0.25rem;5203border-bottom-left-radius: 0;5204}5205.list-group-horizontal-xxl > .list-group-item.active {5206margin-top: 0;5207}5208.list-group-horizontal-xxl > .list-group-item + .list-group-item {5209border-top-width: 1px;5210border-left-width: 0;5211}5212.list-group-horizontal-xxl > .list-group-item + .list-group-item.active {5213margin-left: -1px;5214border-left-width: 1px;5215}5216}5217.list-group-flush {5218border-radius: 0;5219}5220.list-group-flush > .list-group-item {5221border-width: 0 0 1px;5222}5223.list-group-flush > .list-group-item:last-child {5224border-bottom-width: 0;5225}52265227.list-group-item-primary {5228color: #616571;5229background-color: #eceef2;5230}5231.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {5232color: #616571;5233background-color: #d4d6da;5234}5235.list-group-item-primary.list-group-item-action.active {5236color: #fff;5237background-color: #616571;5238border-color: #616571;5239}52405241.list-group-item-secondary {5242color: #375e4e;5243background-color: #deebe6;5244}5245.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {5246color: #375e4e;5247background-color: #c8d4cf;5248}5249.list-group-item-secondary.list-group-item-action.active {5250color: #fff;5251background-color: #375e4e;5252border-color: #375e4e;5253}52545255.list-group-item-success {5256color: #0f5132;5257background-color: #d1e7dd;5258}5259.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {5260color: #0f5132;5261background-color: #bcd0c7;5262}5263.list-group-item-success.list-group-item-action.active {5264color: #fff;5265background-color: #0f5132;5266border-color: #0f5132;5267}52685269.list-group-item-info {5270color: #055160;5271background-color: #cff4fc;5272}5273.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {5274color: #055160;5275background-color: #badce3;5276}5277.list-group-item-info.list-group-item-action.active {5278color: #fff;5279background-color: #055160;5280border-color: #055160;5281}52825283.list-group-item-warning {5284color: #664d03;5285background-color: #fff3cd;5286}5287.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {5288color: #664d03;5289background-color: #e6dbb9;5290}5291.list-group-item-warning.list-group-item-action.active {5292color: #fff;5293background-color: #664d03;5294border-color: #664d03;5295}52965297.list-group-item-danger {5298color: #842029;5299background-color: #f8d7da;5300}5301.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {5302color: #842029;5303background-color: #dfc2c4;5304}5305.list-group-item-danger.list-group-item-action.active {5306color: #fff;5307background-color: #842029;5308border-color: #842029;5309}53105311.list-group-item-light {5312color: #636464;5313background-color: #fefefe;5314}5315.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {5316color: #636464;5317background-color: #e5e5e5;5318}5319.list-group-item-light.list-group-item-action.active {5320color: #fff;5321background-color: #636464;5322border-color: #636464;5323}53245325.list-group-item-dark {5326color: #141619;5327background-color: #d3d3d4;5328}5329.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {5330color: #141619;5331background-color: #bebebf;5332}5333.list-group-item-dark.list-group-item-action.active {5334color: #fff;5335background-color: #141619;5336border-color: #141619;5337}53385339.btn-close {5340box-sizing: content-box;5341width: 1em;5342height: 1em;5343padding: 0.25em 0.25em;5344color: #000;5345background: transparent 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;5346border: 0;5347border-radius: 0.25rem;5348opacity: 0.5;5349}5350.btn-close:hover {5351color: #000;5352text-decoration: none;5353opacity: 0.75;5354}5355.btn-close:focus {5356outline: 0;5357box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);5358opacity: 1;5359}5360.btn-close:disabled, .btn-close.disabled {5361pointer-events: none;5362user-select: none;5363opacity: 0.25;5364}53655366.btn-close-white {5367filter: invert(1) grayscale(100%) brightness(200%);5368}53695370.toast {5371width: 350px;5372max-width: 100%;5373font-size: 0.875rem;5374pointer-events: auto;5375background-color: rgba(255, 255, 255, 0.85);5376background-clip: padding-box;5377border: 1px solid rgba(0, 0, 0, 0.1);5378box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);5379border-radius: 0.25rem;5380}5381.toast.showing {5382opacity: 0;5383}5384.toast:not(.show) {5385display: none;5386}53875388.toast-container {5389width: max-content;5390max-width: 100%;5391pointer-events: none;5392}5393.toast-container > :not(:last-child) {5394margin-bottom: 0.75rem;5395}53965397.toast-header {5398display: flex;5399align-items: center;5400padding: 0.5rem 0.75rem;5401color: #6c757d;5402background-color: rgba(255, 255, 255, 0.85);5403background-clip: padding-box;5404border-bottom: 1px solid rgba(0, 0, 0, 0.05);5405border-top-left-radius: calc(0.25rem - 1px);5406border-top-right-radius: calc(0.25rem - 1px);5407}5408.toast-header .btn-close {5409margin-right: -0.375rem;5410margin-left: 0.75rem;5411}54125413.toast-body {5414padding: 0.75rem;5415word-wrap: break-word;5416}54175418.modal {5419position: fixed;5420top: 0;5421left: 0;5422z-index: 1055;5423display: none;5424width: 100%;5425height: 100%;5426overflow-x: hidden;5427overflow-y: auto;5428outline: 0;5429}54305431.modal-dialog {5432position: relative;5433width: auto;5434margin: 0.5rem;5435pointer-events: none;5436}5437.modal.fade .modal-dialog {5438transition: transform 0.3s ease-out;5439transform: translate(0, -50px);5440}5441@media (prefers-reduced-motion: reduce) {5442.modal.fade .modal-dialog {5443transition: none;5444}5445}5446.modal.show .modal-dialog {5447transform: none;5448}5449.modal.modal-static .modal-dialog {5450transform: scale(1.02);5451}54525453.modal-dialog-scrollable {5454height: calc(100% - 1rem);5455}5456.modal-dialog-scrollable .modal-content {5457max-height: 100%;5458overflow: hidden;5459}5460.modal-dialog-scrollable .modal-body {5461overflow-y: auto;5462}54635464.modal-dialog-centered {5465display: flex;5466align-items: center;5467min-height: calc(100% - 1rem);5468}54695470.modal-content {5471position: relative;5472display: flex;5473flex-direction: column;5474width: 100%;5475pointer-events: auto;5476background-color: #fff;5477background-clip: padding-box;5478border: 1px solid rgba(0, 0, 0, 0.2);5479border-radius: 0.3rem;5480outline: 0;5481}54825483.modal-backdrop {5484position: fixed;5485top: 0;5486left: 0;5487z-index: 1050;5488width: 100vw;5489height: 100vh;5490background-color: #000;5491}5492.modal-backdrop.fade {5493opacity: 0;5494}5495.modal-backdrop.show {5496opacity: 0.5;5497}54985499.modal-header {5500display: flex;5501flex-shrink: 0;5502align-items: center;5503justify-content: space-between;5504padding: 1rem 1rem;5505border-bottom: 1px solid #dee2e6;5506border-top-left-radius: calc(0.3rem - 1px);5507border-top-right-radius: calc(0.3rem - 1px);5508}5509.modal-header .btn-close {5510padding: 0.5rem 0.5rem;5511margin: -0.5rem -0.5rem -0.5rem auto;5512}55135514.modal-title {5515margin-bottom: 0;5516line-height: 1.5;5517}55185519.modal-body {5520position: relative;5521flex: 1 1 auto;5522padding: 1rem;5523}55245525.modal-footer {5526display: flex;5527flex-wrap: wrap;5528flex-shrink: 0;5529align-items: center;5530justify-content: flex-end;5531padding: 0.75rem;5532border-top: 1px solid #dee2e6;5533border-bottom-right-radius: calc(0.3rem - 1px);5534border-bottom-left-radius: calc(0.3rem - 1px);5535}5536.modal-footer > * {5537margin: 0.25rem;5538}55395540@media (min-width: 576px) {5541.modal-dialog {5542max-width: 500px;5543margin: 1.75rem auto;5544}55455546.modal-dialog-scrollable {5547height: calc(100% - 3.5rem);5548}55495550.modal-dialog-centered {5551min-height: calc(100% - 3.5rem);5552}55535554.modal-sm {5555max-width: 300px;5556}5557}5558@media (min-width: 992px) {5559.modal-lg,5560.modal-xl {5561max-width: 800px;5562}5563}5564@media (min-width: 1200px) {5565.modal-xl {5566max-width: 1140px;5567}5568}5569.modal-fullscreen {5570width: 100vw;5571max-width: none;5572height: 100%;5573margin: 0;5574}5575.modal-fullscreen .modal-content {5576height: 100%;5577border: 0;5578border-radius: 0;5579}5580.modal-fullscreen .modal-header {5581border-radius: 0;5582}5583.modal-fullscreen .modal-body {5584overflow-y: auto;5585}5586.modal-fullscreen .modal-footer {5587border-radius: 0;5588}55895590@media (max-width: 575.98px) {5591.modal-fullscreen-sm-down {5592width: 100vw;5593max-width: none;5594height: 100%;5595margin: 0;5596}5597.modal-fullscreen-sm-down .modal-content {5598height: 100%;5599border: 0;5600border-radius: 0;5601}5602.modal-fullscreen-sm-down .modal-header {5603border-radius: 0;5604}5605.modal-fullscreen-sm-down .modal-body {5606overflow-y: auto;5607}5608.modal-fullscreen-sm-down .modal-footer {5609border-radius: 0;5610}5611}5612@media (max-width: 767.98px) {5613.modal-fullscreen-md-down {5614width: 100vw;5615max-width: none;5616height: 100%;5617margin: 0;5618}5619.modal-fullscreen-md-down .modal-content {5620height: 100%;5621border: 0;5622border-radius: 0;5623}5624.modal-fullscreen-md-down .modal-header {5625border-radius: 0;5626}5627.modal-fullscreen-md-down .modal-body {5628overflow-y: auto;5629}5630.modal-fullscreen-md-down .modal-footer {5631border-radius: 0;5632}5633}5634@media (max-width: 991.98px) {5635.modal-fullscreen-lg-down {5636width: 100vw;5637max-width: none;5638height: 100%;5639margin: 0;5640}5641.modal-fullscreen-lg-down .modal-content {5642height: 100%;5643border: 0;5644border-radius: 0;5645}5646.modal-fullscreen-lg-down .modal-header {5647border-radius: 0;5648}5649.modal-fullscreen-lg-down .modal-body {5650overflow-y: auto;5651}5652.modal-fullscreen-lg-down .modal-footer {5653border-radius: 0;5654}5655}5656@media (max-width: 1199.98px) {5657.modal-fullscreen-xl-down {5658width: 100vw;5659max-width: none;5660height: 100%;5661margin: 0;5662}5663.modal-fullscreen-xl-down .modal-content {5664height: 100%;5665border: 0;5666border-radius: 0;5667}5668.modal-fullscreen-xl-down .modal-header {5669border-radius: 0;5670}5671.modal-fullscreen-xl-down .modal-body {5672overflow-y: auto;5673}5674.modal-fullscreen-xl-down .modal-footer {5675border-radius: 0;5676}5677}5678@media (max-width: 1399.98px) {5679.modal-fullscreen-xxl-down {5680width: 100vw;5681max-width: none;5682height: 100%;5683margin: 0;5684}5685.modal-fullscreen-xxl-down .modal-content {5686height: 100%;5687border: 0;5688border-radius: 0;5689}5690.modal-fullscreen-xxl-down .modal-header {5691border-radius: 0;5692}5693.modal-fullscreen-xxl-down .modal-body {5694overflow-y: auto;5695}5696.modal-fullscreen-xxl-down .modal-footer {5697border-radius: 0;5698}5699}5700.tooltip {5701position: absolute;5702z-index: 1080;5703display: block;5704margin: 0;5705font-family: var(--bs-font-sans-serif);5706font-style: normal;5707font-weight: 400;5708line-height: 1.5;5709text-align: left;5710text-align: start;5711text-decoration: none;5712text-shadow: none;5713text-transform: none;5714letter-spacing: normal;5715word-break: normal;5716word-spacing: normal;5717white-space: normal;5718line-break: auto;5719font-size: 0.875rem;5720word-wrap: break-word;5721opacity: 0;5722}5723.tooltip.show {5724opacity: 0.9;5725}5726.tooltip .tooltip-arrow {5727position: absolute;5728display: block;5729width: 0.8rem;5730height: 0.4rem;5731}5732.tooltip .tooltip-arrow::before {5733position: absolute;5734content: "";5735border-color: transparent;5736border-style: solid;5737}57385739.bs-tooltip-top, .dark-mode .bs-tooltip-auto[data-popper-placement^=top], .bs-tooltip-auto[data-popper-placement^=top] {5740padding: 0.4rem 0;5741}5742.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {5743bottom: 0;5744}5745.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {5746top: -1px;5747border-width: 0.4rem 0.4rem 0;5748border-top-color: #000;5749}57505751.bs-tooltip-end, .dark-mode .bs-tooltip-auto[data-popper-placement^=right], .bs-tooltip-auto[data-popper-placement^=right] {5752padding: 0 0.4rem;5753}5754.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {5755left: 0;5756width: 0.4rem;5757height: 0.8rem;5758}5759.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {5760right: -1px;5761border-width: 0.4rem 0.4rem 0.4rem 0;5762border-right-color: #000;5763}57645765.bs-tooltip-bottom, .dark-mode .bs-tooltip-auto[data-popper-placement^=bottom], .bs-tooltip-auto[data-popper-placement^=bottom] {5766padding: 0.4rem 0;5767}5768.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {5769top: 0;5770}5771.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {5772bottom: -1px;5773border-width: 0 0.4rem 0.4rem;5774border-bottom-color: #000;5775}57765777.bs-tooltip-start, .dark-mode .bs-tooltip-auto[data-popper-placement^=left], .bs-tooltip-auto[data-popper-placement^=left] {5778padding: 0 0.4rem;5779}5780.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {5781right: 0;5782width: 0.4rem;5783height: 0.8rem;5784}5785.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {5786left: -1px;5787border-width: 0.4rem 0 0.4rem 0.4rem;5788border-left-color: #000;5789}57905791.tooltip-inner {5792max-width: 200px;5793padding: 0.25rem 0.5rem;5794color: #fff;5795text-align: center;5796background-color: #000;5797border-radius: 0.25rem;5798}57995800.popover {5801position: absolute;5802top: 0;5803left: 0 /* rtl:ignore */;5804z-index: 1070;5805display: block;5806max-width: 276px;5807font-family: var(--bs-font-sans-serif);5808font-style: normal;5809font-weight: 400;5810line-height: 1.5;5811text-align: left;5812text-align: start;5813text-decoration: none;5814text-shadow: none;5815text-transform: none;5816letter-spacing: normal;5817word-break: normal;5818word-spacing: normal;5819white-space: normal;5820line-break: auto;5821font-size: 0.875rem;5822word-wrap: break-word;5823background-color: #fff;5824background-clip: padding-box;5825border: 1px solid rgba(0, 0, 0, 0.2);5826border-radius: 0.3rem;5827}5828.popover .popover-arrow {5829position: absolute;5830display: block;5831width: 1rem;5832height: 0.5rem;5833}5834.popover .popover-arrow::before, .popover .popover-arrow::after {5835position: absolute;5836display: block;5837content: "";5838border-color: transparent;5839border-style: solid;5840}58415842.bs-popover-top > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {5843bottom: calc(-0.5rem - 1px);5844}5845.bs-popover-top > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {5846bottom: 0;5847border-width: 0.5rem 0.5rem 0;5848border-top-color: rgba(0, 0, 0, 0.25);5849}5850.bs-popover-top > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {5851bottom: 1px;5852border-width: 0.5rem 0.5rem 0;5853border-top-color: #fff;5854}58555856.bs-popover-end > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {5857left: calc(-0.5rem - 1px);5858width: 0.5rem;5859height: 1rem;5860}5861.bs-popover-end > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {5862left: 0;5863border-width: 0.5rem 0.5rem 0.5rem 0;5864border-right-color: rgba(0, 0, 0, 0.25);5865}5866.bs-popover-end > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {5867left: 1px;5868border-width: 0.5rem 0.5rem 0.5rem 0;5869border-right-color: #fff;5870}58715872.bs-popover-bottom > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {5873top: calc(-0.5rem - 1px);5874}5875.bs-popover-bottom > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {5876top: 0;5877border-width: 0 0.5rem 0.5rem 0.5rem;5878border-bottom-color: rgba(0, 0, 0, 0.25);5879}5880.bs-popover-bottom > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {5881top: 1px;5882border-width: 0 0.5rem 0.5rem 0.5rem;5883border-bottom-color: #fff;5884}5885.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {5886position: absolute;5887top: 0;5888left: 50%;5889display: block;5890width: 1rem;5891margin-left: -0.5rem;5892content: "";5893border-bottom: 1px solid #f0f0f0;5894}58955896.bs-popover-start > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {5897right: calc(-0.5rem - 1px);5898width: 0.5rem;5899height: 1rem;5900}5901.bs-popover-start > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {5902right: 0;5903border-width: 0.5rem 0 0.5rem 0.5rem;5904border-left-color: rgba(0, 0, 0, 0.25);5905}5906.bs-popover-start > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {5907right: 1px;5908border-width: 0.5rem 0 0.5rem 0.5rem;5909border-left-color: #fff;5910}59115912.popover-header {5913padding: 0.5rem 1rem;5914margin-bottom: 0;5915font-size: 1rem;5916background-color: #f0f0f0;5917border-bottom: 1px solid rgba(0, 0, 0, 0.2);5918border-top-left-radius: calc(0.3rem - 1px);5919border-top-right-radius: calc(0.3rem - 1px);5920}5921.popover-header:empty {5922display: none;5923}59245925.popover-body {5926padding: 1rem 1rem;5927color: #212529;5928}59295930.carousel {5931position: relative;5932}59335934.carousel.pointer-event {5935touch-action: pan-y;5936}59375938.carousel-inner {5939position: relative;5940width: 100%;5941overflow: hidden;5942}5943.carousel-inner::after {5944display: block;5945clear: both;5946content: "";5947}59485949.carousel-item {5950position: relative;5951display: none;5952float: left;5953width: 100%;5954margin-right: -100%;5955backface-visibility: hidden;5956transition: transform 0.6s ease-in-out;5957}5958@media (prefers-reduced-motion: reduce) {5959.carousel-item {5960transition: none;5961}5962}59635964.carousel-item.active,5965.carousel-item-next,5966.carousel-item-prev {5967display: block;5968}59695970/* rtl:begin:ignore */5971.carousel-item-next:not(.carousel-item-start),5972.active.carousel-item-end {5973transform: translateX(100%);5974}59755976.carousel-item-prev:not(.carousel-item-end),5977.active.carousel-item-start {5978transform: translateX(-100%);5979}59805981/* rtl:end:ignore */5982.carousel-fade .carousel-item {5983opacity: 0;5984transition-property: opacity;5985transform: none;5986}5987.carousel-fade .carousel-item.active,5988.carousel-fade .carousel-item-next.carousel-item-start,5989.carousel-fade .carousel-item-prev.carousel-item-end {5990z-index: 1;5991opacity: 1;5992}5993.carousel-fade .active.carousel-item-start,5994.carousel-fade .active.carousel-item-end {5995z-index: 0;5996opacity: 0;5997transition: opacity 0s 0.6s;5998}5999@media (prefers-reduced-motion: reduce) {6000.carousel-fade .active.carousel-item-start,6001.carousel-fade .active.carousel-item-end {6002transition: none;6003}6004}60056006.carousel-control-prev,6007.carousel-control-next {6008position: absolute;6009top: 0;6010bottom: 0;6011z-index: 1;6012display: flex;6013align-items: center;6014justify-content: center;6015width: 15%;6016padding: 0;6017color: #fff;6018text-align: center;6019background: none;6020border: 0;6021opacity: 0.5;6022transition: opacity 0.15s ease;6023}6024@media (prefers-reduced-motion: reduce) {6025.carousel-control-prev,6026.carousel-control-next {6027transition: none;6028}6029}6030.carousel-control-prev:hover, .carousel-control-prev:focus,6031.carousel-control-next:hover,6032.carousel-control-next:focus {6033color: #fff;6034text-decoration: none;6035outline: 0;6036opacity: 0.9;6037}60386039.carousel-control-prev {6040left: 0;6041}60426043.carousel-control-next {6044right: 0;6045}60466047.carousel-control-prev-icon,6048.carousel-control-next-icon {6049display: inline-block;6050width: 2rem;6051height: 2rem;6052background-repeat: no-repeat;6053background-position: 50%;6054background-size: 100% 100%;6055}60566057/* rtl:options: {6058"autoRename": true,6059"stringMap":[ {6060"name" : "prev-next",6061"search" : "prev",6062"replace" : "next"6063} ]6064} */6065.carousel-control-prev-icon {6066background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");6067}60686069.carousel-control-next-icon {6070background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");6071}60726073.carousel-indicators {6074position: absolute;6075right: 0;6076bottom: 0;6077left: 0;6078z-index: 2;6079display: flex;6080justify-content: center;6081padding: 0;6082margin-right: 15%;6083margin-bottom: 1rem;6084margin-left: 15%;6085list-style: none;6086}6087.carousel-indicators [data-bs-target] {6088box-sizing: content-box;6089flex: 0 1 auto;6090width: 30px;6091height: 3px;6092padding: 0;6093margin-right: 3px;6094margin-left: 3px;6095text-indent: -999px;6096cursor: pointer;6097background-color: #fff;6098background-clip: padding-box;6099border: 0;6100border-top: 10px solid transparent;6101border-bottom: 10px solid transparent;6102opacity: 0.5;6103transition: opacity 0.6s ease;6104}6105@media (prefers-reduced-motion: reduce) {6106.carousel-indicators [data-bs-target] {6107transition: none;6108}6109}6110.carousel-indicators .active {6111opacity: 1;6112}61136114.carousel-caption {6115position: absolute;6116right: 15%;6117bottom: 1.25rem;6118left: 15%;6119padding-top: 1.25rem;6120padding-bottom: 1.25rem;6121color: #fff;6122text-align: center;6123}61246125.carousel-dark .carousel-control-prev-icon,6126.carousel-dark .carousel-control-next-icon {6127filter: invert(1) grayscale(100);6128}6129.carousel-dark .carousel-indicators [data-bs-target] {6130background-color: #000;6131}6132.carousel-dark .carousel-caption {6133color: #000;6134}61356136@keyframes spinner-border {6137to {6138transform: rotate(360deg) /* rtl:ignore */;6139}6140}6141.spinner-border {6142display: inline-block;6143width: 2rem;6144height: 2rem;6145vertical-align: -0.125em;6146border: 0.25em solid currentColor;6147border-right-color: transparent;6148border-radius: 50%;6149animation: 0.75s linear infinite spinner-border;6150}61516152.spinner-border-sm {6153width: 1rem;6154height: 1rem;6155border-width: 0.2em;6156}61576158@keyframes spinner-grow {61590% {6160transform: scale(0);6161}616250% {6163opacity: 1;6164transform: none;6165}6166}6167.spinner-grow {6168display: inline-block;6169width: 2rem;6170height: 2rem;6171vertical-align: -0.125em;6172background-color: currentColor;6173border-radius: 50%;6174opacity: 0;6175animation: 0.75s linear infinite spinner-grow;6176}61776178.spinner-grow-sm {6179width: 1rem;6180height: 1rem;6181}61826183@media (prefers-reduced-motion: reduce) {6184.spinner-border,6185.spinner-grow {6186animation-duration: 1.5s;6187}6188}6189.offcanvas {6190position: fixed;6191bottom: 0;6192z-index: 1045;6193display: flex;6194flex-direction: column;6195max-width: 100%;6196visibility: hidden;6197background-color: #fff;6198background-clip: padding-box;6199outline: 0;6200transition: transform 0.3s ease-in-out;6201}6202@media (prefers-reduced-motion: reduce) {6203.offcanvas {6204transition: none;6205}6206}62076208.offcanvas-backdrop {6209position: fixed;6210top: 0;6211left: 0;6212z-index: 1040;6213width: 100vw;6214height: 100vh;6215background-color: #000;6216}6217.offcanvas-backdrop.fade {6218opacity: 0;6219}6220.offcanvas-backdrop.show {6221opacity: 0.5;6222}62236224.offcanvas-header {6225display: flex;6226align-items: center;6227justify-content: space-between;6228padding: 1rem 1rem;6229}6230.offcanvas-header .btn-close {6231padding: 0.5rem 0.5rem;6232margin-top: -0.5rem;6233margin-right: -0.5rem;6234margin-bottom: -0.5rem;6235}62366237.offcanvas-title {6238margin-bottom: 0;6239line-height: 1.5;6240}62416242.offcanvas-body {6243flex-grow: 1;6244padding: 1rem 1rem;6245overflow-y: auto;6246}62476248.offcanvas-start {6249top: 0;6250left: 0;6251width: 400px;6252border-right: 1px solid rgba(0, 0, 0, 0.2);6253transform: translateX(-100%);6254}62556256.offcanvas-end {6257top: 0;6258right: 0;6259width: 400px;6260border-left: 1px solid rgba(0, 0, 0, 0.2);6261transform: translateX(100%);6262}62636264.offcanvas-top {6265top: 0;6266right: 0;6267left: 0;6268height: 30vh;6269max-height: 100%;6270border-bottom: 1px solid rgba(0, 0, 0, 0.2);6271transform: translateY(-100%);6272}62736274.offcanvas-bottom {6275right: 0;6276left: 0;6277height: 30vh;6278max-height: 100%;6279border-top: 1px solid rgba(0, 0, 0, 0.2);6280transform: translateY(100%);6281}62826283.offcanvas.show {6284transform: none;6285}62866287.placeholder {6288display: inline-block;6289min-height: 1em;6290vertical-align: middle;6291cursor: wait;6292background-color: currentColor;6293opacity: 0.5;6294}6295.placeholder.btn::before {6296display: inline-block;6297content: "";6298}62996300.placeholder-xs {6301min-height: 0.6em;6302}63036304.placeholder-sm {6305min-height: 0.8em;6306}63076308.placeholder-lg {6309min-height: 1.2em;6310}63116312.placeholder-glow .placeholder {6313animation: placeholder-glow 2s ease-in-out infinite;6314}63156316@keyframes placeholder-glow {631750% {6318opacity: 0.2;6319}6320}6321.placeholder-wave {6322mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);6323mask-size: 200% 100%;6324animation: placeholder-wave 2s linear infinite;6325}63266327@keyframes placeholder-wave {6328100% {6329mask-position: -200% 0%;6330}6331}6332.clearfix::after {6333display: block;6334clear: both;6335content: "";6336}63376338.link-primary {6339color: #a1a9bd;6340}6341.link-primary:hover, .link-primary:focus {6342color: #b4baca;6343}63446345.link-secondary {6346color: #5B9D82;6347}6348.link-secondary:hover, .link-secondary:focus {6349color: #7cb19b;6350}63516352.link-success {6353color: #198754;6354}6355.link-success:hover, .link-success:focus {6356color: #146c43;6357}63586359.link-info {6360color: #0dcaf0;6361}6362.link-info:hover, .link-info:focus {6363color: #3dd5f3;6364}63656366.link-warning {6367color: #ffc107;6368}6369.link-warning:hover, .link-warning:focus {6370color: #ffcd39;6371}63726373.link-danger {6374color: #dc3545;6375}6376.link-danger:hover, .link-danger:focus {6377color: #b02a37;6378}63796380.link-light {6381color: #f8f9fa;6382}6383.link-light:hover, .link-light:focus {6384color: #f9fafb;6385}63866387.link-dark {6388color: #212529;6389}6390.link-dark:hover, .link-dark:focus {6391color: #1a1e21;6392}63936394.ratio {6395position: relative;6396width: 100%;6397}6398.ratio::before {6399display: block;6400padding-top: var(--bs-aspect-ratio);6401content: "";6402}6403.ratio > * {6404position: absolute;6405top: 0;6406left: 0;6407width: 100%;6408height: 100%;6409}64106411.ratio-1x1 {6412--bs-aspect-ratio: 100%;6413}64146415.ratio-4x3 {6416--bs-aspect-ratio: 75%;6417}64186419.ratio-16x9 {6420--bs-aspect-ratio: 56.25%;6421}64226423.ratio-21x9 {6424--bs-aspect-ratio: 42.8571428571%;6425}64266427.fixed-top {6428position: fixed;6429top: 0;6430right: 0;6431left: 0;6432z-index: 1030;6433}64346435.fixed-bottom {6436position: fixed;6437right: 0;6438bottom: 0;6439left: 0;6440z-index: 1030;6441}64426443.sticky-top {6444position: sticky;6445top: 0;6446z-index: 1020;6447}64486449@media (min-width: 576px) {6450.sticky-sm-top {6451position: sticky;6452top: 0;6453z-index: 1020;6454}6455}6456@media (min-width: 768px) {6457.sticky-md-top {6458position: sticky;6459top: 0;6460z-index: 1020;6461}6462}6463@media (min-width: 992px) {6464.sticky-lg-top {6465position: sticky;6466top: 0;6467z-index: 1020;6468}6469}6470@media (min-width: 1200px) {6471.sticky-xl-top {6472position: sticky;6473top: 0;6474z-index: 1020;6475}6476}6477@media (min-width: 1400px) {6478.sticky-xxl-top {6479position: sticky;6480top: 0;6481z-index: 1020;6482}6483}6484.hstack {6485display: flex;6486flex-direction: row;6487align-items: center;6488align-self: stretch;6489}64906491.vstack {6492display: flex;6493flex: 1 1 auto;6494flex-direction: column;6495align-self: stretch;6496}64976498.visually-hidden,6499.visually-hidden-focusable:not(:focus):not(:focus-within) {6500position: absolute !important;6501width: 1px !important;6502height: 1px !important;6503padding: 0 !important;6504margin: -1px !important;6505overflow: hidden !important;6506clip: rect(0, 0, 0, 0) !important;6507white-space: nowrap !important;6508border: 0 !important;6509}65106511.stretched-link::after {6512position: absolute;6513top: 0;6514right: 0;6515bottom: 0;6516left: 0;6517z-index: 1;6518content: "";6519}65206521.text-truncate {6522overflow: hidden;6523text-overflow: ellipsis;6524white-space: nowrap;6525}65266527.vr {6528display: inline-block;6529align-self: stretch;6530width: 1px;6531min-height: 1em;6532background-color: currentColor;6533opacity: 0.25;6534}65356536.align-baseline {6537vertical-align: baseline !important;6538}65396540.align-top {6541vertical-align: top !important;6542}65436544.align-middle {6545vertical-align: middle !important;6546}65476548.align-bottom {6549vertical-align: bottom !important;6550}65516552.align-text-bottom {6553vertical-align: text-bottom !important;6554}65556556.align-text-top {6557vertical-align: text-top !important;6558}65596560.float-start {6561float: left !important;6562}65636564.float-end {6565float: right !important;6566}65676568.float-none {6569float: none !important;6570}65716572.opacity-0 {6573opacity: 0 !important;6574}65756576.opacity-25 {6577opacity: 0.25 !important;6578}65796580.opacity-50 {6581opacity: 0.5 !important;6582}65836584.opacity-75 {6585opacity: 0.75 !important;6586}65876588.opacity-100 {6589opacity: 1 !important;6590}65916592.overflow-auto {6593overflow: auto !important;6594}65956596.overflow-hidden {6597overflow: hidden !important;6598}65996600.overflow-visible {6601overflow: visible !important;6602}66036604.overflow-scroll {6605overflow: scroll !important;6606}66076608.d-inline {6609display: inline !important;6610}66116612.d-inline-block {6613display: inline-block !important;6614}66156616.d-block {6617display: block !important;6618}66196620.d-grid {6621display: grid !important;6622}66236624.d-table {6625display: table !important;6626}66276628.d-table-row {6629display: table-row !important;6630}66316632.d-table-cell {6633display: table-cell !important;6634}66356636.d-flex {6637display: flex !important;6638}66396640.d-inline-flex {6641display: inline-flex !important;6642}66436644.d-none {6645display: none !important;6646}66476648.shadow {6649box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;6650}66516652.shadow-sm {6653box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;6654}66556656.shadow-lg {6657box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;6658}66596660.shadow-none {6661box-shadow: none !important;6662}66636664.position-static {6665position: static !important;6666}66676668.position-relative {6669position: relative !important;6670}66716672.position-absolute {6673position: absolute !important;6674}66756676.position-fixed {6677position: fixed !important;6678}66796680.position-sticky {6681position: sticky !important;6682}66836684.top-0 {6685top: 0 !important;6686}66876688.top-50 {6689top: 50% !important;6690}66916692.top-100 {6693top: 100% !important;6694}66956696.bottom-0 {6697bottom: 0 !important;6698}66996700.bottom-50 {6701bottom: 50% !important;6702}67036704.bottom-100 {6705bottom: 100% !important;6706}67076708.start-0 {6709left: 0 !important;6710}67116712.start-50 {6713left: 50% !important;6714}67156716.start-100 {6717left: 100% !important;6718}67196720.end-0 {6721right: 0 !important;6722}67236724.end-50 {6725right: 50% !important;6726}67276728.end-100 {6729right: 100% !important;6730}67316732.translate-middle {6733transform: translate(-50%, -50%) !important;6734}67356736.translate-middle-x {6737transform: translateX(-50%) !important;6738}67396740.translate-middle-y {6741transform: translateY(-50%) !important;6742}67436744.border {6745border: 1px solid #dee2e6 !important;6746}67476748.border-0 {6749border: 0 !important;6750}67516752.border-top {6753border-top: 1px solid #dee2e6 !important;6754}67556756.border-top-0 {6757border-top: 0 !important;6758}67596760.border-end {6761border-right: 1px solid #dee2e6 !important;6762}67636764.border-end-0 {6765border-right: 0 !important;6766}67676768.border-bottom {6769border-bottom: 1px solid #dee2e6 !important;6770}67716772.border-bottom-0 {6773border-bottom: 0 !important;6774}67756776.border-start {6777border-left: 1px solid #dee2e6 !important;6778}67796780.border-start-0 {6781border-left: 0 !important;6782}67836784.border-primary {6785border-color: #a1a9bd !important;6786}67876788.border-secondary {6789border-color: #5B9D82 !important;6790}67916792.border-success {6793border-color: #198754 !important;6794}67956796.border-info {6797border-color: #0dcaf0 !important;6798}67996800.border-warning {6801border-color: #ffc107 !important;6802}68036804.border-danger {6805border-color: #dc3545 !important;6806}68076808.border-light {6809border-color: #f8f9fa !important;6810}68116812.border-dark {6813border-color: #212529 !important;6814}68156816.border-white {6817border-color: #fff !important;6818}68196820.border-1 {6821border-width: 1px !important;6822}68236824.border-2 {6825border-width: 2px !important;6826}68276828.border-3 {6829border-width: 3px !important;6830}68316832.border-4 {6833border-width: 4px !important;6834}68356836.border-5 {6837border-width: 5px !important;6838}68396840.w-25 {6841width: 25% !important;6842}68436844.w-50 {6845width: 50% !important;6846}68476848.w-75 {6849width: 75% !important;6850}68516852.w-100 {6853width: 100% !important;6854}68556856.w-auto {6857width: auto !important;6858}68596860.mw-100 {6861max-width: 100% !important;6862}68636864.vw-100 {6865width: 100vw !important;6866}68676868.min-vw-100 {6869min-width: 100vw !important;6870}68716872.h-25 {6873height: 25% !important;6874}68756876.h-50 {6877height: 50% !important;6878}68796880.h-75 {6881height: 75% !important;6882}68836884.h-100 {6885height: 100% !important;6886}68876888.h-auto {6889height: auto !important;6890}68916892.mh-100 {6893max-height: 100% !important;6894}68956896.vh-100 {6897height: 100vh !important;6898}68996900.min-vh-100 {6901min-height: 100vh !important;6902}69036904.flex-fill {6905flex: 1 1 auto !important;6906}69076908.flex-row {6909flex-direction: row !important;6910}69116912.flex-column {6913flex-direction: column !important;6914}69156916.flex-row-reverse {6917flex-direction: row-reverse !important;6918}69196920.flex-column-reverse {6921flex-direction: column-reverse !important;6922}69236924.flex-grow-0 {6925flex-grow: 0 !important;6926}69276928.flex-grow-1 {6929flex-grow: 1 !important;6930}69316932.flex-shrink-0 {6933flex-shrink: 0 !important;6934}69356936.flex-shrink-1 {6937flex-shrink: 1 !important;6938}69396940.flex-wrap {6941flex-wrap: wrap !important;6942}69436944.flex-nowrap {6945flex-wrap: nowrap !important;6946}69476948.flex-wrap-reverse {6949flex-wrap: wrap-reverse !important;6950}69516952.gap-0 {6953gap: 0 !important;6954}69556956.gap-1 {6957gap: 0.25rem !important;6958}69596960.gap-2 {6961gap: 0.5rem !important;6962}69636964.gap-3 {6965gap: 1rem !important;6966}69676968.gap-4 {6969gap: 1.5rem !important;6970}69716972.gap-5 {6973gap: 3rem !important;6974}69756976.justify-content-start {6977justify-content: flex-start !important;6978}69796980.justify-content-end {6981justify-content: flex-end !important;6982}69836984.justify-content-center {6985justify-content: center !important;6986}69876988.justify-content-between {6989justify-content: space-between !important;6990}69916992.justify-content-around {6993justify-content: space-around !important;6994}69956996.justify-content-evenly {6997justify-content: space-evenly !important;6998}69997000.align-items-start {7001align-items: flex-start !important;7002}70037004.align-items-end {7005align-items: flex-end !important;7006}70077008.align-items-center {7009align-items: center !important;7010}70117012.align-items-baseline {7013align-items: baseline !important;7014}70157016.align-items-stretch {7017align-items: stretch !important;7018}70197020.align-content-start {7021align-content: flex-start !important;7022}70237024.align-content-end {7025align-content: flex-end !important;7026}70277028.align-content-center {7029align-content: center !important;7030}70317032.align-content-between {7033align-content: space-between !important;7034}70357036.align-content-around {7037align-content: space-around !important;7038}70397040.align-content-stretch {7041align-content: stretch !important;7042}70437044.align-self-auto {7045align-self: auto !important;7046}70477048.align-self-start {7049align-self: flex-start !important;7050}70517052.align-self-end {7053align-self: flex-end !important;7054}70557056.align-self-center {7057align-self: center !important;7058}70597060.align-self-baseline {7061align-self: baseline !important;7062}70637064.align-self-stretch {7065align-self: stretch !important;7066}70677068.order-first {7069order: -1 !important;7070}70717072.order-0 {7073order: 0 !important;7074}70757076.order-1 {7077order: 1 !important;7078}70797080.order-2 {7081order: 2 !important;7082}70837084.order-3 {7085order: 3 !important;7086}70877088.order-4 {7089order: 4 !important;7090}70917092.order-5 {7093order: 5 !important;7094}70957096.order-last {7097order: 6 !important;7098}70997100.m-0 {7101margin: 0 !important;7102}71037104.m-1 {7105margin: 0.25rem !important;7106}71077108.m-2 {7109margin: 0.5rem !important;7110}71117112.m-3 {7113margin: 1rem !important;7114}71157116.m-4 {7117margin: 1.5rem !important;7118}71197120.m-5 {7121margin: 3rem !important;7122}71237124.m-auto {7125margin: auto !important;7126}71277128.mx-0 {7129margin-right: 0 !important;7130margin-left: 0 !important;7131}71327133.mx-1 {7134margin-right: 0.25rem !important;7135margin-left: 0.25rem !important;7136}71377138.mx-2 {7139margin-right: 0.5rem !important;7140margin-left: 0.5rem !important;7141}71427143.mx-3 {7144margin-right: 1rem !important;7145margin-left: 1rem !important;7146}71477148.mx-4 {7149margin-right: 1.5rem !important;7150margin-left: 1.5rem !important;7151}71527153.mx-5 {7154margin-right: 3rem !important;7155margin-left: 3rem !important;7156}71577158.mx-auto {7159margin-right: auto !important;7160margin-left: auto !important;7161}71627163.my-0 {7164margin-top: 0 !important;7165margin-bottom: 0 !important;7166}71677168.my-1 {7169margin-top: 0.25rem !important;7170margin-bottom: 0.25rem !important;7171}71727173.my-2 {7174margin-top: 0.5rem !important;7175margin-bottom: 0.5rem !important;7176}71777178.my-3 {7179margin-top: 1rem !important;7180margin-bottom: 1rem !important;7181}71827183.my-4 {7184margin-top: 1.5rem !important;7185margin-bottom: 1.5rem !important;7186}71877188.my-5 {7189margin-top: 3rem !important;7190margin-bottom: 3rem !important;7191}71927193.my-auto {7194margin-top: auto !important;7195margin-bottom: auto !important;7196}71977198.mt-0 {7199margin-top: 0 !important;7200}72017202.mt-1 {7203margin-top: 0.25rem !important;7204}72057206.mt-2 {7207margin-top: 0.5rem !important;7208}72097210.mt-3 {7211margin-top: 1rem !important;7212}72137214.mt-4 {7215margin-top: 1.5rem !important;7216}72177218.mt-5 {7219margin-top: 3rem !important;7220}72217222.mt-auto {7223margin-top: auto !important;7224}72257226.me-0 {7227margin-right: 0 !important;7228}72297230.me-1 {7231margin-right: 0.25rem !important;7232}72337234.me-2 {7235margin-right: 0.5rem !important;7236}72377238.me-3 {7239margin-right: 1rem !important;7240}72417242.me-4 {7243margin-right: 1.5rem !important;7244}72457246.me-5 {7247margin-right: 3rem !important;7248}72497250.me-auto {7251margin-right: auto !important;7252}72537254.mb-0 {7255margin-bottom: 0 !important;7256}72577258.mb-1 {7259margin-bottom: 0.25rem !important;7260}72617262.mb-2 {7263margin-bottom: 0.5rem !important;7264}72657266.mb-3 {7267margin-bottom: 1rem !important;7268}72697270.mb-4 {7271margin-bottom: 1.5rem !important;7272}72737274.mb-5 {7275margin-bottom: 3rem !important;7276}72777278.mb-auto {7279margin-bottom: auto !important;7280}72817282.ms-0 {7283margin-left: 0 !important;7284}72857286.ms-1 {7287margin-left: 0.25rem !important;7288}72897290.ms-2 {7291margin-left: 0.5rem !important;7292}72937294.ms-3 {7295margin-left: 1rem !important;7296}72977298.ms-4 {7299margin-left: 1.5rem !important;7300}73017302.ms-5 {7303margin-left: 3rem !important;7304}73057306.ms-auto {7307margin-left: auto !important;7308}73097310.p-0 {7311padding: 0 !important;7312}73137314.p-1 {7315padding: 0.25rem !important;7316}73177318.p-2 {7319padding: 0.5rem !important;7320}73217322.p-3 {7323padding: 1rem !important;7324}73257326.p-4 {7327padding: 1.5rem !important;7328}73297330.p-5 {7331padding: 3rem !important;7332}73337334.px-0 {7335padding-right: 0 !important;7336padding-left: 0 !important;7337}73387339.px-1 {7340padding-right: 0.25rem !important;7341padding-left: 0.25rem !important;7342}73437344.px-2 {7345padding-right: 0.5rem !important;7346padding-left: 0.5rem !important;7347}73487349.px-3 {7350padding-right: 1rem !important;7351padding-left: 1rem !important;7352}73537354.px-4 {7355padding-right: 1.5rem !important;7356padding-left: 1.5rem !important;7357}73587359.px-5 {7360padding-right: 3rem !important;7361padding-left: 3rem !important;7362}73637364.py-0 {7365padding-top: 0 !important;7366padding-bottom: 0 !important;7367}73687369.py-1 {7370padding-top: 0.25rem !important;7371padding-bottom: 0.25rem !important;7372}73737374.py-2 {7375padding-top: 0.5rem !important;7376padding-bottom: 0.5rem !important;7377}73787379.py-3 {7380padding-top: 1rem !important;7381padding-bottom: 1rem !important;7382}73837384.py-4 {7385padding-top: 1.5rem !important;7386padding-bottom: 1.5rem !important;7387}73887389.py-5 {7390padding-top: 3rem !important;7391padding-bottom: 3rem !important;7392}73937394.pt-0 {7395padding-top: 0 !important;7396}73977398.pt-1 {7399padding-top: 0.25rem !important;7400}74017402.pt-2 {7403padding-top: 0.5rem !important;7404}74057406.pt-3 {7407padding-top: 1rem !important;7408}74097410.pt-4 {7411padding-top: 1.5rem !important;7412}74137414.pt-5 {7415padding-top: 3rem !important;7416}74177418.pe-0 {7419padding-right: 0 !important;7420}74217422.pe-1 {7423padding-right: 0.25rem !important;7424}74257426.pe-2 {7427padding-right: 0.5rem !important;7428}74297430.pe-3 {7431padding-right: 1rem !important;7432}74337434.pe-4 {7435padding-right: 1.5rem !important;7436}74377438.pe-5 {7439padding-right: 3rem !important;7440}74417442.pb-0 {7443padding-bottom: 0 !important;7444}74457446.pb-1 {7447padding-bottom: 0.25rem !important;7448}74497450.pb-2 {7451padding-bottom: 0.5rem !important;7452}74537454.pb-3 {7455padding-bottom: 1rem !important;7456}74577458.pb-4 {7459padding-bottom: 1.5rem !important;7460}74617462.pb-5 {7463padding-bottom: 3rem !important;7464}74657466.ps-0 {7467padding-left: 0 !important;7468}74697470.ps-1 {7471padding-left: 0.25rem !important;7472}74737474.ps-2 {7475padding-left: 0.5rem !important;7476}74777478.ps-3 {7479padding-left: 1rem !important;7480}74817482.ps-4 {7483padding-left: 1.5rem !important;7484}74857486.ps-5 {7487padding-left: 3rem !important;7488}74897490.font-monospace {7491font-family: var(--bs-font-monospace) !important;7492}74937494.fs-1 {7495font-size: calc(1.375rem + 1.5vw) !important;7496}74977498.fs-2 {7499font-size: calc(1.325rem + 0.9vw) !important;7500}75017502.fs-3 {7503font-size: calc(1.3rem + 0.6vw) !important;7504}75057506.fs-4 {7507font-size: calc(1.275rem + 0.3vw) !important;7508}75097510.fs-5 {7511font-size: 1.25rem !important;7512}75137514.fs-6 {7515font-size: 1rem !important;7516}75177518.fst-italic {7519font-style: italic !important;7520}75217522.fst-normal {7523font-style: normal !important;7524}75257526.fw-light {7527font-weight: 300 !important;7528}75297530.fw-lighter {7531font-weight: lighter !important;7532}75337534.fw-normal {7535font-weight: 400 !important;7536}75377538.fw-bold {7539font-weight: 700 !important;7540}75417542.fw-bolder {7543font-weight: bolder !important;7544}75457546.lh-1 {7547line-height: 1 !important;7548}75497550.lh-sm {7551line-height: 1.25 !important;7552}75537554.lh-base {7555line-height: 1.5 !important;7556}75577558.lh-lg {7559line-height: 2 !important;7560}75617562.text-start {7563text-align: left !important;7564}75657566.text-end {7567text-align: right !important;7568}75697570.text-center {7571text-align: center !important;7572}75737574.text-decoration-none {7575text-decoration: none !important;7576}75777578.text-decoration-underline {7579text-decoration: underline !important;7580}75817582.text-decoration-line-through {7583text-decoration: line-through !important;7584}75857586.text-lowercase {7587text-transform: lowercase !important;7588}75897590.text-uppercase {7591text-transform: uppercase !important;7592}75937594.text-capitalize {7595text-transform: capitalize !important;7596}75977598.text-wrap {7599white-space: normal !important;7600}76017602.text-nowrap {7603white-space: nowrap !important;7604}76057606/* rtl:begin:remove */7607.text-break {7608word-wrap: break-word !important;7609word-break: break-word !important;7610}76117612/* rtl:end:remove */7613.text-primary {7614--bs-text-opacity: 1;7615color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;7616}76177618.text-secondary {7619--bs-text-opacity: 1;7620color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;7621}76227623.text-success {7624--bs-text-opacity: 1;7625color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;7626}76277628.text-info {7629--bs-text-opacity: 1;7630color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;7631}76327633.text-warning {7634--bs-text-opacity: 1;7635color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;7636}76377638.text-danger {7639--bs-text-opacity: 1;7640color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;7641}76427643.text-light {7644--bs-text-opacity: 1;7645color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;7646}76477648.text-dark {7649--bs-text-opacity: 1;7650color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;7651}76527653.text-black {7654--bs-text-opacity: 1;7655color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;7656}76577658.text-white {7659--bs-text-opacity: 1;7660color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;7661}76627663.text-body {7664--bs-text-opacity: 1;7665color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;7666}76677668.text-muted {7669--bs-text-opacity: 1;7670color: #6c757d !important;7671}76727673.text-black-50 {7674--bs-text-opacity: 1;7675color: rgba(0, 0, 0, 0.5) !important;7676}76777678.text-white-50 {7679--bs-text-opacity: 1;7680color: rgba(255, 255, 255, 0.5) !important;7681}76827683.text-reset {7684--bs-text-opacity: 1;7685color: inherit !important;7686}76877688.text-opacity-25 {7689--bs-text-opacity: 0.25;7690}76917692.text-opacity-50 {7693--bs-text-opacity: 0.5;7694}76957696.text-opacity-75 {7697--bs-text-opacity: 0.75;7698}76997700.text-opacity-100 {7701--bs-text-opacity: 1;7702}77037704.bg-primary {7705--bs-bg-opacity: 1;7706background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;7707}77087709.bg-secondary {7710--bs-bg-opacity: 1;7711background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;7712}77137714.bg-success {7715--bs-bg-opacity: 1;7716background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;7717}77187719.bg-info {7720--bs-bg-opacity: 1;7721background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;7722}77237724.bg-warning {7725--bs-bg-opacity: 1;7726background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;7727}77287729.bg-danger {7730--bs-bg-opacity: 1;7731background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;7732}77337734.bg-light {7735--bs-bg-opacity: 1;7736background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;7737}77387739.bg-dark {7740--bs-bg-opacity: 1;7741background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;7742}77437744.bg-black {7745--bs-bg-opacity: 1;7746background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;7747}77487749.bg-white {7750--bs-bg-opacity: 1;7751background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;7752}77537754.bg-body {7755--bs-bg-opacity: 1;7756background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;7757}77587759.bg-transparent {7760--bs-bg-opacity: 1;7761background-color: transparent !important;7762}77637764.bg-opacity-10 {7765--bs-bg-opacity: 0.1;7766}77677768.bg-opacity-25 {7769--bs-bg-opacity: 0.25;7770}77717772.bg-opacity-50 {7773--bs-bg-opacity: 0.5;7774}77757776.bg-opacity-75 {7777--bs-bg-opacity: 0.75;7778}77797780.bg-opacity-100 {7781--bs-bg-opacity: 1;7782}77837784.bg-gradient {7785background-image: var(--bs-gradient) !important;7786}77877788.user-select-all {7789user-select: all !important;7790}77917792.user-select-auto {7793user-select: auto !important;7794}77957796.user-select-none {7797user-select: none !important;7798}77997800.pe-none {7801pointer-events: none !important;7802}78037804.pe-auto {7805pointer-events: auto !important;7806}78077808.rounded {7809border-radius: 0.25rem !important;7810}78117812.rounded-0 {7813border-radius: 0 !important;7814}78157816.rounded-1 {7817border-radius: 0.2rem !important;7818}78197820.rounded-2 {7821border-radius: 0.25rem !important;7822}78237824.rounded-3 {7825border-radius: 0.3rem !important;7826}78277828.rounded-circle {7829border-radius: 50% !important;7830}78317832.rounded-pill {7833border-radius: 50rem !important;7834}78357836.rounded-top {7837border-top-left-radius: 0.25rem !important;7838border-top-right-radius: 0.25rem !important;7839}78407841.rounded-end {7842border-top-right-radius: 0.25rem !important;7843border-bottom-right-radius: 0.25rem !important;7844}78457846.rounded-bottom {7847border-bottom-right-radius: 0.25rem !important;7848border-bottom-left-radius: 0.25rem !important;7849}78507851.rounded-start {7852border-bottom-left-radius: 0.25rem !important;7853border-top-left-radius: 0.25rem !important;7854}78557856.visible {7857visibility: visible !important;7858}78597860.invisible {7861visibility: hidden !important;7862}78637864@media (min-width: 576px) {7865.float-sm-start {7866float: left !important;7867}78687869.float-sm-end {7870float: right !important;7871}78727873.float-sm-none {7874float: none !important;7875}78767877.d-sm-inline {7878display: inline !important;7879}78807881.d-sm-inline-block {7882display: inline-block !important;7883}78847885.d-sm-block {7886display: block !important;7887}78887889.d-sm-grid {7890display: grid !important;7891}78927893.d-sm-table {7894display: table !important;7895}78967897.d-sm-table-row {7898display: table-row !important;7899}79007901.d-sm-table-cell {7902display: table-cell !important;7903}79047905.d-sm-flex {7906display: flex !important;7907}79087909.d-sm-inline-flex {7910display: inline-flex !important;7911}79127913.d-sm-none {7914display: none !important;7915}79167917.flex-sm-fill {7918flex: 1 1 auto !important;7919}79207921.flex-sm-row {7922flex-direction: row !important;7923}79247925.flex-sm-column {7926flex-direction: column !important;7927}79287929.flex-sm-row-reverse {7930flex-direction: row-reverse !important;7931}79327933.flex-sm-column-reverse {7934flex-direction: column-reverse !important;7935}79367937.flex-sm-grow-0 {7938flex-grow: 0 !important;7939}79407941.flex-sm-grow-1 {7942flex-grow: 1 !important;7943}79447945.flex-sm-shrink-0 {7946flex-shrink: 0 !important;7947}79487949.flex-sm-shrink-1 {7950flex-shrink: 1 !important;7951}79527953.flex-sm-wrap {7954flex-wrap: wrap !important;7955}79567957.flex-sm-nowrap {7958flex-wrap: nowrap !important;7959}79607961.flex-sm-wrap-reverse {7962flex-wrap: wrap-reverse !important;7963}79647965.gap-sm-0 {7966gap: 0 !important;7967}79687969.gap-sm-1 {7970gap: 0.25rem !important;7971}79727973.gap-sm-2 {7974gap: 0.5rem !important;7975}79767977.gap-sm-3 {7978gap: 1rem !important;7979}79807981.gap-sm-4 {7982gap: 1.5rem !important;7983}79847985.gap-sm-5 {7986gap: 3rem !important;7987}79887989.justify-content-sm-start {7990justify-content: flex-start !important;7991}79927993.justify-content-sm-end {7994justify-content: flex-end !important;7995}79967997.justify-content-sm-center {7998justify-content: center !important;7999}80008001.justify-content-sm-between {8002justify-content: space-between !important;8003}80048005.justify-content-sm-around {8006justify-content: space-around !important;8007}80088009.justify-content-sm-evenly {8010justify-content: space-evenly !important;8011}80128013.align-items-sm-start {8014align-items: flex-start !important;8015}80168017.align-items-sm-end {8018align-items: flex-end !important;8019}80208021.align-items-sm-center {8022align-items: center !important;8023}80248025.align-items-sm-baseline {8026align-items: baseline !important;8027}80288029.align-items-sm-stretch {8030align-items: stretch !important;8031}80328033.align-content-sm-start {8034align-content: flex-start !important;8035}80368037.align-content-sm-end {8038align-content: flex-end !important;8039}80408041.align-content-sm-center {8042align-content: center !important;8043}80448045.align-content-sm-between {8046align-content: space-between !important;8047}80488049.align-content-sm-around {8050align-content: space-around !important;8051}80528053.align-content-sm-stretch {8054align-content: stretch !important;8055}80568057.align-self-sm-auto {8058align-self: auto !important;8059}80608061.align-self-sm-start {8062align-self: flex-start !important;8063}80648065.align-self-sm-end {8066align-self: flex-end !important;8067}80688069.align-self-sm-center {8070align-self: center !important;8071}80728073.align-self-sm-baseline {8074align-self: baseline !important;8075}80768077.align-self-sm-stretch {8078align-self: stretch !important;8079}80808081.order-sm-first {8082order: -1 !important;8083}80848085.order-sm-0 {8086order: 0 !important;8087}80888089.order-sm-1 {8090order: 1 !important;8091}80928093.order-sm-2 {8094order: 2 !important;8095}80968097.order-sm-3 {8098order: 3 !important;8099}81008101.order-sm-4 {8102order: 4 !important;8103}81048105.order-sm-5 {8106order: 5 !important;8107}81088109.order-sm-last {8110order: 6 !important;8111}81128113.m-sm-0 {8114margin: 0 !important;8115}81168117.m-sm-1 {8118margin: 0.25rem !important;8119}81208121.m-sm-2 {8122margin: 0.5rem !important;8123}81248125.m-sm-3 {8126margin: 1rem !important;8127}81288129.m-sm-4 {8130margin: 1.5rem !important;8131}81328133.m-sm-5 {8134margin: 3rem !important;8135}81368137.m-sm-auto {8138margin: auto !important;8139}81408141.mx-sm-0 {8142margin-right: 0 !important;8143margin-left: 0 !important;8144}81458146.mx-sm-1 {8147margin-right: 0.25rem !important;8148margin-left: 0.25rem !important;8149}81508151.mx-sm-2 {8152margin-right: 0.5rem !important;8153margin-left: 0.5rem !important;8154}81558156.mx-sm-3 {8157margin-right: 1rem !important;8158margin-left: 1rem !important;8159}81608161.mx-sm-4 {8162margin-right: 1.5rem !important;8163margin-left: 1.5rem !important;8164}81658166.mx-sm-5 {8167margin-right: 3rem !important;8168margin-left: 3rem !important;8169}81708171.mx-sm-auto {8172margin-right: auto !important;8173margin-left: auto !important;8174}81758176.my-sm-0 {8177margin-top: 0 !important;8178margin-bottom: 0 !important;8179}81808181.my-sm-1 {8182margin-top: 0.25rem !important;8183margin-bottom: 0.25rem !important;8184}81858186.my-sm-2 {8187margin-top: 0.5rem !important;8188margin-bottom: 0.5rem !important;8189}81908191.my-sm-3 {8192margin-top: 1rem !important;8193margin-bottom: 1rem !important;8194}81958196.my-sm-4 {8197margin-top: 1.5rem !important;8198margin-bottom: 1.5rem !important;8199}82008201.my-sm-5 {8202margin-top: 3rem !important;8203margin-bottom: 3rem !important;8204}82058206.my-sm-auto {8207margin-top: auto !important;8208margin-bottom: auto !important;8209}82108211.mt-sm-0 {8212margin-top: 0 !important;8213}82148215.mt-sm-1 {8216margin-top: 0.25rem !important;8217}82188219.mt-sm-2 {8220margin-top: 0.5rem !important;8221}82228223.mt-sm-3 {8224margin-top: 1rem !important;8225}82268227.mt-sm-4 {8228margin-top: 1.5rem !important;8229}82308231.mt-sm-5 {8232margin-top: 3rem !important;8233}82348235.mt-sm-auto {8236margin-top: auto !important;8237}82388239.me-sm-0 {8240margin-right: 0 !important;8241}82428243.me-sm-1 {8244margin-right: 0.25rem !important;8245}82468247.me-sm-2 {8248margin-right: 0.5rem !important;8249}82508251.me-sm-3 {8252margin-right: 1rem !important;8253}82548255.me-sm-4 {8256margin-right: 1.5rem !important;8257}82588259.me-sm-5 {8260margin-right: 3rem !important;8261}82628263.me-sm-auto {8264margin-right: auto !important;8265}82668267.mb-sm-0 {8268margin-bottom: 0 !important;8269}82708271.mb-sm-1 {8272margin-bottom: 0.25rem !important;8273}82748275.mb-sm-2 {8276margin-bottom: 0.5rem !important;8277}82788279.mb-sm-3 {8280margin-bottom: 1rem !important;8281}82828283.mb-sm-4 {8284margin-bottom: 1.5rem !important;8285}82868287.mb-sm-5 {8288margin-bottom: 3rem !important;8289}82908291.mb-sm-auto {8292margin-bottom: auto !important;8293}82948295.ms-sm-0 {8296margin-left: 0 !important;8297}82988299.ms-sm-1 {8300margin-left: 0.25rem !important;8301}83028303.ms-sm-2 {8304margin-left: 0.5rem !important;8305}83068307.ms-sm-3 {8308margin-left: 1rem !important;8309}83108311.ms-sm-4 {8312margin-left: 1.5rem !important;8313}83148315.ms-sm-5 {8316margin-left: 3rem !important;8317}83188319.ms-sm-auto {8320margin-left: auto !important;8321}83228323.p-sm-0 {8324padding: 0 !important;8325}83268327.p-sm-1 {8328padding: 0.25rem !important;8329}83308331.p-sm-2 {8332padding: 0.5rem !important;8333}83348335.p-sm-3 {8336padding: 1rem !important;8337}83388339.p-sm-4 {8340padding: 1.5rem !important;8341}83428343.p-sm-5 {8344padding: 3rem !important;8345}83468347.px-sm-0 {8348padding-right: 0 !important;8349padding-left: 0 !important;8350}83518352.px-sm-1 {8353padding-right: 0.25rem !important;8354padding-left: 0.25rem !important;8355}83568357.px-sm-2 {8358padding-right: 0.5rem !important;8359padding-left: 0.5rem !important;8360}83618362.px-sm-3 {8363padding-right: 1rem !important;8364padding-left: 1rem !important;8365}83668367.px-sm-4 {8368padding-right: 1.5rem !important;8369padding-left: 1.5rem !important;8370}83718372.px-sm-5 {8373padding-right: 3rem !important;8374padding-left: 3rem !important;8375}83768377.py-sm-0 {8378padding-top: 0 !important;8379padding-bottom: 0 !important;8380}83818382.py-sm-1 {8383padding-top: 0.25rem !important;8384padding-bottom: 0.25rem !important;8385}83868387.py-sm-2 {8388padding-top: 0.5rem !important;8389padding-bottom: 0.5rem !important;8390}83918392.py-sm-3 {8393padding-top: 1rem !important;8394padding-bottom: 1rem !important;8395}83968397.py-sm-4 {8398padding-top: 1.5rem !important;8399padding-bottom: 1.5rem !important;8400}84018402.py-sm-5 {8403padding-top: 3rem !important;8404padding-bottom: 3rem !important;8405}84068407.pt-sm-0 {8408padding-top: 0 !important;8409}84108411.pt-sm-1 {8412padding-top: 0.25rem !important;8413}84148415.pt-sm-2 {8416padding-top: 0.5rem !important;8417}84188419.pt-sm-3 {8420padding-top: 1rem !important;8421}84228423.pt-sm-4 {8424padding-top: 1.5rem !important;8425}84268427.pt-sm-5 {8428padding-top: 3rem !important;8429}84308431.pe-sm-0 {8432padding-right: 0 !important;8433}84348435.pe-sm-1 {8436padding-right: 0.25rem !important;8437}84388439.pe-sm-2 {8440padding-right: 0.5rem !important;8441}84428443.pe-sm-3 {8444padding-right: 1rem !important;8445}84468447.pe-sm-4 {8448padding-right: 1.5rem !important;8449}84508451.pe-sm-5 {8452padding-right: 3rem !important;8453}84548455.pb-sm-0 {8456padding-bottom: 0 !important;8457}84588459.pb-sm-1 {8460padding-bottom: 0.25rem !important;8461}84628463.pb-sm-2 {8464padding-bottom: 0.5rem !important;8465}84668467.pb-sm-3 {8468padding-bottom: 1rem !important;8469}84708471.pb-sm-4 {8472padding-bottom: 1.5rem !important;8473}84748475.pb-sm-5 {8476padding-bottom: 3rem !important;8477}84788479.ps-sm-0 {8480padding-left: 0 !important;8481}84828483.ps-sm-1 {8484padding-left: 0.25rem !important;8485}84868487.ps-sm-2 {8488padding-left: 0.5rem !important;8489}84908491.ps-sm-3 {8492padding-left: 1rem !important;8493}84948495.ps-sm-4 {8496padding-left: 1.5rem !important;8497}84988499.ps-sm-5 {8500padding-left: 3rem !important;8501}85028503.text-sm-start {8504text-align: left !important;8505}85068507.text-sm-end {8508text-align: right !important;8509}85108511.text-sm-center {8512text-align: center !important;8513}8514}8515@media (min-width: 768px) {8516.float-md-start {8517float: left !important;8518}85198520.float-md-end {8521float: right !important;8522}85238524.float-md-none {8525float: none !important;8526}85278528.d-md-inline {8529display: inline !important;8530}85318532.d-md-inline-block {8533display: inline-block !important;8534}85358536.d-md-block {8537display: block !important;8538}85398540.d-md-grid {8541display: grid !important;8542}85438544.d-md-table {8545display: table !important;8546}85478548.d-md-table-row {8549display: table-row !important;8550}85518552.d-md-table-cell {8553display: table-cell !important;8554}85558556.d-md-flex {8557display: flex !important;8558}85598560.d-md-inline-flex {8561display: inline-flex !important;8562}85638564.d-md-none {8565display: none !important;8566}85678568.flex-md-fill {8569flex: 1 1 auto !important;8570}85718572.flex-md-row {8573flex-direction: row !important;8574}85758576.flex-md-column {8577flex-direction: column !important;8578}85798580.flex-md-row-reverse {8581flex-direction: row-reverse !important;8582}85838584.flex-md-column-reverse {8585flex-direction: column-reverse !important;8586}85878588.flex-md-grow-0 {8589flex-grow: 0 !important;8590}85918592.flex-md-grow-1 {8593flex-grow: 1 !important;8594}85958596.flex-md-shrink-0 {8597flex-shrink: 0 !important;8598}85998600.flex-md-shrink-1 {8601flex-shrink: 1 !important;8602}86038604.flex-md-wrap {8605flex-wrap: wrap !important;8606}86078608.flex-md-nowrap {8609flex-wrap: nowrap !important;8610}86118612.flex-md-wrap-reverse {8613flex-wrap: wrap-reverse !important;8614}86158616.gap-md-0 {8617gap: 0 !important;8618}86198620.gap-md-1 {8621gap: 0.25rem !important;8622}86238624.gap-md-2 {8625gap: 0.5rem !important;8626}86278628.gap-md-3 {8629gap: 1rem !important;8630}86318632.gap-md-4 {8633gap: 1.5rem !important;8634}86358636.gap-md-5 {8637gap: 3rem !important;8638}86398640.justify-content-md-start {8641justify-content: flex-start !important;8642}86438644.justify-content-md-end {8645justify-content: flex-end !important;8646}86478648.justify-content-md-center {8649justify-content: center !important;8650}86518652.justify-content-md-between {8653justify-content: space-between !important;8654}86558656.justify-content-md-around {8657justify-content: space-around !important;8658}86598660.justify-content-md-evenly {8661justify-content: space-evenly !important;8662}86638664.align-items-md-start {8665align-items: flex-start !important;8666}86678668.align-items-md-end {8669align-items: flex-end !important;8670}86718672.align-items-md-center {8673align-items: center !important;8674}86758676.align-items-md-baseline {8677align-items: baseline !important;8678}86798680.align-items-md-stretch {8681align-items: stretch !important;8682}86838684.align-content-md-start {8685align-content: flex-start !important;8686}86878688.align-content-md-end {8689align-content: flex-end !important;8690}86918692.align-content-md-center {8693align-content: center !important;8694}86958696.align-content-md-between {8697align-content: space-between !important;8698}86998700.align-content-md-around {8701align-content: space-around !important;8702}87038704.align-content-md-stretch {8705align-content: stretch !important;8706}87078708.align-self-md-auto {8709align-self: auto !important;8710}87118712.align-self-md-start {8713align-self: flex-start !important;8714}87158716.align-self-md-end {8717align-self: flex-end !important;8718}87198720.align-self-md-center {8721align-self: center !important;8722}87238724.align-self-md-baseline {8725align-self: baseline !important;8726}87278728.align-self-md-stretch {8729align-self: stretch !important;8730}87318732.order-md-first {8733order: -1 !important;8734}87358736.order-md-0 {8737order: 0 !important;8738}87398740.order-md-1 {8741order: 1 !important;8742}87438744.order-md-2 {8745order: 2 !important;8746}87478748.order-md-3 {8749order: 3 !important;8750}87518752.order-md-4 {8753order: 4 !important;8754}87558756.order-md-5 {8757order: 5 !important;8758}87598760.order-md-last {8761order: 6 !important;8762}87638764.m-md-0 {8765margin: 0 !important;8766}87678768.m-md-1 {8769margin: 0.25rem !important;8770}87718772.m-md-2 {8773margin: 0.5rem !important;8774}87758776.m-md-3 {8777margin: 1rem !important;8778}87798780.m-md-4 {8781margin: 1.5rem !important;8782}87838784.m-md-5 {8785margin: 3rem !important;8786}87878788.m-md-auto {8789margin: auto !important;8790}87918792.mx-md-0 {8793margin-right: 0 !important;8794margin-left: 0 !important;8795}87968797.mx-md-1 {8798margin-right: 0.25rem !important;8799margin-left: 0.25rem !important;8800}88018802.mx-md-2 {8803margin-right: 0.5rem !important;8804margin-left: 0.5rem !important;8805}88068807.mx-md-3 {8808margin-right: 1rem !important;8809margin-left: 1rem !important;8810}88118812.mx-md-4 {8813margin-right: 1.5rem !important;8814margin-left: 1.5rem !important;8815}88168817.mx-md-5 {8818margin-right: 3rem !important;8819margin-left: 3rem !important;8820}88218822.mx-md-auto {8823margin-right: auto !important;8824margin-left: auto !important;8825}88268827.my-md-0 {8828margin-top: 0 !important;8829margin-bottom: 0 !important;8830}88318832.my-md-1 {8833margin-top: 0.25rem !important;8834margin-bottom: 0.25rem !important;8835}88368837.my-md-2 {8838margin-top: 0.5rem !important;8839margin-bottom: 0.5rem !important;8840}88418842.my-md-3 {8843margin-top: 1rem !important;8844margin-bottom: 1rem !important;8845}88468847.my-md-4 {8848margin-top: 1.5rem !important;8849margin-bottom: 1.5rem !important;8850}88518852.my-md-5 {8853margin-top: 3rem !important;8854margin-bottom: 3rem !important;8855}88568857.my-md-auto {8858margin-top: auto !important;8859margin-bottom: auto !important;8860}88618862.mt-md-0 {8863margin-top: 0 !important;8864}88658866.mt-md-1 {8867margin-top: 0.25rem !important;8868}88698870.mt-md-2 {8871margin-top: 0.5rem !important;8872}88738874.mt-md-3 {8875margin-top: 1rem !important;8876}88778878.mt-md-4 {8879margin-top: 1.5rem !important;8880}88818882.mt-md-5 {8883margin-top: 3rem !important;8884}88858886.mt-md-auto {8887margin-top: auto !important;8888}88898890.me-md-0 {8891margin-right: 0 !important;8892}88938894.me-md-1 {8895margin-right: 0.25rem !important;8896}88978898.me-md-2 {8899margin-right: 0.5rem !important;8900}89018902.me-md-3 {8903margin-right: 1rem !important;8904}89058906.me-md-4 {8907margin-right: 1.5rem !important;8908}89098910.me-md-5 {8911margin-right: 3rem !important;8912}89138914.me-md-auto {8915margin-right: auto !important;8916}89178918.mb-md-0 {8919margin-bottom: 0 !important;8920}89218922.mb-md-1 {8923margin-bottom: 0.25rem !important;8924}89258926.mb-md-2 {8927margin-bottom: 0.5rem !important;8928}89298930.mb-md-3 {8931margin-bottom: 1rem !important;8932}89338934.mb-md-4 {8935margin-bottom: 1.5rem !important;8936}89378938.mb-md-5 {8939margin-bottom: 3rem !important;8940}89418942.mb-md-auto {8943margin-bottom: auto !important;8944}89458946.ms-md-0 {8947margin-left: 0 !important;8948}89498950.ms-md-1 {8951margin-left: 0.25rem !important;8952}89538954.ms-md-2 {8955margin-left: 0.5rem !important;8956}89578958.ms-md-3 {8959margin-left: 1rem !important;8960}89618962.ms-md-4 {8963margin-left: 1.5rem !important;8964}89658966.ms-md-5 {8967margin-left: 3rem !important;8968}89698970.ms-md-auto {8971margin-left: auto !important;8972}89738974.p-md-0 {8975padding: 0 !important;8976}89778978.p-md-1 {8979padding: 0.25rem !important;8980}89818982.p-md-2 {8983padding: 0.5rem !important;8984}89858986.p-md-3 {8987padding: 1rem !important;8988}89898990.p-md-4 {8991padding: 1.5rem !important;8992}89938994.p-md-5 {8995padding: 3rem !important;8996}89978998.px-md-0 {8999padding-right: 0 !important;9000padding-left: 0 !important;9001}90029003.px-md-1 {9004padding-right: 0.25rem !important;9005padding-left: 0.25rem !important;9006}90079008.px-md-2 {9009padding-right: 0.5rem !important;9010padding-left: 0.5rem !important;9011}90129013.px-md-3 {9014padding-right: 1rem !important;9015padding-left: 1rem !important;9016}90179018.px-md-4 {9019padding-right: 1.5rem !important;9020padding-left: 1.5rem !important;9021}90229023.px-md-5 {9024padding-right: 3rem !important;9025padding-left: 3rem !important;9026}90279028.py-md-0 {9029padding-top: 0 !important;9030padding-bottom: 0 !important;9031}90329033.py-md-1 {9034padding-top: 0.25rem !important;9035padding-bottom: 0.25rem !important;9036}90379038.py-md-2 {9039padding-top: 0.5rem !important;9040padding-bottom: 0.5rem !important;9041}90429043.py-md-3 {9044padding-top: 1rem !important;9045padding-bottom: 1rem !important;9046}90479048.py-md-4 {9049padding-top: 1.5rem !important;9050padding-bottom: 1.5rem !important;9051}90529053.py-md-5 {9054padding-top: 3rem !important;9055padding-bottom: 3rem !important;9056}90579058.pt-md-0 {9059padding-top: 0 !important;9060}90619062.pt-md-1 {9063padding-top: 0.25rem !important;9064}90659066.pt-md-2 {9067padding-top: 0.5rem !important;9068}90699070.pt-md-3 {9071padding-top: 1rem !important;9072}90739074.pt-md-4 {9075padding-top: 1.5rem !important;9076}90779078.pt-md-5 {9079padding-top: 3rem !important;9080}90819082.pe-md-0 {9083padding-right: 0 !important;9084}90859086.pe-md-1 {9087padding-right: 0.25rem !important;9088}90899090.pe-md-2 {9091padding-right: 0.5rem !important;9092}90939094.pe-md-3 {9095padding-right: 1rem !important;9096}90979098.pe-md-4 {9099padding-right: 1.5rem !important;9100}91019102.pe-md-5 {9103padding-right: 3rem !important;9104}91059106.pb-md-0 {9107padding-bottom: 0 !important;9108}91099110.pb-md-1 {9111padding-bottom: 0.25rem !important;9112}91139114.pb-md-2 {9115padding-bottom: 0.5rem !important;9116}91179118.pb-md-3 {9119padding-bottom: 1rem !important;9120}91219122.pb-md-4 {9123padding-bottom: 1.5rem !important;9124}91259126.pb-md-5 {9127padding-bottom: 3rem !important;9128}91299130.ps-md-0 {9131padding-left: 0 !important;9132}91339134.ps-md-1 {9135padding-left: 0.25rem !important;9136}91379138.ps-md-2 {9139padding-left: 0.5rem !important;9140}91419142.ps-md-3 {9143padding-left: 1rem !important;9144}91459146.ps-md-4 {9147padding-left: 1.5rem !important;9148}91499150.ps-md-5 {9151padding-left: 3rem !important;9152}91539154.text-md-start {9155text-align: left !important;9156}91579158.text-md-end {9159text-align: right !important;9160}91619162.text-md-center {9163text-align: center !important;9164}9165}9166@media (min-width: 992px) {9167.float-lg-start {9168float: left !important;9169}91709171.float-lg-end {9172float: right !important;9173}91749175.float-lg-none {9176float: none !important;9177}91789179.d-lg-inline {9180display: inline !important;9181}91829183.d-lg-inline-block {9184display: inline-block !important;9185}91869187.d-lg-block {9188display: block !important;9189}91909191.d-lg-grid {9192display: grid !important;9193}91949195.d-lg-table {9196display: table !important;9197}91989199.d-lg-table-row {9200display: table-row !important;9201}92029203.d-lg-table-cell {9204display: table-cell !important;9205}92069207.d-lg-flex {9208display: flex !important;9209}92109211.d-lg-inline-flex {9212display: inline-flex !important;9213}92149215.d-lg-none {9216display: none !important;9217}92189219.flex-lg-fill {9220flex: 1 1 auto !important;9221}92229223.flex-lg-row {9224flex-direction: row !important;9225}92269227.flex-lg-column {9228flex-direction: column !important;9229}92309231.flex-lg-row-reverse {9232flex-direction: row-reverse !important;9233}92349235.flex-lg-column-reverse {9236flex-direction: column-reverse !important;9237}92389239.flex-lg-grow-0 {9240flex-grow: 0 !important;9241}92429243.flex-lg-grow-1 {9244flex-grow: 1 !important;9245}92469247.flex-lg-shrink-0 {9248flex-shrink: 0 !important;9249}92509251.flex-lg-shrink-1 {9252flex-shrink: 1 !important;9253}92549255.flex-lg-wrap {9256flex-wrap: wrap !important;9257}92589259.flex-lg-nowrap {9260flex-wrap: nowrap !important;9261}92629263.flex-lg-wrap-reverse {9264flex-wrap: wrap-reverse !important;9265}92669267.gap-lg-0 {9268gap: 0 !important;9269}92709271.gap-lg-1 {9272gap: 0.25rem !important;9273}92749275.gap-lg-2 {9276gap: 0.5rem !important;9277}92789279.gap-lg-3 {9280gap: 1rem !important;9281}92829283.gap-lg-4 {9284gap: 1.5rem !important;9285}92869287.gap-lg-5 {9288gap: 3rem !important;9289}92909291.justify-content-lg-start {9292justify-content: flex-start !important;9293}92949295.justify-content-lg-end {9296justify-content: flex-end !important;9297}92989299.justify-content-lg-center {9300justify-content: center !important;9301}93029303.justify-content-lg-between {9304justify-content: space-between !important;9305}93069307.justify-content-lg-around {9308justify-content: space-around !important;9309}93109311.justify-content-lg-evenly {9312justify-content: space-evenly !important;9313}93149315.align-items-lg-start {9316align-items: flex-start !important;9317}93189319.align-items-lg-end {9320align-items: flex-end !important;9321}93229323.align-items-lg-center {9324align-items: center !important;9325}93269327.align-items-lg-baseline {9328align-items: baseline !important;9329}93309331.align-items-lg-stretch {9332align-items: stretch !important;9333}93349335.align-content-lg-start {9336align-content: flex-start !important;9337}93389339.align-content-lg-end {9340align-content: flex-end !important;9341}93429343.align-content-lg-center {9344align-content: center !important;9345}93469347.align-content-lg-between {9348align-content: space-between !important;9349}93509351.align-content-lg-around {9352align-content: space-around !important;9353}93549355.align-content-lg-stretch {9356align-content: stretch !important;9357}93589359.align-self-lg-auto {9360align-self: auto !important;9361}93629363.align-self-lg-start {9364align-self: flex-start !important;9365}93669367.align-self-lg-end {9368align-self: flex-end !important;9369}93709371.align-self-lg-center {9372align-self: center !important;9373}93749375.align-self-lg-baseline {9376align-self: baseline !important;9377}93789379.align-self-lg-stretch {9380align-self: stretch !important;9381}93829383.order-lg-first {9384order: -1 !important;9385}93869387.order-lg-0 {9388order: 0 !important;9389}93909391.order-lg-1 {9392order: 1 !important;9393}93949395.order-lg-2 {9396order: 2 !important;9397}93989399.order-lg-3 {9400order: 3 !important;9401}94029403.order-lg-4 {9404order: 4 !important;9405}94069407.order-lg-5 {9408order: 5 !important;9409}94109411.order-lg-last {9412order: 6 !important;9413}94149415.m-lg-0 {9416margin: 0 !important;9417}94189419.m-lg-1 {9420margin: 0.25rem !important;9421}94229423.m-lg-2 {9424margin: 0.5rem !important;9425}94269427.m-lg-3 {9428margin: 1rem !important;9429}94309431.m-lg-4 {9432margin: 1.5rem !important;9433}94349435.m-lg-5 {9436margin: 3rem !important;9437}94389439.m-lg-auto {9440margin: auto !important;9441}94429443.mx-lg-0 {9444margin-right: 0 !important;9445margin-left: 0 !important;9446}94479448.mx-lg-1 {9449margin-right: 0.25rem !important;9450margin-left: 0.25rem !important;9451}94529453.mx-lg-2 {9454margin-right: 0.5rem !important;9455margin-left: 0.5rem !important;9456}94579458.mx-lg-3 {9459margin-right: 1rem !important;9460margin-left: 1rem !important;9461}94629463.mx-lg-4 {9464margin-right: 1.5rem !important;9465margin-left: 1.5rem !important;9466}94679468.mx-lg-5 {9469margin-right: 3rem !important;9470margin-left: 3rem !important;9471}94729473.mx-lg-auto {9474margin-right: auto !important;9475margin-left: auto !important;9476}94779478.my-lg-0 {9479margin-top: 0 !important;9480margin-bottom: 0 !important;9481}94829483.my-lg-1 {9484margin-top: 0.25rem !important;9485margin-bottom: 0.25rem !important;9486}94879488.my-lg-2 {9489margin-top: 0.5rem !important;9490margin-bottom: 0.5rem !important;9491}94929493.my-lg-3 {9494margin-top: 1rem !important;9495margin-bottom: 1rem !important;9496}94979498.my-lg-4 {9499margin-top: 1.5rem !important;9500margin-bottom: 1.5rem !important;9501}95029503.my-lg-5 {9504margin-top: 3rem !important;9505margin-bottom: 3rem !important;9506}95079508.my-lg-auto {9509margin-top: auto !important;9510margin-bottom: auto !important;9511}95129513.mt-lg-0 {9514margin-top: 0 !important;9515}95169517.mt-lg-1 {9518margin-top: 0.25rem !important;9519}95209521.mt-lg-2 {9522margin-top: 0.5rem !important;9523}95249525.mt-lg-3 {9526margin-top: 1rem !important;9527}95289529.mt-lg-4 {9530margin-top: 1.5rem !important;9531}95329533.mt-lg-5 {9534margin-top: 3rem !important;9535}95369537.mt-lg-auto {9538margin-top: auto !important;9539}95409541.me-lg-0 {9542margin-right: 0 !important;9543}95449545.me-lg-1 {9546margin-right: 0.25rem !important;9547}95489549.me-lg-2 {9550margin-right: 0.5rem !important;9551}95529553.me-lg-3 {9554margin-right: 1rem !important;9555}95569557.me-lg-4 {9558margin-right: 1.5rem !important;9559}95609561.me-lg-5 {9562margin-right: 3rem !important;9563}95649565.me-lg-auto {9566margin-right: auto !important;9567}95689569.mb-lg-0 {9570margin-bottom: 0 !important;9571}95729573.mb-lg-1 {9574margin-bottom: 0.25rem !important;9575}95769577.mb-lg-2 {9578margin-bottom: 0.5rem !important;9579}95809581.mb-lg-3 {9582margin-bottom: 1rem !important;9583}95849585.mb-lg-4 {9586margin-bottom: 1.5rem !important;9587}95889589.mb-lg-5 {9590margin-bottom: 3rem !important;9591}95929593.mb-lg-auto {9594margin-bottom: auto !important;9595}95969597.ms-lg-0 {9598margin-left: 0 !important;9599}96009601.ms-lg-1 {9602margin-left: 0.25rem !important;9603}96049605.ms-lg-2 {9606margin-left: 0.5rem !important;9607}96089609.ms-lg-3 {9610margin-left: 1rem !important;9611}96129613.ms-lg-4 {9614margin-left: 1.5rem !important;9615}96169617.ms-lg-5 {9618margin-left: 3rem !important;9619}96209621.ms-lg-auto {9622margin-left: auto !important;9623}96249625.p-lg-0 {9626padding: 0 !important;9627}96289629.p-lg-1 {9630padding: 0.25rem !important;9631}96329633.p-lg-2 {9634padding: 0.5rem !important;9635}96369637.p-lg-3 {9638padding: 1rem !important;9639}96409641.p-lg-4 {9642padding: 1.5rem !important;9643}96449645.p-lg-5 {9646padding: 3rem !important;9647}96489649.px-lg-0 {9650padding-right: 0 !important;9651padding-left: 0 !important;9652}96539654.px-lg-1 {9655padding-right: 0.25rem !important;9656padding-left: 0.25rem !important;9657}96589659.px-lg-2 {9660padding-right: 0.5rem !important;9661padding-left: 0.5rem !important;9662}96639664.px-lg-3 {9665padding-right: 1rem !important;9666padding-left: 1rem !important;9667}96689669.px-lg-4 {9670padding-right: 1.5rem !important;9671padding-left: 1.5rem !important;9672}96739674.px-lg-5 {9675padding-right: 3rem !important;9676padding-left: 3rem !important;9677}96789679.py-lg-0 {9680padding-top: 0 !important;9681padding-bottom: 0 !important;9682}96839684.py-lg-1 {9685padding-top: 0.25rem !important;9686padding-bottom: 0.25rem !important;9687}96889689.py-lg-2 {9690padding-top: 0.5rem !important;9691padding-bottom: 0.5rem !important;9692}96939694.py-lg-3 {9695padding-top: 1rem !important;9696padding-bottom: 1rem !important;9697}96989699.py-lg-4 {9700padding-top: 1.5rem !important;9701padding-bottom: 1.5rem !important;9702}97039704.py-lg-5 {9705padding-top: 3rem !important;9706padding-bottom: 3rem !important;9707}97089709.pt-lg-0 {9710padding-top: 0 !important;9711}97129713.pt-lg-1 {9714padding-top: 0.25rem !important;9715}97169717.pt-lg-2 {9718padding-top: 0.5rem !important;9719}97209721.pt-lg-3 {9722padding-top: 1rem !important;9723}97249725.pt-lg-4 {9726padding-top: 1.5rem !important;9727}97289729.pt-lg-5 {9730padding-top: 3rem !important;9731}97329733.pe-lg-0 {9734padding-right: 0 !important;9735}97369737.pe-lg-1 {9738padding-right: 0.25rem !important;9739}97409741.pe-lg-2 {9742padding-right: 0.5rem !important;9743}97449745.pe-lg-3 {9746padding-right: 1rem !important;9747}97489749.pe-lg-4 {9750padding-right: 1.5rem !important;9751}97529753.pe-lg-5 {9754padding-right: 3rem !important;9755}97569757.pb-lg-0 {9758padding-bottom: 0 !important;9759}97609761.pb-lg-1 {9762padding-bottom: 0.25rem !important;9763}97649765.pb-lg-2 {9766padding-bottom: 0.5rem !important;9767}97689769.pb-lg-3 {9770padding-bottom: 1rem !important;9771}97729773.pb-lg-4 {9774padding-bottom: 1.5rem !important;9775}97769777.pb-lg-5 {9778padding-bottom: 3rem !important;9779}97809781.ps-lg-0 {9782padding-left: 0 !important;9783}97849785.ps-lg-1 {9786padding-left: 0.25rem !important;9787}97889789.ps-lg-2 {9790padding-left: 0.5rem !important;9791}97929793.ps-lg-3 {9794padding-left: 1rem !important;9795}97969797.ps-lg-4 {9798padding-left: 1.5rem !important;9799}98009801.ps-lg-5 {9802padding-left: 3rem !important;9803}98049805.text-lg-start {9806text-align: left !important;9807}98089809.text-lg-end {9810text-align: right !important;9811}98129813.text-lg-center {9814text-align: center !important;9815}9816}9817@media (min-width: 1200px) {9818.float-xl-start {9819float: left !important;9820}98219822.float-xl-end {9823float: right !important;9824}98259826.float-xl-none {9827float: none !important;9828}98299830.d-xl-inline {9831display: inline !important;9832}98339834.d-xl-inline-block {9835display: inline-block !important;9836}98379838.d-xl-block {9839display: block !important;9840}98419842.d-xl-grid {9843display: grid !important;9844}98459846.d-xl-table {9847display: table !important;9848}98499850.d-xl-table-row {9851display: table-row !important;9852}98539854.d-xl-table-cell {9855display: table-cell !important;9856}98579858.d-xl-flex {9859display: flex !important;9860}98619862.d-xl-inline-flex {9863display: inline-flex !important;9864}98659866.d-xl-none {9867display: none !important;9868}98699870.flex-xl-fill {9871flex: 1 1 auto !important;9872}98739874.flex-xl-row {9875flex-direction: row !important;9876}98779878.flex-xl-column {9879flex-direction: column !important;9880}98819882.flex-xl-row-reverse {9883flex-direction: row-reverse !important;9884}98859886.flex-xl-column-reverse {9887flex-direction: column-reverse !important;9888}98899890.flex-xl-grow-0 {9891flex-grow: 0 !important;9892}98939894.flex-xl-grow-1 {9895flex-grow: 1 !important;9896}98979898.flex-xl-shrink-0 {9899flex-shrink: 0 !important;9900}99019902.flex-xl-shrink-1 {9903flex-shrink: 1 !important;9904}99059906.flex-xl-wrap {9907flex-wrap: wrap !important;9908}99099910.flex-xl-nowrap {9911flex-wrap: nowrap !important;9912}99139914.flex-xl-wrap-reverse {9915flex-wrap: wrap-reverse !important;9916}99179918.gap-xl-0 {9919gap: 0 !important;9920}99219922.gap-xl-1 {9923gap: 0.25rem !important;9924}99259926.gap-xl-2 {9927gap: 0.5rem !important;9928}99299930.gap-xl-3 {9931gap: 1rem !important;9932}99339934.gap-xl-4 {9935gap: 1.5rem !important;9936}99379938.gap-xl-5 {9939gap: 3rem !important;9940}99419942.justify-content-xl-start {9943justify-content: flex-start !important;9944}99459946.justify-content-xl-end {9947justify-content: flex-end !important;9948}99499950.justify-content-xl-center {9951justify-content: center !important;9952}99539954.justify-content-xl-between {9955justify-content: space-between !important;9956}99579958.justify-content-xl-around {9959justify-content: space-around !important;9960}99619962.justify-content-xl-evenly {9963justify-content: space-evenly !important;9964}99659966.align-items-xl-start {9967align-items: flex-start !important;9968}99699970.align-items-xl-end {9971align-items: flex-end !important;9972}99739974.align-items-xl-center {9975align-items: center !important;9976}99779978.align-items-xl-baseline {9979align-items: baseline !important;9980}99819982.align-items-xl-stretch {9983align-items: stretch !important;9984}99859986.align-content-xl-start {9987align-content: flex-start !important;9988}99899990.align-content-xl-end {9991align-content: flex-end !important;9992}99939994.align-content-xl-center {9995align-content: center !important;9996}99979998.align-content-xl-between {9999align-content: space-between !important;10000}1000110002.align-content-xl-around {10003align-content: space-around !important;10004}1000510006.align-content-xl-stretch {10007align-content: stretch !important;10008}1000910010.align-self-xl-auto {10011align-self: auto !important;10012}1001310014.align-self-xl-start {10015align-self: flex-start !important;10016}1001710018.align-self-xl-end {10019align-self: flex-end !important;10020}1002110022.align-self-xl-center {10023align-self: center !important;10024}1002510026.align-self-xl-baseline {10027align-self: baseline !important;10028}1002910030.align-self-xl-stretch {10031align-self: stretch !important;10032}1003310034.order-xl-first {10035order: -1 !important;10036}1003710038.order-xl-0 {10039order: 0 !important;10040}1004110042.order-xl-1 {10043order: 1 !important;10044}1004510046.order-xl-2 {10047order: 2 !important;10048}1004910050.order-xl-3 {10051order: 3 !important;10052}1005310054.order-xl-4 {10055order: 4 !important;10056}1005710058.order-xl-5 {10059order: 5 !important;10060}1006110062.order-xl-last {10063order: 6 !important;10064}1006510066.m-xl-0 {10067margin: 0 !important;10068}1006910070.m-xl-1 {10071margin: 0.25rem !important;10072}1007310074.m-xl-2 {10075margin: 0.5rem !important;10076}1007710078.m-xl-3 {10079margin: 1rem !important;10080}1008110082.m-xl-4 {10083margin: 1.5rem !important;10084}1008510086.m-xl-5 {10087margin: 3rem !important;10088}1008910090.m-xl-auto {10091margin: auto !important;10092}1009310094.mx-xl-0 {10095margin-right: 0 !important;10096margin-left: 0 !important;10097}1009810099.mx-xl-1 {10100margin-right: 0.25rem !important;10101margin-left: 0.25rem !important;10102}1010310104.mx-xl-2 {10105margin-right: 0.5rem !important;10106margin-left: 0.5rem !important;10107}1010810109.mx-xl-3 {10110margin-right: 1rem !important;10111margin-left: 1rem !important;10112}1011310114.mx-xl-4 {10115margin-right: 1.5rem !important;10116margin-left: 1.5rem !important;10117}1011810119.mx-xl-5 {10120margin-right: 3rem !important;10121margin-left: 3rem !important;10122}1012310124.mx-xl-auto {10125margin-right: auto !important;10126margin-left: auto !important;10127}1012810129.my-xl-0 {10130margin-top: 0 !important;10131margin-bottom: 0 !important;10132}1013310134.my-xl-1 {10135margin-top: 0.25rem !important;10136margin-bottom: 0.25rem !important;10137}1013810139.my-xl-2 {10140margin-top: 0.5rem !important;10141margin-bottom: 0.5rem !important;10142}1014310144.my-xl-3 {10145margin-top: 1rem !important;10146margin-bottom: 1rem !important;10147}1014810149.my-xl-4 {10150margin-top: 1.5rem !important;10151margin-bottom: 1.5rem !important;10152}1015310154.my-xl-5 {10155margin-top: 3rem !important;10156margin-bottom: 3rem !important;10157}1015810159.my-xl-auto {10160margin-top: auto !important;10161margin-bottom: auto !important;10162}1016310164.mt-xl-0 {10165margin-top: 0 !important;10166}1016710168.mt-xl-1 {10169margin-top: 0.25rem !important;10170}1017110172.mt-xl-2 {10173margin-top: 0.5rem !important;10174}1017510176.mt-xl-3 {10177margin-top: 1rem !important;10178}1017910180.mt-xl-4 {10181margin-top: 1.5rem !important;10182}1018310184.mt-xl-5 {10185margin-top: 3rem !important;10186}1018710188.mt-xl-auto {10189margin-top: auto !important;10190}1019110192.me-xl-0 {10193margin-right: 0 !important;10194}1019510196.me-xl-1 {10197margin-right: 0.25rem !important;10198}1019910200.me-xl-2 {10201margin-right: 0.5rem !important;10202}1020310204.me-xl-3 {10205margin-right: 1rem !important;10206}1020710208.me-xl-4 {10209margin-right: 1.5rem !important;10210}1021110212.me-xl-5 {10213margin-right: 3rem !important;10214}1021510216.me-xl-auto {10217margin-right: auto !important;10218}1021910220.mb-xl-0 {10221margin-bottom: 0 !important;10222}1022310224.mb-xl-1 {10225margin-bottom: 0.25rem !important;10226}1022710228.mb-xl-2 {10229margin-bottom: 0.5rem !important;10230}1023110232.mb-xl-3 {10233margin-bottom: 1rem !important;10234}1023510236.mb-xl-4 {10237margin-bottom: 1.5rem !important;10238}1023910240.mb-xl-5 {10241margin-bottom: 3rem !important;10242}1024310244.mb-xl-auto {10245margin-bottom: auto !important;10246}1024710248.ms-xl-0 {10249margin-left: 0 !important;10250}1025110252.ms-xl-1 {10253margin-left: 0.25rem !important;10254}1025510256.ms-xl-2 {10257margin-left: 0.5rem !important;10258}1025910260.ms-xl-3 {10261margin-left: 1rem !important;10262}1026310264.ms-xl-4 {10265margin-left: 1.5rem !important;10266}1026710268.ms-xl-5 {10269margin-left: 3rem !important;10270}1027110272.ms-xl-auto {10273margin-left: auto !important;10274}1027510276.p-xl-0 {10277padding: 0 !important;10278}1027910280.p-xl-1 {10281padding: 0.25rem !important;10282}1028310284.p-xl-2 {10285padding: 0.5rem !important;10286}1028710288.p-xl-3 {10289padding: 1rem !important;10290}1029110292.p-xl-4 {10293padding: 1.5rem !important;10294}1029510296.p-xl-5 {10297padding: 3rem !important;10298}1029910300.px-xl-0 {10301padding-right: 0 !important;10302padding-left: 0 !important;10303}1030410305.px-xl-1 {10306padding-right: 0.25rem !important;10307padding-left: 0.25rem !important;10308}1030910310.px-xl-2 {10311padding-right: 0.5rem !important;10312padding-left: 0.5rem !important;10313}1031410315.px-xl-3 {10316padding-right: 1rem !important;10317padding-left: 1rem !important;10318}1031910320.px-xl-4 {10321padding-right: 1.5rem !important;10322padding-left: 1.5rem !important;10323}1032410325.px-xl-5 {10326padding-right: 3rem !important;10327padding-left: 3rem !important;10328}1032910330.py-xl-0 {10331padding-top: 0 !important;10332padding-bottom: 0 !important;10333}1033410335.py-xl-1 {10336padding-top: 0.25rem !important;10337padding-bottom: 0.25rem !important;10338}1033910340.py-xl-2 {10341padding-top: 0.5rem !important;10342padding-bottom: 0.5rem !important;10343}1034410345.py-xl-3 {10346padding-top: 1rem !important;10347padding-bottom: 1rem !important;10348}1034910350.py-xl-4 {10351padding-top: 1.5rem !important;10352padding-bottom: 1.5rem !important;10353}1035410355.py-xl-5 {10356padding-top: 3rem !important;10357padding-bottom: 3rem !important;10358}1035910360.pt-xl-0 {10361padding-top: 0 !important;10362}1036310364.pt-xl-1 {10365padding-top: 0.25rem !important;10366}1036710368.pt-xl-2 {10369padding-top: 0.5rem !important;10370}1037110372.pt-xl-3 {10373padding-top: 1rem !important;10374}1037510376.pt-xl-4 {10377padding-top: 1.5rem !important;10378}1037910380.pt-xl-5 {10381padding-top: 3rem !important;10382}1038310384.pe-xl-0 {10385padding-right: 0 !important;10386}1038710388.pe-xl-1 {10389padding-right: 0.25rem !important;10390}1039110392.pe-xl-2 {10393padding-right: 0.5rem !important;10394}1039510396.pe-xl-3 {10397padding-right: 1rem !important;10398}1039910400.pe-xl-4 {10401padding-right: 1.5rem !important;10402}1040310404.pe-xl-5 {10405padding-right: 3rem !important;10406}1040710408.pb-xl-0 {10409padding-bottom: 0 !important;10410}1041110412.pb-xl-1 {10413padding-bottom: 0.25rem !important;10414}1041510416.pb-xl-2 {10417padding-bottom: 0.5rem !important;10418}1041910420.pb-xl-3 {10421padding-bottom: 1rem !important;10422}1042310424.pb-xl-4 {10425padding-bottom: 1.5rem !important;10426}1042710428.pb-xl-5 {10429padding-bottom: 3rem !important;10430}1043110432.ps-xl-0 {10433padding-left: 0 !important;10434}1043510436.ps-xl-1 {10437padding-left: 0.25rem !important;10438}1043910440.ps-xl-2 {10441padding-left: 0.5rem !important;10442}1044310444.ps-xl-3 {10445padding-left: 1rem !important;10446}1044710448.ps-xl-4 {10449padding-left: 1.5rem !important;10450}1045110452.ps-xl-5 {10453padding-left: 3rem !important;10454}1045510456.text-xl-start {10457text-align: left !important;10458}1045910460.text-xl-end {10461text-align: right !important;10462}1046310464.text-xl-center {10465text-align: center !important;10466}10467}10468@media (min-width: 1400px) {10469.float-xxl-start {10470float: left !important;10471}1047210473.float-xxl-end {10474float: right !important;10475}1047610477.float-xxl-none {10478float: none !important;10479}1048010481.d-xxl-inline {10482display: inline !important;10483}1048410485.d-xxl-inline-block {10486display: inline-block !important;10487}1048810489.d-xxl-block {10490display: block !important;10491}1049210493.d-xxl-grid {10494display: grid !important;10495}1049610497.d-xxl-table {10498display: table !important;10499}1050010501.d-xxl-table-row {10502display: table-row !important;10503}1050410505.d-xxl-table-cell {10506display: table-cell !important;10507}1050810509.d-xxl-flex {10510display: flex !important;10511}1051210513.d-xxl-inline-flex {10514display: inline-flex !important;10515}1051610517.d-xxl-none {10518display: none !important;10519}1052010521.flex-xxl-fill {10522flex: 1 1 auto !important;10523}1052410525.flex-xxl-row {10526flex-direction: row !important;10527}1052810529.flex-xxl-column {10530flex-direction: column !important;10531}1053210533.flex-xxl-row-reverse {10534flex-direction: row-reverse !important;10535}1053610537.flex-xxl-column-reverse {10538flex-direction: column-reverse !important;10539}1054010541.flex-xxl-grow-0 {10542flex-grow: 0 !important;10543}1054410545.flex-xxl-grow-1 {10546flex-grow: 1 !important;10547}1054810549.flex-xxl-shrink-0 {10550flex-shrink: 0 !important;10551}1055210553.flex-xxl-shrink-1 {10554flex-shrink: 1 !important;10555}1055610557.flex-xxl-wrap {10558flex-wrap: wrap !important;10559}1056010561.flex-xxl-nowrap {10562flex-wrap: nowrap !important;10563}1056410565.flex-xxl-wrap-reverse {10566flex-wrap: wrap-reverse !important;10567}1056810569.gap-xxl-0 {10570gap: 0 !important;10571}1057210573.gap-xxl-1 {10574gap: 0.25rem !important;10575}1057610577.gap-xxl-2 {10578gap: 0.5rem !important;10579}1058010581.gap-xxl-3 {10582gap: 1rem !important;10583}1058410585.gap-xxl-4 {10586gap: 1.5rem !important;10587}1058810589.gap-xxl-5 {10590gap: 3rem !important;10591}1059210593.justify-content-xxl-start {10594justify-content: flex-start !important;10595}1059610597.justify-content-xxl-end {10598justify-content: flex-end !important;10599}1060010601.justify-content-xxl-center {10602justify-content: center !important;10603}1060410605.justify-content-xxl-between {10606justify-content: space-between !important;10607}1060810609.justify-content-xxl-around {10610justify-content: space-around !important;10611}1061210613.justify-content-xxl-evenly {10614justify-content: space-evenly !important;10615}1061610617.align-items-xxl-start {10618align-items: flex-start !important;10619}1062010621.align-items-xxl-end {10622align-items: flex-end !important;10623}1062410625.align-items-xxl-center {10626align-items: center !important;10627}1062810629.align-items-xxl-baseline {10630align-items: baseline !important;10631}1063210633.align-items-xxl-stretch {10634align-items: stretch !important;10635}1063610637.align-content-xxl-start {10638align-content: flex-start !important;10639}1064010641.align-content-xxl-end {10642align-content: flex-end !important;10643}1064410645.align-content-xxl-center {10646align-content: center !important;10647}1064810649.align-content-xxl-between {10650align-content: space-between !important;10651}1065210653.align-content-xxl-around {10654align-content: space-around !important;10655}1065610657.align-content-xxl-stretch {10658align-content: stretch !important;10659}1066010661.align-self-xxl-auto {10662align-self: auto !important;10663}1066410665.align-self-xxl-start {10666align-self: flex-start !important;10667}1066810669.align-self-xxl-end {10670align-self: flex-end !important;10671}1067210673.align-self-xxl-center {10674align-self: center !important;10675}1067610677.align-self-xxl-baseline {10678align-self: baseline !important;10679}1068010681.align-self-xxl-stretch {10682align-self: stretch !important;10683}1068410685.order-xxl-first {10686order: -1 !important;10687}1068810689.order-xxl-0 {10690order: 0 !important;10691}1069210693.order-xxl-1 {10694order: 1 !important;10695}1069610697.order-xxl-2 {10698order: 2 !important;10699}1070010701.order-xxl-3 {10702order: 3 !important;10703}1070410705.order-xxl-4 {10706order: 4 !important;10707}1070810709.order-xxl-5 {10710order: 5 !important;10711}1071210713.order-xxl-last {10714order: 6 !important;10715}1071610717.m-xxl-0 {10718margin: 0 !important;10719}1072010721.m-xxl-1 {10722margin: 0.25rem !important;10723}1072410725.m-xxl-2 {10726margin: 0.5rem !important;10727}1072810729.m-xxl-3 {10730margin: 1rem !important;10731}1073210733.m-xxl-4 {10734margin: 1.5rem !important;10735}1073610737.m-xxl-5 {10738margin: 3rem !important;10739}1074010741.m-xxl-auto {10742margin: auto !important;10743}1074410745.mx-xxl-0 {10746margin-right: 0 !important;10747margin-left: 0 !important;10748}1074910750.mx-xxl-1 {10751margin-right: 0.25rem !important;10752margin-left: 0.25rem !important;10753}1075410755.mx-xxl-2 {10756margin-right: 0.5rem !important;10757margin-left: 0.5rem !important;10758}1075910760.mx-xxl-3 {10761margin-right: 1rem !important;10762margin-left: 1rem !important;10763}1076410765.mx-xxl-4 {10766margin-right: 1.5rem !important;10767margin-left: 1.5rem !important;10768}1076910770.mx-xxl-5 {10771margin-right: 3rem !important;10772margin-left: 3rem !important;10773}1077410775.mx-xxl-auto {10776margin-right: auto !important;10777margin-left: auto !important;10778}1077910780.my-xxl-0 {10781margin-top: 0 !important;10782margin-bottom: 0 !important;10783}1078410785.my-xxl-1 {10786margin-top: 0.25rem !important;10787margin-bottom: 0.25rem !important;10788}1078910790.my-xxl-2 {10791margin-top: 0.5rem !important;10792margin-bottom: 0.5rem !important;10793}1079410795.my-xxl-3 {10796margin-top: 1rem !important;10797margin-bottom: 1rem !important;10798}1079910800.my-xxl-4 {10801margin-top: 1.5rem !important;10802margin-bottom: 1.5rem !important;10803}1080410805.my-xxl-5 {10806margin-top: 3rem !important;10807margin-bottom: 3rem !important;10808}1080910810.my-xxl-auto {10811margin-top: auto !important;10812margin-bottom: auto !important;10813}1081410815.mt-xxl-0 {10816margin-top: 0 !important;10817}1081810819.mt-xxl-1 {10820margin-top: 0.25rem !important;10821}1082210823.mt-xxl-2 {10824margin-top: 0.5rem !important;10825}1082610827.mt-xxl-3 {10828margin-top: 1rem !important;10829}1083010831.mt-xxl-4 {10832margin-top: 1.5rem !important;10833}1083410835.mt-xxl-5 {10836margin-top: 3rem !important;10837}1083810839.mt-xxl-auto {10840margin-top: auto !important;10841}1084210843.me-xxl-0 {10844margin-right: 0 !important;10845}1084610847.me-xxl-1 {10848margin-right: 0.25rem !important;10849}1085010851.me-xxl-2 {10852margin-right: 0.5rem !important;10853}1085410855.me-xxl-3 {10856margin-right: 1rem !important;10857}1085810859.me-xxl-4 {10860margin-right: 1.5rem !important;10861}1086210863.me-xxl-5 {10864margin-right: 3rem !important;10865}1086610867.me-xxl-auto {10868margin-right: auto !important;10869}1087010871.mb-xxl-0 {10872margin-bottom: 0 !important;10873}1087410875.mb-xxl-1 {10876margin-bottom: 0.25rem !important;10877}1087810879.mb-xxl-2 {10880margin-bottom: 0.5rem !important;10881}1088210883.mb-xxl-3 {10884margin-bottom: 1rem !important;10885}1088610887.mb-xxl-4 {10888margin-bottom: 1.5rem !important;10889}1089010891.mb-xxl-5 {10892margin-bottom: 3rem !important;10893}1089410895.mb-xxl-auto {10896margin-bottom: auto !important;10897}1089810899.ms-xxl-0 {10900margin-left: 0 !important;10901}1090210903.ms-xxl-1 {10904margin-left: 0.25rem !important;10905}1090610907.ms-xxl-2 {10908margin-left: 0.5rem !important;10909}1091010911.ms-xxl-3 {10912margin-left: 1rem !important;10913}1091410915.ms-xxl-4 {10916margin-left: 1.5rem !important;10917}1091810919.ms-xxl-5 {10920margin-left: 3rem !important;10921}1092210923.ms-xxl-auto {10924margin-left: auto !important;10925}1092610927.p-xxl-0 {10928padding: 0 !important;10929}1093010931.p-xxl-1 {10932padding: 0.25rem !important;10933}1093410935.p-xxl-2 {10936padding: 0.5rem !important;10937}1093810939.p-xxl-3 {10940padding: 1rem !important;10941}1094210943.p-xxl-4 {10944padding: 1.5rem !important;10945}1094610947.p-xxl-5 {10948padding: 3rem !important;10949}1095010951.px-xxl-0 {10952padding-right: 0 !important;10953padding-left: 0 !important;10954}1095510956.px-xxl-1 {10957padding-right: 0.25rem !important;10958padding-left: 0.25rem !important;10959}1096010961.px-xxl-2 {10962padding-right: 0.5rem !important;10963padding-left: 0.5rem !important;10964}1096510966.px-xxl-3 {10967padding-right: 1rem !important;10968padding-left: 1rem !important;10969}1097010971.px-xxl-4 {10972padding-right: 1.5rem !important;10973padding-left: 1.5rem !important;10974}1097510976.px-xxl-5 {10977padding-right: 3rem !important;10978padding-left: 3rem !important;10979}1098010981.py-xxl-0 {10982padding-top: 0 !important;10983padding-bottom: 0 !important;10984}1098510986.py-xxl-1 {10987padding-top: 0.25rem !important;10988padding-bottom: 0.25rem !important;10989}1099010991.py-xxl-2 {10992padding-top: 0.5rem !important;10993padding-bottom: 0.5rem !important;10994}1099510996.py-xxl-3 {10997padding-top: 1rem !important;10998padding-bottom: 1rem !important;10999}1100011001.py-xxl-4 {11002padding-top: 1.5rem !important;11003padding-bottom: 1.5rem !important;11004}1100511006.py-xxl-5 {11007padding-top: 3rem !important;11008padding-bottom: 3rem !important;11009}1101011011.pt-xxl-0 {11012padding-top: 0 !important;11013}1101411015.pt-xxl-1 {11016padding-top: 0.25rem !important;11017}1101811019.pt-xxl-2 {11020padding-top: 0.5rem !important;11021}1102211023.pt-xxl-3 {11024padding-top: 1rem !important;11025}1102611027.pt-xxl-4 {11028padding-top: 1.5rem !important;11029}1103011031.pt-xxl-5 {11032padding-top: 3rem !important;11033}1103411035.pe-xxl-0 {11036padding-right: 0 !important;11037}1103811039.pe-xxl-1 {11040padding-right: 0.25rem !important;11041}1104211043.pe-xxl-2 {11044padding-right: 0.5rem !important;11045}1104611047.pe-xxl-3 {11048padding-right: 1rem !important;11049}1105011051.pe-xxl-4 {11052padding-right: 1.5rem !important;11053}1105411055.pe-xxl-5 {11056padding-right: 3rem !important;11057}1105811059.pb-xxl-0 {11060padding-bottom: 0 !important;11061}1106211063.pb-xxl-1 {11064padding-bottom: 0.25rem !important;11065}1106611067.pb-xxl-2 {11068padding-bottom: 0.5rem !important;11069}1107011071.pb-xxl-3 {11072padding-bottom: 1rem !important;11073}1107411075.pb-xxl-4 {11076padding-bottom: 1.5rem !important;11077}1107811079.pb-xxl-5 {11080padding-bottom: 3rem !important;11081}1108211083.ps-xxl-0 {11084padding-left: 0 !important;11085}1108611087.ps-xxl-1 {11088padding-left: 0.25rem !important;11089}1109011091.ps-xxl-2 {11092padding-left: 0.5rem !important;11093}1109411095.ps-xxl-3 {11096padding-left: 1rem !important;11097}1109811099.ps-xxl-4 {11100padding-left: 1.5rem !important;11101}1110211103.ps-xxl-5 {11104padding-left: 3rem !important;11105}1110611107.text-xxl-start {11108text-align: left !important;11109}1111011111.text-xxl-end {11112text-align: right !important;11113}1111411115.text-xxl-center {11116text-align: center !important;11117}11118}11119@media (min-width: 1200px) {11120.fs-1 {11121font-size: 2.5rem !important;11122}1112311124.fs-2 {11125font-size: 2rem !important;11126}1112711128.fs-3 {11129font-size: 1.75rem !important;11130}1113111132.fs-4 {11133font-size: 1.5rem !important;11134}11135}11136@media print {11137.d-print-inline {11138display: inline !important;11139}1114011141.d-print-inline-block {11142display: inline-block !important;11143}1114411145.d-print-block {11146display: block !important;11147}1114811149.d-print-grid {11150display: grid !important;11151}1115211153.d-print-table {11154display: table !important;11155}1115611157.d-print-table-row {11158display: table-row !important;11159}1116011161.d-print-table-cell {11162display: table-cell !important;11163}1116411165.d-print-flex {11166display: flex !important;11167}1116811169.d-print-inline-flex {11170display: inline-flex !important;11171}1117211173.d-print-none {11174display: none !important;11175}11176}11177html, body {11178background-image: var(--bs-gradient);11179background-color: var(--bs-body-bg);11180}1118111182.dark-mode {11183/* redefine theme colors */11184/* set background values */11185--bs-body-bg: #455a64;11186/* redefine theme color variables */11187--bs-primary: #5c7ba8;11188--bs-secondary: #146c43;11189/* redefine theme theme-colors-rgb variables */11190--bs-primary-rgb: 92, 123, 168;11191--bs-secondary-rgb: 20, 108, 67;11192/*!11193* Bootstrap v5.1.3 (https://getbootstrap.com/)11194* Copyright 2011-2021 The Bootstrap Authors11195* Copyright 2011-2021 Twitter, Inc.11196* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)11197*/11198/* rtl:raw:11199[type="tel"],11200[type="url"],11201[type="email"],11202[type="number"] {11203direction: ltr;11204}11205*/11206/* rtl:begin:ignore */11207/* rtl:end:ignore */11208/* rtl:options: {11209"autoRename": true,11210"stringMap":[ {11211"name" : "prev-next",11212"search" : "prev",11213"replace" : "next"11214} ]11215} */11216/* rtl:begin:remove */11217/* rtl:end:remove */11218}11219.dark-mode :root {11220--bs-blue: #0d6efd;11221--bs-indigo: #6610f2;11222--bs-purple: #6f42c1;11223--bs-pink: #d63384;11224--bs-red: #dc3545;11225--bs-orange: #fd7e14;11226--bs-yellow: #ffc107;11227--bs-green: #198754;11228--bs-teal: #20c997;11229--bs-cyan: #0dcaf0;11230--bs-white: #fff;11231--bs-gray: #6c757d;11232--bs-gray-dark: #343a40;11233--bs-gray-100: #f8f9fa;11234--bs-gray-200: #e9ecef;11235--bs-gray-300: #dee2e6;11236--bs-gray-400: #ced4da;11237--bs-gray-500: #adb5bd;11238--bs-gray-600: #6c757d;11239--bs-gray-700: #495057;11240--bs-gray-800: #343a40;11241--bs-gray-900: #212529;11242--bs-primary: #5c7ba8;11243--bs-secondary: #146c43;11244--bs-primary-rgb: 92, 123, 168;11245--bs-secondary-rgb: 20, 108, 67;11246--bs-white-rgb: 255, 255, 255;11247--bs-black-rgb: 0, 0, 0;11248--bs-body-color-rgb: 33, 37, 41;11249--bs-body-bg-rgb: 69, 90, 100;11250--bs-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";11251--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;11252--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));11253--bs-body-font-family: var(--bs-font-sans-serif);11254--bs-body-font-size: 1rem;11255--bs-body-font-weight: 400;11256--bs-body-line-height: 1.5;11257--bs-body-color: #212529;11258--bs-body-bg: #455a64;11259}11260.dark-mode *,11261.dark-mode *::before,11262.dark-mode *::after {11263box-sizing: border-box;11264}11265@media (prefers-reduced-motion: no-preference) {11266.dark-mode :root {11267scroll-behavior: smooth;11268}11269}11270.dark-mode body {11271margin: 0;11272font-family: var(--bs-body-font-family);11273font-size: var(--bs-body-font-size);11274font-weight: var(--bs-body-font-weight);11275line-height: var(--bs-body-line-height);11276color: var(--bs-body-color);11277text-align: var(--bs-body-text-align);11278background-color: var(--bs-body-bg);11279-webkit-text-size-adjust: 100%;11280-webkit-tap-highlight-color: rgba(0, 0, 0, 0);11281}11282.dark-mode hr {11283margin: 1rem 0;11284color: inherit;11285background-color: currentColor;11286border: 0;11287opacity: 0.25;11288}11289.dark-mode hr:not([size]) {11290height: 1px;11291}11292.dark-mode h6, .dark-mode .h6, .dark-mode h5, .dark-mode .h5, .dark-mode h4, .dark-mode .h4, .dark-mode h3, .dark-mode .h3, .dark-mode h2, .dark-mode .h2, .dark-mode h1, .dark-mode .h1 {11293margin-top: 0;11294margin-bottom: 0.5rem;11295font-weight: 500;11296line-height: 1.2;11297}11298.dark-mode h1, .dark-mode .h1 {11299font-size: calc(1.375rem + 1.5vw);11300}11301@media (min-width: 1200px) {11302.dark-mode h1, .dark-mode .h1 {11303font-size: 2.5rem;11304}11305}11306.dark-mode h2, .dark-mode .h2 {11307font-size: calc(1.325rem + 0.9vw);11308}11309@media (min-width: 1200px) {11310.dark-mode h2, .dark-mode .h2 {11311font-size: 2rem;11312}11313}11314.dark-mode h3, .dark-mode .h3 {11315font-size: calc(1.3rem + 0.6vw);11316}11317@media (min-width: 1200px) {11318.dark-mode h3, .dark-mode .h3 {11319font-size: 1.75rem;11320}11321}11322.dark-mode h4, .dark-mode .h4 {11323font-size: calc(1.275rem + 0.3vw);11324}11325@media (min-width: 1200px) {11326.dark-mode h4, .dark-mode .h4 {11327font-size: 1.5rem;11328}11329}11330.dark-mode h5, .dark-mode .h5 {11331font-size: 1.25rem;11332}11333.dark-mode h6, .dark-mode .h6 {11334font-size: 1rem;11335}11336.dark-mode p {11337margin-top: 0;11338margin-bottom: 1rem;11339}11340.dark-mode abbr[title],11341.dark-mode abbr[data-bs-original-title] {11342text-decoration: underline dotted;11343cursor: help;11344text-decoration-skip-ink: none;11345}11346.dark-mode address {11347margin-bottom: 1rem;11348font-style: normal;11349line-height: inherit;11350}11351.dark-mode ol,11352.dark-mode ul {11353padding-left: 2rem;11354}11355.dark-mode ol,11356.dark-mode ul,11357.dark-mode dl {11358margin-top: 0;11359margin-bottom: 1rem;11360}11361.dark-mode ol ol,11362.dark-mode ul ul,11363.dark-mode ol ul,11364.dark-mode ul ol {11365margin-bottom: 0;11366}11367.dark-mode dt {11368font-weight: 700;11369}11370.dark-mode dd {11371margin-bottom: 0.5rem;11372margin-left: 0;11373}11374.dark-mode blockquote {11375margin: 0 0 1rem;11376}11377.dark-mode b,11378.dark-mode strong {11379font-weight: bolder;11380}11381.dark-mode small, .dark-mode .small {11382font-size: 0.875em;11383}11384.dark-mode mark, .dark-mode .mark {11385padding: 0.2em;11386background-color: #fcf8e3;11387}11388.dark-mode sub,11389.dark-mode sup {11390position: relative;11391font-size: 0.75em;11392line-height: 0;11393vertical-align: baseline;11394}11395.dark-mode sub {11396bottom: -0.25em;11397}11398.dark-mode sup {11399top: -0.5em;11400}11401.dark-mode a {11402color: #a1a9bd;11403text-decoration: underline;11404}11405.dark-mode a:hover {11406color: #818797;11407}11408.dark-mode a:not([href]):not([class]), .dark-mode a:not([href]):not([class]):hover {11409color: inherit;11410text-decoration: none;11411}11412.dark-mode pre,11413.dark-mode code,11414.dark-mode kbd,11415.dark-mode samp {11416font-family: var(--bs-font-monospace);11417font-size: 1em;11418direction: ltr /* rtl:ignore */;11419unicode-bidi: bidi-override;11420}11421.dark-mode pre {11422display: block;11423margin-top: 0;11424margin-bottom: 1rem;11425overflow: auto;11426font-size: 0.875em;11427}11428.dark-mode pre code {11429font-size: inherit;11430color: inherit;11431word-break: normal;11432}11433.dark-mode code {11434font-size: 0.875em;11435color: #d63384;11436word-wrap: break-word;11437}11438a > .dark-mode code {11439color: inherit;11440}11441.dark-mode kbd {11442padding: 0.2rem 0.4rem;11443font-size: 0.875em;11444color: #fff;11445background-color: #212529;11446border-radius: 0.2rem;11447}11448.dark-mode kbd kbd {11449padding: 0;11450font-size: 1em;11451font-weight: 700;11452}11453.dark-mode figure {11454margin: 0 0 1rem;11455}11456.dark-mode img,11457.dark-mode svg {11458vertical-align: middle;11459}11460.dark-mode table {11461caption-side: bottom;11462border-collapse: collapse;11463}11464.dark-mode caption {11465padding-top: 0.5rem;11466padding-bottom: 0.5rem;11467color: #6c757d;11468text-align: left;11469}11470.dark-mode th {11471text-align: inherit;11472text-align: -webkit-match-parent;11473}11474.dark-mode thead,11475.dark-mode tbody,11476.dark-mode tfoot,11477.dark-mode tr,11478.dark-mode td,11479.dark-mode th {11480border-color: inherit;11481border-style: solid;11482border-width: 0;11483}11484.dark-mode label {11485display: inline-block;11486}11487.dark-mode button {11488border-radius: 0;11489}11490.dark-mode button:focus:not(:focus-visible) {11491outline: 0;11492}11493.dark-mode input,11494.dark-mode button,11495.dark-mode select,11496.dark-mode optgroup,11497.dark-mode textarea {11498margin: 0;11499font-family: inherit;11500font-size: inherit;11501line-height: inherit;11502}11503.dark-mode button,11504.dark-mode select {11505text-transform: none;11506}11507.dark-mode [role=button] {11508cursor: pointer;11509}11510.dark-mode select {11511word-wrap: normal;11512}11513.dark-mode select:disabled {11514opacity: 1;11515}11516.dark-mode [list]::-webkit-calendar-picker-indicator {11517display: none;11518}11519.dark-mode button,11520.dark-mode [type=button],11521.dark-mode [type=reset],11522.dark-mode [type=submit] {11523-webkit-appearance: button;11524}11525.dark-mode button:not(:disabled),11526.dark-mode [type=button]:not(:disabled),11527.dark-mode [type=reset]:not(:disabled),11528.dark-mode [type=submit]:not(:disabled) {11529cursor: pointer;11530}11531.dark-mode ::-moz-focus-inner {11532padding: 0;11533border-style: none;11534}11535.dark-mode textarea {11536resize: vertical;11537}11538.dark-mode fieldset {11539min-width: 0;11540padding: 0;11541margin: 0;11542border: 0;11543}11544.dark-mode legend {11545float: left;11546width: 100%;11547padding: 0;11548margin-bottom: 0.5rem;11549font-size: calc(1.275rem + 0.3vw);11550line-height: inherit;11551}11552@media (min-width: 1200px) {11553.dark-mode legend {11554font-size: 1.5rem;11555}11556}11557.dark-mode legend + * {11558clear: left;11559}11560.dark-mode ::-webkit-datetime-edit-fields-wrapper,11561.dark-mode ::-webkit-datetime-edit-text,11562.dark-mode ::-webkit-datetime-edit-minute,11563.dark-mode ::-webkit-datetime-edit-hour-field,11564.dark-mode ::-webkit-datetime-edit-day-field,11565.dark-mode ::-webkit-datetime-edit-month-field,11566.dark-mode ::-webkit-datetime-edit-year-field {11567padding: 0;11568}11569.dark-mode ::-webkit-inner-spin-button {11570height: auto;11571}11572.dark-mode [type=search] {11573outline-offset: -2px;11574-webkit-appearance: textfield;11575}11576.dark-mode ::-webkit-search-decoration {11577-webkit-appearance: none;11578}11579.dark-mode ::-webkit-color-swatch-wrapper {11580padding: 0;11581}11582.dark-mode ::file-selector-button {11583font: inherit;11584}11585.dark-mode ::-webkit-file-upload-button {11586font: inherit;11587-webkit-appearance: button;11588}11589.dark-mode output {11590display: inline-block;11591}11592.dark-mode iframe {11593border: 0;11594}11595.dark-mode summary {11596display: list-item;11597cursor: pointer;11598}11599.dark-mode progress {11600vertical-align: baseline;11601}11602.dark-mode [hidden] {11603display: none !important;11604}11605.dark-mode .lead {11606font-size: 1.25rem;11607font-weight: 300;11608}11609.dark-mode .display-1 {11610font-size: calc(1.625rem + 4.5vw);11611font-weight: 300;11612line-height: 1.2;11613}11614@media (min-width: 1200px) {11615.dark-mode .display-1 {11616font-size: 5rem;11617}11618}11619.dark-mode .display-2 {11620font-size: calc(1.575rem + 3.9vw);11621font-weight: 300;11622line-height: 1.2;11623}11624@media (min-width: 1200px) {11625.dark-mode .display-2 {11626font-size: 4.5rem;11627}11628}11629.dark-mode .display-3 {11630font-size: calc(1.525rem + 3.3vw);11631font-weight: 300;11632line-height: 1.2;11633}11634@media (min-width: 1200px) {11635.dark-mode .display-3 {11636font-size: 4rem;11637}11638}11639.dark-mode .display-4 {11640font-size: calc(1.475rem + 2.7vw);11641font-weight: 300;11642line-height: 1.2;11643}11644@media (min-width: 1200px) {11645.dark-mode .display-4 {11646font-size: 3.5rem;11647}11648}11649.dark-mode .display-5 {11650font-size: calc(1.425rem + 2.1vw);11651font-weight: 300;11652line-height: 1.2;11653}11654@media (min-width: 1200px) {11655.dark-mode .display-5 {11656font-size: 3rem;11657}11658}11659.dark-mode .display-6 {11660font-size: calc(1.375rem + 1.5vw);11661font-weight: 300;11662line-height: 1.2;11663}11664@media (min-width: 1200px) {11665.dark-mode .display-6 {11666font-size: 2.5rem;11667}11668}11669.dark-mode .list-unstyled {11670padding-left: 0;11671list-style: none;11672}11673.dark-mode .list-inline {11674padding-left: 0;11675list-style: none;11676}11677.dark-mode .list-inline-item {11678display: inline-block;11679}11680.dark-mode .list-inline-item:not(:last-child) {11681margin-right: 0.5rem;11682}11683.dark-mode .initialism {11684font-size: 0.875em;11685text-transform: uppercase;11686}11687.dark-mode .blockquote {11688margin-bottom: 1rem;11689font-size: 1.25rem;11690}11691.dark-mode .blockquote > :last-child {11692margin-bottom: 0;11693}11694.dark-mode .blockquote-footer {11695margin-top: -1rem;11696margin-bottom: 1rem;11697font-size: 0.875em;11698color: #6c757d;11699}11700.dark-mode .blockquote-footer::before {11701content: "— ";11702}11703.dark-mode .img-fluid {11704max-width: 100%;11705height: auto;11706}11707.dark-mode .img-thumbnail {11708padding: 0.25rem;11709background-color: #cfd8dc;11710border: 1px solid #dee2e6;11711border-radius: 0.25rem;11712max-width: 100%;11713height: auto;11714}11715.dark-mode .figure {11716display: inline-block;11717}11718.dark-mode .figure-img {11719margin-bottom: 0.5rem;11720line-height: 1;11721}11722.dark-mode .figure-caption {11723font-size: 0.875em;11724color: #6c757d;11725}11726.dark-mode .container,11727.dark-mode .container-fluid,11728.dark-mode .container-xxl,11729.dark-mode .container-xl,11730.dark-mode .container-lg,11731.dark-mode .container-md,11732.dark-mode .container-sm {11733width: 100%;11734padding-right: var(--bs-gutter-x, 0.75rem);11735padding-left: var(--bs-gutter-x, 0.75rem);11736margin-right: auto;11737margin-left: auto;11738}11739@media (min-width: 576px) {11740.dark-mode .container-sm, .dark-mode .container {11741max-width: 540px;11742}11743}11744@media (min-width: 768px) {11745.dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container {11746max-width: 720px;11747}11748}11749@media (min-width: 992px) {11750.dark-mode .container-lg, .dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container {11751max-width: 960px;11752}11753}11754@media (min-width: 1200px) {11755.dark-mode .container-xl, .dark-mode .container-lg, .dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container {11756max-width: 1140px;11757}11758}11759@media (min-width: 1400px) {11760.dark-mode .container-xxl, .dark-mode .container-xl, .dark-mode .container-lg, .dark-mode .container-md, .dark-mode .container-sm, .dark-mode .container {11761max-width: 1320px;11762}11763}11764.dark-mode .row {11765--bs-gutter-x: 1.5rem;11766--bs-gutter-y: 0;11767display: flex;11768flex-wrap: wrap;11769margin-top: calc(-1 * var(--bs-gutter-y));11770margin-right: calc(-0.5 * var(--bs-gutter-x));11771margin-left: calc(-0.5 * var(--bs-gutter-x));11772}11773.dark-mode .row > * {11774flex-shrink: 0;11775width: 100%;11776max-width: 100%;11777padding-right: calc(var(--bs-gutter-x) * 0.5);11778padding-left: calc(var(--bs-gutter-x) * 0.5);11779margin-top: var(--bs-gutter-y);11780}11781.dark-mode .col {11782flex: 1 0 0%;11783}11784.dark-mode .row-cols-auto > * {11785flex: 0 0 auto;11786width: auto;11787}11788.dark-mode .row-cols-1 > * {11789flex: 0 0 auto;11790width: 100%;11791}11792.dark-mode .row-cols-2 > * {11793flex: 0 0 auto;11794width: 50%;11795}11796.dark-mode .row-cols-3 > * {11797flex: 0 0 auto;11798width: 33.3333333333%;11799}11800.dark-mode .row-cols-4 > * {11801flex: 0 0 auto;11802width: 25%;11803}11804.dark-mode .row-cols-5 > * {11805flex: 0 0 auto;11806width: 20%;11807}11808.dark-mode .row-cols-6 > * {11809flex: 0 0 auto;11810width: 16.6666666667%;11811}11812.dark-mode .col-auto {11813flex: 0 0 auto;11814width: auto;11815}11816.dark-mode .col-1 {11817flex: 0 0 auto;11818width: 8.33333333%;11819}11820.dark-mode .col-2 {11821flex: 0 0 auto;11822width: 16.66666667%;11823}11824.dark-mode .col-3 {11825flex: 0 0 auto;11826width: 25%;11827}11828.dark-mode .col-4 {11829flex: 0 0 auto;11830width: 33.33333333%;11831}11832.dark-mode .col-5 {11833flex: 0 0 auto;11834width: 41.66666667%;11835}11836.dark-mode .col-6 {11837flex: 0 0 auto;11838width: 50%;11839}11840.dark-mode .col-7 {11841flex: 0 0 auto;11842width: 58.33333333%;11843}11844.dark-mode .col-8 {11845flex: 0 0 auto;11846width: 66.66666667%;11847}11848.dark-mode .col-9 {11849flex: 0 0 auto;11850width: 75%;11851}11852.dark-mode .col-10 {11853flex: 0 0 auto;11854width: 83.33333333%;11855}11856.dark-mode .col-11 {11857flex: 0 0 auto;11858width: 91.66666667%;11859}11860.dark-mode .col-12 {11861flex: 0 0 auto;11862width: 100%;11863}11864.dark-mode .offset-1 {11865margin-left: 8.33333333%;11866}11867.dark-mode .offset-2 {11868margin-left: 16.66666667%;11869}11870.dark-mode .offset-3 {11871margin-left: 25%;11872}11873.dark-mode .offset-4 {11874margin-left: 33.33333333%;11875}11876.dark-mode .offset-5 {11877margin-left: 41.66666667%;11878}11879.dark-mode .offset-6 {11880margin-left: 50%;11881}11882.dark-mode .offset-7 {11883margin-left: 58.33333333%;11884}11885.dark-mode .offset-8 {11886margin-left: 66.66666667%;11887}11888.dark-mode .offset-9 {11889margin-left: 75%;11890}11891.dark-mode .offset-10 {11892margin-left: 83.33333333%;11893}11894.dark-mode .offset-11 {11895margin-left: 91.66666667%;11896}11897.dark-mode .g-0,11898.dark-mode .gx-0 {11899--bs-gutter-x: 0;11900}11901.dark-mode .g-0,11902.dark-mode .gy-0 {11903--bs-gutter-y: 0;11904}11905.dark-mode .g-1,11906.dark-mode .gx-1 {11907--bs-gutter-x: 0.25rem;11908}11909.dark-mode .g-1,11910.dark-mode .gy-1 {11911--bs-gutter-y: 0.25rem;11912}11913.dark-mode .g-2,11914.dark-mode .gx-2 {11915--bs-gutter-x: 0.5rem;11916}11917.dark-mode .g-2,11918.dark-mode .gy-2 {11919--bs-gutter-y: 0.5rem;11920}11921.dark-mode .g-3,11922.dark-mode .gx-3 {11923--bs-gutter-x: 1rem;11924}11925.dark-mode .g-3,11926.dark-mode .gy-3 {11927--bs-gutter-y: 1rem;11928}11929.dark-mode .g-4,11930.dark-mode .gx-4 {11931--bs-gutter-x: 1.5rem;11932}11933.dark-mode .g-4,11934.dark-mode .gy-4 {11935--bs-gutter-y: 1.5rem;11936}11937.dark-mode .g-5,11938.dark-mode .gx-5 {11939--bs-gutter-x: 3rem;11940}11941.dark-mode .g-5,11942.dark-mode .gy-5 {11943--bs-gutter-y: 3rem;11944}11945@media (min-width: 576px) {11946.dark-mode .col-sm {11947flex: 1 0 0%;11948}11949.dark-mode .row-cols-sm-auto > * {11950flex: 0 0 auto;11951width: auto;11952}11953.dark-mode .row-cols-sm-1 > * {11954flex: 0 0 auto;11955width: 100%;11956}11957.dark-mode .row-cols-sm-2 > * {11958flex: 0 0 auto;11959width: 50%;11960}11961.dark-mode .row-cols-sm-3 > * {11962flex: 0 0 auto;11963width: 33.3333333333%;11964}11965.dark-mode .row-cols-sm-4 > * {11966flex: 0 0 auto;11967width: 25%;11968}11969.dark-mode .row-cols-sm-5 > * {11970flex: 0 0 auto;11971width: 20%;11972}11973.dark-mode .row-cols-sm-6 > * {11974flex: 0 0 auto;11975width: 16.6666666667%;11976}11977.dark-mode .col-sm-auto {11978flex: 0 0 auto;11979width: auto;11980}11981.dark-mode .col-sm-1 {11982flex: 0 0 auto;11983width: 8.33333333%;11984}11985.dark-mode .col-sm-2 {11986flex: 0 0 auto;11987width: 16.66666667%;11988}11989.dark-mode .col-sm-3 {11990flex: 0 0 auto;11991width: 25%;11992}11993.dark-mode .col-sm-4 {11994flex: 0 0 auto;11995width: 33.33333333%;11996}11997.dark-mode .col-sm-5 {11998flex: 0 0 auto;11999width: 41.66666667%;12000}12001.dark-mode .col-sm-6 {12002flex: 0 0 auto;12003width: 50%;12004}12005.dark-mode .col-sm-7 {12006flex: 0 0 auto;12007width: 58.33333333%;12008}12009.dark-mode .col-sm-8 {12010flex: 0 0 auto;12011width: 66.66666667%;12012}12013.dark-mode .col-sm-9 {12014flex: 0 0 auto;12015width: 75%;12016}12017.dark-mode .col-sm-10 {12018flex: 0 0 auto;12019width: 83.33333333%;12020}12021.dark-mode .col-sm-11 {12022flex: 0 0 auto;12023width: 91.66666667%;12024}12025.dark-mode .col-sm-12 {12026flex: 0 0 auto;12027width: 100%;12028}12029.dark-mode .offset-sm-0 {12030margin-left: 0;12031}12032.dark-mode .offset-sm-1 {12033margin-left: 8.33333333%;12034}12035.dark-mode .offset-sm-2 {12036margin-left: 16.66666667%;12037}12038.dark-mode .offset-sm-3 {12039margin-left: 25%;12040}12041.dark-mode .offset-sm-4 {12042margin-left: 33.33333333%;12043}12044.dark-mode .offset-sm-5 {12045margin-left: 41.66666667%;12046}12047.dark-mode .offset-sm-6 {12048margin-left: 50%;12049}12050.dark-mode .offset-sm-7 {12051margin-left: 58.33333333%;12052}12053.dark-mode .offset-sm-8 {12054margin-left: 66.66666667%;12055}12056.dark-mode .offset-sm-9 {12057margin-left: 75%;12058}12059.dark-mode .offset-sm-10 {12060margin-left: 83.33333333%;12061}12062.dark-mode .offset-sm-11 {12063margin-left: 91.66666667%;12064}12065.dark-mode .g-sm-0,12066.dark-mode .gx-sm-0 {12067--bs-gutter-x: 0;12068}12069.dark-mode .g-sm-0,12070.dark-mode .gy-sm-0 {12071--bs-gutter-y: 0;12072}12073.dark-mode .g-sm-1,12074.dark-mode .gx-sm-1 {12075--bs-gutter-x: 0.25rem;12076}12077.dark-mode .g-sm-1,12078.dark-mode .gy-sm-1 {12079--bs-gutter-y: 0.25rem;12080}12081.dark-mode .g-sm-2,12082.dark-mode .gx-sm-2 {12083--bs-gutter-x: 0.5rem;12084}12085.dark-mode .g-sm-2,12086.dark-mode .gy-sm-2 {12087--bs-gutter-y: 0.5rem;12088}12089.dark-mode .g-sm-3,12090.dark-mode .gx-sm-3 {12091--bs-gutter-x: 1rem;12092}12093.dark-mode .g-sm-3,12094.dark-mode .gy-sm-3 {12095--bs-gutter-y: 1rem;12096}12097.dark-mode .g-sm-4,12098.dark-mode .gx-sm-4 {12099--bs-gutter-x: 1.5rem;12100}12101.dark-mode .g-sm-4,12102.dark-mode .gy-sm-4 {12103--bs-gutter-y: 1.5rem;12104}12105.dark-mode .g-sm-5,12106.dark-mode .gx-sm-5 {12107--bs-gutter-x: 3rem;12108}12109.dark-mode .g-sm-5,12110.dark-mode .gy-sm-5 {12111--bs-gutter-y: 3rem;12112}12113}12114@media (min-width: 768px) {12115.dark-mode .col-md {12116flex: 1 0 0%;12117}12118.dark-mode .row-cols-md-auto > * {12119flex: 0 0 auto;12120width: auto;12121}12122.dark-mode .row-cols-md-1 > * {12123flex: 0 0 auto;12124width: 100%;12125}12126.dark-mode .row-cols-md-2 > * {12127flex: 0 0 auto;12128width: 50%;12129}12130.dark-mode .row-cols-md-3 > * {12131flex: 0 0 auto;12132width: 33.3333333333%;12133}12134.dark-mode .row-cols-md-4 > * {12135flex: 0 0 auto;12136width: 25%;12137}12138.dark-mode .row-cols-md-5 > * {12139flex: 0 0 auto;12140width: 20%;12141}12142.dark-mode .row-cols-md-6 > * {12143flex: 0 0 auto;12144width: 16.6666666667%;12145}12146.dark-mode .col-md-auto {12147flex: 0 0 auto;12148width: auto;12149}12150.dark-mode .col-md-1 {12151flex: 0 0 auto;12152width: 8.33333333%;12153}12154.dark-mode .col-md-2 {12155flex: 0 0 auto;12156width: 16.66666667%;12157}12158.dark-mode .col-md-3 {12159flex: 0 0 auto;12160width: 25%;12161}12162.dark-mode .col-md-4 {12163flex: 0 0 auto;12164width: 33.33333333%;12165}12166.dark-mode .col-md-5 {12167flex: 0 0 auto;12168width: 41.66666667%;12169}12170.dark-mode .col-md-6 {12171flex: 0 0 auto;12172width: 50%;12173}12174.dark-mode .col-md-7 {12175flex: 0 0 auto;12176width: 58.33333333%;12177}12178.dark-mode .col-md-8 {12179flex: 0 0 auto;12180width: 66.66666667%;12181}12182.dark-mode .col-md-9 {12183flex: 0 0 auto;12184width: 75%;12185}12186.dark-mode .col-md-10 {12187flex: 0 0 auto;12188width: 83.33333333%;12189}12190.dark-mode .col-md-11 {12191flex: 0 0 auto;12192width: 91.66666667%;12193}12194.dark-mode .col-md-12 {12195flex: 0 0 auto;12196width: 100%;12197}12198.dark-mode .offset-md-0 {12199margin-left: 0;12200}12201.dark-mode .offset-md-1 {12202margin-left: 8.33333333%;12203}12204.dark-mode .offset-md-2 {12205margin-left: 16.66666667%;12206}12207.dark-mode .offset-md-3 {12208margin-left: 25%;12209}12210.dark-mode .offset-md-4 {12211margin-left: 33.33333333%;12212}12213.dark-mode .offset-md-5 {12214margin-left: 41.66666667%;12215}12216.dark-mode .offset-md-6 {12217margin-left: 50%;12218}12219.dark-mode .offset-md-7 {12220margin-left: 58.33333333%;12221}12222.dark-mode .offset-md-8 {12223margin-left: 66.66666667%;12224}12225.dark-mode .offset-md-9 {12226margin-left: 75%;12227}12228.dark-mode .offset-md-10 {12229margin-left: 83.33333333%;12230}12231.dark-mode .offset-md-11 {12232margin-left: 91.66666667%;12233}12234.dark-mode .g-md-0,12235.dark-mode .gx-md-0 {12236--bs-gutter-x: 0;12237}12238.dark-mode .g-md-0,12239.dark-mode .gy-md-0 {12240--bs-gutter-y: 0;12241}12242.dark-mode .g-md-1,12243.dark-mode .gx-md-1 {12244--bs-gutter-x: 0.25rem;12245}12246.dark-mode .g-md-1,12247.dark-mode .gy-md-1 {12248--bs-gutter-y: 0.25rem;12249}12250.dark-mode .g-md-2,12251.dark-mode .gx-md-2 {12252--bs-gutter-x: 0.5rem;12253}12254.dark-mode .g-md-2,12255.dark-mode .gy-md-2 {12256--bs-gutter-y: 0.5rem;12257}12258.dark-mode .g-md-3,12259.dark-mode .gx-md-3 {12260--bs-gutter-x: 1rem;12261}12262.dark-mode .g-md-3,12263.dark-mode .gy-md-3 {12264--bs-gutter-y: 1rem;12265}12266.dark-mode .g-md-4,12267.dark-mode .gx-md-4 {12268--bs-gutter-x: 1.5rem;12269}12270.dark-mode .g-md-4,12271.dark-mode .gy-md-4 {12272--bs-gutter-y: 1.5rem;12273}12274.dark-mode .g-md-5,12275.dark-mode .gx-md-5 {12276--bs-gutter-x: 3rem;12277}12278.dark-mode .g-md-5,12279.dark-mode .gy-md-5 {12280--bs-gutter-y: 3rem;12281}12282}12283@media (min-width: 992px) {12284.dark-mode .col-lg {12285flex: 1 0 0%;12286}12287.dark-mode .row-cols-lg-auto > * {12288flex: 0 0 auto;12289width: auto;12290}12291.dark-mode .row-cols-lg-1 > * {12292flex: 0 0 auto;12293width: 100%;12294}12295.dark-mode .row-cols-lg-2 > * {12296flex: 0 0 auto;12297width: 50%;12298}12299.dark-mode .row-cols-lg-3 > * {12300flex: 0 0 auto;12301width: 33.3333333333%;12302}12303.dark-mode .row-cols-lg-4 > * {12304flex: 0 0 auto;12305width: 25%;12306}12307.dark-mode .row-cols-lg-5 > * {12308flex: 0 0 auto;12309width: 20%;12310}12311.dark-mode .row-cols-lg-6 > * {12312flex: 0 0 auto;12313width: 16.6666666667%;12314}12315.dark-mode .col-lg-auto {12316flex: 0 0 auto;12317width: auto;12318}12319.dark-mode .col-lg-1 {12320flex: 0 0 auto;12321width: 8.33333333%;12322}12323.dark-mode .col-lg-2 {12324flex: 0 0 auto;12325width: 16.66666667%;12326}12327.dark-mode .col-lg-3 {12328flex: 0 0 auto;12329width: 25%;12330}12331.dark-mode .col-lg-4 {12332flex: 0 0 auto;12333width: 33.33333333%;12334}12335.dark-mode .col-lg-5 {12336flex: 0 0 auto;12337width: 41.66666667%;12338}12339.dark-mode .col-lg-6 {12340flex: 0 0 auto;12341width: 50%;12342}12343.dark-mode .col-lg-7 {12344flex: 0 0 auto;12345width: 58.33333333%;12346}12347.dark-mode .col-lg-8 {12348flex: 0 0 auto;12349width: 66.66666667%;12350}12351.dark-mode .col-lg-9 {12352flex: 0 0 auto;12353width: 75%;12354}12355.dark-mode .col-lg-10 {12356flex: 0 0 auto;12357width: 83.33333333%;12358}12359.dark-mode .col-lg-11 {12360flex: 0 0 auto;12361width: 91.66666667%;12362}12363.dark-mode .col-lg-12 {12364flex: 0 0 auto;12365width: 100%;12366}12367.dark-mode .offset-lg-0 {12368margin-left: 0;12369}12370.dark-mode .offset-lg-1 {12371margin-left: 8.33333333%;12372}12373.dark-mode .offset-lg-2 {12374margin-left: 16.66666667%;12375}12376.dark-mode .offset-lg-3 {12377margin-left: 25%;12378}12379.dark-mode .offset-lg-4 {12380margin-left: 33.33333333%;12381}12382.dark-mode .offset-lg-5 {12383margin-left: 41.66666667%;12384}12385.dark-mode .offset-lg-6 {12386margin-left: 50%;12387}12388.dark-mode .offset-lg-7 {12389margin-left: 58.33333333%;12390}12391.dark-mode .offset-lg-8 {12392margin-left: 66.66666667%;12393}12394.dark-mode .offset-lg-9 {12395margin-left: 75%;12396}12397.dark-mode .offset-lg-10 {12398margin-left: 83.33333333%;12399}12400.dark-mode .offset-lg-11 {12401margin-left: 91.66666667%;12402}12403.dark-mode .g-lg-0,12404.dark-mode .gx-lg-0 {12405--bs-gutter-x: 0;12406}12407.dark-mode .g-lg-0,12408.dark-mode .gy-lg-0 {12409--bs-gutter-y: 0;12410}12411.dark-mode .g-lg-1,12412.dark-mode .gx-lg-1 {12413--bs-gutter-x: 0.25rem;12414}12415.dark-mode .g-lg-1,12416.dark-mode .gy-lg-1 {12417--bs-gutter-y: 0.25rem;12418}12419.dark-mode .g-lg-2,12420.dark-mode .gx-lg-2 {12421--bs-gutter-x: 0.5rem;12422}12423.dark-mode .g-lg-2,12424.dark-mode .gy-lg-2 {12425--bs-gutter-y: 0.5rem;12426}12427.dark-mode .g-lg-3,12428.dark-mode .gx-lg-3 {12429--bs-gutter-x: 1rem;12430}12431.dark-mode .g-lg-3,12432.dark-mode .gy-lg-3 {12433--bs-gutter-y: 1rem;12434}12435.dark-mode .g-lg-4,12436.dark-mode .gx-lg-4 {12437--bs-gutter-x: 1.5rem;12438}12439.dark-mode .g-lg-4,12440.dark-mode .gy-lg-4 {12441--bs-gutter-y: 1.5rem;12442}12443.dark-mode .g-lg-5,12444.dark-mode .gx-lg-5 {12445--bs-gutter-x: 3rem;12446}12447.dark-mode .g-lg-5,12448.dark-mode .gy-lg-5 {12449--bs-gutter-y: 3rem;12450}12451}12452@media (min-width: 1200px) {12453.dark-mode .col-xl {12454flex: 1 0 0%;12455}12456.dark-mode .row-cols-xl-auto > * {12457flex: 0 0 auto;12458width: auto;12459}12460.dark-mode .row-cols-xl-1 > * {12461flex: 0 0 auto;12462width: 100%;12463}12464.dark-mode .row-cols-xl-2 > * {12465flex: 0 0 auto;12466width: 50%;12467}12468.dark-mode .row-cols-xl-3 > * {12469flex: 0 0 auto;12470width: 33.3333333333%;12471}12472.dark-mode .row-cols-xl-4 > * {12473flex: 0 0 auto;12474width: 25%;12475}12476.dark-mode .row-cols-xl-5 > * {12477flex: 0 0 auto;12478width: 20%;12479}12480.dark-mode .row-cols-xl-6 > * {12481flex: 0 0 auto;12482width: 16.6666666667%;12483}12484.dark-mode .col-xl-auto {12485flex: 0 0 auto;12486width: auto;12487}12488.dark-mode .col-xl-1 {12489flex: 0 0 auto;12490width: 8.33333333%;12491}12492.dark-mode .col-xl-2 {12493flex: 0 0 auto;12494width: 16.66666667%;12495}12496.dark-mode .col-xl-3 {12497flex: 0 0 auto;12498width: 25%;12499}12500.dark-mode .col-xl-4 {12501flex: 0 0 auto;12502width: 33.33333333%;12503}12504.dark-mode .col-xl-5 {12505flex: 0 0 auto;12506width: 41.66666667%;12507}12508.dark-mode .col-xl-6 {12509flex: 0 0 auto;12510width: 50%;12511}12512.dark-mode .col-xl-7 {12513flex: 0 0 auto;12514width: 58.33333333%;12515}12516.dark-mode .col-xl-8 {12517flex: 0 0 auto;12518width: 66.66666667%;12519}12520.dark-mode .col-xl-9 {12521flex: 0 0 auto;12522width: 75%;12523}12524.dark-mode .col-xl-10 {12525flex: 0 0 auto;12526width: 83.33333333%;12527}12528.dark-mode .col-xl-11 {12529flex: 0 0 auto;12530width: 91.66666667%;12531}12532.dark-mode .col-xl-12 {12533flex: 0 0 auto;12534width: 100%;12535}12536.dark-mode .offset-xl-0 {12537margin-left: 0;12538}12539.dark-mode .offset-xl-1 {12540margin-left: 8.33333333%;12541}12542.dark-mode .offset-xl-2 {12543margin-left: 16.66666667%;12544}12545.dark-mode .offset-xl-3 {12546margin-left: 25%;12547}12548.dark-mode .offset-xl-4 {12549margin-left: 33.33333333%;12550}12551.dark-mode .offset-xl-5 {12552margin-left: 41.66666667%;12553}12554.dark-mode .offset-xl-6 {12555margin-left: 50%;12556}12557.dark-mode .offset-xl-7 {12558margin-left: 58.33333333%;12559}12560.dark-mode .offset-xl-8 {12561margin-left: 66.66666667%;12562}12563.dark-mode .offset-xl-9 {12564margin-left: 75%;12565}12566.dark-mode .offset-xl-10 {12567margin-left: 83.33333333%;12568}12569.dark-mode .offset-xl-11 {12570margin-left: 91.66666667%;12571}12572.dark-mode .g-xl-0,12573.dark-mode .gx-xl-0 {12574--bs-gutter-x: 0;12575}12576.dark-mode .g-xl-0,12577.dark-mode .gy-xl-0 {12578--bs-gutter-y: 0;12579}12580.dark-mode .g-xl-1,12581.dark-mode .gx-xl-1 {12582--bs-gutter-x: 0.25rem;12583}12584.dark-mode .g-xl-1,12585.dark-mode .gy-xl-1 {12586--bs-gutter-y: 0.25rem;12587}12588.dark-mode .g-xl-2,12589.dark-mode .gx-xl-2 {12590--bs-gutter-x: 0.5rem;12591}12592.dark-mode .g-xl-2,12593.dark-mode .gy-xl-2 {12594--bs-gutter-y: 0.5rem;12595}12596.dark-mode .g-xl-3,12597.dark-mode .gx-xl-3 {12598--bs-gutter-x: 1rem;12599}12600.dark-mode .g-xl-3,12601.dark-mode .gy-xl-3 {12602--bs-gutter-y: 1rem;12603}12604.dark-mode .g-xl-4,12605.dark-mode .gx-xl-4 {12606--bs-gutter-x: 1.5rem;12607}12608.dark-mode .g-xl-4,12609.dark-mode .gy-xl-4 {12610--bs-gutter-y: 1.5rem;12611}12612.dark-mode .g-xl-5,12613.dark-mode .gx-xl-5 {12614--bs-gutter-x: 3rem;12615}12616.dark-mode .g-xl-5,12617.dark-mode .gy-xl-5 {12618--bs-gutter-y: 3rem;12619}12620}12621@media (min-width: 1400px) {12622.dark-mode .col-xxl {12623flex: 1 0 0%;12624}12625.dark-mode .row-cols-xxl-auto > * {12626flex: 0 0 auto;12627width: auto;12628}12629.dark-mode .row-cols-xxl-1 > * {12630flex: 0 0 auto;12631width: 100%;12632}12633.dark-mode .row-cols-xxl-2 > * {12634flex: 0 0 auto;12635width: 50%;12636}12637.dark-mode .row-cols-xxl-3 > * {12638flex: 0 0 auto;12639width: 33.3333333333%;12640}12641.dark-mode .row-cols-xxl-4 > * {12642flex: 0 0 auto;12643width: 25%;12644}12645.dark-mode .row-cols-xxl-5 > * {12646flex: 0 0 auto;12647width: 20%;12648}12649.dark-mode .row-cols-xxl-6 > * {12650flex: 0 0 auto;12651width: 16.6666666667%;12652}12653.dark-mode .col-xxl-auto {12654flex: 0 0 auto;12655width: auto;12656}12657.dark-mode .col-xxl-1 {12658flex: 0 0 auto;12659width: 8.33333333%;12660}12661.dark-mode .col-xxl-2 {12662flex: 0 0 auto;12663width: 16.66666667%;12664}12665.dark-mode .col-xxl-3 {12666flex: 0 0 auto;12667width: 25%;12668}12669.dark-mode .col-xxl-4 {12670flex: 0 0 auto;12671width: 33.33333333%;12672}12673.dark-mode .col-xxl-5 {12674flex: 0 0 auto;12675width: 41.66666667%;12676}12677.dark-mode .col-xxl-6 {12678flex: 0 0 auto;12679width: 50%;12680}12681.dark-mode .col-xxl-7 {12682flex: 0 0 auto;12683width: 58.33333333%;12684}12685.dark-mode .col-xxl-8 {12686flex: 0 0 auto;12687width: 66.66666667%;12688}12689.dark-mode .col-xxl-9 {12690flex: 0 0 auto;12691width: 75%;12692}12693.dark-mode .col-xxl-10 {12694flex: 0 0 auto;12695width: 83.33333333%;12696}12697.dark-mode .col-xxl-11 {12698flex: 0 0 auto;12699width: 91.66666667%;12700}12701.dark-mode .col-xxl-12 {12702flex: 0 0 auto;12703width: 100%;12704}12705.dark-mode .offset-xxl-0 {12706margin-left: 0;12707}12708.dark-mode .offset-xxl-1 {12709margin-left: 8.33333333%;12710}12711.dark-mode .offset-xxl-2 {12712margin-left: 16.66666667%;12713}12714.dark-mode .offset-xxl-3 {12715margin-left: 25%;12716}12717.dark-mode .offset-xxl-4 {12718margin-left: 33.33333333%;12719}12720.dark-mode .offset-xxl-5 {12721margin-left: 41.66666667%;12722}12723.dark-mode .offset-xxl-6 {12724margin-left: 50%;12725}12726.dark-mode .offset-xxl-7 {12727margin-left: 58.33333333%;12728}12729.dark-mode .offset-xxl-8 {12730margin-left: 66.66666667%;12731}12732.dark-mode .offset-xxl-9 {12733margin-left: 75%;12734}12735.dark-mode .offset-xxl-10 {12736margin-left: 83.33333333%;12737}12738.dark-mode .offset-xxl-11 {12739margin-left: 91.66666667%;12740}12741.dark-mode .g-xxl-0,12742.dark-mode .gx-xxl-0 {12743--bs-gutter-x: 0;12744}12745.dark-mode .g-xxl-0,12746.dark-mode .gy-xxl-0 {12747--bs-gutter-y: 0;12748}12749.dark-mode .g-xxl-1,12750.dark-mode .gx-xxl-1 {12751--bs-gutter-x: 0.25rem;12752}12753.dark-mode .g-xxl-1,12754.dark-mode .gy-xxl-1 {12755--bs-gutter-y: 0.25rem;12756}12757.dark-mode .g-xxl-2,12758.dark-mode .gx-xxl-2 {12759--bs-gutter-x: 0.5rem;12760}12761.dark-mode .g-xxl-2,12762.dark-mode .gy-xxl-2 {12763--bs-gutter-y: 0.5rem;12764}12765.dark-mode .g-xxl-3,12766.dark-mode .gx-xxl-3 {12767--bs-gutter-x: 1rem;12768}12769.dark-mode .g-xxl-3,12770.dark-mode .gy-xxl-3 {12771--bs-gutter-y: 1rem;12772}12773.dark-mode .g-xxl-4,12774.dark-mode .gx-xxl-4 {12775--bs-gutter-x: 1.5rem;12776}12777.dark-mode .g-xxl-4,12778.dark-mode .gy-xxl-4 {12779--bs-gutter-y: 1.5rem;12780}12781.dark-mode .g-xxl-5,12782.dark-mode .gx-xxl-5 {12783--bs-gutter-x: 3rem;12784}12785.dark-mode .g-xxl-5,12786.dark-mode .gy-xxl-5 {12787--bs-gutter-y: 3rem;12788}12789}12790.dark-mode .table {12791--bs-table-bg: transparent;12792--bs-table-accent-bg: transparent;12793--bs-table-striped-color: #212529;12794--bs-table-striped-bg: rgba(0, 0, 0, 0.05);12795--bs-table-active-color: #212529;12796--bs-table-active-bg: rgba(0, 0, 0, 0.1);12797--bs-table-hover-color: #212529;12798--bs-table-hover-bg: rgba(0, 0, 0, 0.075);12799width: 100%;12800margin-bottom: 1rem;12801color: #212529;12802vertical-align: top;12803border-color: #dee2e6;12804}12805.dark-mode .table > :not(caption) > * > * {12806padding: 0.5rem 0.5rem;12807background-color: var(--bs-table-bg);12808border-bottom-width: 1px;12809box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);12810}12811.dark-mode .table > tbody {12812vertical-align: inherit;12813}12814.dark-mode .table > thead {12815vertical-align: bottom;12816}12817.dark-mode .table > :not(:first-child) {12818border-top: 2px solid currentColor;12819}12820.dark-mode .caption-top {12821caption-side: top;12822}12823.dark-mode .table-sm > :not(caption) > * > * {12824padding: 0.25rem 0.25rem;12825}12826.dark-mode .table-bordered > :not(caption) > * {12827border-width: 1px 0;12828}12829.dark-mode .table-bordered > :not(caption) > * > * {12830border-width: 0 1px;12831}12832.dark-mode .table-borderless > :not(caption) > * > * {12833border-bottom-width: 0;12834}12835.dark-mode .table-borderless > :not(:first-child) {12836border-top-width: 0;12837}12838.dark-mode .table-striped > tbody > tr:nth-of-type(odd) > * {12839--bs-table-accent-bg: var(--bs-table-striped-bg);12840color: var(--bs-table-striped-color);12841}12842.dark-mode .table-active {12843--bs-table-accent-bg: var(--bs-table-active-bg);12844color: var(--bs-table-active-color);12845}12846.dark-mode .table-hover > tbody > tr:hover > * {12847--bs-table-accent-bg: var(--bs-table-hover-bg);12848color: var(--bs-table-hover-color);12849}12850.dark-mode .table-primary {12851--bs-table-bg: #eceef2;12852--bs-table-striped-bg: #e0e2e6;12853--bs-table-striped-color: #000;12854--bs-table-active-bg: #d4d6da;12855--bs-table-active-color: #000;12856--bs-table-hover-bg: #dadce0;12857--bs-table-hover-color: #000;12858color: #000;12859border-color: #d4d6da;12860}12861.dark-mode .table-secondary {12862--bs-table-bg: #deebe6;12863--bs-table-striped-bg: #d3dfdb;12864--bs-table-striped-color: #000;12865--bs-table-active-bg: #c8d4cf;12866--bs-table-active-color: #000;12867--bs-table-hover-bg: #cdd9d5;12868--bs-table-hover-color: #000;12869color: #000;12870border-color: #c8d4cf;12871}12872.dark-mode .table-success {12873--bs-table-bg: #d1e7dd;12874--bs-table-striped-bg: #c7dbd2;12875--bs-table-striped-color: #000;12876--bs-table-active-bg: #bcd0c7;12877--bs-table-active-color: #000;12878--bs-table-hover-bg: #c1d6cc;12879--bs-table-hover-color: #000;12880color: #000;12881border-color: #bcd0c7;12882}12883.dark-mode .table-info {12884--bs-table-bg: #cff4fc;12885--bs-table-striped-bg: #c5e8ef;12886--bs-table-striped-color: #000;12887--bs-table-active-bg: #badce3;12888--bs-table-active-color: #000;12889--bs-table-hover-bg: #bfe2e9;12890--bs-table-hover-color: #000;12891color: #000;12892border-color: #badce3;12893}12894.dark-mode .table-warning {12895--bs-table-bg: #fff3cd;12896--bs-table-striped-bg: #f2e7c3;12897--bs-table-striped-color: #000;12898--bs-table-active-bg: #e6dbb9;12899--bs-table-active-color: #000;12900--bs-table-hover-bg: #ece1be;12901--bs-table-hover-color: #000;12902color: #000;12903border-color: #e6dbb9;12904}12905.dark-mode .table-danger {12906--bs-table-bg: #f8d7da;12907--bs-table-striped-bg: #eccccf;12908--bs-table-striped-color: #000;12909--bs-table-active-bg: #dfc2c4;12910--bs-table-active-color: #000;12911--bs-table-hover-bg: #e5c7ca;12912--bs-table-hover-color: #000;12913color: #000;12914border-color: #dfc2c4;12915}12916.dark-mode .table-light {12917--bs-table-bg: #f8f9fa;12918--bs-table-striped-bg: #ecedee;12919--bs-table-striped-color: #000;12920--bs-table-active-bg: #dfe0e1;12921--bs-table-active-color: #000;12922--bs-table-hover-bg: #e5e6e7;12923--bs-table-hover-color: #000;12924color: #000;12925border-color: #dfe0e1;12926}12927.dark-mode .table-dark {12928--bs-table-bg: #212529;12929--bs-table-striped-bg: #2c3034;12930--bs-table-striped-color: #fff;12931--bs-table-active-bg: #373b3e;12932--bs-table-active-color: #fff;12933--bs-table-hover-bg: #323539;12934--bs-table-hover-color: #fff;12935color: #fff;12936border-color: #373b3e;12937}12938.dark-mode .table-responsive {12939overflow-x: auto;12940-webkit-overflow-scrolling: touch;12941}12942@media (max-width: 575.98px) {12943.dark-mode .table-responsive-sm {12944overflow-x: auto;12945-webkit-overflow-scrolling: touch;12946}12947}12948@media (max-width: 767.98px) {12949.dark-mode .table-responsive-md {12950overflow-x: auto;12951-webkit-overflow-scrolling: touch;12952}12953}12954@media (max-width: 991.98px) {12955.dark-mode .table-responsive-lg {12956overflow-x: auto;12957-webkit-overflow-scrolling: touch;12958}12959}12960@media (max-width: 1199.98px) {12961.dark-mode .table-responsive-xl {12962overflow-x: auto;12963-webkit-overflow-scrolling: touch;12964}12965}12966@media (max-width: 1399.98px) {12967.dark-mode .table-responsive-xxl {12968overflow-x: auto;12969-webkit-overflow-scrolling: touch;12970}12971}12972.dark-mode .form-label {12973margin-bottom: 0.5rem;12974}12975.dark-mode .col-form-label {12976padding-top: calc(0.375rem + 1px);12977padding-bottom: calc(0.375rem + 1px);12978margin-bottom: 0;12979font-size: inherit;12980line-height: 1.5;12981}12982.dark-mode .col-form-label-lg {12983padding-top: calc(0.5rem + 1px);12984padding-bottom: calc(0.5rem + 1px);12985font-size: 1.25rem;12986}12987.dark-mode .col-form-label-sm {12988padding-top: calc(0.25rem + 1px);12989padding-bottom: calc(0.25rem + 1px);12990font-size: 0.875rem;12991}12992.dark-mode .form-text {12993margin-top: 0.25rem;12994font-size: 0.875em;12995color: #6c757d;12996}12997.dark-mode .form-control {12998display: block;12999width: 100%;13000padding: 0.375rem 0.75rem;13001font-size: 1rem;13002font-weight: 400;13003line-height: 1.5;13004color: #212529;13005background-color: #cfd8dc;13006background-clip: padding-box;13007border: 1px solid #ced4da;13008appearance: none;13009border-radius: 0.25rem;13010transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;13011}13012@media (prefers-reduced-motion: reduce) {13013.dark-mode .form-control {13014transition: none;13015}13016}13017.dark-mode .form-control[type=file] {13018overflow: hidden;13019}13020.dark-mode .form-control[type=file]:not(:disabled):not([readonly]) {13021cursor: pointer;13022}13023.dark-mode .form-control:focus {13024color: #212529;13025background-color: #cfd8dc;13026border-color: #d0d4de;13027outline: 0;13028box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);13029}13030.dark-mode .form-control::-webkit-date-and-time-value {13031height: 1.5em;13032}13033.dark-mode .form-control::placeholder {13034color: #6c757d;13035opacity: 1;13036}13037.dark-mode .form-control:disabled, .dark-mode .form-control[readonly] {13038background-color: #e9ecef;13039opacity: 1;13040}13041.dark-mode .form-control::file-selector-button {13042padding: 0.375rem 0.75rem;13043margin: -0.375rem -0.75rem;13044margin-inline-end: 0.75rem;13045color: #212529;13046background-color: #e9ecef;13047background-image: var(--bs-gradient);13048pointer-events: none;13049border-color: inherit;13050border-style: solid;13051border-width: 0;13052border-inline-end-width: 1px;13053border-radius: 0;13054transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;13055}13056@media (prefers-reduced-motion: reduce) {13057.dark-mode .form-control::file-selector-button {13058transition: none;13059}13060}13061.dark-mode .form-control:hover:not(:disabled):not([readonly])::file-selector-button {13062background-color: #dde0e3;13063}13064.dark-mode .form-control::-webkit-file-upload-button {13065padding: 0.375rem 0.75rem;13066margin: -0.375rem -0.75rem;13067margin-inline-end: 0.75rem;13068color: #212529;13069background-color: #e9ecef;13070background-image: var(--bs-gradient);13071pointer-events: none;13072border-color: inherit;13073border-style: solid;13074border-width: 0;13075border-inline-end-width: 1px;13076border-radius: 0;13077transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;13078}13079@media (prefers-reduced-motion: reduce) {13080.dark-mode .form-control::-webkit-file-upload-button {13081transition: none;13082}13083}13084.dark-mode .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {13085background-color: #dde0e3;13086}13087.dark-mode .form-control-plaintext {13088display: block;13089width: 100%;13090padding: 0.375rem 0;13091margin-bottom: 0;13092line-height: 1.5;13093color: #212529;13094background-color: transparent;13095border: solid transparent;13096border-width: 1px 0;13097}13098.dark-mode .form-control-plaintext.form-control-sm, .dark-mode .form-control-plaintext.form-control-lg {13099padding-right: 0;13100padding-left: 0;13101}13102.dark-mode .form-control-sm {13103min-height: calc(1.5em + 0.5rem + 2px);13104padding: 0.25rem 0.5rem;13105font-size: 0.875rem;13106border-radius: 0.2rem;13107}13108.dark-mode .form-control-sm::file-selector-button {13109padding: 0.25rem 0.5rem;13110margin: -0.25rem -0.5rem;13111margin-inline-end: 0.5rem;13112}13113.dark-mode .form-control-sm::-webkit-file-upload-button {13114padding: 0.25rem 0.5rem;13115margin: -0.25rem -0.5rem;13116margin-inline-end: 0.5rem;13117}13118.dark-mode .form-control-lg {13119min-height: calc(1.5em + 1rem + 2px);13120padding: 0.5rem 1rem;13121font-size: 1.25rem;13122border-radius: 0.3rem;13123}13124.dark-mode .form-control-lg::file-selector-button {13125padding: 0.5rem 1rem;13126margin: -0.5rem -1rem;13127margin-inline-end: 1rem;13128}13129.dark-mode .form-control-lg::-webkit-file-upload-button {13130padding: 0.5rem 1rem;13131margin: -0.5rem -1rem;13132margin-inline-end: 1rem;13133}13134.dark-mode textarea.form-control {13135min-height: calc(1.5em + 0.75rem + 2px);13136}13137.dark-mode textarea.form-control-sm {13138min-height: calc(1.5em + 0.5rem + 2px);13139}13140.dark-mode textarea.form-control-lg {13141min-height: calc(1.5em + 1rem + 2px);13142}13143.dark-mode .form-control-color {13144width: 3rem;13145height: auto;13146padding: 0.375rem;13147}13148.dark-mode .form-control-color:not(:disabled):not([readonly]) {13149cursor: pointer;13150}13151.dark-mode .form-control-color::-moz-color-swatch {13152height: 1.5em;13153border-radius: 0.25rem;13154}13155.dark-mode .form-control-color::-webkit-color-swatch {13156height: 1.5em;13157border-radius: 0.25rem;13158}13159.dark-mode .form-select {13160display: block;13161width: 100%;13162padding: 0.375rem 2.25rem 0.375rem 0.75rem;13163-moz-padding-start: calc(0.75rem - 3px);13164font-size: 1rem;13165font-weight: 400;13166line-height: 1.5;13167color: #212529;13168background-color: #cfd8dc;13169background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");13170background-repeat: no-repeat;13171background-position: right 0.75rem center;13172background-size: 16px 12px;13173border: 1px solid #ced4da;13174border-radius: 0.25rem;13175transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;13176appearance: none;13177}13178@media (prefers-reduced-motion: reduce) {13179.dark-mode .form-select {13180transition: none;13181}13182}13183.dark-mode .form-select:focus {13184border-color: #d0d4de;13185outline: 0;13186box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);13187}13188.dark-mode .form-select[multiple], .dark-mode .form-select[size]:not([size="1"]) {13189padding-right: 0.75rem;13190background-image: none;13191}13192.dark-mode .form-select:disabled {13193background-color: #e9ecef;13194}13195.dark-mode .form-select:-moz-focusring {13196color: transparent;13197text-shadow: 0 0 0 #212529;13198}13199.dark-mode .form-select-sm {13200padding-top: 0.25rem;13201padding-bottom: 0.25rem;13202padding-left: 0.5rem;13203font-size: 0.875rem;13204border-radius: 0.2rem;13205}13206.dark-mode .form-select-lg {13207padding-top: 0.5rem;13208padding-bottom: 0.5rem;13209padding-left: 1rem;13210font-size: 1.25rem;13211border-radius: 0.3rem;13212}13213.dark-mode .form-check {13214display: block;13215min-height: 1.5rem;13216padding-left: 1.5em;13217margin-bottom: 0.125rem;13218}13219.dark-mode .form-check .form-check-input {13220float: left;13221margin-left: -1.5em;13222}13223.dark-mode .form-check-input {13224width: 1em;13225height: 1em;13226margin-top: 0.25em;13227vertical-align: top;13228background-color: #cfd8dc;13229background-repeat: no-repeat;13230background-position: center;13231background-size: contain;13232border: 1px solid rgba(0, 0, 0, 0.25);13233appearance: none;13234color-adjust: exact;13235}13236.dark-mode .form-check-input[type=checkbox] {13237border-radius: 0.25em;13238}13239.dark-mode .form-check-input[type=radio] {13240border-radius: 50%;13241}13242.dark-mode .form-check-input:active {13243filter: brightness(90%);13244}13245.dark-mode .form-check-input:focus {13246border-color: #d0d4de;13247outline: 0;13248box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);13249}13250.dark-mode .form-check-input:checked {13251background-color: #a1a9bd;13252border-color: #a1a9bd;13253}13254.dark-mode .form-check-input:checked[type=checkbox] {13255background-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"), var(--bs-gradient);13256}13257.dark-mode .form-check-input:checked[type=radio] {13258background-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"), var(--bs-gradient);13259}13260.dark-mode .form-check-input[type=checkbox]:indeterminate {13261background-color: #a1a9bd;13262border-color: #a1a9bd;13263background-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"), var(--bs-gradient);13264}13265.dark-mode .form-check-input:disabled {13266pointer-events: none;13267filter: none;13268opacity: 0.5;13269}13270.dark-mode .form-check-input[disabled] ~ .form-check-label, .dark-mode .form-check-input:disabled ~ .form-check-label {13271opacity: 0.5;13272}13273.dark-mode .form-switch {13274padding-left: 2.5em;13275}13276.dark-mode .form-switch .form-check-input {13277width: 2em;13278margin-left: -2.5em;13279background-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");13280background-position: left center;13281border-radius: 2em;13282transition: background-position 0.15s ease-in-out;13283}13284@media (prefers-reduced-motion: reduce) {13285.dark-mode .form-switch .form-check-input {13286transition: none;13287}13288}13289.dark-mode .form-switch .form-check-input:focus {13290background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23d0d4de'/%3e%3c/svg%3e");13291}13292.dark-mode .form-switch .form-check-input:checked {13293background-position: right center;13294background-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"), var(--bs-gradient);13295}13296.dark-mode .form-check-inline {13297display: inline-block;13298margin-right: 1rem;13299}13300.dark-mode .btn-check {13301position: absolute;13302clip: rect(0, 0, 0, 0);13303pointer-events: none;13304}13305.dark-mode .btn-check[disabled] + .btn, .dark-mode .btn-check:disabled + .btn {13306pointer-events: none;13307filter: none;13308opacity: 0.65;13309}13310.dark-mode .form-range {13311width: 100%;13312height: 1.5rem;13313padding: 0;13314background-color: transparent;13315appearance: none;13316}13317.dark-mode .form-range:focus {13318outline: 0;13319}13320.dark-mode .form-range:focus::-webkit-slider-thumb {13321box-shadow: 0 0 0 1px #cfd8dc, 0 0 0 0.25rem rgba(161, 169, 189, 0.25);13322}13323.dark-mode .form-range:focus::-moz-range-thumb {13324box-shadow: 0 0 0 1px #cfd8dc, 0 0 0 0.25rem rgba(161, 169, 189, 0.25);13325}13326.dark-mode .form-range::-moz-focus-outer {13327border: 0;13328}13329.dark-mode .form-range::-webkit-slider-thumb {13330width: 1rem;13331height: 1rem;13332margin-top: -0.25rem;13333background-color: #a1a9bd;13334background-image: var(--bs-gradient);13335border: 0;13336border-radius: 1rem;13337transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;13338appearance: none;13339}13340@media (prefers-reduced-motion: reduce) {13341.dark-mode .form-range::-webkit-slider-thumb {13342transition: none;13343}13344}13345.dark-mode .form-range::-webkit-slider-thumb:active {13346background-color: #e3e5eb;13347background-image: var(--bs-gradient);13348}13349.dark-mode .form-range::-webkit-slider-runnable-track {13350width: 100%;13351height: 0.5rem;13352color: transparent;13353cursor: pointer;13354background-color: #dee2e6;13355border-color: transparent;13356border-radius: 1rem;13357}13358.dark-mode .form-range::-moz-range-thumb {13359width: 1rem;13360height: 1rem;13361background-color: #a1a9bd;13362background-image: var(--bs-gradient);13363border: 0;13364border-radius: 1rem;13365transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;13366appearance: none;13367}13368@media (prefers-reduced-motion: reduce) {13369.dark-mode .form-range::-moz-range-thumb {13370transition: none;13371}13372}13373.dark-mode .form-range::-moz-range-thumb:active {13374background-color: #e3e5eb;13375background-image: var(--bs-gradient);13376}13377.dark-mode .form-range::-moz-range-track {13378width: 100%;13379height: 0.5rem;13380color: transparent;13381cursor: pointer;13382background-color: #dee2e6;13383border-color: transparent;13384border-radius: 1rem;13385}13386.dark-mode .form-range:disabled {13387pointer-events: none;13388}13389.dark-mode .form-range:disabled::-webkit-slider-thumb {13390background-color: #adb5bd;13391}13392.dark-mode .form-range:disabled::-moz-range-thumb {13393background-color: #adb5bd;13394}13395.dark-mode .form-floating {13396position: relative;13397}13398.dark-mode .form-floating > .form-control,13399.dark-mode .form-floating > .form-select {13400height: calc(3.5rem + 2px);13401line-height: 1.25;13402}13403.dark-mode .form-floating > label {13404position: absolute;13405top: 0;13406left: 0;13407height: 100%;13408padding: 1rem 0.75rem;13409pointer-events: none;13410border: 1px solid transparent;13411transform-origin: 0 0;13412transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;13413}13414@media (prefers-reduced-motion: reduce) {13415.dark-mode .form-floating > label {13416transition: none;13417}13418}13419.dark-mode .form-floating > .form-control {13420padding: 1rem 0.75rem;13421}13422.dark-mode .form-floating > .form-control::placeholder {13423color: transparent;13424}13425.dark-mode .form-floating > .form-control:focus, .dark-mode .form-floating > .form-control:not(:placeholder-shown) {13426padding-top: 1.625rem;13427padding-bottom: 0.625rem;13428}13429.dark-mode .form-floating > .form-control:-webkit-autofill {13430padding-top: 1.625rem;13431padding-bottom: 0.625rem;13432}13433.dark-mode .form-floating > .form-select {13434padding-top: 1.625rem;13435padding-bottom: 0.625rem;13436}13437.dark-mode .form-floating > .form-control:focus ~ label,13438.dark-mode .form-floating > .form-control:not(:placeholder-shown) ~ label,13439.dark-mode .form-floating > .form-select ~ label {13440opacity: 0.65;13441transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);13442}13443.dark-mode .form-floating > .form-control:-webkit-autofill ~ label {13444opacity: 0.65;13445transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);13446}13447.dark-mode .input-group {13448position: relative;13449display: flex;13450flex-wrap: wrap;13451align-items: stretch;13452width: 100%;13453}13454.dark-mode .input-group > .form-control,13455.dark-mode .input-group > .form-select {13456position: relative;13457flex: 1 1 auto;13458width: 1%;13459min-width: 0;13460}13461.dark-mode .input-group > .form-control:focus,13462.dark-mode .input-group > .form-select:focus {13463z-index: 3;13464}13465.dark-mode .input-group .btn {13466position: relative;13467z-index: 2;13468}13469.dark-mode .input-group .btn:focus {13470z-index: 3;13471}13472.dark-mode .input-group-text {13473display: flex;13474align-items: center;13475padding: 0.375rem 0.75rem;13476font-size: 1rem;13477font-weight: 400;13478line-height: 1.5;13479color: #212529;13480text-align: center;13481white-space: nowrap;13482background-color: #e9ecef;13483border: 1px solid #ced4da;13484border-radius: 0.25rem;13485}13486.dark-mode .input-group-lg > .form-control,13487.dark-mode .input-group-lg > .form-select,13488.dark-mode .input-group-lg > .input-group-text,13489.dark-mode .input-group-lg > .btn {13490padding: 0.5rem 1rem;13491font-size: 1.25rem;13492border-radius: 0.3rem;13493}13494.dark-mode .input-group-sm > .form-control,13495.dark-mode .input-group-sm > .form-select,13496.dark-mode .input-group-sm > .input-group-text,13497.dark-mode .input-group-sm > .btn {13498padding: 0.25rem 0.5rem;13499font-size: 0.875rem;13500border-radius: 0.2rem;13501}13502.dark-mode .input-group-lg > .form-select,13503.dark-mode .input-group-sm > .form-select {13504padding-right: 3rem;13505}13506.dark-mode .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),13507.dark-mode .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {13508border-top-right-radius: 0;13509border-bottom-right-radius: 0;13510}13511.dark-mode .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),13512.dark-mode .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {13513border-top-right-radius: 0;13514border-bottom-right-radius: 0;13515}13516.dark-mode .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {13517margin-left: -1px;13518border-top-left-radius: 0;13519border-bottom-left-radius: 0;13520}13521.dark-mode .valid-feedback {13522display: none;13523width: 100%;13524margin-top: 0.25rem;13525font-size: 0.875em;13526color: #198754;13527}13528.dark-mode .valid-tooltip {13529position: absolute;13530top: 100%;13531z-index: 5;13532display: none;13533max-width: 100%;13534padding: 0.25rem 0.5rem;13535margin-top: 0.1rem;13536font-size: 0.875rem;13537color: #fff;13538background-color: rgba(25, 135, 84, 0.9);13539border-radius: 0.25rem;13540}13541.was-validated .dark-mode:valid ~ .valid-feedback,13542.was-validated .dark-mode:valid ~ .valid-tooltip, .dark-mode.is-valid ~ .valid-feedback,13543.dark-mode.is-valid ~ .valid-tooltip {13544display: block;13545}13546.was-validated .dark-mode .form-control:valid, .dark-mode .form-control.is-valid {13547border-color: #198754;13548padding-right: calc(1.5em + 0.75rem);13549background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' 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");13550background-repeat: no-repeat;13551background-position: right calc(0.375em + 0.1875rem) center;13552background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);13553}13554.was-validated .dark-mode .form-control:valid:focus, .dark-mode .form-control.is-valid:focus {13555border-color: #198754;13556box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);13557}13558.was-validated .dark-mode textarea.form-control:valid, .dark-mode textarea.form-control.is-valid {13559padding-right: calc(1.5em + 0.75rem);13560background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);13561}13562.was-validated .dark-mode .form-select:valid, .dark-mode .form-select.is-valid {13563border-color: #198754;13564}13565.was-validated .dark-mode .form-select:valid:not([multiple]):not([size]), .was-validated .dark-mode .form-select:valid:not([multiple])[size="1"], .dark-mode .form-select.is-valid:not([multiple]):not([size]), .dark-mode .form-select.is-valid:not([multiple])[size="1"] {13566padding-right: 4.125rem;13567background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' 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='%23198754' 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");13568background-position: right 0.75rem center, center right 2.25rem;13569background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);13570}13571.was-validated .dark-mode .form-select:valid:focus, .dark-mode .form-select.is-valid:focus {13572border-color: #198754;13573box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);13574}13575.was-validated .dark-mode .form-check-input:valid, .dark-mode .form-check-input.is-valid {13576border-color: #198754;13577}13578.was-validated .dark-mode .form-check-input:valid:checked, .dark-mode .form-check-input.is-valid:checked {13579background-color: #198754;13580}13581.was-validated .dark-mode .form-check-input:valid:focus, .dark-mode .form-check-input.is-valid:focus {13582box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);13583}13584.was-validated .dark-mode .form-check-input:valid ~ .form-check-label, .dark-mode .form-check-input.is-valid ~ .form-check-label {13585color: #198754;13586}13587.dark-mode .form-check-inline .form-check-input ~ .valid-feedback {13588margin-left: 0.5em;13589}13590.was-validated .dark-mode .input-group .form-control:valid, .dark-mode .input-group .form-control.is-valid,13591.was-validated .dark-mode .input-group .form-select:valid,13592.dark-mode .input-group .form-select.is-valid {13593z-index: 1;13594}13595.was-validated .dark-mode .input-group .form-control:valid:focus, .dark-mode .input-group .form-control.is-valid:focus,13596.was-validated .dark-mode .input-group .form-select:valid:focus,13597.dark-mode .input-group .form-select.is-valid:focus {13598z-index: 3;13599}13600.dark-mode .invalid-feedback {13601display: none;13602width: 100%;13603margin-top: 0.25rem;13604font-size: 0.875em;13605color: #dc3545;13606}13607.dark-mode .invalid-tooltip {13608position: absolute;13609top: 100%;13610z-index: 5;13611display: none;13612max-width: 100%;13613padding: 0.25rem 0.5rem;13614margin-top: 0.1rem;13615font-size: 0.875rem;13616color: #fff;13617background-color: rgba(220, 53, 69, 0.9);13618border-radius: 0.25rem;13619}13620.was-validated .dark-mode:invalid ~ .invalid-feedback,13621.was-validated .dark-mode:invalid ~ .invalid-tooltip, .dark-mode.is-invalid ~ .invalid-feedback,13622.dark-mode.is-invalid ~ .invalid-tooltip {13623display: block;13624}13625.was-validated .dark-mode .form-control:invalid, .dark-mode .form-control.is-invalid {13626border-color: #dc3545;13627padding-right: calc(1.5em + 0.75rem);13628background-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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");13629background-repeat: no-repeat;13630background-position: right calc(0.375em + 0.1875rem) center;13631background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);13632}13633.was-validated .dark-mode .form-control:invalid:focus, .dark-mode .form-control.is-invalid:focus {13634border-color: #dc3545;13635box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);13636}13637.was-validated .dark-mode textarea.form-control:invalid, .dark-mode textarea.form-control.is-invalid {13638padding-right: calc(1.5em + 0.75rem);13639background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);13640}13641.was-validated .dark-mode .form-select:invalid, .dark-mode .form-select.is-invalid {13642border-color: #dc3545;13643}13644.was-validated .dark-mode .form-select:invalid:not([multiple]):not([size]), .was-validated .dark-mode .form-select:invalid:not([multiple])[size="1"], .dark-mode .form-select.is-invalid:not([multiple]):not([size]), .dark-mode .form-select.is-invalid:not([multiple])[size="1"] {13645padding-right: 4.125rem;13646background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' 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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");13647background-position: right 0.75rem center, center right 2.25rem;13648background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);13649}13650.was-validated .dark-mode .form-select:invalid:focus, .dark-mode .form-select.is-invalid:focus {13651border-color: #dc3545;13652box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);13653}13654.was-validated .dark-mode .form-check-input:invalid, .dark-mode .form-check-input.is-invalid {13655border-color: #dc3545;13656}13657.was-validated .dark-mode .form-check-input:invalid:checked, .dark-mode .form-check-input.is-invalid:checked {13658background-color: #dc3545;13659}13660.was-validated .dark-mode .form-check-input:invalid:focus, .dark-mode .form-check-input.is-invalid:focus {13661box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);13662}13663.was-validated .dark-mode .form-check-input:invalid ~ .form-check-label, .dark-mode .form-check-input.is-invalid ~ .form-check-label {13664color: #dc3545;13665}13666.dark-mode .form-check-inline .form-check-input ~ .invalid-feedback {13667margin-left: 0.5em;13668}13669.was-validated .dark-mode .input-group .form-control:invalid, .dark-mode .input-group .form-control.is-invalid,13670.was-validated .dark-mode .input-group .form-select:invalid,13671.dark-mode .input-group .form-select.is-invalid {13672z-index: 2;13673}13674.was-validated .dark-mode .input-group .form-control:invalid:focus, .dark-mode .input-group .form-control.is-invalid:focus,13675.was-validated .dark-mode .input-group .form-select:invalid:focus,13676.dark-mode .input-group .form-select.is-invalid:focus {13677z-index: 3;13678}13679.dark-mode .btn {13680display: inline-block;13681font-weight: 400;13682line-height: 1.5;13683color: #212529;13684text-align: center;13685text-decoration: none;13686vertical-align: middle;13687cursor: pointer;13688user-select: none;13689background-color: transparent;13690border: 1px solid transparent;13691padding: 0.375rem 0.75rem;13692font-size: 1rem;13693border-radius: 0.25rem;13694transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;13695}13696@media (prefers-reduced-motion: reduce) {13697.dark-mode .btn {13698transition: none;13699}13700}13701.dark-mode .btn:hover {13702color: #212529;13703}13704.btn-check:focus + .dark-mode .btn, .dark-mode .btn:focus {13705outline: 0;13706box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);13707}13708.dark-mode .btn:disabled, .dark-mode .btn.disabled, fieldset:disabled .dark-mode .btn {13709pointer-events: none;13710opacity: 0.65;13711}13712.dark-mode .btn-primary {13713color: #000;13714background-color: #5c7ba8;13715background-image: var(--bs-gradient);13716border-color: #5c7ba8;13717}13718.dark-mode .btn-primary:hover {13719color: #000;13720background-color: #748fb5;13721background-image: var(--bs-gradient);13722border-color: #6c88b1;13723}13724.btn-check:focus + .dark-mode .btn-primary, .dark-mode .btn-primary:focus {13725color: #000;13726background-color: #748fb5;13727background-image: var(--bs-gradient);13728border-color: #6c88b1;13729box-shadow: 0 0 0 0.25rem rgba(78, 105, 143, 0.5);13730}13731.btn-check:checked + .dark-mode .btn-primary, .btn-check:active + .dark-mode .btn-primary, .dark-mode .btn-primary:active, .dark-mode .btn-primary.active, .show > .dark-mode .btn-primary.dropdown-toggle {13732color: #000;13733background-color: #7d95b9;13734background-image: none;13735border-color: #6c88b1;13736}13737.btn-check:checked + .dark-mode .btn-primary:focus, .btn-check:active + .dark-mode .btn-primary:focus, .dark-mode .btn-primary:active:focus, .dark-mode .btn-primary.active:focus, .show > .dark-mode .btn-primary.dropdown-toggle:focus {13738box-shadow: 0 0 0 0.25rem rgba(78, 105, 143, 0.5);13739}13740.dark-mode .btn-primary:disabled, .dark-mode .btn-primary.disabled {13741color: #000;13742background-color: #5c7ba8;13743background-image: none;13744border-color: #5c7ba8;13745}13746.dark-mode .btn-secondary {13747color: #fff;13748background-color: #146c43;13749background-image: var(--bs-gradient);13750border-color: #146c43;13751}13752.dark-mode .btn-secondary:hover {13753color: #fff;13754background-color: #115c39;13755background-image: var(--bs-gradient);13756border-color: #105636;13757}13758.btn-check:focus + .dark-mode .btn-secondary, .dark-mode .btn-secondary:focus {13759color: #fff;13760background-color: #115c39;13761background-image: var(--bs-gradient);13762border-color: #105636;13763box-shadow: 0 0 0 0.25rem rgba(55, 130, 95, 0.5);13764}13765.btn-check:checked + .dark-mode .btn-secondary, .btn-check:active + .dark-mode .btn-secondary, .dark-mode .btn-secondary:active, .dark-mode .btn-secondary.active, .show > .dark-mode .btn-secondary.dropdown-toggle {13766color: #fff;13767background-color: #105636;13768background-image: none;13769border-color: #0f5132;13770}13771.btn-check:checked + .dark-mode .btn-secondary:focus, .btn-check:active + .dark-mode .btn-secondary:focus, .dark-mode .btn-secondary:active:focus, .dark-mode .btn-secondary.active:focus, .show > .dark-mode .btn-secondary.dropdown-toggle:focus {13772box-shadow: 0 0 0 0.25rem rgba(55, 130, 95, 0.5);13773}13774.dark-mode .btn-secondary:disabled, .dark-mode .btn-secondary.disabled {13775color: #fff;13776background-color: #146c43;13777background-image: none;13778border-color: #146c43;13779}13780.dark-mode .btn-outline-primary {13781color: #5c7ba8;13782border-color: #5c7ba8;13783}13784.dark-mode .btn-outline-primary:hover {13785color: #000;13786background-color: #5c7ba8;13787border-color: #5c7ba8;13788}13789.btn-check:focus + .dark-mode .btn-outline-primary, .dark-mode .btn-outline-primary:focus {13790box-shadow: 0 0 0 0.25rem rgba(92, 123, 168, 0.5);13791}13792.btn-check:checked + .dark-mode .btn-outline-primary, .btn-check:active + .dark-mode .btn-outline-primary, .dark-mode .btn-outline-primary:active, .dark-mode .btn-outline-primary.active, .dark-mode .btn-outline-primary.dropdown-toggle.show {13793color: #000;13794background-color: #5c7ba8;13795border-color: #5c7ba8;13796}13797.btn-check:checked + .dark-mode .btn-outline-primary:focus, .btn-check:active + .dark-mode .btn-outline-primary:focus, .dark-mode .btn-outline-primary:active:focus, .dark-mode .btn-outline-primary.active:focus, .dark-mode .btn-outline-primary.dropdown-toggle.show:focus {13798box-shadow: 0 0 0 0.25rem rgba(92, 123, 168, 0.5);13799}13800.dark-mode .btn-outline-primary:disabled, .dark-mode .btn-outline-primary.disabled {13801color: #5c7ba8;13802background-color: transparent;13803}13804.dark-mode .btn-outline-secondary {13805color: #146c43;13806border-color: #146c43;13807}13808.dark-mode .btn-outline-secondary:hover {13809color: #fff;13810background-color: #146c43;13811border-color: #146c43;13812}13813.btn-check:focus + .dark-mode .btn-outline-secondary, .dark-mode .btn-outline-secondary:focus {13814box-shadow: 0 0 0 0.25rem rgba(20, 108, 67, 0.5);13815}13816.btn-check:checked + .dark-mode .btn-outline-secondary, .btn-check:active + .dark-mode .btn-outline-secondary, .dark-mode .btn-outline-secondary:active, .dark-mode .btn-outline-secondary.active, .dark-mode .btn-outline-secondary.dropdown-toggle.show {13817color: #fff;13818background-color: #146c43;13819border-color: #146c43;13820}13821.btn-check:checked + .dark-mode .btn-outline-secondary:focus, .btn-check:active + .dark-mode .btn-outline-secondary:focus, .dark-mode .btn-outline-secondary:active:focus, .dark-mode .btn-outline-secondary.active:focus, .dark-mode .btn-outline-secondary.dropdown-toggle.show:focus {13822box-shadow: 0 0 0 0.25rem rgba(20, 108, 67, 0.5);13823}13824.dark-mode .btn-outline-secondary:disabled, .dark-mode .btn-outline-secondary.disabled {13825color: #146c43;13826background-color: transparent;13827}13828.dark-mode .btn-link {13829font-weight: 400;13830color: #a1a9bd;13831text-decoration: underline;13832}13833.dark-mode .btn-link:hover {13834color: #818797;13835}13836.dark-mode .btn-link:disabled, .dark-mode .btn-link.disabled {13837color: #6c757d;13838}13839.dark-mode .btn-lg, .dark-mode .btn-group-lg > .btn {13840padding: 0.5rem 1rem;13841font-size: 1.25rem;13842border-radius: 0.3rem;13843}13844.dark-mode .btn-sm, .dark-mode .btn-group-sm > .btn {13845padding: 0.25rem 0.5rem;13846font-size: 0.875rem;13847border-radius: 0.2rem;13848}13849.dark-mode .fade {13850transition: opacity 0.15s linear;13851}13852@media (prefers-reduced-motion: reduce) {13853.dark-mode .fade {13854transition: none;13855}13856}13857.dark-mode .fade:not(.show) {13858opacity: 0;13859}13860.dark-mode .collapse:not(.show) {13861display: none;13862}13863.dark-mode .collapsing {13864height: 0;13865overflow: hidden;13866transition: height 0.35s ease;13867}13868@media (prefers-reduced-motion: reduce) {13869.dark-mode .collapsing {13870transition: none;13871}13872}13873.dark-mode .collapsing.collapse-horizontal {13874width: 0;13875height: auto;13876transition: width 0.35s ease;13877}13878@media (prefers-reduced-motion: reduce) {13879.dark-mode .collapsing.collapse-horizontal {13880transition: none;13881}13882}13883.dark-mode .dropup,13884.dark-mode .dropend,13885.dark-mode .dropdown,13886.dark-mode .dropstart {13887position: relative;13888}13889.dark-mode .dropdown-toggle {13890white-space: nowrap;13891}13892.dark-mode .dropdown-toggle::after {13893display: inline-block;13894margin-left: 0.255em;13895vertical-align: 0.255em;13896content: "";13897border-top: 0.3em solid;13898border-right: 0.3em solid transparent;13899border-bottom: 0;13900border-left: 0.3em solid transparent;13901}13902.dark-mode .dropdown-toggle:empty::after {13903margin-left: 0;13904}13905.dark-mode .dropdown-menu {13906position: absolute;13907z-index: 1000;13908display: none;13909min-width: 10rem;13910padding: 0.5rem 0;13911margin: 0;13912font-size: 1rem;13913color: #212529;13914text-align: left;13915list-style: none;13916background-color: #fff;13917background-clip: padding-box;13918border: 1px solid rgba(0, 0, 0, 0.15);13919border-radius: 0.25rem;13920}13921.dark-mode .dropdown-menu[data-bs-popper] {13922top: 100%;13923left: 0;13924margin-top: 0.125rem;13925}13926.dark-mode .dropdown-menu-start {13927--bs-position: start;13928}13929.dark-mode .dropdown-menu-start[data-bs-popper] {13930right: auto;13931left: 0;13932}13933.dark-mode .dropdown-menu-end {13934--bs-position: end;13935}13936.dark-mode .dropdown-menu-end[data-bs-popper] {13937right: 0;13938left: auto;13939}13940@media (min-width: 576px) {13941.dark-mode .dropdown-menu-sm-start {13942--bs-position: start;13943}13944.dark-mode .dropdown-menu-sm-start[data-bs-popper] {13945right: auto;13946left: 0;13947}13948.dark-mode .dropdown-menu-sm-end {13949--bs-position: end;13950}13951.dark-mode .dropdown-menu-sm-end[data-bs-popper] {13952right: 0;13953left: auto;13954}13955}13956@media (min-width: 768px) {13957.dark-mode .dropdown-menu-md-start {13958--bs-position: start;13959}13960.dark-mode .dropdown-menu-md-start[data-bs-popper] {13961right: auto;13962left: 0;13963}13964.dark-mode .dropdown-menu-md-end {13965--bs-position: end;13966}13967.dark-mode .dropdown-menu-md-end[data-bs-popper] {13968right: 0;13969left: auto;13970}13971}13972@media (min-width: 992px) {13973.dark-mode .dropdown-menu-lg-start {13974--bs-position: start;13975}13976.dark-mode .dropdown-menu-lg-start[data-bs-popper] {13977right: auto;13978left: 0;13979}13980.dark-mode .dropdown-menu-lg-end {13981--bs-position: end;13982}13983.dark-mode .dropdown-menu-lg-end[data-bs-popper] {13984right: 0;13985left: auto;13986}13987}13988@media (min-width: 1200px) {13989.dark-mode .dropdown-menu-xl-start {13990--bs-position: start;13991}13992.dark-mode .dropdown-menu-xl-start[data-bs-popper] {13993right: auto;13994left: 0;13995}13996.dark-mode .dropdown-menu-xl-end {13997--bs-position: end;13998}13999.dark-mode .dropdown-menu-xl-end[data-bs-popper] {14000right: 0;14001left: auto;14002}14003}14004@media (min-width: 1400px) {14005.dark-mode .dropdown-menu-xxl-start {14006--bs-position: start;14007}14008.dark-mode .dropdown-menu-xxl-start[data-bs-popper] {14009right: auto;14010left: 0;14011}14012.dark-mode .dropdown-menu-xxl-end {14013--bs-position: end;14014}14015.dark-mode .dropdown-menu-xxl-end[data-bs-popper] {14016right: 0;14017left: auto;14018}14019}14020.dark-mode .dropup .dropdown-menu[data-bs-popper] {14021top: auto;14022bottom: 100%;14023margin-top: 0;14024margin-bottom: 0.125rem;14025}14026.dark-mode .dropup .dropdown-toggle::after {14027display: inline-block;14028margin-left: 0.255em;14029vertical-align: 0.255em;14030content: "";14031border-top: 0;14032border-right: 0.3em solid transparent;14033border-bottom: 0.3em solid;14034border-left: 0.3em solid transparent;14035}14036.dark-mode .dropup .dropdown-toggle:empty::after {14037margin-left: 0;14038}14039.dark-mode .dropend .dropdown-menu[data-bs-popper] {14040top: 0;14041right: auto;14042left: 100%;14043margin-top: 0;14044margin-left: 0.125rem;14045}14046.dark-mode .dropend .dropdown-toggle::after {14047display: inline-block;14048margin-left: 0.255em;14049vertical-align: 0.255em;14050content: "";14051border-top: 0.3em solid transparent;14052border-right: 0;14053border-bottom: 0.3em solid transparent;14054border-left: 0.3em solid;14055}14056.dark-mode .dropend .dropdown-toggle:empty::after {14057margin-left: 0;14058}14059.dark-mode .dropend .dropdown-toggle::after {14060vertical-align: 0;14061}14062.dark-mode .dropstart .dropdown-menu[data-bs-popper] {14063top: 0;14064right: 100%;14065left: auto;14066margin-top: 0;14067margin-right: 0.125rem;14068}14069.dark-mode .dropstart .dropdown-toggle::after {14070display: inline-block;14071margin-left: 0.255em;14072vertical-align: 0.255em;14073content: "";14074}14075.dark-mode .dropstart .dropdown-toggle::after {14076display: none;14077}14078.dark-mode .dropstart .dropdown-toggle::before {14079display: inline-block;14080margin-right: 0.255em;14081vertical-align: 0.255em;14082content: "";14083border-top: 0.3em solid transparent;14084border-right: 0.3em solid;14085border-bottom: 0.3em solid transparent;14086}14087.dark-mode .dropstart .dropdown-toggle:empty::after {14088margin-left: 0;14089}14090.dark-mode .dropstart .dropdown-toggle::before {14091vertical-align: 0;14092}14093.dark-mode .dropdown-divider {14094height: 0;14095margin: 0.5rem 0;14096overflow: hidden;14097border-top: 1px solid rgba(0, 0, 0, 0.15);14098}14099.dark-mode .dropdown-item {14100display: block;14101width: 100%;14102padding: 0.25rem 1rem;14103clear: both;14104font-weight: 400;14105color: #212529;14106text-align: inherit;14107text-decoration: none;14108white-space: nowrap;14109background-color: transparent;14110border: 0;14111}14112.dark-mode .dropdown-item:hover, .dark-mode .dropdown-item:focus {14113color: #1e2125;14114background-color: #e9ecef;14115background-image: var(--bs-gradient);14116}14117.dark-mode .dropdown-item.active, .dark-mode .dropdown-item:active {14118color: #fff;14119text-decoration: none;14120background-color: #a1a9bd;14121background-image: var(--bs-gradient);14122}14123.dark-mode .dropdown-item.disabled, .dark-mode .dropdown-item:disabled {14124color: #adb5bd;14125pointer-events: none;14126background-color: transparent;14127background-image: none;14128}14129.dark-mode .dropdown-menu.show {14130display: block;14131}14132.dark-mode .dropdown-header {14133display: block;14134padding: 0.5rem 1rem;14135margin-bottom: 0;14136font-size: 0.875rem;14137color: #6c757d;14138white-space: nowrap;14139}14140.dark-mode .dropdown-item-text {14141display: block;14142padding: 0.25rem 1rem;14143color: #212529;14144}14145.dark-mode .dropdown-menu-dark {14146color: #dee2e6;14147background-color: #343a40;14148border-color: rgba(0, 0, 0, 0.15);14149}14150.dark-mode .dropdown-menu-dark .dropdown-item {14151color: #dee2e6;14152}14153.dark-mode .dropdown-menu-dark .dropdown-item:hover, .dark-mode .dropdown-menu-dark .dropdown-item:focus {14154color: #fff;14155background-color: rgba(255, 255, 255, 0.15);14156background-image: var(--bs-gradient);14157}14158.dark-mode .dropdown-menu-dark .dropdown-item.active, .dark-mode .dropdown-menu-dark .dropdown-item:active {14159color: #fff;14160background-color: #a1a9bd;14161background-image: var(--bs-gradient);14162}14163.dark-mode .dropdown-menu-dark .dropdown-item.disabled, .dark-mode .dropdown-menu-dark .dropdown-item:disabled {14164color: #adb5bd;14165}14166.dark-mode .dropdown-menu-dark .dropdown-divider {14167border-color: rgba(0, 0, 0, 0.15);14168}14169.dark-mode .dropdown-menu-dark .dropdown-item-text {14170color: #dee2e6;14171}14172.dark-mode .dropdown-menu-dark .dropdown-header {14173color: #adb5bd;14174}14175.dark-mode .btn-group,14176.dark-mode .btn-group-vertical {14177position: relative;14178display: inline-flex;14179vertical-align: middle;14180}14181.dark-mode .btn-group > .btn,14182.dark-mode .btn-group-vertical > .btn {14183position: relative;14184flex: 1 1 auto;14185}14186.dark-mode .btn-group > .btn-check:checked + .btn,14187.dark-mode .btn-group > .btn-check:focus + .btn,14188.dark-mode .btn-group > .btn:hover,14189.dark-mode .btn-group > .btn:focus,14190.dark-mode .btn-group > .btn:active,14191.dark-mode .btn-group > .btn.active,14192.dark-mode .btn-group-vertical > .btn-check:checked + .btn,14193.dark-mode .btn-group-vertical > .btn-check:focus + .btn,14194.dark-mode .btn-group-vertical > .btn:hover,14195.dark-mode .btn-group-vertical > .btn:focus,14196.dark-mode .btn-group-vertical > .btn:active,14197.dark-mode .btn-group-vertical > .btn.active {14198z-index: 1;14199}14200.dark-mode .btn-toolbar {14201display: flex;14202flex-wrap: wrap;14203justify-content: flex-start;14204}14205.dark-mode .btn-toolbar .input-group {14206width: auto;14207}14208.dark-mode .btn-group > .btn:not(:first-child),14209.dark-mode .btn-group > .btn-group:not(:first-child) {14210margin-left: -1px;14211}14212.dark-mode .btn-group > .btn:not(:last-child):not(.dropdown-toggle),14213.dark-mode .btn-group > .btn-group:not(:last-child) > .btn {14214border-top-right-radius: 0;14215border-bottom-right-radius: 0;14216}14217.dark-mode .btn-group > .btn:nth-child(n+3),14218.dark-mode .btn-group > :not(.btn-check) + .btn,14219.dark-mode .btn-group > .btn-group:not(:first-child) > .btn {14220border-top-left-radius: 0;14221border-bottom-left-radius: 0;14222}14223.dark-mode .dropdown-toggle-split {14224padding-right: 0.5625rem;14225padding-left: 0.5625rem;14226}14227.dark-mode .dropdown-toggle-split::after, .dropup .dark-mode .dropdown-toggle-split::after, .dropend .dark-mode .dropdown-toggle-split::after {14228margin-left: 0;14229}14230.dropstart .dark-mode .dropdown-toggle-split::before {14231margin-right: 0;14232}14233.dark-mode .btn-sm + .dropdown-toggle-split, .dark-mode .btn-group-sm > .btn + .dropdown-toggle-split {14234padding-right: 0.375rem;14235padding-left: 0.375rem;14236}14237.dark-mode .btn-lg + .dropdown-toggle-split, .dark-mode .btn-group-lg > .btn + .dropdown-toggle-split {14238padding-right: 0.75rem;14239padding-left: 0.75rem;14240}14241.dark-mode .btn-group-vertical {14242flex-direction: column;14243align-items: flex-start;14244justify-content: center;14245}14246.dark-mode .btn-group-vertical > .btn,14247.dark-mode .btn-group-vertical > .btn-group {14248width: 100%;14249}14250.dark-mode .btn-group-vertical > .btn:not(:first-child),14251.dark-mode .btn-group-vertical > .btn-group:not(:first-child) {14252margin-top: -1px;14253}14254.dark-mode .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),14255.dark-mode .btn-group-vertical > .btn-group:not(:last-child) > .btn {14256border-bottom-right-radius: 0;14257border-bottom-left-radius: 0;14258}14259.dark-mode .btn-group-vertical > .btn ~ .btn,14260.dark-mode .btn-group-vertical > .btn-group:not(:first-child) > .btn {14261border-top-left-radius: 0;14262border-top-right-radius: 0;14263}14264.dark-mode .nav {14265display: flex;14266flex-wrap: wrap;14267padding-left: 0;14268margin-bottom: 0;14269list-style: none;14270}14271.dark-mode .nav-link {14272display: block;14273padding: 0.5rem 1rem;14274color: #a1a9bd;14275text-decoration: none;14276transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;14277}14278@media (prefers-reduced-motion: reduce) {14279.dark-mode .nav-link {14280transition: none;14281}14282}14283.dark-mode .nav-link:hover, .dark-mode .nav-link:focus {14284color: #818797;14285}14286.dark-mode .nav-link.disabled {14287color: #6c757d;14288pointer-events: none;14289cursor: default;14290}14291.dark-mode .nav-tabs {14292border-bottom: 1px solid #dee2e6;14293}14294.dark-mode .nav-tabs .nav-link {14295margin-bottom: -1px;14296background: none;14297border: 1px solid transparent;14298border-top-left-radius: 0.25rem;14299border-top-right-radius: 0.25rem;14300}14301.dark-mode .nav-tabs .nav-link:hover, .dark-mode .nav-tabs .nav-link:focus {14302border-color: #e9ecef #e9ecef #dee2e6;14303isolation: isolate;14304}14305.dark-mode .nav-tabs .nav-link.disabled {14306color: #6c757d;14307background-color: transparent;14308border-color: transparent;14309}14310.dark-mode .nav-tabs .nav-link.active,14311.dark-mode .nav-tabs .nav-item.show .nav-link {14312color: #495057;14313background-color: #cfd8dc;14314border-color: #dee2e6 #dee2e6 #cfd8dc;14315}14316.dark-mode .nav-tabs .dropdown-menu {14317margin-top: -1px;14318border-top-left-radius: 0;14319border-top-right-radius: 0;14320}14321.dark-mode .nav-pills .nav-link {14322background: none;14323border: 0;14324border-radius: 0.25rem;14325}14326.dark-mode .nav-pills .nav-link.active,14327.dark-mode .nav-pills .show > .nav-link {14328color: #fff;14329background-color: #a1a9bd;14330background-image: var(--bs-gradient);14331}14332.dark-mode .nav-fill > .nav-link,14333.dark-mode .nav-fill .nav-item {14334flex: 1 1 auto;14335text-align: center;14336}14337.dark-mode .nav-justified > .nav-link,14338.dark-mode .nav-justified .nav-item {14339flex-basis: 0;14340flex-grow: 1;14341text-align: center;14342}14343.dark-mode .nav-fill .nav-item .nav-link,14344.dark-mode .nav-justified .nav-item .nav-link {14345width: 100%;14346}14347.dark-mode .tab-content > .tab-pane {14348display: none;14349}14350.dark-mode .tab-content > .active {14351display: block;14352}14353.dark-mode .navbar {14354position: relative;14355display: flex;14356flex-wrap: wrap;14357align-items: center;14358justify-content: space-between;14359padding-top: 0.5rem;14360padding-bottom: 0.5rem;14361background-image: var(--bs-gradient);14362}14363.dark-mode .navbar > .container,14364.dark-mode .navbar > .container-fluid,14365.dark-mode .navbar > .container-sm,14366.dark-mode .navbar > .container-md,14367.dark-mode .navbar > .container-lg,14368.dark-mode .navbar > .container-xl,14369.dark-mode .navbar > .container-xxl {14370display: flex;14371flex-wrap: inherit;14372align-items: center;14373justify-content: space-between;14374}14375.dark-mode .navbar-brand {14376padding-top: 0.3125rem;14377padding-bottom: 0.3125rem;14378margin-right: 1rem;14379font-size: 1.25rem;14380text-decoration: none;14381white-space: nowrap;14382}14383.dark-mode .navbar-nav {14384display: flex;14385flex-direction: column;14386padding-left: 0;14387margin-bottom: 0;14388list-style: none;14389}14390.dark-mode .navbar-nav .nav-link {14391padding-right: 0;14392padding-left: 0;14393}14394.dark-mode .navbar-nav .dropdown-menu {14395position: static;14396}14397.dark-mode .navbar-text {14398padding-top: 0.5rem;14399padding-bottom: 0.5rem;14400}14401.dark-mode .navbar-collapse {14402flex-basis: 100%;14403flex-grow: 1;14404align-items: center;14405}14406.dark-mode .navbar-toggler {14407padding: 0.25rem 0.75rem;14408font-size: 1.25rem;14409line-height: 1;14410background-color: transparent;14411border: 1px solid transparent;14412border-radius: 0.25rem;14413transition: box-shadow 0.15s ease-in-out;14414}14415@media (prefers-reduced-motion: reduce) {14416.dark-mode .navbar-toggler {14417transition: none;14418}14419}14420.dark-mode .navbar-toggler:hover {14421text-decoration: none;14422}14423.dark-mode .navbar-toggler:focus {14424text-decoration: none;14425outline: 0;14426box-shadow: 0 0 0 0.25rem;14427}14428.dark-mode .navbar-toggler-icon {14429display: inline-block;14430width: 1.5em;14431height: 1.5em;14432vertical-align: middle;14433background-repeat: no-repeat;14434background-position: center;14435background-size: 100%;14436}14437.dark-mode .navbar-nav-scroll {14438max-height: var(--bs-scroll-height, 75vh);14439overflow-y: auto;14440}14441@media (min-width: 576px) {14442.dark-mode .navbar-expand-sm {14443flex-wrap: nowrap;14444justify-content: flex-start;14445}14446.dark-mode .navbar-expand-sm .navbar-nav {14447flex-direction: row;14448}14449.dark-mode .navbar-expand-sm .navbar-nav .dropdown-menu {14450position: absolute;14451}14452.dark-mode .navbar-expand-sm .navbar-nav .nav-link {14453padding-right: 0.5rem;14454padding-left: 0.5rem;14455}14456.dark-mode .navbar-expand-sm .navbar-nav-scroll {14457overflow: visible;14458}14459.dark-mode .navbar-expand-sm .navbar-collapse {14460display: flex !important;14461flex-basis: auto;14462}14463.dark-mode .navbar-expand-sm .navbar-toggler {14464display: none;14465}14466.dark-mode .navbar-expand-sm .offcanvas-header {14467display: none;14468}14469.dark-mode .navbar-expand-sm .offcanvas {14470position: inherit;14471bottom: 0;14472z-index: 1000;14473flex-grow: 1;14474visibility: visible !important;14475background-color: transparent;14476border-right: 0;14477border-left: 0;14478transition: none;14479transform: none;14480}14481.dark-mode .navbar-expand-sm .offcanvas-top,14482.dark-mode .navbar-expand-sm .offcanvas-bottom {14483height: auto;14484border-top: 0;14485border-bottom: 0;14486}14487.dark-mode .navbar-expand-sm .offcanvas-body {14488display: flex;14489flex-grow: 0;14490padding: 0;14491overflow-y: visible;14492}14493}14494@media (min-width: 768px) {14495.dark-mode .navbar-expand-md {14496flex-wrap: nowrap;14497justify-content: flex-start;14498}14499.dark-mode .navbar-expand-md .navbar-nav {14500flex-direction: row;14501}14502.dark-mode .navbar-expand-md .navbar-nav .dropdown-menu {14503position: absolute;14504}14505.dark-mode .navbar-expand-md .navbar-nav .nav-link {14506padding-right: 0.5rem;14507padding-left: 0.5rem;14508}14509.dark-mode .navbar-expand-md .navbar-nav-scroll {14510overflow: visible;14511}14512.dark-mode .navbar-expand-md .navbar-collapse {14513display: flex !important;14514flex-basis: auto;14515}14516.dark-mode .navbar-expand-md .navbar-toggler {14517display: none;14518}14519.dark-mode .navbar-expand-md .offcanvas-header {14520display: none;14521}14522.dark-mode .navbar-expand-md .offcanvas {14523position: inherit;14524bottom: 0;14525z-index: 1000;14526flex-grow: 1;14527visibility: visible !important;14528background-color: transparent;14529border-right: 0;14530border-left: 0;14531transition: none;14532transform: none;14533}14534.dark-mode .navbar-expand-md .offcanvas-top,14535.dark-mode .navbar-expand-md .offcanvas-bottom {14536height: auto;14537border-top: 0;14538border-bottom: 0;14539}14540.dark-mode .navbar-expand-md .offcanvas-body {14541display: flex;14542flex-grow: 0;14543padding: 0;14544overflow-y: visible;14545}14546}14547@media (min-width: 992px) {14548.dark-mode .navbar-expand-lg {14549flex-wrap: nowrap;14550justify-content: flex-start;14551}14552.dark-mode .navbar-expand-lg .navbar-nav {14553flex-direction: row;14554}14555.dark-mode .navbar-expand-lg .navbar-nav .dropdown-menu {14556position: absolute;14557}14558.dark-mode .navbar-expand-lg .navbar-nav .nav-link {14559padding-right: 0.5rem;14560padding-left: 0.5rem;14561}14562.dark-mode .navbar-expand-lg .navbar-nav-scroll {14563overflow: visible;14564}14565.dark-mode .navbar-expand-lg .navbar-collapse {14566display: flex !important;14567flex-basis: auto;14568}14569.dark-mode .navbar-expand-lg .navbar-toggler {14570display: none;14571}14572.dark-mode .navbar-expand-lg .offcanvas-header {14573display: none;14574}14575.dark-mode .navbar-expand-lg .offcanvas {14576position: inherit;14577bottom: 0;14578z-index: 1000;14579flex-grow: 1;14580visibility: visible !important;14581background-color: transparent;14582border-right: 0;14583border-left: 0;14584transition: none;14585transform: none;14586}14587.dark-mode .navbar-expand-lg .offcanvas-top,14588.dark-mode .navbar-expand-lg .offcanvas-bottom {14589height: auto;14590border-top: 0;14591border-bottom: 0;14592}14593.dark-mode .navbar-expand-lg .offcanvas-body {14594display: flex;14595flex-grow: 0;14596padding: 0;14597overflow-y: visible;14598}14599}14600@media (min-width: 1200px) {14601.dark-mode .navbar-expand-xl {14602flex-wrap: nowrap;14603justify-content: flex-start;14604}14605.dark-mode .navbar-expand-xl .navbar-nav {14606flex-direction: row;14607}14608.dark-mode .navbar-expand-xl .navbar-nav .dropdown-menu {14609position: absolute;14610}14611.dark-mode .navbar-expand-xl .navbar-nav .nav-link {14612padding-right: 0.5rem;14613padding-left: 0.5rem;14614}14615.dark-mode .navbar-expand-xl .navbar-nav-scroll {14616overflow: visible;14617}14618.dark-mode .navbar-expand-xl .navbar-collapse {14619display: flex !important;14620flex-basis: auto;14621}14622.dark-mode .navbar-expand-xl .navbar-toggler {14623display: none;14624}14625.dark-mode .navbar-expand-xl .offcanvas-header {14626display: none;14627}14628.dark-mode .navbar-expand-xl .offcanvas {14629position: inherit;14630bottom: 0;14631z-index: 1000;14632flex-grow: 1;14633visibility: visible !important;14634background-color: transparent;14635border-right: 0;14636border-left: 0;14637transition: none;14638transform: none;14639}14640.dark-mode .navbar-expand-xl .offcanvas-top,14641.dark-mode .navbar-expand-xl .offcanvas-bottom {14642height: auto;14643border-top: 0;14644border-bottom: 0;14645}14646.dark-mode .navbar-expand-xl .offcanvas-body {14647display: flex;14648flex-grow: 0;14649padding: 0;14650overflow-y: visible;14651}14652}14653@media (min-width: 1400px) {14654.dark-mode .navbar-expand-xxl {14655flex-wrap: nowrap;14656justify-content: flex-start;14657}14658.dark-mode .navbar-expand-xxl .navbar-nav {14659flex-direction: row;14660}14661.dark-mode .navbar-expand-xxl .navbar-nav .dropdown-menu {14662position: absolute;14663}14664.dark-mode .navbar-expand-xxl .navbar-nav .nav-link {14665padding-right: 0.5rem;14666padding-left: 0.5rem;14667}14668.dark-mode .navbar-expand-xxl .navbar-nav-scroll {14669overflow: visible;14670}14671.dark-mode .navbar-expand-xxl .navbar-collapse {14672display: flex !important;14673flex-basis: auto;14674}14675.dark-mode .navbar-expand-xxl .navbar-toggler {14676display: none;14677}14678.dark-mode .navbar-expand-xxl .offcanvas-header {14679display: none;14680}14681.dark-mode .navbar-expand-xxl .offcanvas {14682position: inherit;14683bottom: 0;14684z-index: 1000;14685flex-grow: 1;14686visibility: visible !important;14687background-color: transparent;14688border-right: 0;14689border-left: 0;14690transition: none;14691transform: none;14692}14693.dark-mode .navbar-expand-xxl .offcanvas-top,14694.dark-mode .navbar-expand-xxl .offcanvas-bottom {14695height: auto;14696border-top: 0;14697border-bottom: 0;14698}14699.dark-mode .navbar-expand-xxl .offcanvas-body {14700display: flex;14701flex-grow: 0;14702padding: 0;14703overflow-y: visible;14704}14705}14706.dark-mode .navbar-expand {14707flex-wrap: nowrap;14708justify-content: flex-start;14709}14710.dark-mode .navbar-expand .navbar-nav {14711flex-direction: row;14712}14713.dark-mode .navbar-expand .navbar-nav .dropdown-menu {14714position: absolute;14715}14716.dark-mode .navbar-expand .navbar-nav .nav-link {14717padding-right: 0.5rem;14718padding-left: 0.5rem;14719}14720.dark-mode .navbar-expand .navbar-nav-scroll {14721overflow: visible;14722}14723.dark-mode .navbar-expand .navbar-collapse {14724display: flex !important;14725flex-basis: auto;14726}14727.dark-mode .navbar-expand .navbar-toggler {14728display: none;14729}14730.dark-mode .navbar-expand .offcanvas-header {14731display: none;14732}14733.dark-mode .navbar-expand .offcanvas {14734position: inherit;14735bottom: 0;14736z-index: 1000;14737flex-grow: 1;14738visibility: visible !important;14739background-color: transparent;14740border-right: 0;14741border-left: 0;14742transition: none;14743transform: none;14744}14745.dark-mode .navbar-expand .offcanvas-top,14746.dark-mode .navbar-expand .offcanvas-bottom {14747height: auto;14748border-top: 0;14749border-bottom: 0;14750}14751.dark-mode .navbar-expand .offcanvas-body {14752display: flex;14753flex-grow: 0;14754padding: 0;14755overflow-y: visible;14756}14757.dark-mode .navbar-light .navbar-brand {14758color: rgba(0, 0, 0, 0.9);14759}14760.dark-mode .navbar-light .navbar-brand:hover, .dark-mode .navbar-light .navbar-brand:focus {14761color: rgba(0, 0, 0, 0.9);14762}14763.dark-mode .navbar-light .navbar-nav .nav-link {14764color: rgba(0, 0, 0, 0.55);14765}14766.dark-mode .navbar-light .navbar-nav .nav-link:hover, .dark-mode .navbar-light .navbar-nav .nav-link:focus {14767color: rgba(0, 0, 0, 0.7);14768}14769.dark-mode .navbar-light .navbar-nav .nav-link.disabled {14770color: rgba(0, 0, 0, 0.3);14771}14772.dark-mode .navbar-light .navbar-nav .show > .nav-link,14773.dark-mode .navbar-light .navbar-nav .nav-link.active {14774color: rgba(0, 0, 0, 0.9);14775}14776.dark-mode .navbar-light .navbar-toggler {14777color: rgba(0, 0, 0, 0.55);14778border-color: rgba(0, 0, 0, 0.1);14779}14780.dark-mode .navbar-light .navbar-toggler-icon {14781background-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");14782}14783.dark-mode .navbar-light .navbar-text {14784color: rgba(0, 0, 0, 0.55);14785}14786.dark-mode .navbar-light .navbar-text a,14787.dark-mode .navbar-light .navbar-text a:hover,14788.dark-mode .navbar-light .navbar-text a:focus {14789color: rgba(0, 0, 0, 0.9);14790}14791.dark-mode .navbar-dark .navbar-brand {14792color: #fff;14793}14794.dark-mode .navbar-dark .navbar-brand:hover, .dark-mode .navbar-dark .navbar-brand:focus {14795color: #fff;14796}14797.dark-mode .navbar-dark .navbar-nav .nav-link {14798color: rgba(255, 255, 255, 0.55);14799}14800.dark-mode .navbar-dark .navbar-nav .nav-link:hover, .dark-mode .navbar-dark .navbar-nav .nav-link:focus {14801color: rgba(255, 255, 255, 0.75);14802}14803.dark-mode .navbar-dark .navbar-nav .nav-link.disabled {14804color: rgba(255, 255, 255, 0.25);14805}14806.dark-mode .navbar-dark .navbar-nav .show > .nav-link,14807.dark-mode .navbar-dark .navbar-nav .nav-link.active {14808color: #fff;14809}14810.dark-mode .navbar-dark .navbar-toggler {14811color: rgba(255, 255, 255, 0.55);14812border-color: rgba(255, 255, 255, 0.1);14813}14814.dark-mode .navbar-dark .navbar-toggler-icon {14815background-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");14816}14817.dark-mode .navbar-dark .navbar-text {14818color: rgba(255, 255, 255, 0.55);14819}14820.dark-mode .navbar-dark .navbar-text a,14821.dark-mode .navbar-dark .navbar-text a:hover,14822.dark-mode .navbar-dark .navbar-text a:focus {14823color: #fff;14824}14825.dark-mode .card {14826position: relative;14827display: flex;14828flex-direction: column;14829min-width: 0;14830word-wrap: break-word;14831background-color: #fff;14832background-clip: border-box;14833border: 1px solid rgba(0, 0, 0, 0.125);14834border-radius: 0.25rem;14835}14836.dark-mode .card > hr {14837margin-right: 0;14838margin-left: 0;14839}14840.dark-mode .card > .list-group {14841border-top: inherit;14842border-bottom: inherit;14843}14844.dark-mode .card > .list-group:first-child {14845border-top-width: 0;14846border-top-left-radius: calc(0.25rem - 1px);14847border-top-right-radius: calc(0.25rem - 1px);14848}14849.dark-mode .card > .list-group:last-child {14850border-bottom-width: 0;14851border-bottom-right-radius: calc(0.25rem - 1px);14852border-bottom-left-radius: calc(0.25rem - 1px);14853}14854.dark-mode .card > .card-header + .list-group,14855.dark-mode .card > .list-group + .card-footer {14856border-top: 0;14857}14858.dark-mode .card-body {14859flex: 1 1 auto;14860padding: 1rem 1rem;14861}14862.dark-mode .card-title {14863margin-bottom: 0.5rem;14864}14865.dark-mode .card-subtitle {14866margin-top: -0.25rem;14867margin-bottom: 0;14868}14869.dark-mode .card-text:last-child {14870margin-bottom: 0;14871}14872.dark-mode .card-link + .card-link {14873margin-left: 1rem;14874}14875.dark-mode .card-header {14876padding: 0.5rem 1rem;14877margin-bottom: 0;14878background-color: rgba(0, 0, 0, 0.03);14879border-bottom: 1px solid rgba(0, 0, 0, 0.125);14880}14881.dark-mode .card-header:first-child {14882border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;14883}14884.dark-mode .card-footer {14885padding: 0.5rem 1rem;14886background-color: rgba(0, 0, 0, 0.03);14887border-top: 1px solid rgba(0, 0, 0, 0.125);14888}14889.dark-mode .card-footer:last-child {14890border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);14891}14892.dark-mode .card-header-tabs {14893margin-right: -0.5rem;14894margin-bottom: -0.5rem;14895margin-left: -0.5rem;14896border-bottom: 0;14897}14898.dark-mode .card-header-tabs .nav-link.active {14899background-color: #fff;14900border-bottom-color: #fff;14901}14902.dark-mode .card-header-pills {14903margin-right: -0.5rem;14904margin-left: -0.5rem;14905}14906.dark-mode .card-img-overlay {14907position: absolute;14908top: 0;14909right: 0;14910bottom: 0;14911left: 0;14912padding: 1rem;14913border-radius: calc(0.25rem - 1px);14914}14915.dark-mode .card-img,14916.dark-mode .card-img-top,14917.dark-mode .card-img-bottom {14918width: 100%;14919}14920.dark-mode .card-img,14921.dark-mode .card-img-top {14922border-top-left-radius: calc(0.25rem - 1px);14923border-top-right-radius: calc(0.25rem - 1px);14924}14925.dark-mode .card-img,14926.dark-mode .card-img-bottom {14927border-bottom-right-radius: calc(0.25rem - 1px);14928border-bottom-left-radius: calc(0.25rem - 1px);14929}14930.dark-mode .card-group > .card {14931margin-bottom: 0.75rem;14932}14933@media (min-width: 576px) {14934.dark-mode .card-group {14935display: flex;14936flex-flow: row wrap;14937}14938.dark-mode .card-group > .card {14939flex: 1 0 0%;14940margin-bottom: 0;14941}14942.dark-mode .card-group > .card + .card {14943margin-left: 0;14944border-left: 0;14945}14946.dark-mode .card-group > .card:not(:last-child) {14947border-top-right-radius: 0;14948border-bottom-right-radius: 0;14949}14950.dark-mode .card-group > .card:not(:last-child) .card-img-top,14951.dark-mode .card-group > .card:not(:last-child) .card-header {14952border-top-right-radius: 0;14953}14954.dark-mode .card-group > .card:not(:last-child) .card-img-bottom,14955.dark-mode .card-group > .card:not(:last-child) .card-footer {14956border-bottom-right-radius: 0;14957}14958.dark-mode .card-group > .card:not(:first-child) {14959border-top-left-radius: 0;14960border-bottom-left-radius: 0;14961}14962.dark-mode .card-group > .card:not(:first-child) .card-img-top,14963.dark-mode .card-group > .card:not(:first-child) .card-header {14964border-top-left-radius: 0;14965}14966.dark-mode .card-group > .card:not(:first-child) .card-img-bottom,14967.dark-mode .card-group > .card:not(:first-child) .card-footer {14968border-bottom-left-radius: 0;14969}14970}14971.dark-mode .accordion-button {14972position: relative;14973display: flex;14974align-items: center;14975width: 100%;14976padding: 1rem 1.25rem;14977font-size: 1rem;14978color: #212529;14979text-align: left;14980background-color: #cfd8dc;14981border: 0;14982border-radius: 0;14983overflow-anchor: none;14984transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;14985}14986@media (prefers-reduced-motion: reduce) {14987.dark-mode .accordion-button {14988transition: none;14989}14990}14991.dark-mode .accordion-button:not(.collapsed) {14992color: #9198aa;14993background-color: #f6f6f8;14994box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);14995}14996.dark-mode .accordion-button:not(.collapsed)::after {14997background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239198aa'%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");14998transform: rotate(-180deg);14999}15000.dark-mode .accordion-button::after {15001flex-shrink: 0;15002width: 1.25rem;15003height: 1.25rem;15004margin-left: auto;15005content: "";15006background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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");15007background-repeat: no-repeat;15008background-size: 1.25rem;15009transition: transform 0.2s ease-in-out;15010}15011@media (prefers-reduced-motion: reduce) {15012.dark-mode .accordion-button::after {15013transition: none;15014}15015}15016.dark-mode .accordion-button:hover {15017z-index: 2;15018}15019.dark-mode .accordion-button:focus {15020z-index: 3;15021border-color: #d0d4de;15022outline: 0;15023box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);15024}15025.dark-mode .accordion-header {15026margin-bottom: 0;15027}15028.dark-mode .accordion-item {15029background-color: #cfd8dc;15030border: 1px solid rgba(0, 0, 0, 0.125);15031}15032.dark-mode .accordion-item:first-of-type {15033border-top-left-radius: 0.25rem;15034border-top-right-radius: 0.25rem;15035}15036.dark-mode .accordion-item:first-of-type .accordion-button {15037border-top-left-radius: calc(0.25rem - 1px);15038border-top-right-radius: calc(0.25rem - 1px);15039}15040.dark-mode .accordion-item:not(:first-of-type) {15041border-top: 0;15042}15043.dark-mode .accordion-item:last-of-type {15044border-bottom-right-radius: 0.25rem;15045border-bottom-left-radius: 0.25rem;15046}15047.dark-mode .accordion-item:last-of-type .accordion-button.collapsed {15048border-bottom-right-radius: calc(0.25rem - 1px);15049border-bottom-left-radius: calc(0.25rem - 1px);15050}15051.dark-mode .accordion-item:last-of-type .accordion-collapse {15052border-bottom-right-radius: 0.25rem;15053border-bottom-left-radius: 0.25rem;15054}15055.dark-mode .accordion-body {15056padding: 1rem 1.25rem;15057}15058.dark-mode .accordion-flush .accordion-collapse {15059border-width: 0;15060}15061.dark-mode .accordion-flush .accordion-item {15062border-right: 0;15063border-left: 0;15064border-radius: 0;15065}15066.dark-mode .accordion-flush .accordion-item:first-child {15067border-top: 0;15068}15069.dark-mode .accordion-flush .accordion-item:last-child {15070border-bottom: 0;15071}15072.dark-mode .accordion-flush .accordion-item .accordion-button {15073border-radius: 0;15074}15075.dark-mode .breadcrumb {15076display: flex;15077flex-wrap: wrap;15078padding: 0 0;15079margin-bottom: 1rem;15080list-style: none;15081}15082.dark-mode .breadcrumb-item + .breadcrumb-item {15083padding-left: 0.5rem;15084}15085.dark-mode .breadcrumb-item + .breadcrumb-item::before {15086float: left;15087padding-right: 0.5rem;15088color: #6c757d;15089content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;15090}15091.dark-mode .breadcrumb-item.active {15092color: #6c757d;15093}15094.dark-mode .pagination {15095display: flex;15096padding-left: 0;15097list-style: none;15098}15099.dark-mode .page-link {15100position: relative;15101display: block;15102color: #a1a9bd;15103text-decoration: none;15104background-color: #fff;15105border: 1px solid #dee2e6;15106transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;15107}15108@media (prefers-reduced-motion: reduce) {15109.dark-mode .page-link {15110transition: none;15111}15112}15113.dark-mode .page-link:hover {15114z-index: 2;15115color: #818797;15116background-color: #e9ecef;15117border-color: #dee2e6;15118}15119.dark-mode .page-link:focus {15120z-index: 3;15121color: #818797;15122background-color: #e9ecef;15123outline: 0;15124box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);15125}15126.dark-mode .page-item:not(:first-child) .page-link {15127margin-left: -1px;15128}15129.dark-mode .page-item.active .page-link {15130z-index: 3;15131color: #fff;15132background-color: #a1a9bd;15133background-image: var(--bs-gradient);15134border-color: #a1a9bd;15135}15136.dark-mode .page-item.disabled .page-link {15137color: #6c757d;15138pointer-events: none;15139background-color: #fff;15140border-color: #dee2e6;15141}15142.dark-mode .page-link {15143padding: 0.375rem 0.75rem;15144}15145.dark-mode .page-item:first-child .page-link {15146border-top-left-radius: 0.25rem;15147border-bottom-left-radius: 0.25rem;15148}15149.dark-mode .page-item:last-child .page-link {15150border-top-right-radius: 0.25rem;15151border-bottom-right-radius: 0.25rem;15152}15153.dark-mode .pagination-lg .page-link {15154padding: 0.75rem 1.5rem;15155font-size: 1.25rem;15156}15157.dark-mode .pagination-lg .page-item:first-child .page-link {15158border-top-left-radius: 0.3rem;15159border-bottom-left-radius: 0.3rem;15160}15161.dark-mode .pagination-lg .page-item:last-child .page-link {15162border-top-right-radius: 0.3rem;15163border-bottom-right-radius: 0.3rem;15164}15165.dark-mode .pagination-sm .page-link {15166padding: 0.25rem 0.5rem;15167font-size: 0.875rem;15168}15169.dark-mode .pagination-sm .page-item:first-child .page-link {15170border-top-left-radius: 0.2rem;15171border-bottom-left-radius: 0.2rem;15172}15173.dark-mode .pagination-sm .page-item:last-child .page-link {15174border-top-right-radius: 0.2rem;15175border-bottom-right-radius: 0.2rem;15176}15177.dark-mode .badge {15178display: inline-block;15179padding: 0.35em 0.65em;15180font-size: 0.75em;15181font-weight: 700;15182line-height: 1;15183color: #fff;15184text-align: center;15185white-space: nowrap;15186vertical-align: baseline;15187border-radius: 0.25rem;15188background-image: var(--bs-gradient);15189}15190.dark-mode .badge:empty {15191display: none;15192}15193.dark-mode .btn .badge {15194position: relative;15195top: -1px;15196}15197.dark-mode .alert {15198position: relative;15199padding: 1rem 1rem;15200margin-bottom: 1rem;15201border: 1px solid transparent;15202border-radius: 0.25rem;15203}15204.dark-mode .alert-heading {15205color: inherit;15206}15207.dark-mode .alert-link {15208font-weight: 700;15209}15210.dark-mode .alert-dismissible {15211padding-right: 3rem;15212}15213.dark-mode .alert-dismissible .btn-close {15214position: absolute;15215top: 0;15216right: 0;15217z-index: 2;15218padding: 1.25rem 1rem;15219}15220.dark-mode .alert-primary {15221color: #374a65;15222background-color: #dee5ee;15223background-image: var(--bs-gradient);15224border-color: #ced7e5;15225}15226.dark-mode .alert-primary .alert-link {15227color: #2c3b51;15228}15229.dark-mode .alert-secondary {15230color: #0c4128;15231background-color: #d0e2d9;15232background-image: var(--bs-gradient);15233border-color: #b9d3c7;15234}15235.dark-mode .alert-secondary .alert-link {15236color: #0a3420;15237}15238@keyframes progress-bar-stripes {152390% {15240background-position-x: 1rem;15241}15242}15243.dark-mode .progress {15244display: flex;15245height: 1rem;15246overflow: hidden;15247font-size: 0.75rem;15248background-color: #e9ecef;15249border-radius: 0.25rem;15250}15251.dark-mode .progress-bar {15252display: flex;15253flex-direction: column;15254justify-content: center;15255overflow: hidden;15256color: #fff;15257text-align: center;15258white-space: nowrap;15259background-color: #a1a9bd;15260transition: width 0.6s ease;15261}15262@media (prefers-reduced-motion: reduce) {15263.dark-mode .progress-bar {15264transition: none;15265}15266}15267.dark-mode .progress-bar-striped {15268background-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);15269background-size: 1rem 1rem;15270}15271.dark-mode .progress-bar-animated {15272animation: 1s linear infinite progress-bar-stripes;15273}15274@media (prefers-reduced-motion: reduce) {15275.dark-mode .progress-bar-animated {15276animation: none;15277}15278}15279.dark-mode .list-group {15280display: flex;15281flex-direction: column;15282padding-left: 0;15283margin-bottom: 0;15284border-radius: 0.25rem;15285}15286.dark-mode .list-group-numbered {15287list-style-type: none;15288counter-reset: section;15289}15290.dark-mode .list-group-numbered > li::before {15291content: counters(section, ".") ". ";15292counter-increment: section;15293}15294.dark-mode .list-group-item-action {15295width: 100%;15296color: #495057;15297text-align: inherit;15298}15299.dark-mode .list-group-item-action:hover, .dark-mode .list-group-item-action:focus {15300z-index: 1;15301color: #495057;15302text-decoration: none;15303background-color: #f8f9fa;15304}15305.dark-mode .list-group-item-action:active {15306color: #212529;15307background-color: #e9ecef;15308}15309.dark-mode .list-group-item {15310position: relative;15311display: block;15312padding: 0.5rem 1rem;15313color: #212529;15314text-decoration: none;15315background-color: #fff;15316border: 1px solid rgba(0, 0, 0, 0.125);15317}15318.dark-mode .list-group-item:first-child {15319border-top-left-radius: inherit;15320border-top-right-radius: inherit;15321}15322.dark-mode .list-group-item:last-child {15323border-bottom-right-radius: inherit;15324border-bottom-left-radius: inherit;15325}15326.dark-mode .list-group-item.disabled, .dark-mode .list-group-item:disabled {15327color: #6c757d;15328pointer-events: none;15329background-color: #fff;15330}15331.dark-mode .list-group-item.active {15332z-index: 2;15333color: #fff;15334background-color: #a1a9bd;15335border-color: #a1a9bd;15336}15337.dark-mode .list-group-item + .dark-mode .list-group-item {15338border-top-width: 0;15339}15340.dark-mode .list-group-item + .dark-mode .list-group-item.active {15341margin-top: -1px;15342border-top-width: 1px;15343}15344.dark-mode .list-group-horizontal {15345flex-direction: row;15346}15347.dark-mode .list-group-horizontal > .list-group-item:first-child {15348border-bottom-left-radius: 0.25rem;15349border-top-right-radius: 0;15350}15351.dark-mode .list-group-horizontal > .list-group-item:last-child {15352border-top-right-radius: 0.25rem;15353border-bottom-left-radius: 0;15354}15355.dark-mode .list-group-horizontal > .list-group-item.active {15356margin-top: 0;15357}15358.dark-mode .list-group-horizontal > .list-group-item + .list-group-item {15359border-top-width: 1px;15360border-left-width: 0;15361}15362.dark-mode .list-group-horizontal > .list-group-item + .list-group-item.active {15363margin-left: -1px;15364border-left-width: 1px;15365}15366@media (min-width: 576px) {15367.dark-mode .list-group-horizontal-sm {15368flex-direction: row;15369}15370.dark-mode .list-group-horizontal-sm > .list-group-item:first-child {15371border-bottom-left-radius: 0.25rem;15372border-top-right-radius: 0;15373}15374.dark-mode .list-group-horizontal-sm > .list-group-item:last-child {15375border-top-right-radius: 0.25rem;15376border-bottom-left-radius: 0;15377}15378.dark-mode .list-group-horizontal-sm > .list-group-item.active {15379margin-top: 0;15380}15381.dark-mode .list-group-horizontal-sm > .list-group-item + .list-group-item {15382border-top-width: 1px;15383border-left-width: 0;15384}15385.dark-mode .list-group-horizontal-sm > .list-group-item + .list-group-item.active {15386margin-left: -1px;15387border-left-width: 1px;15388}15389}15390@media (min-width: 768px) {15391.dark-mode .list-group-horizontal-md {15392flex-direction: row;15393}15394.dark-mode .list-group-horizontal-md > .list-group-item:first-child {15395border-bottom-left-radius: 0.25rem;15396border-top-right-radius: 0;15397}15398.dark-mode .list-group-horizontal-md > .list-group-item:last-child {15399border-top-right-radius: 0.25rem;15400border-bottom-left-radius: 0;15401}15402.dark-mode .list-group-horizontal-md > .list-group-item.active {15403margin-top: 0;15404}15405.dark-mode .list-group-horizontal-md > .list-group-item + .list-group-item {15406border-top-width: 1px;15407border-left-width: 0;15408}15409.dark-mode .list-group-horizontal-md > .list-group-item + .list-group-item.active {15410margin-left: -1px;15411border-left-width: 1px;15412}15413}15414@media (min-width: 992px) {15415.dark-mode .list-group-horizontal-lg {15416flex-direction: row;15417}15418.dark-mode .list-group-horizontal-lg > .list-group-item:first-child {15419border-bottom-left-radius: 0.25rem;15420border-top-right-radius: 0;15421}15422.dark-mode .list-group-horizontal-lg > .list-group-item:last-child {15423border-top-right-radius: 0.25rem;15424border-bottom-left-radius: 0;15425}15426.dark-mode .list-group-horizontal-lg > .list-group-item.active {15427margin-top: 0;15428}15429.dark-mode .list-group-horizontal-lg > .list-group-item + .list-group-item {15430border-top-width: 1px;15431border-left-width: 0;15432}15433.dark-mode .list-group-horizontal-lg > .list-group-item + .list-group-item.active {15434margin-left: -1px;15435border-left-width: 1px;15436}15437}15438@media (min-width: 1200px) {15439.dark-mode .list-group-horizontal-xl {15440flex-direction: row;15441}15442.dark-mode .list-group-horizontal-xl > .list-group-item:first-child {15443border-bottom-left-radius: 0.25rem;15444border-top-right-radius: 0;15445}15446.dark-mode .list-group-horizontal-xl > .list-group-item:last-child {15447border-top-right-radius: 0.25rem;15448border-bottom-left-radius: 0;15449}15450.dark-mode .list-group-horizontal-xl > .list-group-item.active {15451margin-top: 0;15452}15453.dark-mode .list-group-horizontal-xl > .list-group-item + .list-group-item {15454border-top-width: 1px;15455border-left-width: 0;15456}15457.dark-mode .list-group-horizontal-xl > .list-group-item + .list-group-item.active {15458margin-left: -1px;15459border-left-width: 1px;15460}15461}15462@media (min-width: 1400px) {15463.dark-mode .list-group-horizontal-xxl {15464flex-direction: row;15465}15466.dark-mode .list-group-horizontal-xxl > .list-group-item:first-child {15467border-bottom-left-radius: 0.25rem;15468border-top-right-radius: 0;15469}15470.dark-mode .list-group-horizontal-xxl > .list-group-item:last-child {15471border-top-right-radius: 0.25rem;15472border-bottom-left-radius: 0;15473}15474.dark-mode .list-group-horizontal-xxl > .list-group-item.active {15475margin-top: 0;15476}15477.dark-mode .list-group-horizontal-xxl > .list-group-item + .list-group-item {15478border-top-width: 1px;15479border-left-width: 0;15480}15481.dark-mode .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {15482margin-left: -1px;15483border-left-width: 1px;15484}15485}15486.dark-mode .list-group-flush {15487border-radius: 0;15488}15489.dark-mode .list-group-flush > .list-group-item {15490border-width: 0 0 1px;15491}15492.dark-mode .list-group-flush > .list-group-item:last-child {15493border-bottom-width: 0;15494}15495.dark-mode .list-group-item-primary {15496color: #374a65;15497background-color: #dee5ee;15498}15499.dark-mode .list-group-item-primary.list-group-item-action:hover, .dark-mode .list-group-item-primary.list-group-item-action:focus {15500color: #374a65;15501background-color: #c8ced6;15502}15503.dark-mode .list-group-item-primary.list-group-item-action.active {15504color: #fff;15505background-color: #374a65;15506border-color: #374a65;15507}15508.dark-mode .list-group-item-secondary {15509color: #0c4128;15510background-color: #d0e2d9;15511}15512.dark-mode .list-group-item-secondary.list-group-item-action:hover, .dark-mode .list-group-item-secondary.list-group-item-action:focus {15513color: #0c4128;15514background-color: #bbcbc3;15515}15516.dark-mode .list-group-item-secondary.list-group-item-action.active {15517color: #fff;15518background-color: #0c4128;15519border-color: #0c4128;15520}15521.dark-mode .btn-close {15522box-sizing: content-box;15523width: 1em;15524height: 1em;15525padding: 0.25em 0.25em;15526color: #000;15527background: transparent 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;15528border: 0;15529border-radius: 0.25rem;15530opacity: 0.5;15531}15532.dark-mode .btn-close:hover {15533color: #000;15534text-decoration: none;15535opacity: 0.75;15536}15537.dark-mode .btn-close:focus {15538outline: 0;15539box-shadow: 0 0 0 0.25rem rgba(161, 169, 189, 0.25);15540opacity: 1;15541}15542.dark-mode .btn-close:disabled, .dark-mode .btn-close.disabled {15543pointer-events: none;15544user-select: none;15545opacity: 0.25;15546}15547.dark-mode .btn-close-white {15548filter: invert(1) grayscale(100%) brightness(200%);15549}15550.dark-mode .toast {15551width: 350px;15552max-width: 100%;15553font-size: 0.875rem;15554pointer-events: auto;15555background-color: rgba(255, 255, 255, 0.85);15556background-clip: padding-box;15557border: 1px solid rgba(0, 0, 0, 0.1);15558box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);15559border-radius: 0.25rem;15560}15561.dark-mode .toast.showing {15562opacity: 0;15563}15564.dark-mode .toast:not(.show) {15565display: none;15566}15567.dark-mode .toast-container {15568width: max-content;15569max-width: 100%;15570pointer-events: none;15571}15572.dark-mode .toast-container > :not(:last-child) {15573margin-bottom: 0.75rem;15574}15575.dark-mode .toast-header {15576display: flex;15577align-items: center;15578padding: 0.5rem 0.75rem;15579color: #6c757d;15580background-color: rgba(255, 255, 255, 0.85);15581background-clip: padding-box;15582border-bottom: 1px solid rgba(0, 0, 0, 0.05);15583border-top-left-radius: calc(0.25rem - 1px);15584border-top-right-radius: calc(0.25rem - 1px);15585}15586.dark-mode .toast-header .btn-close {15587margin-right: -0.375rem;15588margin-left: 0.75rem;15589}15590.dark-mode .toast-body {15591padding: 0.75rem;15592word-wrap: break-word;15593}15594.dark-mode .modal {15595position: fixed;15596top: 0;15597left: 0;15598z-index: 1055;15599display: none;15600width: 100%;15601height: 100%;15602overflow-x: hidden;15603overflow-y: auto;15604outline: 0;15605}15606.dark-mode .modal-dialog {15607position: relative;15608width: auto;15609margin: 0.5rem;15610pointer-events: none;15611}15612.modal.fade .dark-mode .modal-dialog {15613transition: transform 0.3s ease-out;15614transform: translate(0, -50px);15615}15616@media (prefers-reduced-motion: reduce) {15617.modal.fade .dark-mode .modal-dialog {15618transition: none;15619}15620}15621.modal.show .dark-mode .modal-dialog {15622transform: none;15623}15624.modal.modal-static .dark-mode .modal-dialog {15625transform: scale(1.02);15626}15627.dark-mode .modal-dialog-scrollable {15628height: calc(100% - 1rem);15629}15630.dark-mode .modal-dialog-scrollable .modal-content {15631max-height: 100%;15632overflow: hidden;15633}15634.dark-mode .modal-dialog-scrollable .modal-body {15635overflow-y: auto;15636}15637.dark-mode .modal-dialog-centered {15638display: flex;15639align-items: center;15640min-height: calc(100% - 1rem);15641}15642.dark-mode .modal-content {15643position: relative;15644display: flex;15645flex-direction: column;15646width: 100%;15647pointer-events: auto;15648background-color: #fff;15649background-clip: padding-box;15650border: 1px solid rgba(0, 0, 0, 0.2);15651border-radius: 0.3rem;15652outline: 0;15653}15654.dark-mode .modal-backdrop {15655position: fixed;15656top: 0;15657left: 0;15658z-index: 1050;15659width: 100vw;15660height: 100vh;15661background-color: #000;15662}15663.dark-mode .modal-backdrop.fade {15664opacity: 0;15665}15666.dark-mode .modal-backdrop.show {15667opacity: 0.5;15668}15669.dark-mode .modal-header {15670display: flex;15671flex-shrink: 0;15672align-items: center;15673justify-content: space-between;15674padding: 1rem 1rem;15675border-bottom: 1px solid #dee2e6;15676border-top-left-radius: calc(0.3rem - 1px);15677border-top-right-radius: calc(0.3rem - 1px);15678}15679.dark-mode .modal-header .btn-close {15680padding: 0.5rem 0.5rem;15681margin: -0.5rem -0.5rem -0.5rem auto;15682}15683.dark-mode .modal-title {15684margin-bottom: 0;15685line-height: 1.5;15686}15687.dark-mode .modal-body {15688position: relative;15689flex: 1 1 auto;15690padding: 1rem;15691}15692.dark-mode .modal-footer {15693display: flex;15694flex-wrap: wrap;15695flex-shrink: 0;15696align-items: center;15697justify-content: flex-end;15698padding: 0.75rem;15699border-top: 1px solid #dee2e6;15700border-bottom-right-radius: calc(0.3rem - 1px);15701border-bottom-left-radius: calc(0.3rem - 1px);15702}15703.dark-mode .modal-footer > * {15704margin: 0.25rem;15705}15706@media (min-width: 576px) {15707.dark-mode .modal-dialog {15708max-width: 500px;15709margin: 1.75rem auto;15710}15711.dark-mode .modal-dialog-scrollable {15712height: calc(100% - 3.5rem);15713}15714.dark-mode .modal-dialog-centered {15715min-height: calc(100% - 3.5rem);15716}15717.dark-mode .modal-sm {15718max-width: 300px;15719}15720}15721@media (min-width: 992px) {15722.dark-mode .modal-lg,15723.dark-mode .modal-xl {15724max-width: 800px;15725}15726}15727@media (min-width: 1200px) {15728.dark-mode .modal-xl {15729max-width: 1140px;15730}15731}15732.dark-mode .modal-fullscreen {15733width: 100vw;15734max-width: none;15735height: 100%;15736margin: 0;15737}15738.dark-mode .modal-fullscreen .modal-content {15739height: 100%;15740border: 0;15741border-radius: 0;15742}15743.dark-mode .modal-fullscreen .modal-header {15744border-radius: 0;15745}15746.dark-mode .modal-fullscreen .modal-body {15747overflow-y: auto;15748}15749.dark-mode .modal-fullscreen .modal-footer {15750border-radius: 0;15751}15752@media (max-width: 575.98px) {15753.dark-mode .modal-fullscreen-sm-down {15754width: 100vw;15755max-width: none;15756height: 100%;15757margin: 0;15758}15759.dark-mode .modal-fullscreen-sm-down .modal-content {15760height: 100%;15761border: 0;15762border-radius: 0;15763}15764.dark-mode .modal-fullscreen-sm-down .modal-header {15765border-radius: 0;15766}15767.dark-mode .modal-fullscreen-sm-down .modal-body {15768overflow-y: auto;15769}15770.dark-mode .modal-fullscreen-sm-down .modal-footer {15771border-radius: 0;15772}15773}15774@media (max-width: 767.98px) {15775.dark-mode .modal-fullscreen-md-down {15776width: 100vw;15777max-width: none;15778height: 100%;15779margin: 0;15780}15781.dark-mode .modal-fullscreen-md-down .modal-content {15782height: 100%;15783border: 0;15784border-radius: 0;15785}15786.dark-mode .modal-fullscreen-md-down .modal-header {15787border-radius: 0;15788}15789.dark-mode .modal-fullscreen-md-down .modal-body {15790overflow-y: auto;15791}15792.dark-mode .modal-fullscreen-md-down .modal-footer {15793border-radius: 0;15794}15795}15796@media (max-width: 991.98px) {15797.dark-mode .modal-fullscreen-lg-down {15798width: 100vw;15799max-width: none;15800height: 100%;15801margin: 0;15802}15803.dark-mode .modal-fullscreen-lg-down .modal-content {15804height: 100%;15805border: 0;15806border-radius: 0;15807}15808.dark-mode .modal-fullscreen-lg-down .modal-header {15809border-radius: 0;15810}15811.dark-mode .modal-fullscreen-lg-down .modal-body {15812overflow-y: auto;15813}15814.dark-mode .modal-fullscreen-lg-down .modal-footer {15815border-radius: 0;15816}15817}15818@media (max-width: 1199.98px) {15819.dark-mode .modal-fullscreen-xl-down {15820width: 100vw;15821max-width: none;15822height: 100%;15823margin: 0;15824}15825.dark-mode .modal-fullscreen-xl-down .modal-content {15826height: 100%;15827border: 0;15828border-radius: 0;15829}15830.dark-mode .modal-fullscreen-xl-down .modal-header {15831border-radius: 0;15832}15833.dark-mode .modal-fullscreen-xl-down .modal-body {15834overflow-y: auto;15835}15836.dark-mode .modal-fullscreen-xl-down .modal-footer {15837border-radius: 0;15838}15839}15840@media (max-width: 1399.98px) {15841.dark-mode .modal-fullscreen-xxl-down {15842width: 100vw;15843max-width: none;15844height: 100%;15845margin: 0;15846}15847.dark-mode .modal-fullscreen-xxl-down .modal-content {15848height: 100%;15849border: 0;15850border-radius: 0;15851}15852.dark-mode .modal-fullscreen-xxl-down .modal-header {15853border-radius: 0;15854}15855.dark-mode .modal-fullscreen-xxl-down .modal-body {15856overflow-y: auto;15857}15858.dark-mode .modal-fullscreen-xxl-down .modal-footer {15859border-radius: 0;15860}15861}15862.dark-mode .tooltip {15863position: absolute;15864z-index: 1080;15865display: block;15866margin: 0;15867font-family: var(--bs-font-sans-serif);15868font-style: normal;15869font-weight: 400;15870line-height: 1.5;15871text-align: left;15872text-align: start;15873text-decoration: none;15874text-shadow: none;15875text-transform: none;15876letter-spacing: normal;15877word-break: normal;15878word-spacing: normal;15879white-space: normal;15880line-break: auto;15881font-size: 0.875rem;15882word-wrap: break-word;15883opacity: 0;15884}15885.dark-mode .tooltip.show {15886opacity: 0.9;15887}15888.dark-mode .tooltip .tooltip-arrow {15889position: absolute;15890display: block;15891width: 0.8rem;15892height: 0.4rem;15893}15894.dark-mode .tooltip .tooltip-arrow::before {15895position: absolute;15896content: "";15897border-color: transparent;15898border-style: solid;15899}15900.dark-mode .bs-tooltip-top, .dark-mode .bs-tooltip-auto[data-popper-placement^=top] {15901padding: 0.4rem 0;15902}15903.dark-mode .bs-tooltip-top .tooltip-arrow, .dark-mode .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {15904bottom: 0;15905}15906.dark-mode .bs-tooltip-top .tooltip-arrow::before, .dark-mode .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {15907top: -1px;15908border-width: 0.4rem 0.4rem 0;15909border-top-color: #000;15910}15911.dark-mode .bs-tooltip-end, .dark-mode .bs-tooltip-auto[data-popper-placement^=right] {15912padding: 0 0.4rem;15913}15914.dark-mode .bs-tooltip-end .tooltip-arrow, .dark-mode .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {15915left: 0;15916width: 0.4rem;15917height: 0.8rem;15918}15919.dark-mode .bs-tooltip-end .tooltip-arrow::before, .dark-mode .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {15920right: -1px;15921border-width: 0.4rem 0.4rem 0.4rem 0;15922border-right-color: #000;15923}15924.dark-mode .bs-tooltip-bottom, .dark-mode .bs-tooltip-auto[data-popper-placement^=bottom] {15925padding: 0.4rem 0;15926}15927.dark-mode .bs-tooltip-bottom .tooltip-arrow, .dark-mode .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {15928top: 0;15929}15930.dark-mode .bs-tooltip-bottom .tooltip-arrow::before, .dark-mode .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {15931bottom: -1px;15932border-width: 0 0.4rem 0.4rem;15933border-bottom-color: #000;15934}15935.dark-mode .bs-tooltip-start, .dark-mode .bs-tooltip-auto[data-popper-placement^=left] {15936padding: 0 0.4rem;15937}15938.dark-mode .bs-tooltip-start .tooltip-arrow, .dark-mode .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {15939right: 0;15940width: 0.4rem;15941height: 0.8rem;15942}15943.dark-mode .bs-tooltip-start .tooltip-arrow::before, .dark-mode .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {15944left: -1px;15945border-width: 0.4rem 0 0.4rem 0.4rem;15946border-left-color: #000;15947}15948.dark-mode .tooltip-inner {15949max-width: 200px;15950padding: 0.25rem 0.5rem;15951color: #fff;15952text-align: center;15953background-color: #000;15954border-radius: 0.25rem;15955}15956.dark-mode .popover {15957position: absolute;15958top: 0;15959left: 0 /* rtl:ignore */;15960z-index: 1070;15961display: block;15962max-width: 276px;15963font-family: var(--bs-font-sans-serif);15964font-style: normal;15965font-weight: 400;15966line-height: 1.5;15967text-align: left;15968text-align: start;15969text-decoration: none;15970text-shadow: none;15971text-transform: none;15972letter-spacing: normal;15973word-break: normal;15974word-spacing: normal;15975white-space: normal;15976line-break: auto;15977font-size: 0.875rem;15978word-wrap: break-word;15979background-color: #fff;15980background-clip: padding-box;15981border: 1px solid rgba(0, 0, 0, 0.2);15982border-radius: 0.3rem;15983}15984.dark-mode .popover .popover-arrow {15985position: absolute;15986display: block;15987width: 1rem;15988height: 0.5rem;15989}15990.dark-mode .popover .popover-arrow::before, .dark-mode .popover .popover-arrow::after {15991position: absolute;15992display: block;15993content: "";15994border-color: transparent;15995border-style: solid;15996}15997.dark-mode .bs-popover-top > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {15998bottom: calc(-0.5rem - 1px);15999}16000.dark-mode .bs-popover-top > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {16001bottom: 0;16002border-width: 0.5rem 0.5rem 0;16003border-top-color: rgba(0, 0, 0, 0.25);16004}16005.dark-mode .bs-popover-top > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {16006bottom: 1px;16007border-width: 0.5rem 0.5rem 0;16008border-top-color: #fff;16009}16010.dark-mode .bs-popover-end > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {16011left: calc(-0.5rem - 1px);16012width: 0.5rem;16013height: 1rem;16014}16015.dark-mode .bs-popover-end > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {16016left: 0;16017border-width: 0.5rem 0.5rem 0.5rem 0;16018border-right-color: rgba(0, 0, 0, 0.25);16019}16020.dark-mode .bs-popover-end > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {16021left: 1px;16022border-width: 0.5rem 0.5rem 0.5rem 0;16023border-right-color: #fff;16024}16025.dark-mode .bs-popover-bottom > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {16026top: calc(-0.5rem - 1px);16027}16028.dark-mode .bs-popover-bottom > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {16029top: 0;16030border-width: 0 0.5rem 0.5rem 0.5rem;16031border-bottom-color: rgba(0, 0, 0, 0.25);16032}16033.dark-mode .bs-popover-bottom > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {16034top: 1px;16035border-width: 0 0.5rem 0.5rem 0.5rem;16036border-bottom-color: #fff;16037}16038.dark-mode .bs-popover-bottom .popover-header::before, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {16039position: absolute;16040top: 0;16041left: 50%;16042display: block;16043width: 1rem;16044margin-left: -0.5rem;16045content: "";16046border-bottom: 1px solid #f0f0f0;16047}16048.dark-mode .bs-popover-start > .popover-arrow, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {16049right: calc(-0.5rem - 1px);16050width: 0.5rem;16051height: 1rem;16052}16053.dark-mode .bs-popover-start > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {16054right: 0;16055border-width: 0.5rem 0 0.5rem 0.5rem;16056border-left-color: rgba(0, 0, 0, 0.25);16057}16058.dark-mode .bs-popover-start > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {16059right: 1px;16060border-width: 0.5rem 0 0.5rem 0.5rem;16061border-left-color: #fff;16062}16063.dark-mode .popover-header {16064padding: 0.5rem 1rem;16065margin-bottom: 0;16066font-size: 1rem;16067background-color: #f0f0f0;16068border-bottom: 1px solid rgba(0, 0, 0, 0.2);16069border-top-left-radius: calc(0.3rem - 1px);16070border-top-right-radius: calc(0.3rem - 1px);16071}16072.dark-mode .popover-header:empty {16073display: none;16074}16075.dark-mode .popover-body {16076padding: 1rem 1rem;16077color: #212529;16078}16079.dark-mode .carousel {16080position: relative;16081}16082.dark-mode .carousel.pointer-event {16083touch-action: pan-y;16084}16085.dark-mode .carousel-inner {16086position: relative;16087width: 100%;16088overflow: hidden;16089}16090.dark-mode .carousel-inner::after {16091display: block;16092clear: both;16093content: "";16094}16095.dark-mode .carousel-item {16096position: relative;16097display: none;16098float: left;16099width: 100%;16100margin-right: -100%;16101backface-visibility: hidden;16102transition: transform 0.6s ease-in-out;16103}16104@media (prefers-reduced-motion: reduce) {16105.dark-mode .carousel-item {16106transition: none;16107}16108}16109.dark-mode .carousel-item.active,16110.dark-mode .carousel-item-next,16111.dark-mode .carousel-item-prev {16112display: block;16113}16114.dark-mode .carousel-item-next:not(.carousel-item-start),16115.dark-mode .active.carousel-item-end {16116transform: translateX(100%);16117}16118.dark-mode .carousel-item-prev:not(.carousel-item-end),16119.dark-mode .active.carousel-item-start {16120transform: translateX(-100%);16121}16122.dark-mode .carousel-fade .carousel-item {16123opacity: 0;16124transition-property: opacity;16125transform: none;16126}16127.dark-mode .carousel-fade .carousel-item.active,16128.dark-mode .carousel-fade .carousel-item-next.carousel-item-start,16129.dark-mode .carousel-fade .carousel-item-prev.carousel-item-end {16130z-index: 1;16131opacity: 1;16132}16133.dark-mode .carousel-fade .active.carousel-item-start,16134.dark-mode .carousel-fade .active.carousel-item-end {16135z-index: 0;16136opacity: 0;16137transition: opacity 0s 0.6s;16138}16139@media (prefers-reduced-motion: reduce) {16140.dark-mode .carousel-fade .active.carousel-item-start,16141.dark-mode .carousel-fade .active.carousel-item-end {16142transition: none;16143}16144}16145.dark-mode .carousel-control-prev,16146.dark-mode .carousel-control-next {16147position: absolute;16148top: 0;16149bottom: 0;16150z-index: 1;16151display: flex;16152align-items: center;16153justify-content: center;16154width: 15%;16155padding: 0;16156color: #fff;16157text-align: center;16158background: none;16159border: 0;16160opacity: 0.5;16161transition: opacity 0.15s ease;16162}16163@media (prefers-reduced-motion: reduce) {16164.dark-mode .carousel-control-prev,16165.dark-mode .carousel-control-next {16166transition: none;16167}16168}16169.dark-mode .carousel-control-prev:hover, .dark-mode .carousel-control-prev:focus,16170.dark-mode .carousel-control-next:hover,16171.dark-mode .carousel-control-next:focus {16172color: #fff;16173text-decoration: none;16174outline: 0;16175opacity: 0.9;16176}16177.dark-mode .carousel-control-prev {16178left: 0;16179background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));16180}16181.dark-mode .carousel-control-next {16182right: 0;16183background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));16184}16185.dark-mode .carousel-control-prev-icon,16186.dark-mode .carousel-control-next-icon {16187display: inline-block;16188width: 2rem;16189height: 2rem;16190background-repeat: no-repeat;16191background-position: 50%;16192background-size: 100% 100%;16193}16194.dark-mode .carousel-control-prev-icon {16195background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");16196}16197.dark-mode .carousel-control-next-icon {16198background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");16199}16200.dark-mode .carousel-indicators {16201position: absolute;16202right: 0;16203bottom: 0;16204left: 0;16205z-index: 2;16206display: flex;16207justify-content: center;16208padding: 0;16209margin-right: 15%;16210margin-bottom: 1rem;16211margin-left: 15%;16212list-style: none;16213}16214.dark-mode .carousel-indicators [data-bs-target] {16215box-sizing: content-box;16216flex: 0 1 auto;16217width: 30px;16218height: 3px;16219padding: 0;16220margin-right: 3px;16221margin-left: 3px;16222text-indent: -999px;16223cursor: pointer;16224background-color: #fff;16225background-clip: padding-box;16226border: 0;16227border-top: 10px solid transparent;16228border-bottom: 10px solid transparent;16229opacity: 0.5;16230transition: opacity 0.6s ease;16231}16232@media (prefers-reduced-motion: reduce) {16233.dark-mode .carousel-indicators [data-bs-target] {16234transition: none;16235}16236}16237.dark-mode .carousel-indicators .active {16238opacity: 1;16239}16240.dark-mode .carousel-caption {16241position: absolute;16242right: 15%;16243bottom: 1.25rem;16244left: 15%;16245padding-top: 1.25rem;16246padding-bottom: 1.25rem;16247color: #fff;16248text-align: center;16249}16250.dark-mode .carousel-dark .carousel-control-prev-icon,16251.dark-mode .carousel-dark .carousel-control-next-icon {16252filter: invert(1) grayscale(100);16253}16254.dark-mode .carousel-dark .carousel-indicators [data-bs-target] {16255background-color: #000;16256}16257.dark-mode .carousel-dark .carousel-caption {16258color: #000;16259}16260@keyframes spinner-border {16261to {16262transform: rotate(360deg) /* rtl:ignore */;16263}16264}16265.dark-mode .spinner-border {16266display: inline-block;16267width: 2rem;16268height: 2rem;16269vertical-align: -0.125em;16270border: 0.25em solid currentColor;16271border-right-color: transparent;16272border-radius: 50%;16273animation: 0.75s linear infinite spinner-border;16274}16275.dark-mode .spinner-border-sm {16276width: 1rem;16277height: 1rem;16278border-width: 0.2em;16279}16280@keyframes spinner-grow {162810% {16282transform: scale(0);16283}1628450% {16285opacity: 1;16286transform: none;16287}16288}16289.dark-mode .spinner-grow {16290display: inline-block;16291width: 2rem;16292height: 2rem;16293vertical-align: -0.125em;16294background-color: currentColor;16295border-radius: 50%;16296opacity: 0;16297animation: 0.75s linear infinite spinner-grow;16298}16299.dark-mode .spinner-grow-sm {16300width: 1rem;16301height: 1rem;16302}16303@media (prefers-reduced-motion: reduce) {16304.dark-mode .spinner-border,16305.dark-mode .spinner-grow {16306animation-duration: 1.5s;16307}16308}16309.dark-mode .offcanvas {16310position: fixed;16311bottom: 0;16312z-index: 1045;16313display: flex;16314flex-direction: column;16315max-width: 100%;16316visibility: hidden;16317background-color: #fff;16318background-clip: padding-box;16319outline: 0;16320transition: transform 0.3s ease-in-out;16321}16322@media (prefers-reduced-motion: reduce) {16323.dark-mode .offcanvas {16324transition: none;16325}16326}16327.dark-mode .offcanvas-backdrop {16328position: fixed;16329top: 0;16330left: 0;16331z-index: 1040;16332width: 100vw;16333height: 100vh;16334background-color: #000;16335}16336.dark-mode .offcanvas-backdrop.fade {16337opacity: 0;16338}16339.dark-mode .offcanvas-backdrop.show {16340opacity: 0.5;16341}16342.dark-mode .offcanvas-header {16343display: flex;16344align-items: center;16345justify-content: space-between;16346padding: 1rem 1rem;16347}16348.dark-mode .offcanvas-header .btn-close {16349padding: 0.5rem 0.5rem;16350margin-top: -0.5rem;16351margin-right: -0.5rem;16352margin-bottom: -0.5rem;16353}16354.dark-mode .offcanvas-title {16355margin-bottom: 0;16356line-height: 1.5;16357}16358.dark-mode .offcanvas-body {16359flex-grow: 1;16360padding: 1rem 1rem;16361overflow-y: auto;16362}16363.dark-mode .offcanvas-start {16364top: 0;16365left: 0;16366width: 400px;16367border-right: 1px solid rgba(0, 0, 0, 0.2);16368transform: translateX(-100%);16369}16370.dark-mode .offcanvas-end {16371top: 0;16372right: 0;16373width: 400px;16374border-left: 1px solid rgba(0, 0, 0, 0.2);16375transform: translateX(100%);16376}16377.dark-mode .offcanvas-top {16378top: 0;16379right: 0;16380left: 0;16381height: 30vh;16382max-height: 100%;16383border-bottom: 1px solid rgba(0, 0, 0, 0.2);16384transform: translateY(-100%);16385}16386.dark-mode .offcanvas-bottom {16387right: 0;16388left: 0;16389height: 30vh;16390max-height: 100%;16391border-top: 1px solid rgba(0, 0, 0, 0.2);16392transform: translateY(100%);16393}16394.dark-mode .offcanvas.show {16395transform: none;16396}16397.dark-mode .placeholder {16398display: inline-block;16399min-height: 1em;16400vertical-align: middle;16401cursor: wait;16402background-color: currentColor;16403opacity: 0.5;16404}16405.dark-mode .placeholder.btn::before {16406display: inline-block;16407content: "";16408}16409.dark-mode .placeholder-xs {16410min-height: 0.6em;16411}16412.dark-mode .placeholder-sm {16413min-height: 0.8em;16414}16415.dark-mode .placeholder-lg {16416min-height: 1.2em;16417}16418.dark-mode .placeholder-glow .placeholder {16419animation: placeholder-glow 2s ease-in-out infinite;16420}16421@keyframes placeholder-glow {1642250% {16423opacity: 0.2;16424}16425}16426.dark-mode .placeholder-wave {16427mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);16428mask-size: 200% 100%;16429animation: placeholder-wave 2s linear infinite;16430}16431@keyframes placeholder-wave {16432100% {16433mask-position: -200% 0%;16434}16435}16436.dark-mode .clearfix::after {16437display: block;16438clear: both;16439content: "";16440}16441.dark-mode .link-primary {16442color: #5c7ba8;16443}16444.dark-mode .link-primary:hover, .dark-mode .link-primary:focus {16445color: #7d95b9;16446}16447.dark-mode .link-secondary {16448color: #146c43;16449}16450.dark-mode .link-secondary:hover, .dark-mode .link-secondary:focus {16451color: #105636;16452}16453.dark-mode .ratio {16454position: relative;16455width: 100%;16456}16457.dark-mode .ratio::before {16458display: block;16459padding-top: var(--bs-aspect-ratio);16460content: "";16461}16462.dark-mode .ratio > * {16463position: absolute;16464top: 0;16465left: 0;16466width: 100%;16467height: 100%;16468}16469.dark-mode .ratio-1x1 {16470--bs-aspect-ratio: 100%;16471}16472.dark-mode .ratio-4x3 {16473--bs-aspect-ratio: 75%;16474}16475.dark-mode .ratio-16x9 {16476--bs-aspect-ratio: 56.25%;16477}16478.dark-mode .ratio-21x9 {16479--bs-aspect-ratio: 42.8571428571%;16480}16481.dark-mode .fixed-top {16482position: fixed;16483top: 0;16484right: 0;16485left: 0;16486z-index: 1030;16487}16488.dark-mode .fixed-bottom {16489position: fixed;16490right: 0;16491bottom: 0;16492left: 0;16493z-index: 1030;16494}16495.dark-mode .sticky-top {16496position: sticky;16497top: 0;16498z-index: 1020;16499}16500@media (min-width: 576px) {16501.dark-mode .sticky-sm-top {16502position: sticky;16503top: 0;16504z-index: 1020;16505}16506}16507@media (min-width: 768px) {16508.dark-mode .sticky-md-top {16509position: sticky;16510top: 0;16511z-index: 1020;16512}16513}16514@media (min-width: 992px) {16515.dark-mode .sticky-lg-top {16516position: sticky;16517top: 0;16518z-index: 1020;16519}16520}16521@media (min-width: 1200px) {16522.dark-mode .sticky-xl-top {16523position: sticky;16524top: 0;16525z-index: 1020;16526}16527}16528@media (min-width: 1400px) {16529.dark-mode .sticky-xxl-top {16530position: sticky;16531top: 0;16532z-index: 1020;16533}16534}16535.dark-mode .hstack {16536display: flex;16537flex-direction: row;16538align-items: center;16539align-self: stretch;16540}16541.dark-mode .vstack {16542display: flex;16543flex: 1 1 auto;16544flex-direction: column;16545align-self: stretch;16546}16547.dark-mode .visually-hidden,16548.dark-mode .visually-hidden-focusable:not(:focus):not(:focus-within) {16549position: absolute !important;16550width: 1px !important;16551height: 1px !important;16552padding: 0 !important;16553margin: -1px !important;16554overflow: hidden !important;16555clip: rect(0, 0, 0, 0) !important;16556white-space: nowrap !important;16557border: 0 !important;16558}16559.dark-mode .stretched-link::after {16560position: absolute;16561top: 0;16562right: 0;16563bottom: 0;16564left: 0;16565z-index: 1;16566content: "";16567}16568.dark-mode .text-truncate {16569overflow: hidden;16570text-overflow: ellipsis;16571white-space: nowrap;16572}16573.dark-mode .vr {16574display: inline-block;16575align-self: stretch;16576width: 1px;16577min-height: 1em;16578background-color: currentColor;16579opacity: 0.25;16580}16581.dark-mode .align-baseline {16582vertical-align: baseline !important;16583}16584.dark-mode .align-top {16585vertical-align: top !important;16586}16587.dark-mode .align-middle {16588vertical-align: middle !important;16589}16590.dark-mode .align-bottom {16591vertical-align: bottom !important;16592}16593.dark-mode .align-text-bottom {16594vertical-align: text-bottom !important;16595}16596.dark-mode .align-text-top {16597vertical-align: text-top !important;16598}16599.dark-mode .float-start {16600float: left !important;16601}16602.dark-mode .float-end {16603float: right !important;16604}16605.dark-mode .float-none {16606float: none !important;16607}16608.dark-mode .opacity-0 {16609opacity: 0 !important;16610}16611.dark-mode .opacity-25 {16612opacity: 0.25 !important;16613}16614.dark-mode .opacity-50 {16615opacity: 0.5 !important;16616}16617.dark-mode .opacity-75 {16618opacity: 0.75 !important;16619}16620.dark-mode .opacity-100 {16621opacity: 1 !important;16622}16623.dark-mode .overflow-auto {16624overflow: auto !important;16625}16626.dark-mode .overflow-hidden {16627overflow: hidden !important;16628}16629.dark-mode .overflow-visible {16630overflow: visible !important;16631}16632.dark-mode .overflow-scroll {16633overflow: scroll !important;16634}16635.dark-mode .d-inline {16636display: inline !important;16637}16638.dark-mode .d-inline-block {16639display: inline-block !important;16640}16641.dark-mode .d-block {16642display: block !important;16643}16644.dark-mode .d-grid {16645display: grid !important;16646}16647.dark-mode .d-table {16648display: table !important;16649}16650.dark-mode .d-table-row {16651display: table-row !important;16652}16653.dark-mode .d-table-cell {16654display: table-cell !important;16655}16656.dark-mode .d-flex {16657display: flex !important;16658}16659.dark-mode .d-inline-flex {16660display: inline-flex !important;16661}16662.dark-mode .d-none {16663display: none !important;16664}16665.dark-mode .shadow {16666box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;16667}16668.dark-mode .shadow-sm {16669box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;16670}16671.dark-mode .shadow-lg {16672box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;16673}16674.dark-mode .shadow-none {16675box-shadow: none !important;16676}16677.dark-mode .position-static {16678position: static !important;16679}16680.dark-mode .position-relative {16681position: relative !important;16682}16683.dark-mode .position-absolute {16684position: absolute !important;16685}16686.dark-mode .position-fixed {16687position: fixed !important;16688}16689.dark-mode .position-sticky {16690position: sticky !important;16691}16692.dark-mode .top-0 {16693top: 0 !important;16694}16695.dark-mode .top-50 {16696top: 50% !important;16697}16698.dark-mode .top-100 {16699top: 100% !important;16700}16701.dark-mode .bottom-0 {16702bottom: 0 !important;16703}16704.dark-mode .bottom-50 {16705bottom: 50% !important;16706}16707.dark-mode .bottom-100 {16708bottom: 100% !important;16709}16710.dark-mode .start-0 {16711left: 0 !important;16712}16713.dark-mode .start-50 {16714left: 50% !important;16715}16716.dark-mode .start-100 {16717left: 100% !important;16718}16719.dark-mode .end-0 {16720right: 0 !important;16721}16722.dark-mode .end-50 {16723right: 50% !important;16724}16725.dark-mode .end-100 {16726right: 100% !important;16727}16728.dark-mode .translate-middle {16729transform: translate(-50%, -50%) !important;16730}16731.dark-mode .translate-middle-x {16732transform: translateX(-50%) !important;16733}16734.dark-mode .translate-middle-y {16735transform: translateY(-50%) !important;16736}16737.dark-mode .border {16738border: 1px solid #dee2e6 !important;16739}16740.dark-mode .border-0 {16741border: 0 !important;16742}16743.dark-mode .border-top {16744border-top: 1px solid #dee2e6 !important;16745}16746.dark-mode .border-top-0 {16747border-top: 0 !important;16748}16749.dark-mode .border-end {16750border-right: 1px solid #dee2e6 !important;16751}16752.dark-mode .border-end-0 {16753border-right: 0 !important;16754}16755.dark-mode .border-bottom {16756border-bottom: 1px solid #dee2e6 !important;16757}16758.dark-mode .border-bottom-0 {16759border-bottom: 0 !important;16760}16761.dark-mode .border-start {16762border-left: 1px solid #dee2e6 !important;16763}16764.dark-mode .border-start-0 {16765border-left: 0 !important;16766}16767.dark-mode .border-primary {16768border-color: #a1a9bd !important;16769}16770.dark-mode .border-secondary {16771border-color: #5B9D82 !important;16772}16773.dark-mode .border-success {16774border-color: #198754 !important;16775}16776.dark-mode .border-info {16777border-color: #0dcaf0 !important;16778}16779.dark-mode .border-warning {16780border-color: #ffc107 !important;16781}16782.dark-mode .border-danger {16783border-color: #dc3545 !important;16784}16785.dark-mode .border-light {16786border-color: #f8f9fa !important;16787}16788.dark-mode .border-dark {16789border-color: #212529 !important;16790}16791.dark-mode .border-white {16792border-color: #fff !important;16793}16794.dark-mode .border-1 {16795border-width: 1px !important;16796}16797.dark-mode .border-2 {16798border-width: 2px !important;16799}16800.dark-mode .border-3 {16801border-width: 3px !important;16802}16803.dark-mode .border-4 {16804border-width: 4px !important;16805}16806.dark-mode .border-5 {16807border-width: 5px !important;16808}16809.dark-mode .w-25 {16810width: 25% !important;16811}16812.dark-mode .w-50 {16813width: 50% !important;16814}16815.dark-mode .w-75 {16816width: 75% !important;16817}16818.dark-mode .w-100 {16819width: 100% !important;16820}16821.dark-mode .w-auto {16822width: auto !important;16823}16824.dark-mode .mw-100 {16825max-width: 100% !important;16826}16827.dark-mode .vw-100 {16828width: 100vw !important;16829}16830.dark-mode .min-vw-100 {16831min-width: 100vw !important;16832}16833.dark-mode .h-25 {16834height: 25% !important;16835}16836.dark-mode .h-50 {16837height: 50% !important;16838}16839.dark-mode .h-75 {16840height: 75% !important;16841}16842.dark-mode .h-100 {16843height: 100% !important;16844}16845.dark-mode .h-auto {16846height: auto !important;16847}16848.dark-mode .mh-100 {16849max-height: 100% !important;16850}16851.dark-mode .vh-100 {16852height: 100vh !important;16853}16854.dark-mode .min-vh-100 {16855min-height: 100vh !important;16856}16857.dark-mode .flex-fill {16858flex: 1 1 auto !important;16859}16860.dark-mode .flex-row {16861flex-direction: row !important;16862}16863.dark-mode .flex-column {16864flex-direction: column !important;16865}16866.dark-mode .flex-row-reverse {16867flex-direction: row-reverse !important;16868}16869.dark-mode .flex-column-reverse {16870flex-direction: column-reverse !important;16871}16872.dark-mode .flex-grow-0 {16873flex-grow: 0 !important;16874}16875.dark-mode .flex-grow-1 {16876flex-grow: 1 !important;16877}16878.dark-mode .flex-shrink-0 {16879flex-shrink: 0 !important;16880}16881.dark-mode .flex-shrink-1 {16882flex-shrink: 1 !important;16883}16884.dark-mode .flex-wrap {16885flex-wrap: wrap !important;16886}16887.dark-mode .flex-nowrap {16888flex-wrap: nowrap !important;16889}16890.dark-mode .flex-wrap-reverse {16891flex-wrap: wrap-reverse !important;16892}16893.dark-mode .gap-0 {16894gap: 0 !important;16895}16896.dark-mode .gap-1 {16897gap: 0.25rem !important;16898}16899.dark-mode .gap-2 {16900gap: 0.5rem !important;16901}16902.dark-mode .gap-3 {16903gap: 1rem !important;16904}16905.dark-mode .gap-4 {16906gap: 1.5rem !important;16907}16908.dark-mode .gap-5 {16909gap: 3rem !important;16910}16911.dark-mode .justify-content-start {16912justify-content: flex-start !important;16913}16914.dark-mode .justify-content-end {16915justify-content: flex-end !important;16916}16917.dark-mode .justify-content-center {16918justify-content: center !important;16919}16920.dark-mode .justify-content-between {16921justify-content: space-between !important;16922}16923.dark-mode .justify-content-around {16924justify-content: space-around !important;16925}16926.dark-mode .justify-content-evenly {16927justify-content: space-evenly !important;16928}16929.dark-mode .align-items-start {16930align-items: flex-start !important;16931}16932.dark-mode .align-items-end {16933align-items: flex-end !important;16934}16935.dark-mode .align-items-center {16936align-items: center !important;16937}16938.dark-mode .align-items-baseline {16939align-items: baseline !important;16940}16941.dark-mode .align-items-stretch {16942align-items: stretch !important;16943}16944.dark-mode .align-content-start {16945align-content: flex-start !important;16946}16947.dark-mode .align-content-end {16948align-content: flex-end !important;16949}16950.dark-mode .align-content-center {16951align-content: center !important;16952}16953.dark-mode .align-content-between {16954align-content: space-between !important;16955}16956.dark-mode .align-content-around {16957align-content: space-around !important;16958}16959.dark-mode .align-content-stretch {16960align-content: stretch !important;16961}16962.dark-mode .align-self-auto {16963align-self: auto !important;16964}16965.dark-mode .align-self-start {16966align-self: flex-start !important;16967}16968.dark-mode .align-self-end {16969align-self: flex-end !important;16970}16971.dark-mode .align-self-center {16972align-self: center !important;16973}16974.dark-mode .align-self-baseline {16975align-self: baseline !important;16976}16977.dark-mode .align-self-stretch {16978align-self: stretch !important;16979}16980.dark-mode .order-first {16981order: -1 !important;16982}16983.dark-mode .order-0 {16984order: 0 !important;16985}16986.dark-mode .order-1 {16987order: 1 !important;16988}16989.dark-mode .order-2 {16990order: 2 !important;16991}16992.dark-mode .order-3 {16993order: 3 !important;16994}16995.dark-mode .order-4 {16996order: 4 !important;16997}16998.dark-mode .order-5 {16999order: 5 !important;17000}17001.dark-mode .order-last {17002order: 6 !important;17003}17004.dark-mode .m-0 {17005margin: 0 !important;17006}17007.dark-mode .m-1 {17008margin: 0.25rem !important;17009}17010.dark-mode .m-2 {17011margin: 0.5rem !important;17012}17013.dark-mode .m-3 {17014margin: 1rem !important;17015}17016.dark-mode .m-4 {17017margin: 1.5rem !important;17018}17019.dark-mode .m-5 {17020margin: 3rem !important;17021}17022.dark-mode .m-auto {17023margin: auto !important;17024}17025.dark-mode .mx-0 {17026margin-right: 0 !important;17027margin-left: 0 !important;17028}17029.dark-mode .mx-1 {17030margin-right: 0.25rem !important;17031margin-left: 0.25rem !important;17032}17033.dark-mode .mx-2 {17034margin-right: 0.5rem !important;17035margin-left: 0.5rem !important;17036}17037.dark-mode .mx-3 {17038margin-right: 1rem !important;17039margin-left: 1rem !important;17040}17041.dark-mode .mx-4 {17042margin-right: 1.5rem !important;17043margin-left: 1.5rem !important;17044}17045.dark-mode .mx-5 {17046margin-right: 3rem !important;17047margin-left: 3rem !important;17048}17049.dark-mode .mx-auto {17050margin-right: auto !important;17051margin-left: auto !important;17052}17053.dark-mode .my-0 {17054margin-top: 0 !important;17055margin-bottom: 0 !important;17056}17057.dark-mode .my-1 {17058margin-top: 0.25rem !important;17059margin-bottom: 0.25rem !important;17060}17061.dark-mode .my-2 {17062margin-top: 0.5rem !important;17063margin-bottom: 0.5rem !important;17064}17065.dark-mode .my-3 {17066margin-top: 1rem !important;17067margin-bottom: 1rem !important;17068}17069.dark-mode .my-4 {17070margin-top: 1.5rem !important;17071margin-bottom: 1.5rem !important;17072}17073.dark-mode .my-5 {17074margin-top: 3rem !important;17075margin-bottom: 3rem !important;17076}17077.dark-mode .my-auto {17078margin-top: auto !important;17079margin-bottom: auto !important;17080}17081.dark-mode .mt-0 {17082margin-top: 0 !important;17083}17084.dark-mode .mt-1 {17085margin-top: 0.25rem !important;17086}17087.dark-mode .mt-2 {17088margin-top: 0.5rem !important;17089}17090.dark-mode .mt-3 {17091margin-top: 1rem !important;17092}17093.dark-mode .mt-4 {17094margin-top: 1.5rem !important;17095}17096.dark-mode .mt-5 {17097margin-top: 3rem !important;17098}17099.dark-mode .mt-auto {17100margin-top: auto !important;17101}17102.dark-mode .me-0 {17103margin-right: 0 !important;17104}17105.dark-mode .me-1 {17106margin-right: 0.25rem !important;17107}17108.dark-mode .me-2 {17109margin-right: 0.5rem !important;17110}17111.dark-mode .me-3 {17112margin-right: 1rem !important;17113}17114.dark-mode .me-4 {17115margin-right: 1.5rem !important;17116}17117.dark-mode .me-5 {17118margin-right: 3rem !important;17119}17120.dark-mode .me-auto {17121margin-right: auto !important;17122}17123.dark-mode .mb-0 {17124margin-bottom: 0 !important;17125}17126.dark-mode .mb-1 {17127margin-bottom: 0.25rem !important;17128}17129.dark-mode .mb-2 {17130margin-bottom: 0.5rem !important;17131}17132.dark-mode .mb-3 {17133margin-bottom: 1rem !important;17134}17135.dark-mode .mb-4 {17136margin-bottom: 1.5rem !important;17137}17138.dark-mode .mb-5 {17139margin-bottom: 3rem !important;17140}17141.dark-mode .mb-auto {17142margin-bottom: auto !important;17143}17144.dark-mode .ms-0 {17145margin-left: 0 !important;17146}17147.dark-mode .ms-1 {17148margin-left: 0.25rem !important;17149}17150.dark-mode .ms-2 {17151margin-left: 0.5rem !important;17152}17153.dark-mode .ms-3 {17154margin-left: 1rem !important;17155}17156.dark-mode .ms-4 {17157margin-left: 1.5rem !important;17158}17159.dark-mode .ms-5 {17160margin-left: 3rem !important;17161}17162.dark-mode .ms-auto {17163margin-left: auto !important;17164}17165.dark-mode .p-0 {17166padding: 0 !important;17167}17168.dark-mode .p-1 {17169padding: 0.25rem !important;17170}17171.dark-mode .p-2 {17172padding: 0.5rem !important;17173}17174.dark-mode .p-3 {17175padding: 1rem !important;17176}17177.dark-mode .p-4 {17178padding: 1.5rem !important;17179}17180.dark-mode .p-5 {17181padding: 3rem !important;17182}17183.dark-mode .px-0 {17184padding-right: 0 !important;17185padding-left: 0 !important;17186}17187.dark-mode .px-1 {17188padding-right: 0.25rem !important;17189padding-left: 0.25rem !important;17190}17191.dark-mode .px-2 {17192padding-right: 0.5rem !important;17193padding-left: 0.5rem !important;17194}17195.dark-mode .px-3 {17196padding-right: 1rem !important;17197padding-left: 1rem !important;17198}17199.dark-mode .px-4 {17200padding-right: 1.5rem !important;17201padding-left: 1.5rem !important;17202}17203.dark-mode .px-5 {17204padding-right: 3rem !important;17205padding-left: 3rem !important;17206}17207.dark-mode .py-0 {17208padding-top: 0 !important;17209padding-bottom: 0 !important;17210}17211.dark-mode .py-1 {17212padding-top: 0.25rem !important;17213padding-bottom: 0.25rem !important;17214}17215.dark-mode .py-2 {17216padding-top: 0.5rem !important;17217padding-bottom: 0.5rem !important;17218}17219.dark-mode .py-3 {17220padding-top: 1rem !important;17221padding-bottom: 1rem !important;17222}17223.dark-mode .py-4 {17224padding-top: 1.5rem !important;17225padding-bottom: 1.5rem !important;17226}17227.dark-mode .py-5 {17228padding-top: 3rem !important;17229padding-bottom: 3rem !important;17230}17231.dark-mode .pt-0 {17232padding-top: 0 !important;17233}17234.dark-mode .pt-1 {17235padding-top: 0.25rem !important;17236}17237.dark-mode .pt-2 {17238padding-top: 0.5rem !important;17239}17240.dark-mode .pt-3 {17241padding-top: 1rem !important;17242}17243.dark-mode .pt-4 {17244padding-top: 1.5rem !important;17245}17246.dark-mode .pt-5 {17247padding-top: 3rem !important;17248}17249.dark-mode .pe-0 {17250padding-right: 0 !important;17251}17252.dark-mode .pe-1 {17253padding-right: 0.25rem !important;17254}17255.dark-mode .pe-2 {17256padding-right: 0.5rem !important;17257}17258.dark-mode .pe-3 {17259padding-right: 1rem !important;17260}17261.dark-mode .pe-4 {17262padding-right: 1.5rem !important;17263}17264.dark-mode .pe-5 {17265padding-right: 3rem !important;17266}17267.dark-mode .pb-0 {17268padding-bottom: 0 !important;17269}17270.dark-mode .pb-1 {17271padding-bottom: 0.25rem !important;17272}17273.dark-mode .pb-2 {17274padding-bottom: 0.5rem !important;17275}17276.dark-mode .pb-3 {17277padding-bottom: 1rem !important;17278}17279.dark-mode .pb-4 {17280padding-bottom: 1.5rem !important;17281}17282.dark-mode .pb-5 {17283padding-bottom: 3rem !important;17284}17285.dark-mode .ps-0 {17286padding-left: 0 !important;17287}17288.dark-mode .ps-1 {17289padding-left: 0.25rem !important;17290}17291.dark-mode .ps-2 {17292padding-left: 0.5rem !important;17293}17294.dark-mode .ps-3 {17295padding-left: 1rem !important;17296}17297.dark-mode .ps-4 {17298padding-left: 1.5rem !important;17299}17300.dark-mode .ps-5 {17301padding-left: 3rem !important;17302}17303.dark-mode .font-monospace {17304font-family: var(--bs-font-monospace) !important;17305}17306.dark-mode .fs-1 {17307font-size: calc(1.375rem + 1.5vw) !important;17308}17309.dark-mode .fs-2 {17310font-size: calc(1.325rem + 0.9vw) !important;17311}17312.dark-mode .fs-3 {17313font-size: calc(1.3rem + 0.6vw) !important;17314}17315.dark-mode .fs-4 {17316font-size: calc(1.275rem + 0.3vw) !important;17317}17318.dark-mode .fs-5 {17319font-size: 1.25rem !important;17320}17321.dark-mode .fs-6 {17322font-size: 1rem !important;17323}17324.dark-mode .fst-italic {17325font-style: italic !important;17326}17327.dark-mode .fst-normal {17328font-style: normal !important;17329}17330.dark-mode .fw-light {17331font-weight: 300 !important;17332}17333.dark-mode .fw-lighter {17334font-weight: lighter !important;17335}17336.dark-mode .fw-normal {17337font-weight: 400 !important;17338}17339.dark-mode .fw-bold {17340font-weight: 700 !important;17341}17342.dark-mode .fw-bolder {17343font-weight: bolder !important;17344}17345.dark-mode .lh-1 {17346line-height: 1 !important;17347}17348.dark-mode .lh-sm {17349line-height: 1.25 !important;17350}17351.dark-mode .lh-base {17352line-height: 1.5 !important;17353}17354.dark-mode .lh-lg {17355line-height: 2 !important;17356}17357.dark-mode .text-start {17358text-align: left !important;17359}17360.dark-mode .text-end {17361text-align: right !important;17362}17363.dark-mode .text-center {17364text-align: center !important;17365}17366.dark-mode .text-decoration-none {17367text-decoration: none !important;17368}17369.dark-mode .text-decoration-underline {17370text-decoration: underline !important;17371}17372.dark-mode .text-decoration-line-through {17373text-decoration: line-through !important;17374}17375.dark-mode .text-lowercase {17376text-transform: lowercase !important;17377}17378.dark-mode .text-uppercase {17379text-transform: uppercase !important;17380}17381.dark-mode .text-capitalize {17382text-transform: capitalize !important;17383}17384.dark-mode .text-wrap {17385white-space: normal !important;17386}17387.dark-mode .text-nowrap {17388white-space: nowrap !important;17389}17390.dark-mode .text-break {17391word-wrap: break-word !important;17392word-break: break-word !important;17393}17394.dark-mode .text-primary {17395--bs-text-opacity: 1;17396color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;17397}17398.dark-mode .text-secondary {17399--bs-text-opacity: 1;17400color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;17401}17402.dark-mode .text-success {17403--bs-text-opacity: 1;17404color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;17405}17406.dark-mode .text-info {17407--bs-text-opacity: 1;17408color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;17409}17410.dark-mode .text-warning {17411--bs-text-opacity: 1;17412color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;17413}17414.dark-mode .text-danger {17415--bs-text-opacity: 1;17416color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;17417}17418.dark-mode .text-light {17419--bs-text-opacity: 1;17420color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;17421}17422.dark-mode .text-dark {17423--bs-text-opacity: 1;17424color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;17425}17426.dark-mode .text-black {17427--bs-text-opacity: 1;17428color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;17429}17430.dark-mode .text-white {17431--bs-text-opacity: 1;17432color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;17433}17434.dark-mode .text-body {17435--bs-text-opacity: 1;17436color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;17437}17438.dark-mode .text-muted {17439--bs-text-opacity: 1;17440color: #6c757d !important;17441}17442.dark-mode .text-black-50 {17443--bs-text-opacity: 1;17444color: rgba(0, 0, 0, 0.5) !important;17445}17446.dark-mode .text-white-50 {17447--bs-text-opacity: 1;17448color: rgba(255, 255, 255, 0.5) !important;17449}17450.dark-mode .text-reset {17451--bs-text-opacity: 1;17452color: inherit !important;17453}17454.dark-mode .text-opacity-25 {17455--bs-text-opacity: 0.25;17456}17457.dark-mode .text-opacity-50 {17458--bs-text-opacity: 0.5;17459}17460.dark-mode .text-opacity-75 {17461--bs-text-opacity: 0.75;17462}17463.dark-mode .text-opacity-100 {17464--bs-text-opacity: 1;17465}17466.dark-mode .bg-primary {17467--bs-bg-opacity: 1;17468background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;17469}17470.dark-mode .bg-secondary {17471--bs-bg-opacity: 1;17472background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;17473}17474.dark-mode .bg-success {17475--bs-bg-opacity: 1;17476background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;17477}17478.dark-mode .bg-info {17479--bs-bg-opacity: 1;17480background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;17481}17482.dark-mode .bg-warning {17483--bs-bg-opacity: 1;17484background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;17485}17486.dark-mode .bg-danger {17487--bs-bg-opacity: 1;17488background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;17489}17490.dark-mode .bg-light {17491--bs-bg-opacity: 1;17492background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;17493}17494.dark-mode .bg-dark {17495--bs-bg-opacity: 1;17496background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;17497}17498.dark-mode .bg-black {17499--bs-bg-opacity: 1;17500background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;17501}17502.dark-mode .bg-white {17503--bs-bg-opacity: 1;17504background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;17505}17506.dark-mode .bg-body {17507--bs-bg-opacity: 1;17508background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;17509}17510.dark-mode .bg-transparent {17511--bs-bg-opacity: 1;17512background-color: transparent !important;17513}17514.dark-mode .bg-opacity-10 {17515--bs-bg-opacity: 0.1;17516}17517.dark-mode .bg-opacity-25 {17518--bs-bg-opacity: 0.25;17519}17520.dark-mode .bg-opacity-50 {17521--bs-bg-opacity: 0.5;17522}17523.dark-mode .bg-opacity-75 {17524--bs-bg-opacity: 0.75;17525}17526.dark-mode .bg-opacity-100 {17527--bs-bg-opacity: 1;17528}17529.dark-mode .bg-gradient {17530background-image: var(--bs-gradient) !important;17531}17532.dark-mode .user-select-all {17533user-select: all !important;17534}17535.dark-mode .user-select-auto {17536user-select: auto !important;17537}17538.dark-mode .user-select-none {17539user-select: none !important;17540}17541.dark-mode .pe-none {17542pointer-events: none !important;17543}17544.dark-mode .pe-auto {17545pointer-events: auto !important;17546}17547.dark-mode .rounded {17548border-radius: 0.25rem !important;17549}17550.dark-mode .rounded-0 {17551border-radius: 0 !important;17552}17553.dark-mode .rounded-1 {17554border-radius: 0.2rem !important;17555}17556.dark-mode .rounded-2 {17557border-radius: 0.25rem !important;17558}17559.dark-mode .rounded-3 {17560border-radius: 0.3rem !important;17561}17562.dark-mode .rounded-circle {17563border-radius: 50% !important;17564}17565.dark-mode .rounded-pill {17566border-radius: 50rem !important;17567}17568.dark-mode .rounded-top {17569border-top-left-radius: 0.25rem !important;17570border-top-right-radius: 0.25rem !important;17571}17572.dark-mode .rounded-end {17573border-top-right-radius: 0.25rem !important;17574border-bottom-right-radius: 0.25rem !important;17575}17576.dark-mode .rounded-bottom {17577border-bottom-right-radius: 0.25rem !important;17578border-bottom-left-radius: 0.25rem !important;17579}17580.dark-mode .rounded-start {17581border-bottom-left-radius: 0.25rem !important;17582border-top-left-radius: 0.25rem !important;17583}17584.dark-mode .visible {17585visibility: visible !important;17586}17587.dark-mode .invisible {17588visibility: hidden !important;17589}17590@media (min-width: 576px) {17591.dark-mode .float-sm-start {17592float: left !important;17593}17594.dark-mode .float-sm-end {17595float: right !important;17596}17597.dark-mode .float-sm-none {17598float: none !important;17599}17600.dark-mode .d-sm-inline {17601display: inline !important;17602}17603.dark-mode .d-sm-inline-block {17604display: inline-block !important;17605}17606.dark-mode .d-sm-block {17607display: block !important;17608}17609.dark-mode .d-sm-grid {17610display: grid !important;17611}17612.dark-mode .d-sm-table {17613display: table !important;17614}17615.dark-mode .d-sm-table-row {17616display: table-row !important;17617}17618.dark-mode .d-sm-table-cell {17619display: table-cell !important;17620}17621.dark-mode .d-sm-flex {17622display: flex !important;17623}17624.dark-mode .d-sm-inline-flex {17625display: inline-flex !important;17626}17627.dark-mode .d-sm-none {17628display: none !important;17629}17630.dark-mode .flex-sm-fill {17631flex: 1 1 auto !important;17632}17633.dark-mode .flex-sm-row {17634flex-direction: row !important;17635}17636.dark-mode .flex-sm-column {17637flex-direction: column !important;17638}17639.dark-mode .flex-sm-row-reverse {17640flex-direction: row-reverse !important;17641}17642.dark-mode .flex-sm-column-reverse {17643flex-direction: column-reverse !important;17644}17645.dark-mode .flex-sm-grow-0 {17646flex-grow: 0 !important;17647}17648.dark-mode .flex-sm-grow-1 {17649flex-grow: 1 !important;17650}17651.dark-mode .flex-sm-shrink-0 {17652flex-shrink: 0 !important;17653}17654.dark-mode .flex-sm-shrink-1 {17655flex-shrink: 1 !important;17656}17657.dark-mode .flex-sm-wrap {17658flex-wrap: wrap !important;17659}17660.dark-mode .flex-sm-nowrap {17661flex-wrap: nowrap !important;17662}17663.dark-mode .flex-sm-wrap-reverse {17664flex-wrap: wrap-reverse !important;17665}17666.dark-mode .gap-sm-0 {17667gap: 0 !important;17668}17669.dark-mode .gap-sm-1 {17670gap: 0.25rem !important;17671}17672.dark-mode .gap-sm-2 {17673gap: 0.5rem !important;17674}17675.dark-mode .gap-sm-3 {17676gap: 1rem !important;17677}17678.dark-mode .gap-sm-4 {17679gap: 1.5rem !important;17680}17681.dark-mode .gap-sm-5 {17682gap: 3rem !important;17683}17684.dark-mode .justify-content-sm-start {17685justify-content: flex-start !important;17686}17687.dark-mode .justify-content-sm-end {17688justify-content: flex-end !important;17689}17690.dark-mode .justify-content-sm-center {17691justify-content: center !important;17692}17693.dark-mode .justify-content-sm-between {17694justify-content: space-between !important;17695}17696.dark-mode .justify-content-sm-around {17697justify-content: space-around !important;17698}17699.dark-mode .justify-content-sm-evenly {17700justify-content: space-evenly !important;17701}17702.dark-mode .align-items-sm-start {17703align-items: flex-start !important;17704}17705.dark-mode .align-items-sm-end {17706align-items: flex-end !important;17707}17708.dark-mode .align-items-sm-center {17709align-items: center !important;17710}17711.dark-mode .align-items-sm-baseline {17712align-items: baseline !important;17713}17714.dark-mode .align-items-sm-stretch {17715align-items: stretch !important;17716}17717.dark-mode .align-content-sm-start {17718align-content: flex-start !important;17719}17720.dark-mode .align-content-sm-end {17721align-content: flex-end !important;17722}17723.dark-mode .align-content-sm-center {17724align-content: center !important;17725}17726.dark-mode .align-content-sm-between {17727align-content: space-between !important;17728}17729.dark-mode .align-content-sm-around {17730align-content: space-around !important;17731}17732.dark-mode .align-content-sm-stretch {17733align-content: stretch !important;17734}17735.dark-mode .align-self-sm-auto {17736align-self: auto !important;17737}17738.dark-mode .align-self-sm-start {17739align-self: flex-start !important;17740}17741.dark-mode .align-self-sm-end {17742align-self: flex-end !important;17743}17744.dark-mode .align-self-sm-center {17745align-self: center !important;17746}17747.dark-mode .align-self-sm-baseline {17748align-self: baseline !important;17749}17750.dark-mode .align-self-sm-stretch {17751align-self: stretch !important;17752}17753.dark-mode .order-sm-first {17754order: -1 !important;17755}17756.dark-mode .order-sm-0 {17757order: 0 !important;17758}17759.dark-mode .order-sm-1 {17760order: 1 !important;17761}17762.dark-mode .order-sm-2 {17763order: 2 !important;17764}17765.dark-mode .order-sm-3 {17766order: 3 !important;17767}17768.dark-mode .order-sm-4 {17769order: 4 !important;17770}17771.dark-mode .order-sm-5 {17772order: 5 !important;17773}17774.dark-mode .order-sm-last {17775order: 6 !important;17776}17777.dark-mode .m-sm-0 {17778margin: 0 !important;17779}17780.dark-mode .m-sm-1 {17781margin: 0.25rem !important;17782}17783.dark-mode .m-sm-2 {17784margin: 0.5rem !important;17785}17786.dark-mode .m-sm-3 {17787margin: 1rem !important;17788}17789.dark-mode .m-sm-4 {17790margin: 1.5rem !important;17791}17792.dark-mode .m-sm-5 {17793margin: 3rem !important;17794}17795.dark-mode .m-sm-auto {17796margin: auto !important;17797}17798.dark-mode .mx-sm-0 {17799margin-right: 0 !important;17800margin-left: 0 !important;17801}17802.dark-mode .mx-sm-1 {17803margin-right: 0.25rem !important;17804margin-left: 0.25rem !important;17805}17806.dark-mode .mx-sm-2 {17807margin-right: 0.5rem !important;17808margin-left: 0.5rem !important;17809}17810.dark-mode .mx-sm-3 {17811margin-right: 1rem !important;17812margin-left: 1rem !important;17813}17814.dark-mode .mx-sm-4 {17815margin-right: 1.5rem !important;17816margin-left: 1.5rem !important;17817}17818.dark-mode .mx-sm-5 {17819margin-right: 3rem !important;17820margin-left: 3rem !important;17821}17822.dark-mode .mx-sm-auto {17823margin-right: auto !important;17824margin-left: auto !important;17825}17826.dark-mode .my-sm-0 {17827margin-top: 0 !important;17828margin-bottom: 0 !important;17829}17830.dark-mode .my-sm-1 {17831margin-top: 0.25rem !important;17832margin-bottom: 0.25rem !important;17833}17834.dark-mode .my-sm-2 {17835margin-top: 0.5rem !important;17836margin-bottom: 0.5rem !important;17837}17838.dark-mode .my-sm-3 {17839margin-top: 1rem !important;17840margin-bottom: 1rem !important;17841}17842.dark-mode .my-sm-4 {17843margin-top: 1.5rem !important;17844margin-bottom: 1.5rem !important;17845}17846.dark-mode .my-sm-5 {17847margin-top: 3rem !important;17848margin-bottom: 3rem !important;17849}17850.dark-mode .my-sm-auto {17851margin-top: auto !important;17852margin-bottom: auto !important;17853}17854.dark-mode .mt-sm-0 {17855margin-top: 0 !important;17856}17857.dark-mode .mt-sm-1 {17858margin-top: 0.25rem !important;17859}17860.dark-mode .mt-sm-2 {17861margin-top: 0.5rem !important;17862}17863.dark-mode .mt-sm-3 {17864margin-top: 1rem !important;17865}17866.dark-mode .mt-sm-4 {17867margin-top: 1.5rem !important;17868}17869.dark-mode .mt-sm-5 {17870margin-top: 3rem !important;17871}17872.dark-mode .mt-sm-auto {17873margin-top: auto !important;17874}17875.dark-mode .me-sm-0 {17876margin-right: 0 !important;17877}17878.dark-mode .me-sm-1 {17879margin-right: 0.25rem !important;17880}17881.dark-mode .me-sm-2 {17882margin-right: 0.5rem !important;17883}17884.dark-mode .me-sm-3 {17885margin-right: 1rem !important;17886}17887.dark-mode .me-sm-4 {17888margin-right: 1.5rem !important;17889}17890.dark-mode .me-sm-5 {17891margin-right: 3rem !important;17892}17893.dark-mode .me-sm-auto {17894margin-right: auto !important;17895}17896.dark-mode .mb-sm-0 {17897margin-bottom: 0 !important;17898}17899.dark-mode .mb-sm-1 {17900margin-bottom: 0.25rem !important;17901}17902.dark-mode .mb-sm-2 {17903margin-bottom: 0.5rem !important;17904}17905.dark-mode .mb-sm-3 {17906margin-bottom: 1rem !important;17907}17908.dark-mode .mb-sm-4 {17909margin-bottom: 1.5rem !important;17910}17911.dark-mode .mb-sm-5 {17912margin-bottom: 3rem !important;17913}17914.dark-mode .mb-sm-auto {17915margin-bottom: auto !important;17916}17917.dark-mode .ms-sm-0 {17918margin-left: 0 !important;17919}17920.dark-mode .ms-sm-1 {17921margin-left: 0.25rem !important;17922}17923.dark-mode .ms-sm-2 {17924margin-left: 0.5rem !important;17925}17926.dark-mode .ms-sm-3 {17927margin-left: 1rem !important;17928}17929.dark-mode .ms-sm-4 {17930margin-left: 1.5rem !important;17931}17932.dark-mode .ms-sm-5 {17933margin-left: 3rem !important;17934}17935.dark-mode .ms-sm-auto {17936margin-left: auto !important;17937}17938.dark-mode .p-sm-0 {17939padding: 0 !important;17940}17941.dark-mode .p-sm-1 {17942padding: 0.25rem !important;17943}17944.dark-mode .p-sm-2 {17945padding: 0.5rem !important;17946}17947.dark-mode .p-sm-3 {17948padding: 1rem !important;17949}17950.dark-mode .p-sm-4 {17951padding: 1.5rem !important;17952}17953.dark-mode .p-sm-5 {17954padding: 3rem !important;17955}17956.dark-mode .px-sm-0 {17957padding-right: 0 !important;17958padding-left: 0 !important;17959}17960.dark-mode .px-sm-1 {17961padding-right: 0.25rem !important;17962padding-left: 0.25rem !important;17963}17964.dark-mode .px-sm-2 {17965padding-right: 0.5rem !important;17966padding-left: 0.5rem !important;17967}17968.dark-mode .px-sm-3 {17969padding-right: 1rem !important;17970padding-left: 1rem !important;17971}17972.dark-mode .px-sm-4 {17973padding-right: 1.5rem !important;17974padding-left: 1.5rem !important;17975}17976.dark-mode .px-sm-5 {17977padding-right: 3rem !important;17978padding-left: 3rem !important;17979}17980.dark-mode .py-sm-0 {17981padding-top: 0 !important;17982padding-bottom: 0 !important;17983}17984.dark-mode .py-sm-1 {17985padding-top: 0.25rem !important;17986padding-bottom: 0.25rem !important;17987}17988.dark-mode .py-sm-2 {17989padding-top: 0.5rem !important;17990padding-bottom: 0.5rem !important;17991}17992.dark-mode .py-sm-3 {17993padding-top: 1rem !important;17994padding-bottom: 1rem !important;17995}17996.dark-mode .py-sm-4 {17997padding-top: 1.5rem !important;17998padding-bottom: 1.5rem !important;17999}18000.dark-mode .py-sm-5 {18001padding-top: 3rem !important;18002padding-bottom: 3rem !important;18003}18004.dark-mode .pt-sm-0 {18005padding-top: 0 !important;18006}18007.dark-mode .pt-sm-1 {18008padding-top: 0.25rem !important;18009}18010.dark-mode .pt-sm-2 {18011padding-top: 0.5rem !important;18012}18013.dark-mode .pt-sm-3 {18014padding-top: 1rem !important;18015}18016.dark-mode .pt-sm-4 {18017padding-top: 1.5rem !important;18018}18019.dark-mode .pt-sm-5 {18020padding-top: 3rem !important;18021}18022.dark-mode .pe-sm-0 {18023padding-right: 0 !important;18024}18025.dark-mode .pe-sm-1 {18026padding-right: 0.25rem !important;18027}18028.dark-mode .pe-sm-2 {18029padding-right: 0.5rem !important;18030}18031.dark-mode .pe-sm-3 {18032padding-right: 1rem !important;18033}18034.dark-mode .pe-sm-4 {18035padding-right: 1.5rem !important;18036}18037.dark-mode .pe-sm-5 {18038padding-right: 3rem !important;18039}18040.dark-mode .pb-sm-0 {18041padding-bottom: 0 !important;18042}18043.dark-mode .pb-sm-1 {18044padding-bottom: 0.25rem !important;18045}18046.dark-mode .pb-sm-2 {18047padding-bottom: 0.5rem !important;18048}18049.dark-mode .pb-sm-3 {18050padding-bottom: 1rem !important;18051}18052.dark-mode .pb-sm-4 {18053padding-bottom: 1.5rem !important;18054}18055.dark-mode .pb-sm-5 {18056padding-bottom: 3rem !important;18057}18058.dark-mode .ps-sm-0 {18059padding-left: 0 !important;18060}18061.dark-mode .ps-sm-1 {18062padding-left: 0.25rem !important;18063}18064.dark-mode .ps-sm-2 {18065padding-left: 0.5rem !important;18066}18067.dark-mode .ps-sm-3 {18068padding-left: 1rem !important;18069}18070.dark-mode .ps-sm-4 {18071padding-left: 1.5rem !important;18072}18073.dark-mode .ps-sm-5 {18074padding-left: 3rem !important;18075}18076.dark-mode .text-sm-start {18077text-align: left !important;18078}18079.dark-mode .text-sm-end {18080text-align: right !important;18081}18082.dark-mode .text-sm-center {18083text-align: center !important;18084}18085}18086@media (min-width: 768px) {18087.dark-mode .float-md-start {18088float: left !important;18089}18090.dark-mode .float-md-end {18091float: right !important;18092}18093.dark-mode .float-md-none {18094float: none !important;18095}18096.dark-mode .d-md-inline {18097display: inline !important;18098}18099.dark-mode .d-md-inline-block {18100display: inline-block !important;18101}18102.dark-mode .d-md-block {18103display: block !important;18104}18105.dark-mode .d-md-grid {18106display: grid !important;18107}18108.dark-mode .d-md-table {18109display: table !important;18110}18111.dark-mode .d-md-table-row {18112display: table-row !important;18113}18114.dark-mode .d-md-table-cell {18115display: table-cell !important;18116}18117.dark-mode .d-md-flex {18118display: flex !important;18119}18120.dark-mode .d-md-inline-flex {18121display: inline-flex !important;18122}18123.dark-mode .d-md-none {18124display: none !important;18125}18126.dark-mode .flex-md-fill {18127flex: 1 1 auto !important;18128}18129.dark-mode .flex-md-row {18130flex-direction: row !important;18131}18132.dark-mode .flex-md-column {18133flex-direction: column !important;18134}18135.dark-mode .flex-md-row-reverse {18136flex-direction: row-reverse !important;18137}18138.dark-mode .flex-md-column-reverse {18139flex-direction: column-reverse !important;18140}18141.dark-mode .flex-md-grow-0 {18142flex-grow: 0 !important;18143}18144.dark-mode .flex-md-grow-1 {18145flex-grow: 1 !important;18146}18147.dark-mode .flex-md-shrink-0 {18148flex-shrink: 0 !important;18149}18150.dark-mode .flex-md-shrink-1 {18151flex-shrink: 1 !important;18152}18153.dark-mode .flex-md-wrap {18154flex-wrap: wrap !important;18155}18156.dark-mode .flex-md-nowrap {18157flex-wrap: nowrap !important;18158}18159.dark-mode .flex-md-wrap-reverse {18160flex-wrap: wrap-reverse !important;18161}18162.dark-mode .gap-md-0 {18163gap: 0 !important;18164}18165.dark-mode .gap-md-1 {18166gap: 0.25rem !important;18167}18168.dark-mode .gap-md-2 {18169gap: 0.5rem !important;18170}18171.dark-mode .gap-md-3 {18172gap: 1rem !important;18173}18174.dark-mode .gap-md-4 {18175gap: 1.5rem !important;18176}18177.dark-mode .gap-md-5 {18178gap: 3rem !important;18179}18180.dark-mode .justify-content-md-start {18181justify-content: flex-start !important;18182}18183.dark-mode .justify-content-md-end {18184justify-content: flex-end !important;18185}18186.dark-mode .justify-content-md-center {18187justify-content: center !important;18188}18189.dark-mode .justify-content-md-between {18190justify-content: space-between !important;18191}18192.dark-mode .justify-content-md-around {18193justify-content: space-around !important;18194}18195.dark-mode .justify-content-md-evenly {18196justify-content: space-evenly !important;18197}18198.dark-mode .align-items-md-start {18199align-items: flex-start !important;18200}18201.dark-mode .align-items-md-end {18202align-items: flex-end !important;18203}18204.dark-mode .align-items-md-center {18205align-items: center !important;18206}18207.dark-mode .align-items-md-baseline {18208align-items: baseline !important;18209}18210.dark-mode .align-items-md-stretch {18211align-items: stretch !important;18212}18213.dark-mode .align-content-md-start {18214align-content: flex-start !important;18215}18216.dark-mode .align-content-md-end {18217align-content: flex-end !important;18218}18219.dark-mode .align-content-md-center {18220align-content: center !important;18221}18222.dark-mode .align-content-md-between {18223align-content: space-between !important;18224}18225.dark-mode .align-content-md-around {18226align-content: space-around !important;18227}18228.dark-mode .align-content-md-stretch {18229align-content: stretch !important;18230}18231.dark-mode .align-self-md-auto {18232align-self: auto !important;18233}18234.dark-mode .align-self-md-start {18235align-self: flex-start !important;18236}18237.dark-mode .align-self-md-end {18238align-self: flex-end !important;18239}18240.dark-mode .align-self-md-center {18241align-self: center !important;18242}18243.dark-mode .align-self-md-baseline {18244align-self: baseline !important;18245}18246.dark-mode .align-self-md-stretch {18247align-self: stretch !important;18248}18249.dark-mode .order-md-first {18250order: -1 !important;18251}18252.dark-mode .order-md-0 {18253order: 0 !important;18254}18255.dark-mode .order-md-1 {18256order: 1 !important;18257}18258.dark-mode .order-md-2 {18259order: 2 !important;18260}18261.dark-mode .order-md-3 {18262order: 3 !important;18263}18264.dark-mode .order-md-4 {18265order: 4 !important;18266}18267.dark-mode .order-md-5 {18268order: 5 !important;18269}18270.dark-mode .order-md-last {18271order: 6 !important;18272}18273.dark-mode .m-md-0 {18274margin: 0 !important;18275}18276.dark-mode .m-md-1 {18277margin: 0.25rem !important;18278}18279.dark-mode .m-md-2 {18280margin: 0.5rem !important;18281}18282.dark-mode .m-md-3 {18283margin: 1rem !important;18284}18285.dark-mode .m-md-4 {18286margin: 1.5rem !important;18287}18288.dark-mode .m-md-5 {18289margin: 3rem !important;18290}18291.dark-mode .m-md-auto {18292margin: auto !important;18293}18294.dark-mode .mx-md-0 {18295margin-right: 0 !important;18296margin-left: 0 !important;18297}18298.dark-mode .mx-md-1 {18299margin-right: 0.25rem !important;18300margin-left: 0.25rem !important;18301}18302.dark-mode .mx-md-2 {18303margin-right: 0.5rem !important;18304margin-left: 0.5rem !important;18305}18306.dark-mode .mx-md-3 {18307margin-right: 1rem !important;18308margin-left: 1rem !important;18309}18310.dark-mode .mx-md-4 {18311margin-right: 1.5rem !important;18312margin-left: 1.5rem !important;18313}18314.dark-mode .mx-md-5 {18315margin-right: 3rem !important;18316margin-left: 3rem !important;18317}18318.dark-mode .mx-md-auto {18319margin-right: auto !important;18320margin-left: auto !important;18321}18322.dark-mode .my-md-0 {18323margin-top: 0 !important;18324margin-bottom: 0 !important;18325}18326.dark-mode .my-md-1 {18327margin-top: 0.25rem !important;18328margin-bottom: 0.25rem !important;18329}18330.dark-mode .my-md-2 {18331margin-top: 0.5rem !important;18332margin-bottom: 0.5rem !important;18333}18334.dark-mode .my-md-3 {18335margin-top: 1rem !important;18336margin-bottom: 1rem !important;18337}18338.dark-mode .my-md-4 {18339margin-top: 1.5rem !important;18340margin-bottom: 1.5rem !important;18341}18342.dark-mode .my-md-5 {18343margin-top: 3rem !important;18344margin-bottom: 3rem !important;18345}18346.dark-mode .my-md-auto {18347margin-top: auto !important;18348margin-bottom: auto !important;18349}18350.dark-mode .mt-md-0 {18351margin-top: 0 !important;18352}18353.dark-mode .mt-md-1 {18354margin-top: 0.25rem !important;18355}18356.dark-mode .mt-md-2 {18357margin-top: 0.5rem !important;18358}18359.dark-mode .mt-md-3 {18360margin-top: 1rem !important;18361}18362.dark-mode .mt-md-4 {18363margin-top: 1.5rem !important;18364}18365.dark-mode .mt-md-5 {18366margin-top: 3rem !important;18367}18368.dark-mode .mt-md-auto {18369margin-top: auto !important;18370}18371.dark-mode .me-md-0 {18372margin-right: 0 !important;18373}18374.dark-mode .me-md-1 {18375margin-right: 0.25rem !important;18376}18377.dark-mode .me-md-2 {18378margin-right: 0.5rem !important;18379}18380.dark-mode .me-md-3 {18381margin-right: 1rem !important;18382}18383.dark-mode .me-md-4 {18384margin-right: 1.5rem !important;18385}18386.dark-mode .me-md-5 {18387margin-right: 3rem !important;18388}18389.dark-mode .me-md-auto {18390margin-right: auto !important;18391}18392.dark-mode .mb-md-0 {18393margin-bottom: 0 !important;18394}18395.dark-mode .mb-md-1 {18396margin-bottom: 0.25rem !important;18397}18398.dark-mode .mb-md-2 {18399margin-bottom: 0.5rem !important;18400}18401.dark-mode .mb-md-3 {18402margin-bottom: 1rem !important;18403}18404.dark-mode .mb-md-4 {18405margin-bottom: 1.5rem !important;18406}18407.dark-mode .mb-md-5 {18408margin-bottom: 3rem !important;18409}18410.dark-mode .mb-md-auto {18411margin-bottom: auto !important;18412}18413.dark-mode .ms-md-0 {18414margin-left: 0 !important;18415}18416.dark-mode .ms-md-1 {18417margin-left: 0.25rem !important;18418}18419.dark-mode .ms-md-2 {18420margin-left: 0.5rem !important;18421}18422.dark-mode .ms-md-3 {18423margin-left: 1rem !important;18424}18425.dark-mode .ms-md-4 {18426margin-left: 1.5rem !important;18427}18428.dark-mode .ms-md-5 {18429margin-left: 3rem !important;18430}18431.dark-mode .ms-md-auto {18432margin-left: auto !important;18433}18434.dark-mode .p-md-0 {18435padding: 0 !important;18436}18437.dark-mode .p-md-1 {18438padding: 0.25rem !important;18439}18440.dark-mode .p-md-2 {18441padding: 0.5rem !important;18442}18443.dark-mode .p-md-3 {18444padding: 1rem !important;18445}18446.dark-mode .p-md-4 {18447padding: 1.5rem !important;18448}18449.dark-mode .p-md-5 {18450padding: 3rem !important;18451}18452.dark-mode .px-md-0 {18453padding-right: 0 !important;18454padding-left: 0 !important;18455}18456.dark-mode .px-md-1 {18457padding-right: 0.25rem !important;18458padding-left: 0.25rem !important;18459}18460.dark-mode .px-md-2 {18461padding-right: 0.5rem !important;18462padding-left: 0.5rem !important;18463}18464.dark-mode .px-md-3 {18465padding-right: 1rem !important;18466padding-left: 1rem !important;18467}18468.dark-mode .px-md-4 {18469padding-right: 1.5rem !important;18470padding-left: 1.5rem !important;18471}18472.dark-mode .px-md-5 {18473padding-right: 3rem !important;18474padding-left: 3rem !important;18475}18476.dark-mode .py-md-0 {18477padding-top: 0 !important;18478padding-bottom: 0 !important;18479}18480.dark-mode .py-md-1 {18481padding-top: 0.25rem !important;18482padding-bottom: 0.25rem !important;18483}18484.dark-mode .py-md-2 {18485padding-top: 0.5rem !important;18486padding-bottom: 0.5rem !important;18487}18488.dark-mode .py-md-3 {18489padding-top: 1rem !important;18490padding-bottom: 1rem !important;18491}18492.dark-mode .py-md-4 {18493padding-top: 1.5rem !important;18494padding-bottom: 1.5rem !important;18495}18496.dark-mode .py-md-5 {18497padding-top: 3rem !important;18498padding-bottom: 3rem !important;18499}18500.dark-mode .pt-md-0 {18501padding-top: 0 !important;18502}18503.dark-mode .pt-md-1 {18504padding-top: 0.25rem !important;18505}18506.dark-mode .pt-md-2 {18507padding-top: 0.5rem !important;18508}18509.dark-mode .pt-md-3 {18510padding-top: 1rem !important;18511}18512.dark-mode .pt-md-4 {18513padding-top: 1.5rem !important;18514}18515.dark-mode .pt-md-5 {18516padding-top: 3rem !important;18517}18518.dark-mode .pe-md-0 {18519padding-right: 0 !important;18520}18521.dark-mode .pe-md-1 {18522padding-right: 0.25rem !important;18523}18524.dark-mode .pe-md-2 {18525padding-right: 0.5rem !important;18526}18527.dark-mode .pe-md-3 {18528padding-right: 1rem !important;18529}18530.dark-mode .pe-md-4 {18531padding-right: 1.5rem !important;18532}18533.dark-mode .pe-md-5 {18534padding-right: 3rem !important;18535}18536.dark-mode .pb-md-0 {18537padding-bottom: 0 !important;18538}18539.dark-mode .pb-md-1 {18540padding-bottom: 0.25rem !important;18541}18542.dark-mode .pb-md-2 {18543padding-bottom: 0.5rem !important;18544}18545.dark-mode .pb-md-3 {18546padding-bottom: 1rem !important;18547}18548.dark-mode .pb-md-4 {18549padding-bottom: 1.5rem !important;18550}18551.dark-mode .pb-md-5 {18552padding-bottom: 3rem !important;18553}18554.dark-mode .ps-md-0 {18555padding-left: 0 !important;18556}18557.dark-mode .ps-md-1 {18558padding-left: 0.25rem !important;18559}18560.dark-mode .ps-md-2 {18561padding-left: 0.5rem !important;18562}18563.dark-mode .ps-md-3 {18564padding-left: 1rem !important;18565}18566.dark-mode .ps-md-4 {18567padding-left: 1.5rem !important;18568}18569.dark-mode .ps-md-5 {18570padding-left: 3rem !important;18571}18572.dark-mode .text-md-start {18573text-align: left !important;18574}18575.dark-mode .text-md-end {18576text-align: right !important;18577}18578.dark-mode .text-md-center {18579text-align: center !important;18580}18581}18582@media (min-width: 992px) {18583.dark-mode .float-lg-start {18584float: left !important;18585}18586.dark-mode .float-lg-end {18587float: right !important;18588}18589.dark-mode .float-lg-none {18590float: none !important;18591}18592.dark-mode .d-lg-inline {18593display: inline !important;18594}18595.dark-mode .d-lg-inline-block {18596display: inline-block !important;18597}18598.dark-mode .d-lg-block {18599display: block !important;18600}18601.dark-mode .d-lg-grid {18602display: grid !important;18603}18604.dark-mode .d-lg-table {18605display: table !important;18606}18607.dark-mode .d-lg-table-row {18608display: table-row !important;18609}18610.dark-mode .d-lg-table-cell {18611display: table-cell !important;18612}18613.dark-mode .d-lg-flex {18614display: flex !important;18615}18616.dark-mode .d-lg-inline-flex {18617display: inline-flex !important;18618}18619.dark-mode .d-lg-none {18620display: none !important;18621}18622.dark-mode .flex-lg-fill {18623flex: 1 1 auto !important;18624}18625.dark-mode .flex-lg-row {18626flex-direction: row !important;18627}18628.dark-mode .flex-lg-column {18629flex-direction: column !important;18630}18631.dark-mode .flex-lg-row-reverse {18632flex-direction: row-reverse !important;18633}18634.dark-mode .flex-lg-column-reverse {18635flex-direction: column-reverse !important;18636}18637.dark-mode .flex-lg-grow-0 {18638flex-grow: 0 !important;18639}18640.dark-mode .flex-lg-grow-1 {18641flex-grow: 1 !important;18642}18643.dark-mode .flex-lg-shrink-0 {18644flex-shrink: 0 !important;18645}18646.dark-mode .flex-lg-shrink-1 {18647flex-shrink: 1 !important;18648}18649.dark-mode .flex-lg-wrap {18650flex-wrap: wrap !important;18651}18652.dark-mode .flex-lg-nowrap {18653flex-wrap: nowrap !important;18654}18655.dark-mode .flex-lg-wrap-reverse {18656flex-wrap: wrap-reverse !important;18657}18658.dark-mode .gap-lg-0 {18659gap: 0 !important;18660}18661.dark-mode .gap-lg-1 {18662gap: 0.25rem !important;18663}18664.dark-mode .gap-lg-2 {18665gap: 0.5rem !important;18666}18667.dark-mode .gap-lg-3 {18668gap: 1rem !important;18669}18670.dark-mode .gap-lg-4 {18671gap: 1.5rem !important;18672}18673.dark-mode .gap-lg-5 {18674gap: 3rem !important;18675}18676.dark-mode .justify-content-lg-start {18677justify-content: flex-start !important;18678}18679.dark-mode .justify-content-lg-end {18680justify-content: flex-end !important;18681}18682.dark-mode .justify-content-lg-center {18683justify-content: center !important;18684}18685.dark-mode .justify-content-lg-between {18686justify-content: space-between !important;18687}18688.dark-mode .justify-content-lg-around {18689justify-content: space-around !important;18690}18691.dark-mode .justify-content-lg-evenly {18692justify-content: space-evenly !important;18693}18694.dark-mode .align-items-lg-start {18695align-items: flex-start !important;18696}18697.dark-mode .align-items-lg-end {18698align-items: flex-end !important;18699}18700.dark-mode .align-items-lg-center {18701align-items: center !important;18702}18703.dark-mode .align-items-lg-baseline {18704align-items: baseline !important;18705}18706.dark-mode .align-items-lg-stretch {18707align-items: stretch !important;18708}18709.dark-mode .align-content-lg-start {18710align-content: flex-start !important;18711}18712.dark-mode .align-content-lg-end {18713align-content: flex-end !important;18714}18715.dark-mode .align-content-lg-center {18716align-content: center !important;18717}18718.dark-mode .align-content-lg-between {18719align-content: space-between !important;18720}18721.dark-mode .align-content-lg-around {18722align-content: space-around !important;18723}18724.dark-mode .align-content-lg-stretch {18725align-content: stretch !important;18726}18727.dark-mode .align-self-lg-auto {18728align-self: auto !important;18729}18730.dark-mode .align-self-lg-start {18731align-self: flex-start !important;18732}18733.dark-mode .align-self-lg-end {18734align-self: flex-end !important;18735}18736.dark-mode .align-self-lg-center {18737align-self: center !important;18738}18739.dark-mode .align-self-lg-baseline {18740align-self: baseline !important;18741}18742.dark-mode .align-self-lg-stretch {18743align-self: stretch !important;18744}18745.dark-mode .order-lg-first {18746order: -1 !important;18747}18748.dark-mode .order-lg-0 {18749order: 0 !important;18750}18751.dark-mode .order-lg-1 {18752order: 1 !important;18753}18754.dark-mode .order-lg-2 {18755order: 2 !important;18756}18757.dark-mode .order-lg-3 {18758order: 3 !important;18759}18760.dark-mode .order-lg-4 {18761order: 4 !important;18762}18763.dark-mode .order-lg-5 {18764order: 5 !important;18765}18766.dark-mode .order-lg-last {18767order: 6 !important;18768}18769.dark-mode .m-lg-0 {18770margin: 0 !important;18771}18772.dark-mode .m-lg-1 {18773margin: 0.25rem !important;18774}18775.dark-mode .m-lg-2 {18776margin: 0.5rem !important;18777}18778.dark-mode .m-lg-3 {18779margin: 1rem !important;18780}18781.dark-mode .m-lg-4 {18782margin: 1.5rem !important;18783}18784.dark-mode .m-lg-5 {18785margin: 3rem !important;18786}18787.dark-mode .m-lg-auto {18788margin: auto !important;18789}18790.dark-mode .mx-lg-0 {18791margin-right: 0 !important;18792margin-left: 0 !important;18793}18794.dark-mode .mx-lg-1 {18795margin-right: 0.25rem !important;18796margin-left: 0.25rem !important;18797}18798.dark-mode .mx-lg-2 {18799margin-right: 0.5rem !important;18800margin-left: 0.5rem !important;18801}18802.dark-mode .mx-lg-3 {18803margin-right: 1rem !important;18804margin-left: 1rem !important;18805}18806.dark-mode .mx-lg-4 {18807margin-right: 1.5rem !important;18808margin-left: 1.5rem !important;18809}18810.dark-mode .mx-lg-5 {18811margin-right: 3rem !important;18812margin-left: 3rem !important;18813}18814.dark-mode .mx-lg-auto {18815margin-right: auto !important;18816margin-left: auto !important;18817}18818.dark-mode .my-lg-0 {18819margin-top: 0 !important;18820margin-bottom: 0 !important;18821}18822.dark-mode .my-lg-1 {18823margin-top: 0.25rem !important;18824margin-bottom: 0.25rem !important;18825}18826.dark-mode .my-lg-2 {18827margin-top: 0.5rem !important;18828margin-bottom: 0.5rem !important;18829}18830.dark-mode .my-lg-3 {18831margin-top: 1rem !important;18832margin-bottom: 1rem !important;18833}18834.dark-mode .my-lg-4 {18835margin-top: 1.5rem !important;18836margin-bottom: 1.5rem !important;18837}18838.dark-mode .my-lg-5 {18839margin-top: 3rem !important;18840margin-bottom: 3rem !important;18841}18842.dark-mode .my-lg-auto {18843margin-top: auto !important;18844margin-bottom: auto !important;18845}18846.dark-mode .mt-lg-0 {18847margin-top: 0 !important;18848}18849.dark-mode .mt-lg-1 {18850margin-top: 0.25rem !important;18851}18852.dark-mode .mt-lg-2 {18853margin-top: 0.5rem !important;18854}18855.dark-mode .mt-lg-3 {18856margin-top: 1rem !important;18857}18858.dark-mode .mt-lg-4 {18859margin-top: 1.5rem !important;18860}18861.dark-mode .mt-lg-5 {18862margin-top: 3rem !important;18863}18864.dark-mode .mt-lg-auto {18865margin-top: auto !important;18866}18867.dark-mode .me-lg-0 {18868margin-right: 0 !important;18869}18870.dark-mode .me-lg-1 {18871margin-right: 0.25rem !important;18872}18873.dark-mode .me-lg-2 {18874margin-right: 0.5rem !important;18875}18876.dark-mode .me-lg-3 {18877margin-right: 1rem !important;18878}18879.dark-mode .me-lg-4 {18880margin-right: 1.5rem !important;18881}18882.dark-mode .me-lg-5 {18883margin-right: 3rem !important;18884}18885.dark-mode .me-lg-auto {18886margin-right: auto !important;18887}18888.dark-mode .mb-lg-0 {18889margin-bottom: 0 !important;18890}18891.dark-mode .mb-lg-1 {18892margin-bottom: 0.25rem !important;18893}18894.dark-mode .mb-lg-2 {18895margin-bottom: 0.5rem !important;18896}18897.dark-mode .mb-lg-3 {18898margin-bottom: 1rem !important;18899}18900.dark-mode .mb-lg-4 {18901margin-bottom: 1.5rem !important;18902}18903.dark-mode .mb-lg-5 {18904margin-bottom: 3rem !important;18905}18906.dark-mode .mb-lg-auto {18907margin-bottom: auto !important;18908}18909.dark-mode .ms-lg-0 {18910margin-left: 0 !important;18911}18912.dark-mode .ms-lg-1 {18913margin-left: 0.25rem !important;18914}18915.dark-mode .ms-lg-2 {18916margin-left: 0.5rem !important;18917}18918.dark-mode .ms-lg-3 {18919margin-left: 1rem !important;18920}18921.dark-mode .ms-lg-4 {18922margin-left: 1.5rem !important;18923}18924.dark-mode .ms-lg-5 {18925margin-left: 3rem !important;18926}18927.dark-mode .ms-lg-auto {18928margin-left: auto !important;18929}18930.dark-mode .p-lg-0 {18931padding: 0 !important;18932}18933.dark-mode .p-lg-1 {18934padding: 0.25rem !important;18935}18936.dark-mode .p-lg-2 {18937padding: 0.5rem !important;18938}18939.dark-mode .p-lg-3 {18940padding: 1rem !important;18941}18942.dark-mode .p-lg-4 {18943padding: 1.5rem !important;18944}18945.dark-mode .p-lg-5 {18946padding: 3rem !important;18947}18948.dark-mode .px-lg-0 {18949padding-right: 0 !important;18950padding-left: 0 !important;18951}18952.dark-mode .px-lg-1 {18953padding-right: 0.25rem !important;18954padding-left: 0.25rem !important;18955}18956.dark-mode .px-lg-2 {18957padding-right: 0.5rem !important;18958padding-left: 0.5rem !important;18959}18960.dark-mode .px-lg-3 {18961padding-right: 1rem !important;18962padding-left: 1rem !important;18963}18964.dark-mode .px-lg-4 {18965padding-right: 1.5rem !important;18966padding-left: 1.5rem !important;18967}18968.dark-mode .px-lg-5 {18969padding-right: 3rem !important;18970padding-left: 3rem !important;18971}18972.dark-mode .py-lg-0 {18973padding-top: 0 !important;18974padding-bottom: 0 !important;18975}18976.dark-mode .py-lg-1 {18977padding-top: 0.25rem !important;18978padding-bottom: 0.25rem !important;18979}18980.dark-mode .py-lg-2 {18981padding-top: 0.5rem !important;18982padding-bottom: 0.5rem !important;18983}18984.dark-mode .py-lg-3 {18985padding-top: 1rem !important;18986padding-bottom: 1rem !important;18987}18988.dark-mode .py-lg-4 {18989padding-top: 1.5rem !important;18990padding-bottom: 1.5rem !important;18991}18992.dark-mode .py-lg-5 {18993padding-top: 3rem !important;18994padding-bottom: 3rem !important;18995}18996.dark-mode .pt-lg-0 {18997padding-top: 0 !important;18998}18999.dark-mode .pt-lg-1 {19000padding-top: 0.25rem !important;19001}19002.dark-mode .pt-lg-2 {19003padding-top: 0.5rem !important;19004}19005.dark-mode .pt-lg-3 {19006padding-top: 1rem !important;19007}19008.dark-mode .pt-lg-4 {19009padding-top: 1.5rem !important;19010}19011.dark-mode .pt-lg-5 {19012padding-top: 3rem !important;19013}19014.dark-mode .pe-lg-0 {19015padding-right: 0 !important;19016}19017.dark-mode .pe-lg-1 {19018padding-right: 0.25rem !important;19019}19020.dark-mode .pe-lg-2 {19021padding-right: 0.5rem !important;19022}19023.dark-mode .pe-lg-3 {19024padding-right: 1rem !important;19025}19026.dark-mode .pe-lg-4 {19027padding-right: 1.5rem !important;19028}19029.dark-mode .pe-lg-5 {19030padding-right: 3rem !important;19031}19032.dark-mode .pb-lg-0 {19033padding-bottom: 0 !important;19034}19035.dark-mode .pb-lg-1 {19036padding-bottom: 0.25rem !important;19037}19038.dark-mode .pb-lg-2 {19039padding-bottom: 0.5rem !important;19040}19041.dark-mode .pb-lg-3 {19042padding-bottom: 1rem !important;19043}19044.dark-mode .pb-lg-4 {19045padding-bottom: 1.5rem !important;19046}19047.dark-mode .pb-lg-5 {19048padding-bottom: 3rem !important;19049}19050.dark-mode .ps-lg-0 {19051padding-left: 0 !important;19052}19053.dark-mode .ps-lg-1 {19054padding-left: 0.25rem !important;19055}19056.dark-mode .ps-lg-2 {19057padding-left: 0.5rem !important;19058}19059.dark-mode .ps-lg-3 {19060padding-left: 1rem !important;19061}19062.dark-mode .ps-lg-4 {19063padding-left: 1.5rem !important;19064}19065.dark-mode .ps-lg-5 {19066padding-left: 3rem !important;19067}19068.dark-mode .text-lg-start {19069text-align: left !important;19070}19071.dark-mode .text-lg-end {19072text-align: right !important;19073}19074.dark-mode .text-lg-center {19075text-align: center !important;19076}19077}19078@media (min-width: 1200px) {19079.dark-mode .float-xl-start {19080float: left !important;19081}19082.dark-mode .float-xl-end {19083float: right !important;19084}19085.dark-mode .float-xl-none {19086float: none !important;19087}19088.dark-mode .d-xl-inline {19089display: inline !important;19090}19091.dark-mode .d-xl-inline-block {19092display: inline-block !important;19093}19094.dark-mode .d-xl-block {19095display: block !important;19096}19097.dark-mode .d-xl-grid {19098display: grid !important;19099}19100.dark-mode .d-xl-table {19101display: table !important;19102}19103.dark-mode .d-xl-table-row {19104display: table-row !important;19105}19106.dark-mode .d-xl-table-cell {19107display: table-cell !important;19108}19109.dark-mode .d-xl-flex {19110display: flex !important;19111}19112.dark-mode .d-xl-inline-flex {19113display: inline-flex !important;19114}19115.dark-mode .d-xl-none {19116display: none !important;19117}19118.dark-mode .flex-xl-fill {19119flex: 1 1 auto !important;19120}19121.dark-mode .flex-xl-row {19122flex-direction: row !important;19123}19124.dark-mode .flex-xl-column {19125flex-direction: column !important;19126}19127.dark-mode .flex-xl-row-reverse {19128flex-direction: row-reverse !important;19129}19130.dark-mode .flex-xl-column-reverse {19131flex-direction: column-reverse !important;19132}19133.dark-mode .flex-xl-grow-0 {19134flex-grow: 0 !important;19135}19136.dark-mode .flex-xl-grow-1 {19137flex-grow: 1 !important;19138}19139.dark-mode .flex-xl-shrink-0 {19140flex-shrink: 0 !important;19141}19142.dark-mode .flex-xl-shrink-1 {19143flex-shrink: 1 !important;19144}19145.dark-mode .flex-xl-wrap {19146flex-wrap: wrap !important;19147}19148.dark-mode .flex-xl-nowrap {19149flex-wrap: nowrap !important;19150}19151.dark-mode .flex-xl-wrap-reverse {19152flex-wrap: wrap-reverse !important;19153}19154.dark-mode .gap-xl-0 {19155gap: 0 !important;19156}19157.dark-mode .gap-xl-1 {19158gap: 0.25rem !important;19159}19160.dark-mode .gap-xl-2 {19161gap: 0.5rem !important;19162}19163.dark-mode .gap-xl-3 {19164gap: 1rem !important;19165}19166.dark-mode .gap-xl-4 {19167gap: 1.5rem !important;19168}19169.dark-mode .gap-xl-5 {19170gap: 3rem !important;19171}19172.dark-mode .justify-content-xl-start {19173justify-content: flex-start !important;19174}19175.dark-mode .justify-content-xl-end {19176justify-content: flex-end !important;19177}19178.dark-mode .justify-content-xl-center {19179justify-content: center !important;19180}19181.dark-mode .justify-content-xl-between {19182justify-content: space-between !important;19183}19184.dark-mode .justify-content-xl-around {19185justify-content: space-around !important;19186}19187.dark-mode .justify-content-xl-evenly {19188justify-content: space-evenly !important;19189}19190.dark-mode .align-items-xl-start {19191align-items: flex-start !important;19192}19193.dark-mode .align-items-xl-end {19194align-items: flex-end !important;19195}19196.dark-mode .align-items-xl-center {19197align-items: center !important;19198}19199.dark-mode .align-items-xl-baseline {19200align-items: baseline !important;19201}19202.dark-mode .align-items-xl-stretch {19203align-items: stretch !important;19204}19205.dark-mode .align-content-xl-start {19206align-content: flex-start !important;19207}19208.dark-mode .align-content-xl-end {19209align-content: flex-end !important;19210}19211.dark-mode .align-content-xl-center {19212align-content: center !important;19213}19214.dark-mode .align-content-xl-between {19215align-content: space-between !important;19216}19217.dark-mode .align-content-xl-around {19218align-content: space-around !important;19219}19220.dark-mode .align-content-xl-stretch {19221align-content: stretch !important;19222}19223.dark-mode .align-self-xl-auto {19224align-self: auto !important;19225}19226.dark-mode .align-self-xl-start {19227align-self: flex-start !important;19228}19229.dark-mode .align-self-xl-end {19230align-self: flex-end !important;19231}19232.dark-mode .align-self-xl-center {19233align-self: center !important;19234}19235.dark-mode .align-self-xl-baseline {19236align-self: baseline !important;19237}19238.dark-mode .align-self-xl-stretch {19239align-self: stretch !important;19240}19241.dark-mode .order-xl-first {19242order: -1 !important;19243}19244.dark-mode .order-xl-0 {19245order: 0 !important;19246}19247.dark-mode .order-xl-1 {19248order: 1 !important;19249}19250.dark-mode .order-xl-2 {19251order: 2 !important;19252}19253.dark-mode .order-xl-3 {19254order: 3 !important;19255}19256.dark-mode .order-xl-4 {19257order: 4 !important;19258}19259.dark-mode .order-xl-5 {19260order: 5 !important;19261}19262.dark-mode .order-xl-last {19263order: 6 !important;19264}19265.dark-mode .m-xl-0 {19266margin: 0 !important;19267}19268.dark-mode .m-xl-1 {19269margin: 0.25rem !important;19270}19271.dark-mode .m-xl-2 {19272margin: 0.5rem !important;19273}19274.dark-mode .m-xl-3 {19275margin: 1rem !important;19276}19277.dark-mode .m-xl-4 {19278margin: 1.5rem !important;19279}19280.dark-mode .m-xl-5 {19281margin: 3rem !important;19282}19283.dark-mode .m-xl-auto {19284margin: auto !important;19285}19286.dark-mode .mx-xl-0 {19287margin-right: 0 !important;19288margin-left: 0 !important;19289}19290.dark-mode .mx-xl-1 {19291margin-right: 0.25rem !important;19292margin-left: 0.25rem !important;19293}19294.dark-mode .mx-xl-2 {19295margin-right: 0.5rem !important;19296margin-left: 0.5rem !important;19297}19298.dark-mode .mx-xl-3 {19299margin-right: 1rem !important;19300margin-left: 1rem !important;19301}19302.dark-mode .mx-xl-4 {19303margin-right: 1.5rem !important;19304margin-left: 1.5rem !important;19305}19306.dark-mode .mx-xl-5 {19307margin-right: 3rem !important;19308margin-left: 3rem !important;19309}19310.dark-mode .mx-xl-auto {19311margin-right: auto !important;19312margin-left: auto !important;19313}19314.dark-mode .my-xl-0 {19315margin-top: 0 !important;19316margin-bottom: 0 !important;19317}19318.dark-mode .my-xl-1 {19319margin-top: 0.25rem !important;19320margin-bottom: 0.25rem !important;19321}19322.dark-mode .my-xl-2 {19323margin-top: 0.5rem !important;19324margin-bottom: 0.5rem !important;19325}19326.dark-mode .my-xl-3 {19327margin-top: 1rem !important;19328margin-bottom: 1rem !important;19329}19330.dark-mode .my-xl-4 {19331margin-top: 1.5rem !important;19332margin-bottom: 1.5rem !important;19333}19334.dark-mode .my-xl-5 {19335margin-top: 3rem !important;19336margin-bottom: 3rem !important;19337}19338.dark-mode .my-xl-auto {19339margin-top: auto !important;19340margin-bottom: auto !important;19341}19342.dark-mode .mt-xl-0 {19343margin-top: 0 !important;19344}19345.dark-mode .mt-xl-1 {19346margin-top: 0.25rem !important;19347}19348.dark-mode .mt-xl-2 {19349margin-top: 0.5rem !important;19350}19351.dark-mode .mt-xl-3 {19352margin-top: 1rem !important;19353}19354.dark-mode .mt-xl-4 {19355margin-top: 1.5rem !important;19356}19357.dark-mode .mt-xl-5 {19358margin-top: 3rem !important;19359}19360.dark-mode .mt-xl-auto {19361margin-top: auto !important;19362}19363.dark-mode .me-xl-0 {19364margin-right: 0 !important;19365}19366.dark-mode .me-xl-1 {19367margin-right: 0.25rem !important;19368}19369.dark-mode .me-xl-2 {19370margin-right: 0.5rem !important;19371}19372.dark-mode .me-xl-3 {19373margin-right: 1rem !important;19374}19375.dark-mode .me-xl-4 {19376margin-right: 1.5rem !important;19377}19378.dark-mode .me-xl-5 {19379margin-right: 3rem !important;19380}19381.dark-mode .me-xl-auto {19382margin-right: auto !important;19383}19384.dark-mode .mb-xl-0 {19385margin-bottom: 0 !important;19386}19387.dark-mode .mb-xl-1 {19388margin-bottom: 0.25rem !important;19389}19390.dark-mode .mb-xl-2 {19391margin-bottom: 0.5rem !important;19392}19393.dark-mode .mb-xl-3 {19394margin-bottom: 1rem !important;19395}19396.dark-mode .mb-xl-4 {19397margin-bottom: 1.5rem !important;19398}19399.dark-mode .mb-xl-5 {19400margin-bottom: 3rem !important;19401}19402.dark-mode .mb-xl-auto {19403margin-bottom: auto !important;19404}19405.dark-mode .ms-xl-0 {19406margin-left: 0 !important;19407}19408.dark-mode .ms-xl-1 {19409margin-left: 0.25rem !important;19410}19411.dark-mode .ms-xl-2 {19412margin-left: 0.5rem !important;19413}19414.dark-mode .ms-xl-3 {19415margin-left: 1rem !important;19416}19417.dark-mode .ms-xl-4 {19418margin-left: 1.5rem !important;19419}19420.dark-mode .ms-xl-5 {19421margin-left: 3rem !important;19422}19423.dark-mode .ms-xl-auto {19424margin-left: auto !important;19425}19426.dark-mode .p-xl-0 {19427padding: 0 !important;19428}19429.dark-mode .p-xl-1 {19430padding: 0.25rem !important;19431}19432.dark-mode .p-xl-2 {19433padding: 0.5rem !important;19434}19435.dark-mode .p-xl-3 {19436padding: 1rem !important;19437}19438.dark-mode .p-xl-4 {19439padding: 1.5rem !important;19440}19441.dark-mode .p-xl-5 {19442padding: 3rem !important;19443}19444.dark-mode .px-xl-0 {19445padding-right: 0 !important;19446padding-left: 0 !important;19447}19448.dark-mode .px-xl-1 {19449padding-right: 0.25rem !important;19450padding-left: 0.25rem !important;19451}19452.dark-mode .px-xl-2 {19453padding-right: 0.5rem !important;19454padding-left: 0.5rem !important;19455}19456.dark-mode .px-xl-3 {19457padding-right: 1rem !important;19458padding-left: 1rem !important;19459}19460.dark-mode .px-xl-4 {19461padding-right: 1.5rem !important;19462padding-left: 1.5rem !important;19463}19464.dark-mode .px-xl-5 {19465padding-right: 3rem !important;19466padding-left: 3rem !important;19467}19468.dark-mode .py-xl-0 {19469padding-top: 0 !important;19470padding-bottom: 0 !important;19471}19472.dark-mode .py-xl-1 {19473padding-top: 0.25rem !important;19474padding-bottom: 0.25rem !important;19475}19476.dark-mode .py-xl-2 {19477padding-top: 0.5rem !important;19478padding-bottom: 0.5rem !important;19479}19480.dark-mode .py-xl-3 {19481padding-top: 1rem !important;19482padding-bottom: 1rem !important;19483}19484.dark-mode .py-xl-4 {19485padding-top: 1.5rem !important;19486padding-bottom: 1.5rem !important;19487}19488.dark-mode .py-xl-5 {19489padding-top: 3rem !important;19490padding-bottom: 3rem !important;19491}19492.dark-mode .pt-xl-0 {19493padding-top: 0 !important;19494}19495.dark-mode .pt-xl-1 {19496padding-top: 0.25rem !important;19497}19498.dark-mode .pt-xl-2 {19499padding-top: 0.5rem !important;19500}19501.dark-mode .pt-xl-3 {19502padding-top: 1rem !important;19503}19504.dark-mode .pt-xl-4 {19505padding-top: 1.5rem !important;19506}19507.dark-mode .pt-xl-5 {19508padding-top: 3rem !important;19509}19510.dark-mode .pe-xl-0 {19511padding-right: 0 !important;19512}19513.dark-mode .pe-xl-1 {19514padding-right: 0.25rem !important;19515}19516.dark-mode .pe-xl-2 {19517padding-right: 0.5rem !important;19518}19519.dark-mode .pe-xl-3 {19520padding-right: 1rem !important;19521}19522.dark-mode .pe-xl-4 {19523padding-right: 1.5rem !important;19524}19525.dark-mode .pe-xl-5 {19526padding-right: 3rem !important;19527}19528.dark-mode .pb-xl-0 {19529padding-bottom: 0 !important;19530}19531.dark-mode .pb-xl-1 {19532padding-bottom: 0.25rem !important;19533}19534.dark-mode .pb-xl-2 {19535padding-bottom: 0.5rem !important;19536}19537.dark-mode .pb-xl-3 {19538padding-bottom: 1rem !important;19539}19540.dark-mode .pb-xl-4 {19541padding-bottom: 1.5rem !important;19542}19543.dark-mode .pb-xl-5 {19544padding-bottom: 3rem !important;19545}19546.dark-mode .ps-xl-0 {19547padding-left: 0 !important;19548}19549.dark-mode .ps-xl-1 {19550padding-left: 0.25rem !important;19551}19552.dark-mode .ps-xl-2 {19553padding-left: 0.5rem !important;19554}19555.dark-mode .ps-xl-3 {19556padding-left: 1rem !important;19557}19558.dark-mode .ps-xl-4 {19559padding-left: 1.5rem !important;19560}19561.dark-mode .ps-xl-5 {19562padding-left: 3rem !important;19563}19564.dark-mode .text-xl-start {19565text-align: left !important;19566}19567.dark-mode .text-xl-end {19568text-align: right !important;19569}19570.dark-mode .text-xl-center {19571text-align: center !important;19572}19573}19574@media (min-width: 1400px) {19575.dark-mode .float-xxl-start {19576float: left !important;19577}19578.dark-mode .float-xxl-end {19579float: right !important;19580}19581.dark-mode .float-xxl-none {19582float: none !important;19583}19584.dark-mode .d-xxl-inline {19585display: inline !important;19586}19587.dark-mode .d-xxl-inline-block {19588display: inline-block !important;19589}19590.dark-mode .d-xxl-block {19591display: block !important;19592}19593.dark-mode .d-xxl-grid {19594display: grid !important;19595}19596.dark-mode .d-xxl-table {19597display: table !important;19598}19599.dark-mode .d-xxl-table-row {19600display: table-row !important;19601}19602.dark-mode .d-xxl-table-cell {19603display: table-cell !important;19604}19605.dark-mode .d-xxl-flex {19606display: flex !important;19607}19608.dark-mode .d-xxl-inline-flex {19609display: inline-flex !important;19610}19611.dark-mode .d-xxl-none {19612display: none !important;19613}19614.dark-mode .flex-xxl-fill {19615flex: 1 1 auto !important;19616}19617.dark-mode .flex-xxl-row {19618flex-direction: row !important;19619}19620.dark-mode .flex-xxl-column {19621flex-direction: column !important;19622}19623.dark-mode .flex-xxl-row-reverse {19624flex-direction: row-reverse !important;19625}19626.dark-mode .flex-xxl-column-reverse {19627flex-direction: column-reverse !important;19628}19629.dark-mode .flex-xxl-grow-0 {19630flex-grow: 0 !important;19631}19632.dark-mode .flex-xxl-grow-1 {19633flex-grow: 1 !important;19634}19635.dark-mode .flex-xxl-shrink-0 {19636flex-shrink: 0 !important;19637}19638.dark-mode .flex-xxl-shrink-1 {19639flex-shrink: 1 !important;19640}19641.dark-mode .flex-xxl-wrap {19642flex-wrap: wrap !important;19643}19644.dark-mode .flex-xxl-nowrap {19645flex-wrap: nowrap !important;19646}19647.dark-mode .flex-xxl-wrap-reverse {19648flex-wrap: wrap-reverse !important;19649}19650.dark-mode .gap-xxl-0 {19651gap: 0 !important;19652}19653.dark-mode .gap-xxl-1 {19654gap: 0.25rem !important;19655}19656.dark-mode .gap-xxl-2 {19657gap: 0.5rem !important;19658}19659.dark-mode .gap-xxl-3 {19660gap: 1rem !important;19661}19662.dark-mode .gap-xxl-4 {19663gap: 1.5rem !important;19664}19665.dark-mode .gap-xxl-5 {19666gap: 3rem !important;19667}19668.dark-mode .justify-content-xxl-start {19669justify-content: flex-start !important;19670}19671.dark-mode .justify-content-xxl-end {19672justify-content: flex-end !important;19673}19674.dark-mode .justify-content-xxl-center {19675justify-content: center !important;19676}19677.dark-mode .justify-content-xxl-between {19678justify-content: space-between !important;19679}19680.dark-mode .justify-content-xxl-around {19681justify-content: space-around !important;19682}19683.dark-mode .justify-content-xxl-evenly {19684justify-content: space-evenly !important;19685}19686.dark-mode .align-items-xxl-start {19687align-items: flex-start !important;19688}19689.dark-mode .align-items-xxl-end {19690align-items: flex-end !important;19691}19692.dark-mode .align-items-xxl-center {19693align-items: center !important;19694}19695.dark-mode .align-items-xxl-baseline {19696align-items: baseline !important;19697}19698.dark-mode .align-items-xxl-stretch {19699align-items: stretch !important;19700}19701.dark-mode .align-content-xxl-start {19702align-content: flex-start !important;19703}19704.dark-mode .align-content-xxl-end {19705align-content: flex-end !important;19706}19707.dark-mode .align-content-xxl-center {19708align-content: center !important;19709}19710.dark-mode .align-content-xxl-between {19711align-content: space-between !important;19712}19713.dark-mode .align-content-xxl-around {19714align-content: space-around !important;19715}19716.dark-mode .align-content-xxl-stretch {19717align-content: stretch !important;19718}19719.dark-mode .align-self-xxl-auto {19720align-self: auto !important;19721}19722.dark-mode .align-self-xxl-start {19723align-self: flex-start !important;19724}19725.dark-mode .align-self-xxl-end {19726align-self: flex-end !important;19727}19728.dark-mode .align-self-xxl-center {19729align-self: center !important;19730}19731.dark-mode .align-self-xxl-baseline {19732align-self: baseline !important;19733}19734.dark-mode .align-self-xxl-stretch {19735align-self: stretch !important;19736}19737.dark-mode .order-xxl-first {19738order: -1 !important;19739}19740.dark-mode .order-xxl-0 {19741order: 0 !important;19742}19743.dark-mode .order-xxl-1 {19744order: 1 !important;19745}19746.dark-mode .order-xxl-2 {19747order: 2 !important;19748}19749.dark-mode .order-xxl-3 {19750order: 3 !important;19751}19752.dark-mode .order-xxl-4 {19753order: 4 !important;19754}19755.dark-mode .order-xxl-5 {19756order: 5 !important;19757}19758.dark-mode .order-xxl-last {19759order: 6 !important;19760}19761.dark-mode .m-xxl-0 {19762margin: 0 !important;19763}19764.dark-mode .m-xxl-1 {19765margin: 0.25rem !important;19766}19767.dark-mode .m-xxl-2 {19768margin: 0.5rem !important;19769}19770.dark-mode .m-xxl-3 {19771margin: 1rem !important;19772}19773.dark-mode .m-xxl-4 {19774margin: 1.5rem !important;19775}19776.dark-mode .m-xxl-5 {19777margin: 3rem !important;19778}19779.dark-mode .m-xxl-auto {19780margin: auto !important;19781}19782.dark-mode .mx-xxl-0 {19783margin-right: 0 !important;19784margin-left: 0 !important;19785}19786.dark-mode .mx-xxl-1 {19787margin-right: 0.25rem !important;19788margin-left: 0.25rem !important;19789}19790.dark-mode .mx-xxl-2 {19791margin-right: 0.5rem !important;19792margin-left: 0.5rem !important;19793}19794.dark-mode .mx-xxl-3 {19795margin-right: 1rem !important;19796margin-left: 1rem !important;19797}19798.dark-mode .mx-xxl-4 {19799margin-right: 1.5rem !important;19800margin-left: 1.5rem !important;19801}19802.dark-mode .mx-xxl-5 {19803margin-right: 3rem !important;19804margin-left: 3rem !important;19805}19806.dark-mode .mx-xxl-auto {19807margin-right: auto !important;19808margin-left: auto !important;19809}19810.dark-mode .my-xxl-0 {19811margin-top: 0 !important;19812margin-bottom: 0 !important;19813}19814.dark-mode .my-xxl-1 {19815margin-top: 0.25rem !important;19816margin-bottom: 0.25rem !important;19817}19818.dark-mode .my-xxl-2 {19819margin-top: 0.5rem !important;19820margin-bottom: 0.5rem !important;19821}19822.dark-mode .my-xxl-3 {19823margin-top: 1rem !important;19824margin-bottom: 1rem !important;19825}19826.dark-mode .my-xxl-4 {19827margin-top: 1.5rem !important;19828margin-bottom: 1.5rem !important;19829}19830.dark-mode .my-xxl-5 {19831margin-top: 3rem !important;19832margin-bottom: 3rem !important;19833}19834.dark-mode .my-xxl-auto {19835margin-top: auto !important;19836margin-bottom: auto !important;19837}19838.dark-mode .mt-xxl-0 {19839margin-top: 0 !important;19840}19841.dark-mode .mt-xxl-1 {19842margin-top: 0.25rem !important;19843}19844.dark-mode .mt-xxl-2 {19845margin-top: 0.5rem !important;19846}19847.dark-mode .mt-xxl-3 {19848margin-top: 1rem !important;19849}19850.dark-mode .mt-xxl-4 {19851margin-top: 1.5rem !important;19852}19853.dark-mode .mt-xxl-5 {19854margin-top: 3rem !important;19855}19856.dark-mode .mt-xxl-auto {19857margin-top: auto !important;19858}19859.dark-mode .me-xxl-0 {19860margin-right: 0 !important;19861}19862.dark-mode .me-xxl-1 {19863margin-right: 0.25rem !important;19864}19865.dark-mode .me-xxl-2 {19866margin-right: 0.5rem !important;19867}19868.dark-mode .me-xxl-3 {19869margin-right: 1rem !important;19870}19871.dark-mode .me-xxl-4 {19872margin-right: 1.5rem !important;19873}19874.dark-mode .me-xxl-5 {19875margin-right: 3rem !important;19876}19877.dark-mode .me-xxl-auto {19878margin-right: auto !important;19879}19880.dark-mode .mb-xxl-0 {19881margin-bottom: 0 !important;19882}19883.dark-mode .mb-xxl-1 {19884margin-bottom: 0.25rem !important;19885}19886.dark-mode .mb-xxl-2 {19887margin-bottom: 0.5rem !important;19888}19889.dark-mode .mb-xxl-3 {19890margin-bottom: 1rem !important;19891}19892.dark-mode .mb-xxl-4 {19893margin-bottom: 1.5rem !important;19894}19895.dark-mode .mb-xxl-5 {19896margin-bottom: 3rem !important;19897}19898.dark-mode .mb-xxl-auto {19899margin-bottom: auto !important;19900}19901.dark-mode .ms-xxl-0 {19902margin-left: 0 !important;19903}19904.dark-mode .ms-xxl-1 {19905margin-left: 0.25rem !important;19906}19907.dark-mode .ms-xxl-2 {19908margin-left: 0.5rem !important;19909}19910.dark-mode .ms-xxl-3 {19911margin-left: 1rem !important;19912}19913.dark-mode .ms-xxl-4 {19914margin-left: 1.5rem !important;19915}19916.dark-mode .ms-xxl-5 {19917margin-left: 3rem !important;19918}19919.dark-mode .ms-xxl-auto {19920margin-left: auto !important;19921}19922.dark-mode .p-xxl-0 {19923padding: 0 !important;19924}19925.dark-mode .p-xxl-1 {19926padding: 0.25rem !important;19927}19928.dark-mode .p-xxl-2 {19929padding: 0.5rem !important;19930}19931.dark-mode .p-xxl-3 {19932padding: 1rem !important;19933}19934.dark-mode .p-xxl-4 {19935padding: 1.5rem !important;19936}19937.dark-mode .p-xxl-5 {19938padding: 3rem !important;19939}19940.dark-mode .px-xxl-0 {19941padding-right: 0 !important;19942padding-left: 0 !important;19943}19944.dark-mode .px-xxl-1 {19945padding-right: 0.25rem !important;19946padding-left: 0.25rem !important;19947}19948.dark-mode .px-xxl-2 {19949padding-right: 0.5rem !important;19950padding-left: 0.5rem !important;19951}19952.dark-mode .px-xxl-3 {19953padding-right: 1rem !important;19954padding-left: 1rem !important;19955}19956.dark-mode .px-xxl-4 {19957padding-right: 1.5rem !important;19958padding-left: 1.5rem !important;19959}19960.dark-mode .px-xxl-5 {19961padding-right: 3rem !important;19962padding-left: 3rem !important;19963}19964.dark-mode .py-xxl-0 {19965padding-top: 0 !important;19966padding-bottom: 0 !important;19967}19968.dark-mode .py-xxl-1 {19969padding-top: 0.25rem !important;19970padding-bottom: 0.25rem !important;19971}19972.dark-mode .py-xxl-2 {19973padding-top: 0.5rem !important;19974padding-bottom: 0.5rem !important;19975}19976.dark-mode .py-xxl-3 {19977padding-top: 1rem !important;19978padding-bottom: 1rem !important;19979}19980.dark-mode .py-xxl-4 {19981padding-top: 1.5rem !important;19982padding-bottom: 1.5rem !important;19983}19984.dark-mode .py-xxl-5 {19985padding-top: 3rem !important;19986padding-bottom: 3rem !important;19987}19988.dark-mode .pt-xxl-0 {19989padding-top: 0 !important;19990}19991.dark-mode .pt-xxl-1 {19992padding-top: 0.25rem !important;19993}19994.dark-mode .pt-xxl-2 {19995padding-top: 0.5rem !important;19996}19997.dark-mode .pt-xxl-3 {19998padding-top: 1rem !important;19999}20000.dark-mode .pt-xxl-4 {20001padding-top: 1.5rem !important;20002}20003.dark-mode .pt-xxl-5 {20004padding-top: 3rem !important;20005}20006.dark-mode .pe-xxl-0 {20007padding-right: 0 !important;20008}20009.dark-mode .pe-xxl-1 {20010padding-right: 0.25rem !important;20011}20012.dark-mode .pe-xxl-2 {20013padding-right: 0.5rem !important;20014}20015.dark-mode .pe-xxl-3 {20016padding-right: 1rem !important;20017}20018.dark-mode .pe-xxl-4 {20019padding-right: 1.5rem !important;20020}20021.dark-mode .pe-xxl-5 {20022padding-right: 3rem !important;20023}20024.dark-mode .pb-xxl-0 {20025padding-bottom: 0 !important;20026}20027.dark-mode .pb-xxl-1 {20028padding-bottom: 0.25rem !important;20029}20030.dark-mode .pb-xxl-2 {20031padding-bottom: 0.5rem !important;20032}20033.dark-mode .pb-xxl-3 {20034padding-bottom: 1rem !important;20035}20036.dark-mode .pb-xxl-4 {20037padding-bottom: 1.5rem !important;20038}20039.dark-mode .pb-xxl-5 {20040padding-bottom: 3rem !important;20041}20042.dark-mode .ps-xxl-0 {20043padding-left: 0 !important;20044}20045.dark-mode .ps-xxl-1 {20046padding-left: 0.25rem !important;20047}20048.dark-mode .ps-xxl-2 {20049padding-left: 0.5rem !important;20050}20051.dark-mode .ps-xxl-3 {20052padding-left: 1rem !important;20053}20054.dark-mode .ps-xxl-4 {20055padding-left: 1.5rem !important;20056}20057.dark-mode .ps-xxl-5 {20058padding-left: 3rem !important;20059}20060.dark-mode .text-xxl-start {20061text-align: left !important;20062}20063.dark-mode .text-xxl-end {20064text-align: right !important;20065}20066.dark-mode .text-xxl-center {20067text-align: center !important;20068}20069}20070@media (min-width: 1200px) {20071.dark-mode .fs-1 {20072font-size: 2.5rem !important;20073}20074.dark-mode .fs-2 {20075font-size: 2rem !important;20076}20077.dark-mode .fs-3 {20078font-size: 1.75rem !important;20079}20080.dark-mode .fs-4 {20081font-size: 1.5rem !important;20082}20083}20084@media print {20085.dark-mode .d-print-inline {20086display: inline !important;20087}20088.dark-mode .d-print-inline-block {20089display: inline-block !important;20090}20091.dark-mode .d-print-block {20092display: block !important;20093}20094.dark-mode .d-print-grid {20095display: grid !important;20096}20097.dark-mode .d-print-table {20098display: table !important;20099}20100.dark-mode .d-print-table-row {20101display: table-row !important;20102}20103.dark-mode .d-print-table-cell {20104display: table-cell !important;20105}20106.dark-mode .d-print-flex {20107display: flex !important;20108}20109.dark-mode .d-print-inline-flex {20110display: inline-flex !important;20111}20112.dark-mode .d-print-none {20113display: none !important;20114}20115}2011620117/*# sourceMappingURL=custom.css.map */201182011920120