@charset "UTF-8";
:root {
  --bs-blue: #2447F9;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #FFD424;
  --bs-green: #03AC0E;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #2B6685;
  --bs-secondary: #005267;
  --bs-success: #03AC0E;
  --bs-info: #0dcaf0;
  --bs-warning: #FFD424;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 43, 102, 133;
  --bs-secondary-rgb: 0, 82, 103;
  --bs-success-rgb: 3, 172, 14;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 212, 36;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color:#2B6685;
  --bs-link-hover-color: #22526a;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff6d3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--bs-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 6rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 6rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 9rem;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 9rem;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 12rem;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 12rem;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 15rem;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 15rem;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 18rem;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 18rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-6,
.gx-sm-6 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-6,
.gy-sm-6 {
    --bs-gutter-y: 6rem;
  }
  .g-sm-7,
.gx-sm-7 {
    --bs-gutter-x: 9rem;
  }
  .g-sm-7,
.gy-sm-7 {
    --bs-gutter-y: 9rem;
  }
  .g-sm-8,
.gx-sm-8 {
    --bs-gutter-x: 12rem;
  }
  .g-sm-8,
.gy-sm-8 {
    --bs-gutter-y: 12rem;
  }
  .g-sm-9,
.gx-sm-9 {
    --bs-gutter-x: 15rem;
  }
  .g-sm-9,
.gy-sm-9 {
    --bs-gutter-y: 15rem;
  }
  .g-sm-10,
.gx-sm-10 {
    --bs-gutter-x: 18rem;
  }
  .g-sm-10,
.gy-sm-10 {
    --bs-gutter-y: 18rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
  .g-md-6,
.gx-md-6 {
    --bs-gutter-x: 6rem;
  }
  .g-md-6,
.gy-md-6 {
    --bs-gutter-y: 6rem;
  }
  .g-md-7,
.gx-md-7 {
    --bs-gutter-x: 9rem;
  }
  .g-md-7,
.gy-md-7 {
    --bs-gutter-y: 9rem;
  }
  .g-md-8,
.gx-md-8 {
    --bs-gutter-x: 12rem;
  }
  .g-md-8,
.gy-md-8 {
    --bs-gutter-y: 12rem;
  }
  .g-md-9,
.gx-md-9 {
    --bs-gutter-x: 15rem;
  }
  .g-md-9,
.gy-md-9 {
    --bs-gutter-y: 15rem;
  }
  .g-md-10,
.gx-md-10 {
    --bs-gutter-x: 18rem;
  }
  .g-md-10,
.gy-md-10 {
    --bs-gutter-y: 18rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-6,
.gx-lg-6 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-6,
.gy-lg-6 {
    --bs-gutter-y: 6rem;
  }
  .g-lg-7,
.gx-lg-7 {
    --bs-gutter-x: 9rem;
  }
  .g-lg-7,
.gy-lg-7 {
    --bs-gutter-y: 9rem;
  }
  .g-lg-8,
.gx-lg-8 {
    --bs-gutter-x: 12rem;
  }
  .g-lg-8,
.gy-lg-8 {
    --bs-gutter-y: 12rem;
  }
  .g-lg-9,
.gx-lg-9 {
    --bs-gutter-x: 15rem;
  }
  .g-lg-9,
.gy-lg-9 {
    --bs-gutter-y: 15rem;
  }
  .g-lg-10,
.gx-lg-10 {
    --bs-gutter-x: 18rem;
  }
  .g-lg-10,
.gy-lg-10 {
    --bs-gutter-y: 18rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-6,
.gx-xl-6 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-6,
.gy-xl-6 {
    --bs-gutter-y: 6rem;
  }
  .g-xl-7,
.gx-xl-7 {
    --bs-gutter-x: 9rem;
  }
  .g-xl-7,
.gy-xl-7 {
    --bs-gutter-y: 9rem;
  }
  .g-xl-8,
.gx-xl-8 {
    --bs-gutter-x: 12rem;
  }
  .g-xl-8,
.gy-xl-8 {
    --bs-gutter-y: 12rem;
  }
  .g-xl-9,
.gx-xl-9 {
    --bs-gutter-x: 15rem;
  }
  .g-xl-9,
.gy-xl-9 {
    --bs-gutter-y: 15rem;
  }
  .g-xl-10,
.gx-xl-10 {
    --bs-gutter-x: 18rem;
  }
  .g-xl-10,
.gy-xl-10 {
    --bs-gutter-y: 18rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-6,
.gx-xxl-6 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-6,
.gy-xxl-6 {
    --bs-gutter-y: 6rem;
  }
  .g-xxl-7,
.gx-xxl-7 {
    --bs-gutter-x: 9rem;
  }
  .g-xxl-7,
.gy-xxl-7 {
    --bs-gutter-y: 9rem;
  }
  .g-xxl-8,
.gx-xxl-8 {
    --bs-gutter-x: 12rem;
  }
  .g-xxl-8,
.gy-xxl-8 {
    --bs-gutter-y: 12rem;
  }
  .g-xxl-9,
.gx-xxl-9 {
    --bs-gutter-x: 15rem;
  }
  .g-xxl-9,
.gy-xxl-9 {
    --bs-gutter-y: 15rem;
  }
  .g-xxl-10,
.gx-xxl-10 {
    --bs-gutter-x: 18rem;
  }
  .g-xxl-10,
.gy-xxl-10 {
    --bs-gutter-y: 18rem;
  }
}
.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #eaeed9;
  --bs-table-border-color: #d3d6c3;
  --bs-table-striped-bg: #dee2ce;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d3d6c3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d8dcc9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #ccdce1;
  --bs-table-border-color: #b8c6cb;
  --bs-table-striped-bg: #c2d1d6;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8c6cb;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdccd0;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #cdeecf;
  --bs-table-border-color: #b9d6ba;
  --bs-table-striped-bg: #c3e2c5;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b9d6ba;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bedcbf;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff6d3;
  --bs-table-border-color: #e6ddbe;
  --bs-table-striped-bg: #f2eac8;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6ddbe;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece4c3;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #2B6685;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #2B6685;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(148, 172, 63, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 0.375rem;
}
.form-control-color::-webkit-color-swatch {
  border-radius: 0.375rem;
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #cad69f;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(148, 172, 3, 0.80);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #cad69f;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(148, 172, 63, 0.25);
}
.form-check-input:checked {
  background-color: #2B6685;
  border-color: #2B6685;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #2B6685;
  border-color: #2B6685;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23cad69f'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(148, 172, 63, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(148, 172, 63, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #94AC3F;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #dfe6c5;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #94AC3F;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #dfe6c5;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #03AC0E;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #000;
  background-color: rgba(3, 172, 14, 0.9);
  border-radius: 0.375rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #03AC0E;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2303AC0E' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #03AC0E;
  box-shadow: 0 0 0 0.25rem rgba(3, 172, 14, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #03AC0E;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 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='%2303AC0E' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #03AC0E;
  box-shadow: 0 0 0 0.25rem rgba(3, 172, 14, 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #03AC0E;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #03AC0E;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(3, 172, 14, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #03AC0E;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.375rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("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");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 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");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #fff;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: #2B6685;
  border-color: #2B6685;
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2B6685;
  --bs-btn-border-color: #2B6685;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #407591;
  --bs-btn-hover-border-color: #407591;
  --bs-btn-focus-shadow-rgb: 38, 108, 126;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #55859d;
  --bs-btn-active-border-color:  #407591;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #2B6685;
  --bs-btn-disabled-border-color: #2B6685;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #005267;
  --bs-btn-border-color: #005267;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #004658;
  --bs-btn-hover-border-color: #004252;
  --bs-btn-focus-shadow-rgb: 38, 108, 126;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #004252;
  --bs-btn-active-border-color: #003e4d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #005267;
  --bs-btn-disabled-border-color: #005267;
}

.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #03AC0E;
  --bs-btn-border-color: #03AC0E;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #29b832;
  --bs-btn-hover-border-color: #1cb426;
  --bs-btn-focus-shadow-rgb: 3, 146, 12;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #35bd3e;
  --bs-btn-active-border-color: #1cb426;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #03AC0E;
  --bs-btn-disabled-border-color: #03AC0E;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #FFD424;
  --bs-btn-border-color: #FFD424;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffda45;
  --bs-btn-hover-border-color: #ffd83a;
  --bs-btn-focus-shadow-rgb: 217, 180, 31;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffdd50;
  --bs-btn-active-border-color: #ffd83a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #FFD424;
  --bs-btn-disabled-border-color: #FFD424;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #2B6685;
  --bs-btn-border-color: #2B6685;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #2B6685;
  --bs-btn-hover-border-color: #2B6685;
  --bs-btn-focus-shadow-rgb: 148, 172, 63;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #2B6685;
  --bs-btn-active-border-color: #2B6685;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #2B6685;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2B6685;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #005267;
  --bs-btn-border-color: #005267;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #005267;
  --bs-btn-hover-border-color: #005267;
  --bs-btn-focus-shadow-rgb: 0, 82, 103;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #005267;
  --bs-btn-active-border-color: #005267;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #005267;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #005267;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #03AC0E;
  --bs-btn-border-color: #03AC0E;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #03AC0E;
  --bs-btn-hover-border-color: #03AC0E;
  --bs-btn-focus-shadow-rgb: 3, 172, 14;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #03AC0E;
  --bs-btn-active-border-color: #03AC0E;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #03AC0E;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #03AC0E;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #FFD424;
  --bs-btn-border-color: #FFD424;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #FFD424;
  --bs-btn-hover-border-color: #FFD424;
  --bs-btn-focus-shadow-rgb: 255, 212, 36;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #FFD424;
  --bs-btn-active-border-color: #FFD424;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFD424;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #FFD424;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 126, 146, 54;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.375rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #2B6685;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #2B6685;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: 0.375rem;
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #2B6685;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: 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");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: 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");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: #fff;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: 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");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23859b39'%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");
  --bs-accordion-btn-focus-border-color: #cad69f;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(148, 172, 63, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #859b39;
  --bs-accordion-active-bg: #f4f7ec;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;

  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
    color: #fff !important; /* putih */
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

/* css custom untuk ekspor impot agar tulisan tidak menjadi abu abu */
.accordion-body.custom-white-text p {
    color: white !important;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {

    border-radius: 0;
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: #6c757d;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #dee2e6;
  --bs-pagination-border-radius: 0.375rem;
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: #e9ecef;
  --bs-pagination-hover-border-color: #dee2e6;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #e9ecef;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(43, 102, 133, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #2B6685;
  --bs-pagination-active-border-color: #2B6685;
  --bs-pagination-disabled-color: #6c757d;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #dee2e6;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #2B6685;
  border-color: #2B6685;
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: 0.25rem;
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.375rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.375rem;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: #596726;
  --bs-alert-bg: #eaeed9;
  --bs-alert-border-color: #dfe6c5;
}
.alert-primary .alert-link {
  color: #47521e;
}

.alert-secondary {
  --bs-alert-color: #00313e;
  --bs-alert-bg: #ccdce1;
  --bs-alert-border-color: #b3cbd1;
}
.alert-secondary .alert-link {
  color: #002732;
}

.alert-success {
  --bs-alert-color: #026708;
  --bs-alert-bg: #cdeecf;
  --bs-alert-border-color: #b3e6b7;
}
.alert-success .alert-link {
  color: #025206;
}

.alert-info {
  --bs-alert-color: #055160;
  --bs-alert-bg: #cff4fc;
  --bs-alert-border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  --bs-alert-color: #66550e;
  --bs-alert-bg: #fff6d3;
  --bs-alert-border-color: #fff2bd;
}
.alert-warning .alert-link {
  color: #52440b;
}

.alert-danger {
  --bs-alert-color: #842029;
  --bs-alert-bg: #f8d7da;
  --bs-alert-border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  --bs-alert-color: #636464;
  --bs-alert-bg: #fefefe;
  --bs-alert-border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  --bs-alert-color: #141619;
  --bs-alert-bg: #d3d3d4;
  --bs-alert-border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: #e9ecef;
  --bs-progress-border-radius: 0.375rem;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #2b6685;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.375rem;
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #f8f9fa;
  --bs-list-group-action-active-color: #212529;
  --bs-list-group-action-active-bg: #e9ecef;
  --bs-list-group-disabled-color: #6c757d;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #94AC3F;
  --bs-list-group-active-border-color: #94AC3F;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #596726;
  background-color: #eaeed9;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #596726;
  background-color: #d3d6c3;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #596726;
  border-color: #596726;
}

.list-group-item-secondary {
  color: #00313e;
  background-color: #ccdce1;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #00313e;
  background-color: #b8c6cb;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #00313e;
  border-color: #00313e;
}

.list-group-item-success {
  color: #026708;
  background-color: #cdeecf;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #026708;
  background-color: #b9d6ba;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #026708;
  border-color: #026708;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #66550e;
  background-color: #fff6d3;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #66550e;
  background-color: #e6ddbe;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #66550e;
  border-color: #66550e;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: 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 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
  font-size: 14px;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(148, 172, 63, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-border-width: 1px;
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: 0.375rem;
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-toast-header-color: #6c757d;
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1068;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1067;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
.modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
.modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
.modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
.modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
.modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 0.375rem;
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  padding: var(--bs-tooltip-arrow-height);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: 0.5rem;
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: ;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: #212529;
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-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");
}

.carousel-control-next-icon {
  background-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");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: ;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(43, 102, 133, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(0, 82, 103, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #000 !important;
  background-color: RGBA(3, 172, 14, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(255, 212, 36, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: #94AC3F !important;
}
.link-primary:hover, .link-primary:focus {
  color: #a9bd65 !important;
}

.link-secondary {
  color: #005267 !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: #004252 !important;
}

.link-success {
  color: #03AC0E !important;
}
.link-success:hover, .link-success:focus {
  color: #35bd3e !important;
}

.link-info {
  color: #0dcaf0 !important;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3 !important;
}

.link-warning {
  color: #FFD424 !important;
}
.link-warning:hover, .link-warning:focus {
  color: #ffdd50 !important;
}

.link-danger {
  color: #dc3545 !important;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37 !important;
}

.link-light {
  color: #f8f9fa !important;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb !important;
}

.link-dark {
  color: #212529 !important;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21 !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-6 {
  margin: 6rem !important;
}

.m-7 {
  margin: 9rem !important;
}

.m-8 {
  margin: 12rem !important;
}

.m-9 {
  margin: 15rem !important;
}

.m-10 {
  margin: 18rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-6 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}

.mx-7 {
  margin-right: 9rem !important;
  margin-left: 9rem !important;
}

.mx-8 {
  margin-right: 12rem !important;
  margin-left: 12rem !important;
}

.mx-9 {
  margin-right: 15rem !important;
  margin-left: 15rem !important;
}

.mx-10 {
  margin-right: 18rem !important;
  margin-left: 18rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-7 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.my-8 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.my-9 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.my-10 {
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mt-7 {
  margin-top: 9rem !important;
}

.mt-8 {
  margin-top: 12rem !important;
}

.mt-9 {
  margin-top: 15rem !important;
}

.mt-10 {
  margin-top: 18rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-6 {
  margin-right: 6rem !important;
}

.me-7 {
  margin-right: 9rem !important;
}

.me-8 {
  margin-right: 12rem !important;
}

.me-9 {
  margin-right: 15rem !important;
}

.me-10 {
  margin-right: 18rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 9rem !important;
}

.mb-8 {
  margin-bottom: 12rem !important;
}

.mb-9 {
  margin-bottom: 15rem !important;
}

.mb-10 {
  margin-bottom: 18rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-6 {
  margin-left: 6rem !important;
}

.ms-7 {
  margin-left: 9rem !important;
}

.ms-8 {
  margin-left: 12rem !important;
}

.ms-9 {
  margin-left: 15rem !important;
}

.ms-10 {
  margin-left: 18rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.m-n6 {
  margin: -6rem !important;
}

.m-n7 {
  margin: -9rem !important;
}

.m-n8 {
  margin: -12rem !important;
}

.m-n9 {
  margin: -15rem !important;
}

.m-n10 {
  margin: -18rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.mx-n6 {
  margin-right: -6rem !important;
  margin-left: -6rem !important;
}

.mx-n7 {
  margin-right: -9rem !important;
  margin-left: -9rem !important;
}

.mx-n8 {
  margin-right: -12rem !important;
  margin-left: -12rem !important;
}

.mx-n9 {
  margin-right: -15rem !important;
  margin-left: -15rem !important;
}

.mx-n10 {
  margin-right: -18rem !important;
  margin-left: -18rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my-n6 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.my-n7 {
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.my-n8 {
  margin-top: -12rem !important;
  margin-bottom: -12rem !important;
}

.my-n9 {
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.my-n10 {
  margin-top: -18rem !important;
  margin-bottom: -18rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mt-n6 {
  margin-top: -6rem !important;
}

.mt-n7 {
  margin-top: -9rem !important;
}

.mt-n8 {
  margin-top: -12rem !important;
}

.mt-n9 {
  margin-top: -15rem !important;
}

.mt-n10 {
  margin-top: -18rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.me-n6 {
  margin-right: -6rem !important;
}

.me-n7 {
  margin-right: -9rem !important;
}

.me-n8 {
  margin-right: -12rem !important;
}

.me-n9 {
  margin-right: -15rem !important;
}

.me-n10 {
  margin-right: -18rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.mb-n6 {
  margin-bottom: -6rem !important;
}

.mb-n7 {
  margin-bottom: -9rem !important;
}

.mb-n8 {
  margin-bottom: -12rem !important;
}

.mb-n9 {
  margin-bottom: -15rem !important;
}

.mb-n10 {
  margin-bottom: -18rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.ms-n6 {
  margin-left: -6rem !important;
}

.ms-n7 {
  margin-left: -9rem !important;
}

.ms-n8 {
  margin-left: -12rem !important;
}

.ms-n9 {
  margin-left: -15rem !important;
}

.ms-n10 {
  margin-left: -18rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-6 {
  padding: 6rem !important;
}

.p-7 {
  padding: 9rem !important;
}

.p-8 {
  padding: 12rem !important;
}

.p-9 {
  padding: 15rem !important;
}

.p-10 {
  padding: 18rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-6 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}

.px-7 {
  padding-right: 9rem !important;
  padding-left: 9rem !important;
}

.px-8 {
  padding-right: 12rem !important;
  padding-left: 12rem !important;
}

.px-9 {
  padding-right: 15rem !important;
  padding-left: 15rem !important;
}

.px-10 {
  padding-right: 18rem !important;
  padding-left: 18rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-7 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.py-8 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.py-9 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.py-10 {
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 9rem !important;
}

.pt-8 {
  padding-top: 12rem !important;
}

.pt-9 {
  padding-top: 15rem !important;
}

.pt-10 {
  padding-top: 18rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pe-6 {
  padding-right: 6rem !important;
}

.pe-7 {
  padding-right: 9rem !important;
}

.pe-8 {
  padding-right: 12rem !important;
}

.pe-9 {
  padding-right: 15rem !important;
}

.pe-10 {
  padding-right: 18rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 9rem !important;
}

.pb-8 {
  padding-bottom: 12rem !important;
}

.pb-9 {
  padding-bottom: 15rem !important;
}

.pb-10 {
  padding-bottom: 18rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ps-6 {
  padding-left: 6rem !important;
}

.ps-7 {
  padding-left: 9rem !important;
}

.ps-8 {
  padding-left: 12rem !important;
}

.ps-9 {
  padding-left: 15rem !important;
}

.ps-10 {
  padding-left: 18rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-6 {
  gap: 6rem !important;
}

.gap-7 {
  gap: 9rem !important;
}

.gap-8 {
  gap: 12rem !important;
}

.gap-9 {
  gap: 15rem !important;
}

.gap-10 {
  gap: 18rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 9rem !important;
  }
  .m-sm-8 {
    margin: 12rem !important;
  }
  .m-sm-9 {
    margin: 15rem !important;
  }
  .m-sm-10 {
    margin: 18rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-8 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-sm-9 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-sm-10 {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-8 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-sm-9 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-sm-10 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 9rem !important;
  }
  .mt-sm-8 {
    margin-top: 12rem !important;
  }
  .mt-sm-9 {
    margin-top: 15rem !important;
  }
  .mt-sm-10 {
    margin-top: 18rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  .me-sm-7 {
    margin-right: 9rem !important;
  }
  .me-sm-8 {
    margin-right: 12rem !important;
  }
  .me-sm-9 {
    margin-right: 15rem !important;
  }
  .me-sm-10 {
    margin-right: 18rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 12rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 15rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 18rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  .ms-sm-7 {
    margin-left: 9rem !important;
  }
  .ms-sm-8 {
    margin-left: 12rem !important;
  }
  .ms-sm-9 {
    margin-left: 15rem !important;
  }
  .ms-sm-10 {
    margin-left: 18rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .m-sm-n6 {
    margin: -6rem !important;
  }
  .m-sm-n7 {
    margin: -9rem !important;
  }
  .m-sm-n8 {
    margin: -12rem !important;
  }
  .m-sm-n9 {
    margin: -15rem !important;
  }
  .m-sm-n10 {
    margin: -18rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-sm-n7 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-sm-n8 {
    margin-right: -12rem !important;
    margin-left: -12rem !important;
  }
  .mx-sm-n9 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-sm-n10 {
    margin-right: -18rem !important;
    margin-left: -18rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-sm-n7 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-sm-n8 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .my-sm-n9 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-sm-n10 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .mt-sm-n6 {
    margin-top: -6rem !important;
  }
  .mt-sm-n7 {
    margin-top: -9rem !important;
  }
  .mt-sm-n8 {
    margin-top: -12rem !important;
  }
  .mt-sm-n9 {
    margin-top: -15rem !important;
  }
  .mt-sm-n10 {
    margin-top: -18rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -3rem !important;
  }
  .me-sm-n6 {
    margin-right: -6rem !important;
  }
  .me-sm-n7 {
    margin-right: -9rem !important;
  }
  .me-sm-n8 {
    margin-right: -12rem !important;
  }
  .me-sm-n9 {
    margin-right: -15rem !important;
  }
  .me-sm-n10 {
    margin-right: -18rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -9rem !important;
  }
  .mb-sm-n8 {
    margin-bottom: -12rem !important;
  }
  .mb-sm-n9 {
    margin-bottom: -15rem !important;
  }
  .mb-sm-n10 {
    margin-bottom: -18rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -3rem !important;
  }
  .ms-sm-n6 {
    margin-left: -6rem !important;
  }
  .ms-sm-n7 {
    margin-left: -9rem !important;
  }
  .ms-sm-n8 {
    margin-left: -12rem !important;
  }
  .ms-sm-n9 {
    margin-left: -15rem !important;
  }
  .ms-sm-n10 {
    margin-left: -18rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 9rem !important;
  }
  .p-sm-8 {
    padding: 12rem !important;
  }
  .p-sm-9 {
    padding: 15rem !important;
  }
  .p-sm-10 {
    padding: 18rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-8 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .px-sm-9 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-sm-10 {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-8 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .py-sm-9 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-sm-10 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 9rem !important;
  }
  .pt-sm-8 {
    padding-top: 12rem !important;
  }
  .pt-sm-9 {
    padding-top: 15rem !important;
  }
  .pt-sm-10 {
    padding-top: 18rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  .pe-sm-7 {
    padding-right: 9rem !important;
  }
  .pe-sm-8 {
    padding-right: 12rem !important;
  }
  .pe-sm-9 {
    padding-right: 15rem !important;
  }
  .pe-sm-10 {
    padding-right: 18rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 12rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 15rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 18rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  .ps-sm-7 {
    padding-left: 9rem !important;
  }
  .ps-sm-8 {
    padding-left: 12rem !important;
  }
  .ps-sm-9 {
    padding-left: 15rem !important;
  }
  .ps-sm-10 {
    padding-left: 18rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .gap-sm-6 {
    gap: 6rem !important;
  }
  .gap-sm-7 {
    gap: 9rem !important;
  }
  .gap-sm-8 {
    gap: 12rem !important;
  }
  .gap-sm-9 {
    gap: 15rem !important;
  }
  .gap-sm-10 {
    gap: 18rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 9rem !important;
  }
  .m-md-8 {
    margin: 12rem !important;
  }
  .m-md-9 {
    margin: 15rem !important;
  }
  .m-md-10 {
    margin: 18rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-8 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-md-9 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-md-10 {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-8 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-md-9 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-md-10 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 9rem !important;
  }
  .mt-md-8 {
    margin-top: 12rem !important;
  }
  .mt-md-9 {
    margin-top: 15rem !important;
  }
  .mt-md-10 {
    margin-top: 18rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-6 {
    margin-right: 6rem !important;
  }
  .me-md-7 {
    margin-right: 9rem !important;
  }
  .me-md-8 {
    margin-right: 12rem !important;
  }
  .me-md-9 {
    margin-right: 15rem !important;
  }
  .me-md-10 {
    margin-right: 18rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 9rem !important;
  }
  .mb-md-8 {
    margin-bottom: 12rem !important;
  }
  .mb-md-9 {
    margin-bottom: 15rem !important;
  }
  .mb-md-10 {
    margin-bottom: 18rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  .ms-md-7 {
    margin-left: 9rem !important;
  }
  .ms-md-8 {
    margin-left: 12rem !important;
  }
  .ms-md-9 {
    margin-left: 15rem !important;
  }
  .ms-md-10 {
    margin-left: 18rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .m-md-n6 {
    margin: -6rem !important;
  }
  .m-md-n7 {
    margin: -9rem !important;
  }
  .m-md-n8 {
    margin: -12rem !important;
  }
  .m-md-n9 {
    margin: -15rem !important;
  }
  .m-md-n10 {
    margin: -18rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-md-n7 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-md-n8 {
    margin-right: -12rem !important;
    margin-left: -12rem !important;
  }
  .mx-md-n9 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-md-n10 {
    margin-right: -18rem !important;
    margin-left: -18rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-md-n7 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-md-n8 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .my-md-n9 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-md-n10 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .mt-md-n6 {
    margin-top: -6rem !important;
  }
  .mt-md-n7 {
    margin-top: -9rem !important;
  }
  .mt-md-n8 {
    margin-top: -12rem !important;
  }
  .mt-md-n9 {
    margin-top: -15rem !important;
  }
  .mt-md-n10 {
    margin-top: -18rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -3rem !important;
  }
  .me-md-n6 {
    margin-right: -6rem !important;
  }
  .me-md-n7 {
    margin-right: -9rem !important;
  }
  .me-md-n8 {
    margin-right: -12rem !important;
  }
  .me-md-n9 {
    margin-right: -15rem !important;
  }
  .me-md-n10 {
    margin-right: -18rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -9rem !important;
  }
  .mb-md-n8 {
    margin-bottom: -12rem !important;
  }
  .mb-md-n9 {
    margin-bottom: -15rem !important;
  }
  .mb-md-n10 {
    margin-bottom: -18rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -3rem !important;
  }
  .ms-md-n6 {
    margin-left: -6rem !important;
  }
  .ms-md-n7 {
    margin-left: -9rem !important;
  }
  .ms-md-n8 {
    margin-left: -12rem !important;
  }
  .ms-md-n9 {
    margin-left: -15rem !important;
  }
  .ms-md-n10 {
    margin-left: -18rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 9rem !important;
  }
  .p-md-8 {
    padding: 12rem !important;
  }
  .p-md-9 {
    padding: 15rem !important;
  }
  .p-md-10 {
    padding: 18rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-8 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .px-md-9 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-md-10 {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-8 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .py-md-9 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-md-10 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 9rem !important;
  }
  .pt-md-8 {
    padding-top: 12rem !important;
  }
  .pt-md-9 {
    padding-top: 15rem !important;
  }
  .pt-md-10 {
    padding-top: 18rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  .pe-md-7 {
    padding-right: 9rem !important;
  }
  .pe-md-8 {
    padding-right: 12rem !important;
  }
  .pe-md-9 {
    padding-right: 15rem !important;
  }
  .pe-md-10 {
    padding-right: 18rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 9rem !important;
  }
  .pb-md-8 {
    padding-bottom: 12rem !important;
  }
  .pb-md-9 {
    padding-bottom: 15rem !important;
  }
  .pb-md-10 {
    padding-bottom: 18rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  .ps-md-7 {
    padding-left: 9rem !important;
  }
  .ps-md-8 {
    padding-left: 12rem !important;
  }
  .ps-md-9 {
    padding-left: 15rem !important;
  }
  .ps-md-10 {
    padding-left: 18rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .gap-md-6 {
    gap: 6rem !important;
  }
  .gap-md-7 {
    gap: 9rem !important;
  }
  .gap-md-8 {
    gap: 12rem !important;
  }
  .gap-md-9 {
    gap: 15rem !important;
  }
  .gap-md-10 {
    gap: 18rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 9rem !important;
  }
  .m-lg-8 {
    margin: 12rem !important;
  }
  .m-lg-9 {
    margin: 15rem !important;
  }
  .m-lg-10 {
    margin: 18rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-8 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-lg-9 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-lg-10 {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-8 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-lg-9 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-lg-10 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 9rem !important;
  }
  .mt-lg-8 {
    margin-top: 12rem !important;
  }
  .mt-lg-9 {
    margin-top: 15rem !important;
  }
  .mt-lg-10 {
    margin-top: 18rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  .me-lg-7 {
    margin-right: 9rem !important;
  }
  .me-lg-8 {
    margin-right: 12rem !important;
  }
  .me-lg-9 {
    margin-right: 15rem !important;
  }
  .me-lg-10 {
    margin-right: 18rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 12rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 15rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 18rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  .ms-lg-7 {
    margin-left: 9rem !important;
  }
  .ms-lg-8 {
    margin-left: 12rem !important;
  }
  .ms-lg-9 {
    margin-left: 15rem !important;
  }
  .ms-lg-10 {
    margin-left: 18rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .m-lg-n6 {
    margin: -6rem !important;
  }
  .m-lg-n7 {
    margin: -9rem !important;
  }
  .m-lg-n8 {
    margin: -12rem !important;
  }
  .m-lg-n9 {
    margin: -15rem !important;
  }
  .m-lg-n10 {
    margin: -18rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-lg-n7 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-lg-n8 {
    margin-right: -12rem !important;
    margin-left: -12rem !important;
  }
  .mx-lg-n9 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-lg-n10 {
    margin-right: -18rem !important;
    margin-left: -18rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-lg-n7 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-lg-n8 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .my-lg-n9 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-lg-n10 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .mt-lg-n6 {
    margin-top: -6rem !important;
  }
  .mt-lg-n7 {
    margin-top: -9rem !important;
  }
  .mt-lg-n8 {
    margin-top: -12rem !important;
  }
  .mt-lg-n9 {
    margin-top: -15rem !important;
  }
  .mt-lg-n10 {
    margin-top: -18rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -3rem !important;
  }
  .me-lg-n6 {
    margin-right: -6rem !important;
  }
  .me-lg-n7 {
    margin-right: -9rem !important;
  }
  .me-lg-n8 {
    margin-right: -12rem !important;
  }
  .me-lg-n9 {
    margin-right: -15rem !important;
  }
  .me-lg-n10 {
    margin-right: -18rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -9rem !important;
  }
  .mb-lg-n8 {
    margin-bottom: -12rem !important;
  }
  .mb-lg-n9 {
    margin-bottom: -15rem !important;
  }
  .mb-lg-n10 {
    margin-bottom: -18rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -3rem !important;
  }
  .ms-lg-n6 {
    margin-left: -6rem !important;
  }
  .ms-lg-n7 {
    margin-left: -9rem !important;
  }
  .ms-lg-n8 {
    margin-left: -12rem !important;
  }
  .ms-lg-n9 {
    margin-left: -15rem !important;
  }
  .ms-lg-n10 {
    margin-left: -18rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 9rem !important;
  }
  .p-lg-8 {
    padding: 12rem !important;
  }
  .p-lg-9 {
    padding: 15rem !important;
  }
  .p-lg-10 {
    padding: 18rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-8 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .px-lg-9 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-lg-10 {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-8 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .py-lg-9 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-lg-10 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 9rem !important;
  }
  .pt-lg-8 {
    padding-top: 12rem !important;
  }
  .pt-lg-9 {
    padding-top: 15rem !important;
  }
  .pt-lg-10 {
    padding-top: 18rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  .pe-lg-7 {
    padding-right: 9rem !important;
  }
  .pe-lg-8 {
    padding-right: 12rem !important;
  }
  .pe-lg-9 {
    padding-right: 15rem !important;
  }
  .pe-lg-10 {
    padding-right: 18rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 12rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 15rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 18rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  .ps-lg-7 {
    padding-left: 9rem !important;
  }
  .ps-lg-8 {
    padding-left: 12rem !important;
  }
  .ps-lg-9 {
    padding-left: 15rem !important;
  }
  .ps-lg-10 {
    padding-left: 18rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .gap-lg-6 {
    gap: 6rem !important;
  }
  .gap-lg-7 {
    gap: 9rem !important;
  }
  .gap-lg-8 {
    gap: 12rem !important;
  }
  .gap-lg-9 {
    gap: 15rem !important;
  }
  .gap-lg-10 {
    gap: 18rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 9rem !important;
  }
  .m-xl-8 {
    margin: 12rem !important;
  }
  .m-xl-9 {
    margin: 15rem !important;
  }
  .m-xl-10 {
    margin: 18rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-8 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-xl-9 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xl-10 {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-8 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-xl-9 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xl-10 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 9rem !important;
  }
  .mt-xl-8 {
    margin-top: 12rem !important;
  }
  .mt-xl-9 {
    margin-top: 15rem !important;
  }
  .mt-xl-10 {
    margin-top: 18rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  .me-xl-7 {
    margin-right: 9rem !important;
  }
  .me-xl-8 {
    margin-right: 12rem !important;
  }
  .me-xl-9 {
    margin-right: 15rem !important;
  }
  .me-xl-10 {
    margin-right: 18rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 12rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 15rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 18rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  .ms-xl-7 {
    margin-left: 9rem !important;
  }
  .ms-xl-8 {
    margin-left: 12rem !important;
  }
  .ms-xl-9 {
    margin-left: 15rem !important;
  }
  .ms-xl-10 {
    margin-left: 18rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .m-xl-n6 {
    margin: -6rem !important;
  }
  .m-xl-n7 {
    margin: -9rem !important;
  }
  .m-xl-n8 {
    margin: -12rem !important;
  }
  .m-xl-n9 {
    margin: -15rem !important;
  }
  .m-xl-n10 {
    margin: -18rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xl-n7 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xl-n8 {
    margin-right: -12rem !important;
    margin-left: -12rem !important;
  }
  .mx-xl-n9 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xl-n10 {
    margin-right: -18rem !important;
    margin-left: -18rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xl-n7 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xl-n8 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .my-xl-n9 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xl-n10 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .mt-xl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xl-n7 {
    margin-top: -9rem !important;
  }
  .mt-xl-n8 {
    margin-top: -12rem !important;
  }
  .mt-xl-n9 {
    margin-top: -15rem !important;
  }
  .mt-xl-n10 {
    margin-top: -18rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -3rem !important;
  }
  .me-xl-n6 {
    margin-right: -6rem !important;
  }
  .me-xl-n7 {
    margin-right: -9rem !important;
  }
  .me-xl-n8 {
    margin-right: -12rem !important;
  }
  .me-xl-n9 {
    margin-right: -15rem !important;
  }
  .me-xl-n10 {
    margin-right: -18rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -9rem !important;
  }
  .mb-xl-n8 {
    margin-bottom: -12rem !important;
  }
  .mb-xl-n9 {
    margin-bottom: -15rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -18rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -3rem !important;
  }
  .ms-xl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xl-n7 {
    margin-left: -9rem !important;
  }
  .ms-xl-n8 {
    margin-left: -12rem !important;
  }
  .ms-xl-n9 {
    margin-left: -15rem !important;
  }
  .ms-xl-n10 {
    margin-left: -18rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 9rem !important;
  }
  .p-xl-8 {
    padding: 12rem !important;
  }
  .p-xl-9 {
    padding: 15rem !important;
  }
  .p-xl-10 {
    padding: 18rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-8 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .px-xl-9 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xl-10 {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-8 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .py-xl-9 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xl-10 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 9rem !important;
  }
  .pt-xl-8 {
    padding-top: 12rem !important;
  }
  .pt-xl-9 {
    padding-top: 15rem !important;
  }
  .pt-xl-10 {
    padding-top: 18rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  .pe-xl-7 {
    padding-right: 9rem !important;
  }
  .pe-xl-8 {
    padding-right: 12rem !important;
  }
  .pe-xl-9 {
    padding-right: 15rem !important;
  }
  .pe-xl-10 {
    padding-right: 18rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 12rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 15rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 18rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  .ps-xl-7 {
    padding-left: 9rem !important;
  }
  .ps-xl-8 {
    padding-left: 12rem !important;
  }
  .ps-xl-9 {
    padding-left: 15rem !important;
  }
  .ps-xl-10 {
    padding-left: 18rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .gap-xl-6 {
    gap: 6rem !important;
  }
  .gap-xl-7 {
    gap: 9rem !important;
  }
  .gap-xl-8 {
    gap: 12rem !important;
  }
  .gap-xl-9 {
    gap: 15rem !important;
  }
  .gap-xl-10 {
    gap: 18rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 9rem !important;
  }
  .m-xxl-8 {
    margin: 12rem !important;
  }
  .m-xxl-9 {
    margin: 15rem !important;
  }
  .m-xxl-10 {
    margin: 18rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-8 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-xxl-9 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xxl-10 {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-8 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-xxl-9 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xxl-10 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 9rem !important;
  }
  .mt-xxl-8 {
    margin-top: 12rem !important;
  }
  .mt-xxl-9 {
    margin-top: 15rem !important;
  }
  .mt-xxl-10 {
    margin-top: 18rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxl-7 {
    margin-right: 9rem !important;
  }
  .me-xxl-8 {
    margin-right: 12rem !important;
  }
  .me-xxl-9 {
    margin-right: 15rem !important;
  }
  .me-xxl-10 {
    margin-right: 18rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 12rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 15rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 18rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxl-7 {
    margin-left: 9rem !important;
  }
  .ms-xxl-8 {
    margin-left: 12rem !important;
  }
  .ms-xxl-9 {
    margin-left: 15rem !important;
  }
  .ms-xxl-10 {
    margin-left: 18rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .m-xxl-n6 {
    margin: -6rem !important;
  }
  .m-xxl-n7 {
    margin: -9rem !important;
  }
  .m-xxl-n8 {
    margin: -12rem !important;
  }
  .m-xxl-n9 {
    margin: -15rem !important;
  }
  .m-xxl-n10 {
    margin: -18rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xxl-n8 {
    margin-right: -12rem !important;
    margin-left: -12rem !important;
  }
  .mx-xxl-n9 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xxl-n10 {
    margin-right: -18rem !important;
    margin-left: -18rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xxl-n7 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xxl-n8 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .my-xxl-n9 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xxl-n10 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -9rem !important;
  }
  .mt-xxl-n8 {
    margin-top: -12rem !important;
  }
  .mt-xxl-n9 {
    margin-top: -15rem !important;
  }
  .mt-xxl-n10 {
    margin-top: -18rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  .me-xxl-n6 {
    margin-right: -6rem !important;
  }
  .me-xxl-n7 {
    margin-right: -9rem !important;
  }
  .me-xxl-n8 {
    margin-right: -12rem !important;
  }
  .me-xxl-n9 {
    margin-right: -15rem !important;
  }
  .me-xxl-n10 {
    margin-right: -18rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -9rem !important;
  }
  .mb-xxl-n8 {
    margin-bottom: -12rem !important;
  }
  .mb-xxl-n9 {
    margin-bottom: -15rem !important;
  }
  .mb-xxl-n10 {
    margin-bottom: -18rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -9rem !important;
  }
  .ms-xxl-n8 {
    margin-left: -12rem !important;
  }
  .ms-xxl-n9 {
    margin-left: -15rem !important;
  }
  .ms-xxl-n10 {
    margin-left: -18rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 9rem !important;
  }
  .p-xxl-8 {
    padding: 12rem !important;
  }
  .p-xxl-9 {
    padding: 15rem !important;
  }
  .p-xxl-10 {
    padding: 18rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-8 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .px-xxl-9 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xxl-10 {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-8 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .py-xxl-9 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xxl-10 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 9rem !important;
  }
  .pt-xxl-8 {
    padding-top: 12rem !important;
  }
  .pt-xxl-9 {
    padding-top: 15rem !important;
  }
  .pt-xxl-10 {
    padding-top: 18rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxl-7 {
    padding-right: 9rem !important;
  }
  .pe-xxl-8 {
    padding-right: 12rem !important;
  }
  .pe-xxl-9 {
    padding-right: 15rem !important;
  }
  .pe-xxl-10 {
    padding-right: 18rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 12rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 15rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 18rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxl-7 {
    padding-left: 9rem !important;
  }
  .ps-xxl-8 {
    padding-left: 12rem !important;
  }
  .ps-xxl-9 {
    padding-left: 15rem !important;
  }
  .ps-xxl-10 {
    padding-left: 18rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .gap-xxl-6 {
    gap: 6rem !important;
  }
  .gap-xxl-7 {
    gap: 9rem !important;
  }
  .gap-xxl-8 {
    gap: 12rem !important;
  }
  .gap-xxl-9 {
    gap: 15rem !important;
  }
  .gap-xxl-10 {
    gap: 18rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.help\:w-1 {
  width: 0.25rem;
}

.help\:h-1 {
  height: 0.25rem;
}

.help\:w-2 {
  width: 0.5rem;
}

.help\:h-2 {
  height: 0.5rem;
}

.help\:w-3 {
  width: 0.75rem;
}

.help\:h-3 {
  height: 0.75rem;
}

.help\:w-4 {
  width: 1rem;
}

.help\:h-4 {
  height: 1rem;
}

.help\:w-5 {
  width: 1.25rem;
}

.help\:h-5 {
  height: 1.25rem;
}

.help\:w-6 {
  width: 1.5rem;
}

.help\:h-6 {
  height: 1.5rem;
}

.help\:w-7 {
  width: 1.75rem;
}

.help\:h-7 {
  height: 1.75rem;
}

.help\:w-8 {
  width: 2rem;
}

.help\:h-8 {
  height: 2rem;
}

.help\:w-9 {
  width: 2.25rem;
}

.help\:h-9 {
  height: 2.25rem;
}

.help\:w-10 {
  width: 2.5rem;
}

.help\:h-10 {
  height: 2.5rem;
}

.help\:w-11 {
  width: 2.75rem;
}

.help\:h-11 {
  height: 2.75rem;
}

.help\:w-12 {
  width: 3rem;
}

.help\:h-12 {
  height: 3rem;
}

.help\:w-13 {
  width: 3.25rem;
}

.help\:h-13 {
  height: 3.25rem;
}

.help\:w-14 {
  width: 3.5rem;
}

.help\:h-14 {
  height: 3.5rem;
}

.help\:w-15 {
  width: 3.75rem;
}

.help\:h-15 {
  height: 3.75rem;
}

.help\:w-16 {
  width: 4rem;
}

.help\:h-16 {
  height: 4rem;
}

.help\:w-17 {
  width: 4.25rem;
}

.help\:h-17 {
  height: 4.25rem;
}

.help\:w-18 {
  width: 4.5rem;
}

.help\:h-18 {
  height: 4.5rem;
}

.help\:w-19 {
  width: 4.75rem;
}

.help\:h-19 {
  height: 4.75rem;
}

.help\:w-20 {
  width: 5rem;
}

.help\:h-20 {
  height: 5rem;
}

.help\:w-21 {
  width: 5.25rem;
}

.help\:h-21 {
  height: 5.25rem;
}

.help\:w-22 {
  width: 5.5rem;
}

.help\:h-22 {
  height: 5.5rem;
}

.help\:w-23 {
  width: 5.75rem;
}

.help\:h-23 {
  height: 5.75rem;
}

.help\:w-24 {
  width: 6rem;
}

.help\:h-24 {
  height: 6rem;
}

.help\:w-25 {
  width: 6.25rem;
}

.help\:h-25 {
  height: 6.25rem;
}

.help\:w-26 {
  width: 6.5rem;
}

.help\:h-26 {
  height: 6.5rem;
}

.help\:w-27 {
  width: 6.75rem;
}

.help\:h-27 {
  height: 6.75rem;
}

.help\:w-28 {
  width: 7rem;
}

.help\:h-28 {
  height: 7rem;
}

.help\:w-29 {
  width: 7.25rem;
}

.help\:h-29 {
  height: 7.25rem;
}

.help\:w-30 {
  width: 7.5rem;
}

.help\:h-30 {
  height: 7.5rem;
}

.help\:w-31 {
  width: 7.75rem;
}

.help\:h-31 {
  height: 7.75rem;
}

.help\:w-32 {
  width: 8rem;
}

.help\:h-32 {
  height: 8rem;
}

.help\:w-33 {
  width: 8.25rem;
}

.help\:h-33 {
  height: 8.25rem;
}

.help\:w-34 {
  width: 8.5rem;
}

.help\:h-34 {
  height: 8.5rem;
}

.help\:w-35 {
  width: 8.75rem;
}

.help\:h-35 {
  height: 8.75rem;
}

.help\:w-36 {
  width: 9rem;
}

.help\:h-36 {
  height: 9rem;
}

.help\:w-37 {
  width: 9.25rem;
}

.help\:h-37 {
  height: 9.25rem;
}

.help\:w-38 {
  width: 9.5rem;
}

.help\:h-38 {
  height: 9.5rem;
}

.help\:w-39 {
  width: 9.75rem;
}

.help\:h-39 {
  height: 9.75rem;
}

.help\:w-40 {
  width: 10rem;
}

.help\:h-40 {
  height: 10rem;
}

.help\:w-41 {
  width: 10.25rem;
}

.help\:h-41 {
  height: 10.25rem;
}

.help\:w-42 {
  width: 10.5rem;
}

.help\:h-42 {
  height: 10.5rem;
}

.help\:w-43 {
  width: 10.75rem;
}

.help\:h-43 {
  height: 10.75rem;
}

.help\:w-44 {
  width: 11rem;
}

.help\:h-44 {
  height: 11rem;
}

.help\:w-45 {
  width: 11.25rem;
}

.help\:h-45 {
  height: 11.25rem;
}

.help\:w-46 {
  width: 11.5rem;
}

.help\:h-46 {
  height: 11.5rem;
}

.help\:w-47 {
  width: 11.75rem;
}

.help\:h-47 {
  height: 11.75rem;
}

.help\:w-48 {
  width: 12rem;
}

.help\:h-48 {
  height: 12rem;
}

.help\:w-49 {
  width: 12.25rem;
}

.help\:h-49 {
  height: 12.25rem;
}

.help\:w-50 {
  width: 12.5rem;
}

.help\:h-50 {
  height: 12.5rem;
}

.help\:w-51 {
  width: 12.75rem;
}

.help\:h-51 {
  height: 12.75rem;
}

.help\:w-52 {
  width: 13rem;
}

.help\:h-52 {
  height: 13rem;
}

.help\:w-53 {
  width: 13.25rem;
}

.help\:h-53 {
  height: 13.25rem;
}

.help\:w-54 {
  width: 13.5rem;
}

.help\:h-54 {
  height: 13.5rem;
}

.help\:w-55 {
  width: 13.75rem;
}

.help\:h-55 {
  height: 13.75rem;
}

.help\:w-56 {
  width: 14rem;
}

.help\:h-56 {
  height: 14rem;
}

.help\:w-57 {
  width: 14.25rem;
}

.help\:h-57 {
  height: 14.25rem;
}

.help\:w-58 {
  width: 14.5rem;
}

.help\:h-58 {
  height: 14.5rem;
}

.help\:w-59 {
  width: 14.75rem;
}

.help\:h-59 {
  height: 14.75rem;
}

.help\:w-60 {
  width: 15rem;
}

.help\:h-60 {
  height: 15rem;
}

.help\:w-61 {
  width: 15.25rem;
}

.help\:h-61 {
  height: 15.25rem;
}

.help\:w-62 {
  width: 15.5rem;
}

.help\:h-62 {
  height: 15.5rem;
}

.help\:w-63 {
  width: 15.75rem;
}

.help\:h-63 {
  height: 15.75rem;
}

.help\:w-64 {
  width: 16rem;
}

.help\:h-64 {
  height: 16rem;
}

.help\:w-65 {
  width: 16.25rem;
}

.help\:h-65 {
  height: 16.25rem;
}

.help\:w-66 {
  width: 16.5rem;
}

.help\:h-66 {
  height: 16.5rem;
}

.help\:w-67 {
  width: 16.75rem;
}

.help\:h-67 {
  height: 16.75rem;
}

.help\:w-68 {
  width: 17rem;
}

.help\:h-68 {
  height: 17rem;
}

.help\:w-69 {
  width: 17.25rem;
}

.help\:h-69 {
  height: 17.25rem;
}

.help\:w-70 {
  width: 17.5rem;
}

.help\:h-70 {
  height: 17.5rem;
}

.help\:w-71 {
  width: 17.75rem;
}

.help\:h-71 {
  height: 17.75rem;
}

.help\:w-72 {
  width: 18rem;
}

.help\:h-72 {
  height: 18rem;
}

.help\:w-73 {
  width: 18.25rem;
}

.help\:h-73 {
  height: 18.25rem;
}

.help\:w-74 {
  width: 18.5rem;
}

.help\:h-74 {
  height: 18.5rem;
}

.help\:w-75 {
  width: 18.75rem;
}

.help\:h-75 {
  height: 18.75rem;
}

.help\:w-76 {
  width: 19rem;
}

.help\:h-76 {
  height: 19rem;
}

.help\:w-77 {
  width: 19.25rem;
}

.help\:h-77 {
  height: 19.25rem;
}

.help\:w-78 {
  width: 19.5rem;
}

.help\:h-78 {
  height: 19.5rem;
}

.help\:w-79 {
  width: 19.75rem;
}

.help\:h-79 {
  height: 19.75rem;
}

.help\:w-80 {
  width: 20rem;
}

.help\:h-80 {
  height: 20rem;
}

.help\:w-81 {
  width: 20.25rem;
}

.help\:h-81 {
  height: 20.25rem;
}

.help\:w-82 {
  width: 20.5rem;
}

.help\:h-82 {
  height: 20.5rem;
}

.help\:w-83 {
  width: 20.75rem;
}

.help\:h-83 {
  height: 20.75rem;
}

.help\:w-84 {
  width: 21rem;
}

.help\:h-84 {
  height: 21rem;
}

.help\:w-85 {
  width: 21.25rem;
}

.help\:h-85 {
  height: 21.25rem;
}

.help\:w-86 {
  width: 21.5rem;
}

.help\:h-86 {
  height: 21.5rem;
}

.help\:w-87 {
  width: 21.75rem;
}

.help\:h-87 {
  height: 21.75rem;
}

.help\:w-88 {
  width: 22rem;
}

.help\:h-88 {
  height: 22rem;
}

.help\:w-89 {
  width: 22.25rem;
}

.help\:h-89 {
  height: 22.25rem;
}

.help\:w-90 {
  width: 22.5rem;
}

.help\:h-90 {
  height: 22.5rem;
}

.help\:w-91 {
  width: 22.75rem;
}

.help\:h-91 {
  height: 22.75rem;
}

.help\:w-92 {
  width: 23rem;
}

.help\:h-92 {
  height: 23rem;
}

.help\:w-93 {
  width: 23.25rem;
}

.help\:h-93 {
  height: 23.25rem;
}

.help\:w-94 {
  width: 23.5rem;
}

.help\:h-94 {
  height: 23.5rem;
}

.help\:w-95 {
  width: 23.75rem;
}

.help\:h-95 {
  height: 23.75rem;
}

.help\:w-96 {
  width: 24rem;
}

.help\:h-96 {
  height: 24rem;
}

.help\:w-97 {
  width: 24.25rem;
}

.help\:h-97 {
  height: 24.25rem;
}

.help\:w-98 {
  width: 24.5rem;
}

.help\:h-98 {
  height: 24.5rem;
}

.help\:w-99 {
  width: 24.75rem;
}

.help\:h-99 {
  height: 24.75rem;
}

.help\:w-100 {
  width: 25rem;
}

.help\:h-100 {
  height: 25rem;
}

.help\:w-101 {
  width: 25.25rem;
}

.help\:h-101 {
  height: 25.25rem;
}

.help\:w-102 {
  width: 25.5rem;
}

.help\:h-102 {
  height: 25.5rem;
}

.help\:w-103 {
  width: 25.75rem;
}

.help\:h-103 {
  height: 25.75rem;
}

.help\:w-104 {
  width: 26rem;
}

.help\:h-104 {
  height: 26rem;
}

.help\:w-105 {
  width: 26.25rem;
}

.help\:h-105 {
  height: 26.25rem;
}

.help\:w-106 {
  width: 26.5rem;
}

.help\:h-106 {
  height: 26.5rem;
}

.help\:w-107 {
  width: 26.75rem;
}

.help\:h-107 {
  height: 26.75rem;
}

.help\:w-108 {
  width: 27rem;
}

.help\:h-108 {
  height: 27rem;
}

.help\:w-109 {
  width: 27.25rem;
}

.help\:h-109 {
  height: 27.25rem;
}

.help\:w-110 {
  width: 27.5rem;
}

.help\:h-110 {
  height: 27.5rem;
}

.help\:w-111 {
  width: 27.75rem;
}

.help\:h-111 {
  height: 27.75rem;
}

.help\:w-112 {
  width: 28rem;
}

.help\:h-112 {
  height: 28rem;
}

.help\:w-113 {
  width: 28.25rem;
}

.help\:h-113 {
  height: 28.25rem;
}

.help\:w-114 {
  width: 28.5rem;
}

.help\:h-114 {
  height: 28.5rem;
}

.help\:w-115 {
  width: 28.75rem;
}

.help\:h-115 {
  height: 28.75rem;
}

.help\:w-116 {
  width: 29rem;
}

.help\:h-116 {
  height: 29rem;
}

.help\:w-117 {
  width: 29.25rem;
}

.help\:h-117 {
  height: 29.25rem;
}

.help\:w-118 {
  width: 29.5rem;
}

.help\:h-118 {
  height: 29.5rem;
}

.help\:w-119 {
  width: 29.75rem;
}

.help\:h-119 {
  height: 29.75rem;
}

.help\:w-120 {
  width: 30rem;
}

.help\:h-120 {
  height: 30rem;
}

.help\:w-121 {
  width: 30.25rem;
}

.help\:h-121 {
  height: 30.25rem;
}

.help\:w-122 {
  width: 30.5rem;
}

.help\:h-122 {
  height: 30.5rem;
}

.help\:w-123 {
  width: 30.75rem;
}

.help\:h-123 {
  height: 30.75rem;
}

.help\:w-124 {
  width: 31rem;
}

.help\:h-124 {
  height: 31rem;
}

.help\:w-125 {
  width: 31.25rem;
}

.help\:h-125 {
  height: 31.25rem;
}

.help\:w-126 {
  width: 31.5rem;
}

.help\:h-126 {
  height: 31.5rem;
}

.help\:w-127 {
  width: 31.75rem;
}

.help\:h-127 {
  height: 31.75rem;
}

.help\:w-128 {
  width: 32rem;
}

.help\:h-128 {
  height: 32rem;
}

.help\:w-129 {
  width: 32.25rem;
}

.help\:h-129 {
  height: 32.25rem;
}

.help\:w-130 {
  width: 32.5rem;
}

.help\:h-130 {
  height: 32.5rem;
}

.help\:w-131 {
  width: 32.75rem;
}

.help\:h-131 {
  height: 32.75rem;
}

.help\:w-132 {
  width: 33rem;
}

.help\:h-132 {
  height: 33rem;
}

.help\:w-133 {
  width: 33.25rem;
}

.help\:h-133 {
  height: 33.25rem;
}

.help\:w-134 {
  width: 33.5rem;
}

.help\:h-134 {
  height: 33.5rem;
}

.help\:w-135 {
  width: 33.75rem;
}

.help\:h-135 {
  height: 33.75rem;
}

.help\:w-136 {
  width: 34rem;
}

.help\:h-136 {
  height: 34rem;
}

.help\:w-137 {
  width: 34.25rem;
}

.help\:h-137 {
  height: 34.25rem;
}

.help\:w-138 {
  width: 34.5rem;
}

.help\:h-138 {
  height: 34.5rem;
}

.help\:w-139 {
  width: 34.75rem;
}

.help\:h-139 {
  height: 34.75rem;
}

.help\:w-140 {
  width: 35rem;
}

.help\:h-140 {
  height: 35rem;
}

.help\:w-141 {
  width: 35.25rem;
}

.help\:h-141 {
  height: 35.25rem;
}

.help\:w-142 {
  width: 35.5rem;
}

.help\:h-142 {
  height: 35.5rem;
}

.help\:w-143 {
  width: 35.75rem;
}

.help\:h-143 {
  height: 35.75rem;
}

.help\:w-144 {
  width: 36rem;
}

.help\:h-144 {
  height: 36rem;
}

.help\:w-145 {
  width: 36.25rem;
}

.help\:h-145 {
  height: 36.25rem;
}

.help\:w-146 {
  width: 36.5rem;
}

.help\:h-146 {
  height: 36.5rem;
}

.help\:w-147 {
  width: 36.75rem;
}

.help\:h-147 {
  height: 36.75rem;
}

.help\:w-148 {
  width: 37rem;
}

.help\:h-148 {
  height: 37rem;
}

.help\:w-149 {
  width: 37.25rem;
}

.help\:h-149 {
  height: 37.25rem;
}

.help\:w-150 {
  width: 37.5rem;
}

.help\:h-150 {
  height: 37.5rem;
}

.help\:w-151 {
  width: 37.75rem;
}

.help\:h-151 {
  height: 37.75rem;
}

.help\:w-152 {
  width: 38rem;
}

.help\:h-152 {
  height: 38rem;
}

.help\:w-153 {
  width: 38.25rem;
}

.help\:h-153 {
  height: 38.25rem;
}

.help\:w-154 {
  width: 38.5rem;
}

.help\:h-154 {
  height: 38.5rem;
}

.help\:w-155 {
  width: 38.75rem;
}

.help\:h-155 {
  height: 38.75rem;
}

.help\:w-156 {
  width: 39rem;
}

.help\:h-156 {
  height: 39rem;
}

.help\:w-157 {
  width: 39.25rem;
}

.help\:h-157 {
  height: 39.25rem;
}

.help\:w-158 {
  width: 39.5rem;
}

.help\:h-158 {
  height: 39.5rem;
}

.help\:w-159 {
  width: 39.75rem;
}

.help\:h-159 {
  height: 39.75rem;
}

.help\:w-160 {
  width: 40rem;
}

.help\:h-160 {
  height: 40rem;
}

.help\:w-161 {
  width: 40.25rem;
}

.help\:h-161 {
  height: 40.25rem;
}

.help\:w-162 {
  width: 40.5rem;
}

.help\:h-162 {
  height: 40.5rem;
}

.help\:w-163 {
  width: 40.75rem;
}

.help\:h-163 {
  height: 40.75rem;
}

.help\:w-164 {
  width: 41rem;
}

.help\:h-164 {
  height: 41rem;
}

.help\:w-165 {
  width: 41.25rem;
}

.help\:h-165 {
  height: 41.25rem;
}

.help\:w-166 {
  width: 41.5rem;
}

.help\:h-166 {
  height: 41.5rem;
}

.help\:w-167 {
  width: 41.75rem;
}

.help\:h-167 {
  height: 41.75rem;
}

.help\:w-168 {
  width: 42rem;
}

.help\:h-168 {
  height: 42rem;
}

.help\:w-169 {
  width: 42.25rem;
}

.help\:h-169 {
  height: 42.25rem;
}

.help\:w-170 {
  width: 42.5rem;
}

.help\:h-170 {
  height: 42.5rem;
}

.help\:w-171 {
  width: 42.75rem;
}

.help\:h-171 {
  height: 42.75rem;
}

.help\:w-172 {
  width: 43rem;
}

.help\:h-172 {
  height: 43rem;
}

.help\:w-173 {
  width: 43.25rem;
}

.help\:h-173 {
  height: 43.25rem;
}

.help\:w-174 {
  width: 43.5rem;
}

.help\:h-174 {
  height: 43.5rem;
}

.help\:w-175 {
  width: 43.75rem;
}

.help\:h-175 {
  height: 43.75rem;
}

.help\:w-176 {
  width: 44rem;
}

.help\:h-176 {
  height: 44rem;
}

.help\:w-177 {
  width: 44.25rem;
}

.help\:h-177 {
  height: 44.25rem;
}

.help\:w-178 {
  width: 44.5rem;
}

.help\:h-178 {
  height: 44.5rem;
}

.help\:w-179 {
  width: 44.75rem;
}

.help\:h-179 {
  height: 44.75rem;
}

.help\:w-180 {
  width: 45rem;
}

.help\:h-180 {
  height: 45rem;
}

.help\:w-181 {
  width: 45.25rem;
}

.help\:h-181 {
  height: 45.25rem;
}

.help\:w-182 {
  width: 45.5rem;
}

.help\:h-182 {
  height: 45.5rem;
}

.help\:w-183 {
  width: 45.75rem;
}

.help\:h-183 {
  height: 45.75rem;
}

.help\:w-184 {
  width: 46rem;
}

.help\:h-184 {
  height: 46rem;
}

.help\:w-185 {
  width: 46.25rem;
}

.help\:h-185 {
  height: 46.25rem;
}

.help\:w-186 {
  width: 46.5rem;
}

.help\:h-186 {
  height: 46.5rem;
}

.help\:w-187 {
  width: 46.75rem;
}

.help\:h-187 {
  height: 46.75rem;
}

.help\:w-188 {
  width: 47rem;
}

.help\:h-188 {
  height: 47rem;
}

.help\:w-189 {
  width: 47.25rem;
}

.help\:h-189 {
  height: 47.25rem;
}

.help\:w-190 {
  width: 47.5rem;
}

.help\:h-190 {
  height: 47.5rem;
}

.help\:w-191 {
  width: 47.75rem;
}

.help\:h-191 {
  height: 47.75rem;
}

.help\:w-192 {
  width: 48rem;
}

.help\:h-192 {
  height: 48rem;
}

.help\:w-193 {
  width: 48.25rem;
}

.help\:h-193 {
  height: 48.25rem;
}

.help\:w-194 {
  width: 48.5rem;
}

.help\:h-194 {
  height: 48.5rem;
}

.help\:w-195 {
  width: 48.75rem;
}

.help\:h-195 {
  height: 48.75rem;
}

.help\:w-196 {
  width: 49rem;
}

.help\:h-196 {
  height: 49rem;
}

.help\:w-197 {
  width: 49.25rem;
}

.help\:h-197 {
  height: 49.25rem;
}

.help\:w-198 {
  width: 49.5rem;
}

.help\:h-198 {
  height: 49.5rem;
}

.help\:w-199 {
  width: 49.75rem;
}

.help\:h-199 {
  height: 49.75rem;
}

.help\:w-200 {
  width: 50rem;
}

.help\:h-200 {
  height: 50rem;
}

.text-xs {
  font-size: 0.75rem;
  /* 12px */
  line-height: 1rem;
  /* 16px */
}

.text-sm {
  font-size: 0.875rem;
  /* 14px */
  line-height: 1.25rem;
  /* 20px */
}

.text-base {
  font-size: 1rem;
  /* 16px */
  line-height: 1.5rem;
  /* 24px */
}

.text-lg {
  font-size: 1.125rem;
  /* 18px */
  line-height: 1.75rem;
  /* 28px */
}

.text-xl {
  font-size: 1.25rem;
  /* 20px */
  line-height: 1.75rem;
  /* 28px */
}

.text-2xl {
  font-size: 1.5rem;
  /* 24px */
  line-height: 2rem;
  /* 32px */
}

.text-3xl {
  font-size: 1.875rem;
  /* 30px */
  line-height: 2.25rem;
  /* 36px */
}

.text-4xl {
  font-size: 2.25rem;
  /* 36px */
  line-height: 2.5rem;
  /* 40px */
}

.text-5xl {
  font-size: 3rem;
  /* 48px */
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  /* 60px */
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  /* 72px */
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  /* 96px */
  line-height: 1;
}

.text-9xl {
  font-size: 8rem;
  /* 128px */
  line-height: 1;
}

.accent-primary {
  accent-color: #2B6685;
}

.accent-secondary {
  accent-color: #005267;
}

.stroke-0 {
  stroke-width: 0;
}

.stroke-1 {
  stroke-width: 1;
}

.stroke-2 {
  stroke-width: 2;
}

.text-slate-50 {
  --bs-alert-color: rgb(248, 250, 252);
  --bs-btn-color: rgb(248, 250, 252);
  color: var(--bs-btn-color);
}

.fill-slate-50 {
  color: rgb(248, 250, 252);
}

.stroke-slate-50 {
  color: rgb(248, 250, 252);
}

.accent-slate-50 {
  accent-color: rgb(248, 250, 252);
}

.bg-slate-50 {
  --bs-btn-active-bg: rgb(248, 250, 252);
  --bs-alert-bg: rgb(248, 250, 252);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-50 {
  --bs-border-color: rgb(248, 250, 252);
  --bs-alert-border: rgb(248, 250, 252);
  border-color: var(--bs-border-color);
}

.decoration-slate-50 {
  text-decoration-color: rgb(248, 250, 252);
}

.hover\:text-slate-50:hover {
  color: rgb(248, 250, 252);
}

.hover\:bg-slate-50:hover {
  --bs-btn-active-bg: rgb(248, 250, 252);
  --bs-alert-bg: rgb(248, 250, 252);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-50:hover {
  --bs-border-color: rgb(248, 250, 252);
  --bs-alert-border-color: rgb(248, 250, 252);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-50 {
  text-decoration-color: rgb(248, 250, 252);
}

.focus\:text-slate-50:focus {
  color: rgb(248, 250, 252);
}

.focus\:bg-slate-50:focus {
  --bs-btn-active-bg: rgb(248, 250, 252);
  --bs-alert-bg: rgb(248, 250, 252);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-50:focus {
  --bs-border-color: rgb(248, 250, 252);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-50 {
  text-decoration-color: rgb(248, 250, 252);
}

.active\:text-slate-50:active {
  color: rgb(248, 250, 252);
}

.active\:bg-slate-50:active {
  --bs-btn-active-bg: rgb(248, 250, 252);
  --bs-alert-bg: rgb(248, 250, 252);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-50:active {
  --bs-border-color: rgb(248, 250, 252);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-50:disabled {
  color: rgb(248, 250, 252);
}

.disabled\:bg-slate-50:disabled {
  --bs-btn-active-bg: rgb(248, 250, 252);
  --bs-alert-bg: rgb(248, 250, 252);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-50:disabled {
  --bs-border-color: rgb(248, 250, 252);
  border-color: var(--bs-border-color);
}

.text-slate-100 {
  --bs-alert-color: rgb(241, 245, 249);
  --bs-btn-color: rgb(241, 245, 249);
  color: var(--bs-btn-color);
}

.fill-slate-100 {
  color: rgb(241, 245, 249);
}

.stroke-slate-100 {
  color: rgb(241, 245, 249);
}

.accent-slate-100 {
  accent-color: rgb(241, 245, 249);
}

.bg-slate-100 {
  --bs-btn-active-bg: rgb(241, 245, 249);
  --bs-alert-bg: rgb(241, 245, 249);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-100 {
  --bs-border-color: rgb(241, 245, 249);
  --bs-alert-border: rgb(241, 245, 249);
  border-color: var(--bs-border-color);
}

.decoration-slate-100 {
  text-decoration-color: rgb(241, 245, 249);
}

.hover\:text-slate-100:hover {
  color: rgb(241, 245, 249);
}

.hover\:bg-slate-100:hover {
  --bs-btn-active-bg: rgb(241, 245, 249);
  --bs-alert-bg: rgb(241, 245, 249);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-100:hover {
  --bs-border-color: rgb(241, 245, 249);
  --bs-alert-border-color: rgb(241, 245, 249);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-100 {
  text-decoration-color: rgb(241, 245, 249);
}

.focus\:text-slate-100:focus {
  color: rgb(241, 245, 249);
}

.focus\:bg-slate-100:focus {
  --bs-btn-active-bg: rgb(241, 245, 249);
  --bs-alert-bg: rgb(241, 245, 249);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-100:focus {
  --bs-border-color: rgb(241, 245, 249);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-100 {
  text-decoration-color: rgb(241, 245, 249);
}

.active\:text-slate-100:active {
  color: rgb(241, 245, 249);
}

.active\:bg-slate-100:active {
  --bs-btn-active-bg: rgb(241, 245, 249);
  --bs-alert-bg: rgb(241, 245, 249);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-100:active {
  --bs-border-color: rgb(241, 245, 249);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-100:disabled {
  color: rgb(241, 245, 249);
}

.disabled\:bg-slate-100:disabled {
  --bs-btn-active-bg: rgb(241, 245, 249);
  --bs-alert-bg: rgb(241, 245, 249);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-100:disabled {
  --bs-border-color: rgb(241, 245, 249);
  border-color: var(--bs-border-color);
}

.text-slate-200 {
  --bs-alert-color: rgb(226, 232, 240);
  --bs-btn-color: rgb(226, 232, 240);
  color: var(--bs-btn-color);
}

.fill-slate-200 {
  color: rgb(226, 232, 240);
}

.stroke-slate-200 {
  color: rgb(226, 232, 240);
}

.accent-slate-200 {
  accent-color: rgb(226, 232, 240);
}

.bg-slate-200 {
  --bs-btn-active-bg: rgb(226, 232, 240);
  --bs-alert-bg: rgb(226, 232, 240);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-200 {
  --bs-border-color: rgb(226, 232, 240);
  --bs-alert-border: rgb(226, 232, 240);
  border-color: var(--bs-border-color);
}

.decoration-slate-200 {
  text-decoration-color: rgb(226, 232, 240);
}

.hover\:text-slate-200:hover {
  color: rgb(226, 232, 240);
}

.hover\:bg-slate-200:hover {
  --bs-btn-active-bg: rgb(226, 232, 240);
  --bs-alert-bg: rgb(226, 232, 240);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-200:hover {
  --bs-border-color: rgb(226, 232, 240);
  --bs-alert-border-color: rgb(226, 232, 240);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-200 {
  text-decoration-color: rgb(226, 232, 240);
}

.focus\:text-slate-200:focus {
  color: rgb(226, 232, 240);
}

.focus\:bg-slate-200:focus {
  --bs-btn-active-bg: rgb(226, 232, 240);
  --bs-alert-bg: rgb(226, 232, 240);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-200:focus {
  --bs-border-color: rgb(226, 232, 240);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-200 {
  text-decoration-color: rgb(226, 232, 240);
}

.active\:text-slate-200:active {
  color: rgb(226, 232, 240);
}

.active\:bg-slate-200:active {
  --bs-btn-active-bg: rgb(226, 232, 240);
  --bs-alert-bg: rgb(226, 232, 240);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-200:active {
  --bs-border-color: rgb(226, 232, 240);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-200:disabled {
  color: rgb(226, 232, 240);
}

.disabled\:bg-slate-200:disabled {
  --bs-btn-active-bg: rgb(226, 232, 240);
  --bs-alert-bg: rgb(226, 232, 240);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-200:disabled {
  --bs-border-color: rgb(226, 232, 240);
  border-color: var(--bs-border-color);
}

.text-slate-300 {
  --bs-alert-color: rgb(203, 213, 225);
  --bs-btn-color: rgb(203, 213, 225);
  color: var(--bs-btn-color);
}

.fill-slate-300 {
  color: rgb(203, 213, 225);
}

.stroke-slate-300 {
  color: rgb(203, 213, 225);
}

.accent-slate-300 {
  accent-color: rgb(203, 213, 225);
}

.bg-slate-300 {
  --bs-btn-active-bg: rgb(203, 213, 225);
  --bs-alert-bg: rgb(203, 213, 225);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-300 {
  --bs-border-color: rgb(203, 213, 225);
  --bs-alert-border: rgb(203, 213, 225);
  border-color: var(--bs-border-color);
}

.decoration-slate-300 {
  text-decoration-color: rgb(203, 213, 225);
}

.hover\:text-slate-300:hover {
  color: rgb(203, 213, 225);
}

.hover\:bg-slate-300:hover {
  --bs-btn-active-bg: rgb(203, 213, 225);
  --bs-alert-bg: rgb(203, 213, 225);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-300:hover {
  --bs-border-color: rgb(203, 213, 225);
  --bs-alert-border-color: rgb(203, 213, 225);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-300 {
  text-decoration-color: rgb(203, 213, 225);
}

.focus\:text-slate-300:focus {
  color: rgb(203, 213, 225);
}

.focus\:bg-slate-300:focus {
  --bs-btn-active-bg: rgb(203, 213, 225);
  --bs-alert-bg: rgb(203, 213, 225);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-300:focus {
  --bs-border-color: rgb(203, 213, 225);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-300 {
  text-decoration-color: rgb(203, 213, 225);
}

.active\:text-slate-300:active {
  color: rgb(203, 213, 225);
}

.active\:bg-slate-300:active {
  --bs-btn-active-bg: rgb(203, 213, 225);
  --bs-alert-bg: rgb(203, 213, 225);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-300:active {
  --bs-border-color: rgb(203, 213, 225);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-300:disabled {
  color: rgb(203, 213, 225);
}

.disabled\:bg-slate-300:disabled {
  --bs-btn-active-bg: rgb(203, 213, 225);
  --bs-alert-bg: rgb(203, 213, 225);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-300:disabled {
  --bs-border-color: rgb(203, 213, 225);
  border-color: var(--bs-border-color);
}

.text-slate-400 {
  --bs-alert-color: rgb(148, 163, 184);
  --bs-btn-color: rgb(148, 163, 184);
  color: var(--bs-btn-color);
}

.fill-slate-400 {
  color: rgb(148, 163, 184);
}

.stroke-slate-400 {
  color: rgb(148, 163, 184);
}

.accent-slate-400 {
  accent-color: rgb(148, 163, 184);
}

.bg-slate-400 {
  --bs-btn-active-bg: rgb(148, 163, 184);
  --bs-alert-bg: rgb(148, 163, 184);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-400 {
  --bs-border-color: rgb(148, 163, 184);
  --bs-alert-border: rgb(148, 163, 184);
  border-color: var(--bs-border-color);
}

.decoration-slate-400 {
  text-decoration-color: rgb(148, 163, 184);
}

.hover\:text-slate-400:hover {
  color: rgb(148, 163, 184);
}

.hover\:bg-slate-400:hover {
  --bs-btn-active-bg: rgb(148, 163, 184);
  --bs-alert-bg: rgb(148, 163, 184);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-400:hover {
  --bs-border-color: rgb(148, 163, 184);
  --bs-alert-border-color: rgb(148, 163, 184);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-400 {
  text-decoration-color: rgb(148, 163, 184);
}

.focus\:text-slate-400:focus {
  color: rgb(148, 163, 184);
}

.focus\:bg-slate-400:focus {
  --bs-btn-active-bg: rgb(148, 163, 184);
  --bs-alert-bg: rgb(148, 163, 184);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-400:focus {
  --bs-border-color: rgb(148, 163, 184);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-400 {
  text-decoration-color: rgb(148, 163, 184);
}

.active\:text-slate-400:active {
  color: rgb(148, 163, 184);
}

.active\:bg-slate-400:active {
  --bs-btn-active-bg: rgb(148, 163, 184);
  --bs-alert-bg: rgb(148, 163, 184);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-400:active {
  --bs-border-color: rgb(148, 163, 184);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-400:disabled {
  color: rgb(148, 163, 184);
}

.disabled\:bg-slate-400:disabled {
  --bs-btn-active-bg: rgb(148, 163, 184);
  --bs-alert-bg: rgb(148, 163, 184);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-400:disabled {
  --bs-border-color: rgb(148, 163, 184);
  border-color: var(--bs-border-color);
}

.text-slate-500 {
  --bs-alert-color: rgb(100, 116, 139);
  --bs-btn-color: rgb(100, 116, 139);
  color: var(--bs-btn-color);
}

.fill-slate-500 {
  color: rgb(100, 116, 139);
}

.stroke-slate-500 {
  color: rgb(100, 116, 139);
}

.accent-slate-500 {
  accent-color: rgb(100, 116, 139);
}

.bg-slate-500 {
  --bs-btn-active-bg: rgb(100, 116, 139);
  --bs-alert-bg: rgb(100, 116, 139);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-500 {
  --bs-border-color: rgb(100, 116, 139);
  --bs-alert-border: rgb(100, 116, 139);
  border-color: var(--bs-border-color);
}

.decoration-slate-500 {
  text-decoration-color: rgb(100, 116, 139);
}

.hover\:text-slate-500:hover {
  color: rgb(100, 116, 139);
}

.hover\:bg-slate-500:hover {
  --bs-btn-active-bg: rgb(100, 116, 139);
  --bs-alert-bg: rgb(100, 116, 139);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-500:hover {
  --bs-border-color: rgb(100, 116, 139);
  --bs-alert-border-color: rgb(100, 116, 139);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-500 {
  text-decoration-color: rgb(100, 116, 139);
}

.focus\:text-slate-500:focus {
  color: rgb(100, 116, 139);
}

.focus\:bg-slate-500:focus {
  --bs-btn-active-bg: rgb(100, 116, 139);
  --bs-alert-bg: rgb(100, 116, 139);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-500:focus {
  --bs-border-color: rgb(100, 116, 139);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-500 {
  text-decoration-color: rgb(100, 116, 139);
}

.active\:text-slate-500:active {
  color: rgb(100, 116, 139);
}

.active\:bg-slate-500:active {
  --bs-btn-active-bg: rgb(100, 116, 139);
  --bs-alert-bg: rgb(100, 116, 139);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-500:active {
  --bs-border-color: rgb(100, 116, 139);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-500:disabled {
  color: rgb(100, 116, 139);
}

.disabled\:bg-slate-500:disabled {
  --bs-btn-active-bg: rgb(100, 116, 139);
  --bs-alert-bg: rgb(100, 116, 139);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-500:disabled {
  --bs-border-color: rgb(100, 116, 139);
  border-color: var(--bs-border-color);
}

.text-slate-600 {
  --bs-alert-color: rgb(71, 85, 105);
  --bs-btn-color: rgb(71, 85, 105);
  color: var(--bs-btn-color);
}

.fill-slate-600 {
  color: rgb(71, 85, 105);
}

.stroke-slate-600 {
  color: rgb(71, 85, 105);
}

.accent-slate-600 {
  accent-color: rgb(71, 85, 105);
}

.bg-slate-600 {
  --bs-btn-active-bg: rgb(71, 85, 105);
  --bs-alert-bg: rgb(71, 85, 105);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-600 {
  --bs-border-color: rgb(71, 85, 105);
  --bs-alert-border: rgb(71, 85, 105);
  border-color: var(--bs-border-color);
}

.decoration-slate-600 {
  text-decoration-color: rgb(71, 85, 105);
}

.hover\:text-slate-600:hover {
  color: rgb(71, 85, 105);
}

.hover\:bg-slate-600:hover {
  --bs-btn-active-bg: rgb(71, 85, 105);
  --bs-alert-bg: rgb(71, 85, 105);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-600:hover {
  --bs-border-color: rgb(71, 85, 105);
  --bs-alert-border-color: rgb(71, 85, 105);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-600 {
  text-decoration-color: rgb(71, 85, 105);
}

.focus\:text-slate-600:focus {
  color: rgb(71, 85, 105);
}

.focus\:bg-slate-600:focus {
  --bs-btn-active-bg: rgb(71, 85, 105);
  --bs-alert-bg: rgb(71, 85, 105);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-600:focus {
  --bs-border-color: rgb(71, 85, 105);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-600 {
  text-decoration-color: rgb(71, 85, 105);
}

.active\:text-slate-600:active {
  color: rgb(71, 85, 105);
}

.active\:bg-slate-600:active {
  --bs-btn-active-bg: rgb(71, 85, 105);
  --bs-alert-bg: rgb(71, 85, 105);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-600:active {
  --bs-border-color: rgb(71, 85, 105);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-600:disabled {
  color: rgb(71, 85, 105);
}

.disabled\:bg-slate-600:disabled {
  --bs-btn-active-bg: rgb(71, 85, 105);
  --bs-alert-bg: rgb(71, 85, 105);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-600:disabled {
  --bs-border-color: rgb(71, 85, 105);
  border-color: var(--bs-border-color);
}

.text-slate-700 {
  --bs-alert-color: rgb(51, 65, 85);
  --bs-btn-color: rgb(51, 65, 85);
  color: var(--bs-btn-color);
}

.fill-slate-700 {
  color: rgb(51, 65, 85);
}

.stroke-slate-700 {
  color: rgb(51, 65, 85);
}

.accent-slate-700 {
  accent-color: rgb(51, 65, 85);
}

.bg-slate-700 {
  --bs-btn-active-bg: rgb(51, 65, 85);
  --bs-alert-bg: rgb(51, 65, 85);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-700 {
  --bs-border-color: rgb(51, 65, 85);
  --bs-alert-border: rgb(51, 65, 85);
  border-color: var(--bs-border-color);
}

.decoration-slate-700 {
  text-decoration-color: rgb(51, 65, 85);
}

.hover\:text-slate-700:hover {
  color: rgb(51, 65, 85);
}

.hover\:bg-slate-700:hover {
  --bs-btn-active-bg: rgb(51, 65, 85);
  --bs-alert-bg: rgb(51, 65, 85);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-700:hover {
  --bs-border-color: rgb(51, 65, 85);
  --bs-alert-border-color: rgb(51, 65, 85);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-700 {
  text-decoration-color: rgb(51, 65, 85);
}

.focus\:text-slate-700:focus {
  color: rgb(51, 65, 85);
}

.focus\:bg-slate-700:focus {
  --bs-btn-active-bg: rgb(51, 65, 85);
  --bs-alert-bg: rgb(51, 65, 85);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-700:focus {
  --bs-border-color: rgb(51, 65, 85);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-700 {
  text-decoration-color: rgb(51, 65, 85);
}

.active\:text-slate-700:active {
  color: rgb(51, 65, 85);
}

.active\:bg-slate-700:active {
  --bs-btn-active-bg: rgb(51, 65, 85);
  --bs-alert-bg: rgb(51, 65, 85);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-700:active {
  --bs-border-color: rgb(51, 65, 85);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-700:disabled {
  color: rgb(51, 65, 85);
}

.disabled\:bg-slate-700:disabled {
  --bs-btn-active-bg: rgb(51, 65, 85);
  --bs-alert-bg: rgb(51, 65, 85);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-700:disabled {
  --bs-border-color: rgb(51, 65, 85);
  border-color: var(--bs-border-color);
}

.text-slate-800 {
  --bs-alert-color: rgb(30, 41, 59);
  --bs-btn-color: rgb(30, 41, 59);
  color: var(--bs-btn-color);
}

.fill-slate-800 {
  color: rgb(30, 41, 59);
}

.stroke-slate-800 {
  color: rgb(30, 41, 59);
}

.accent-slate-800 {
  accent-color: rgb(30, 41, 59);
}

.bg-slate-800 {
  --bs-btn-active-bg: rgb(30, 41, 59);
  --bs-alert-bg: rgb(30, 41, 59);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-800 {
  --bs-border-color: rgb(30, 41, 59);
  --bs-alert-border: rgb(30, 41, 59);
  border-color: var(--bs-border-color);
}

.decoration-slate-800 {
  text-decoration-color: rgb(30, 41, 59);
}

.hover\:text-slate-800:hover {
  color: rgb(30, 41, 59);
}

.hover\:bg-slate-800:hover {
  --bs-btn-active-bg: rgb(30, 41, 59);
  --bs-alert-bg: rgb(30, 41, 59);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-800:hover {
  --bs-border-color: rgb(30, 41, 59);
  --bs-alert-border-color: rgb(30, 41, 59);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-800 {
  text-decoration-color: rgb(30, 41, 59);
}

.focus\:text-slate-800:focus {
  color: rgb(30, 41, 59);
}

.focus\:bg-slate-800:focus {
  --bs-btn-active-bg: rgb(30, 41, 59);
  --bs-alert-bg: rgb(30, 41, 59);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-800:focus {
  --bs-border-color: rgb(30, 41, 59);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-800 {
  text-decoration-color: rgb(30, 41, 59);
}

.active\:text-slate-800:active {
  color: rgb(30, 41, 59);
}

.active\:bg-slate-800:active {
  --bs-btn-active-bg: rgb(30, 41, 59);
  --bs-alert-bg: rgb(30, 41, 59);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-800:active {
  --bs-border-color: rgb(30, 41, 59);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-800:disabled {
  color: rgb(30, 41, 59);
}

.disabled\:bg-slate-800:disabled {
  --bs-btn-active-bg: rgb(30, 41, 59);
  --bs-alert-bg: rgb(30, 41, 59);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-800:disabled {
  --bs-border-color: rgb(30, 41, 59);
  border-color: var(--bs-border-color);
}

.text-slate-900 {
  --bs-alert-color: rgb(15, 23, 42);
  --bs-btn-color: rgb(15, 23, 42);
  color: var(--bs-btn-color);
}

.fill-slate-900 {
  color: rgb(15, 23, 42);
}

.stroke-slate-900 {
  color: rgb(15, 23, 42);
}

.accent-slate-900 {
  accent-color: rgb(15, 23, 42);
}

.bg-slate-900 {
  --bs-btn-active-bg: rgb(15, 23, 42);
  --bs-alert-bg: rgb(15, 23, 42);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-900 {
  --bs-border-color: rgb(15, 23, 42);
  --bs-alert-border: rgb(15, 23, 42);
  border-color: var(--bs-border-color);
}

.decoration-slate-900 {
  text-decoration-color: rgb(15, 23, 42);
}

.hover\:text-slate-900:hover {
  color: rgb(15, 23, 42);
}

.hover\:bg-slate-900:hover {
  --bs-btn-active-bg: rgb(15, 23, 42);
  --bs-alert-bg: rgb(15, 23, 42);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-900:hover {
  --bs-border-color: rgb(15, 23, 42);
  --bs-alert-border-color: rgb(15, 23, 42);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-900 {
  text-decoration-color: rgb(15, 23, 42);
}

.focus\:text-slate-900:focus {
  color: rgb(15, 23, 42);
}

.focus\:bg-slate-900:focus {
  --bs-btn-active-bg: rgb(15, 23, 42);
  --bs-alert-bg: rgb(15, 23, 42);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-900:focus {
  --bs-border-color: rgb(15, 23, 42);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-900 {
  text-decoration-color: rgb(15, 23, 42);
}

.active\:text-slate-900:active {
  color: rgb(15, 23, 42);
}

.active\:bg-slate-900:active {
  --bs-btn-active-bg: rgb(15, 23, 42);
  --bs-alert-bg: rgb(15, 23, 42);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-900:active {
  --bs-border-color: rgb(15, 23, 42);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-900:disabled {
  color: rgb(15, 23, 42);
}

.disabled\:bg-slate-900:disabled {
  --bs-btn-active-bg: rgb(15, 23, 42);
  --bs-alert-bg: rgb(15, 23, 42);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-900:disabled {
  --bs-border-color: rgb(15, 23, 42);
  border-color: var(--bs-border-color);
}

.text-slate-950 {
  --bs-alert-color: rgb(2, 6, 23);
  --bs-btn-color: rgb(2, 6, 23);
  color: var(--bs-btn-color);
}

.fill-slate-950 {
  color: rgb(2, 6, 23);
}

.stroke-slate-950 {
  color: rgb(2, 6, 23);
}

.accent-slate-950 {
  accent-color: rgb(2, 6, 23);
}

.bg-slate-950 {
  --bs-btn-active-bg: rgb(2, 6, 23);
  --bs-alert-bg: rgb(2, 6, 23);
  background-color: var(--bs-btn-active-bg);
}

.border-slate-950 {
  --bs-border-color: rgb(2, 6, 23);
  --bs-alert-border: rgb(2, 6, 23);
  border-color: var(--bs-border-color);
}

.decoration-slate-950 {
  text-decoration-color: rgb(2, 6, 23);
}

.hover\:text-slate-950:hover {
  color: rgb(2, 6, 23);
}

.hover\:bg-slate-950:hover {
  --bs-btn-active-bg: rgb(2, 6, 23);
  --bs-alert-bg: rgb(2, 6, 23);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-slate-950:hover {
  --bs-border-color: rgb(2, 6, 23);
  --bs-alert-border-color: rgb(2, 6, 23);
  border-color: var(--bs-border-color);
}

.hover\:decoration-slate-950 {
  text-decoration-color: rgb(2, 6, 23);
}

.focus\:text-slate-950:focus {
  color: rgb(2, 6, 23);
}

.focus\:bg-slate-950:focus {
  --bs-btn-active-bg: rgb(2, 6, 23);
  --bs-alert-bg: rgb(2, 6, 23);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-slate-950:focus {
  --bs-border-color: rgb(2, 6, 23);
  border-color: var(--bs-border-color);
}

.focus\:decoration-slate-950 {
  text-decoration-color: rgb(2, 6, 23);
}

.active\:text-slate-950:active {
  color: rgb(2, 6, 23);
}

.active\:bg-slate-950:active {
  --bs-btn-active-bg: rgb(2, 6, 23);
  --bs-alert-bg: rgb(2, 6, 23);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-slate-950:active {
  --bs-border-color: rgb(2, 6, 23);
  border-color: var(--bs-border-color);
}

.disabled\:text-slate-950:disabled {
  color: rgb(2, 6, 23);
}

.disabled\:bg-slate-950:disabled {
  --bs-btn-active-bg: rgb(2, 6, 23);
  --bs-alert-bg: rgb(2, 6, 23);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-slate-950:disabled {
  --bs-border-color: rgb(2, 6, 23);
  border-color: var(--bs-border-color);
}

.text-gray-50 {
  --bs-alert-color: rgb(249, 250, 251);
  --bs-btn-color: rgb(249, 250, 251);
  color: var(--bs-btn-color);
}

.fill-gray-50 {
  color: rgb(249, 250, 251);
}

.stroke-gray-50 {
  color: rgb(249, 250, 251);
}

.accent-gray-50 {
  accent-color: rgb(249, 250, 251);
}

.bg-gray-50 {
  --bs-btn-active-bg: rgb(249, 250, 251);
  --bs-alert-bg: rgb(249, 250, 251);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-50 {
  --bs-border-color: rgb(249, 250, 251);
  --bs-alert-border: rgb(249, 250, 251);
  border-color: var(--bs-border-color);
}

.decoration-gray-50 {
  text-decoration-color: rgb(249, 250, 251);
}

.hover\:text-gray-50:hover {
  color: rgb(249, 250, 251);
}

.hover\:bg-gray-50:hover {
  --bs-btn-active-bg: rgb(249, 250, 251);
  --bs-alert-bg: rgb(249, 250, 251);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-50:hover {
  --bs-border-color: rgb(249, 250, 251);
  --bs-alert-border-color: rgb(249, 250, 251);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-50 {
  text-decoration-color: rgb(249, 250, 251);
}

.focus\:text-gray-50:focus {
  color: rgb(249, 250, 251);
}

.focus\:bg-gray-50:focus {
  --bs-btn-active-bg: rgb(249, 250, 251);
  --bs-alert-bg: rgb(249, 250, 251);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-50:focus {
  --bs-border-color: rgb(249, 250, 251);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-50 {
  text-decoration-color: rgb(249, 250, 251);
}

.active\:text-gray-50:active {
  color: rgb(249, 250, 251);
}

.active\:bg-gray-50:active {
  --bs-btn-active-bg: rgb(249, 250, 251);
  --bs-alert-bg: rgb(249, 250, 251);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-50:active {
  --bs-border-color: rgb(249, 250, 251);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-50:disabled {
  color: rgb(249, 250, 251);
}

.disabled\:bg-gray-50:disabled {
  --bs-btn-active-bg: rgb(249, 250, 251);
  --bs-alert-bg: rgb(249, 250, 251);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-50:disabled {
  --bs-border-color: rgb(249, 250, 251);
  border-color: var(--bs-border-color);
}

.text-gray-100 {
  --bs-alert-color: rgb(243, 244, 246);
  --bs-btn-color: rgb(243, 244, 246);
  color: var(--bs-btn-color);
}

.fill-gray-100 {
  color: rgb(243, 244, 246);
}

.stroke-gray-100 {
  color: rgb(243, 244, 246);
}

.accent-gray-100 {
  accent-color: rgb(243, 244, 246);
}

.bg-gray-100 {
  --bs-btn-active-bg: rgb(243, 244, 246);
  --bs-alert-bg: rgb(243, 244, 246);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-100 {
  --bs-border-color: rgb(243, 244, 246);
  --bs-alert-border: rgb(243, 244, 246);
  border-color: var(--bs-border-color);
}

.decoration-gray-100 {
  text-decoration-color: rgb(243, 244, 246);
}

.hover\:text-gray-100:hover {
  color: rgb(243, 244, 246);
}

.hover\:bg-gray-100:hover {
  --bs-btn-active-bg: rgb(243, 244, 246);
  --bs-alert-bg: rgb(243, 244, 246);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-100:hover {
  --bs-border-color: rgb(243, 244, 246);
  --bs-alert-border-color: rgb(243, 244, 246);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-100 {
  text-decoration-color: rgb(243, 244, 246);
}

.focus\:text-gray-100:focus {
  color: rgb(243, 244, 246);
}

.focus\:bg-gray-100:focus {
  --bs-btn-active-bg: rgb(243, 244, 246);
  --bs-alert-bg: rgb(243, 244, 246);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-100:focus {
  --bs-border-color: rgb(243, 244, 246);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-100 {
  text-decoration-color: rgb(243, 244, 246);
}

.active\:text-gray-100:active {
  color: rgb(243, 244, 246);
}

.active\:bg-gray-100:active {
  --bs-btn-active-bg: rgb(243, 244, 246);
  --bs-alert-bg: rgb(243, 244, 246);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-100:active {
  --bs-border-color: rgb(243, 244, 246);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-100:disabled {
  color: rgb(243, 244, 246);
}

.disabled\:bg-gray-100:disabled {
  --bs-btn-active-bg: rgb(243, 244, 246);
  --bs-alert-bg: rgb(243, 244, 246);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-100:disabled {
  --bs-border-color: rgb(243, 244, 246);
  border-color: var(--bs-border-color);
}

.text-gray-200 {
  --bs-alert-color: rgb(229, 231, 235);
  --bs-btn-color: rgb(229, 231, 235);
  color: var(--bs-btn-color);
}

.fill-gray-200 {
  color: rgb(229, 231, 235);
}

.stroke-gray-200 {
  color: rgb(229, 231, 235);
}

.accent-gray-200 {
  accent-color: rgb(229, 231, 235);
}

.bg-gray-200 {
  --bs-btn-active-bg: rgb(229, 231, 235);
  --bs-alert-bg: rgb(229, 231, 235);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-200 {
  --bs-border-color: rgb(229, 231, 235);
  --bs-alert-border: rgb(229, 231, 235);
  border-color: var(--bs-border-color);
}

.decoration-gray-200 {
  text-decoration-color: rgb(229, 231, 235);
}

.hover\:text-gray-200:hover {
  color: rgb(229, 231, 235);
}

.hover\:bg-gray-200:hover {
  --bs-btn-active-bg: rgb(229, 231, 235);
  --bs-alert-bg: rgb(229, 231, 235);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-200:hover {
  --bs-border-color: rgb(229, 231, 235);
  --bs-alert-border-color: rgb(229, 231, 235);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-200 {
  text-decoration-color: rgb(229, 231, 235);
}

.focus\:text-gray-200:focus {
  color: rgb(229, 231, 235);
}

.focus\:bg-gray-200:focus {
  --bs-btn-active-bg: rgb(229, 231, 235);
  --bs-alert-bg: rgb(229, 231, 235);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-200:focus {
  --bs-border-color: rgb(229, 231, 235);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-200 {
  text-decoration-color: rgb(229, 231, 235);
}

.active\:text-gray-200:active {
  color: rgb(229, 231, 235);
}

.active\:bg-gray-200:active {
  --bs-btn-active-bg: rgb(229, 231, 235);
  --bs-alert-bg: rgb(229, 231, 235);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-200:active {
  --bs-border-color: rgb(229, 231, 235);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-200:disabled {
  color: rgb(229, 231, 235);
}

.disabled\:bg-gray-200:disabled {
  --bs-btn-active-bg: rgb(229, 231, 235);
  --bs-alert-bg: rgb(229, 231, 235);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-200:disabled {
  --bs-border-color: rgb(229, 231, 235);
  border-color: var(--bs-border-color);
}

.text-gray-300 {
  --bs-alert-color: rgb(209, 213, 219);
  --bs-btn-color: rgb(209, 213, 219);
  color: var(--bs-btn-color);
}

.fill-gray-300 {
  color: rgb(209, 213, 219);
}

.stroke-gray-300 {
  color: rgb(209, 213, 219);
}

.accent-gray-300 {
  accent-color: rgb(209, 213, 219);
}

.bg-gray-300 {
  --bs-btn-active-bg: rgb(209, 213, 219);
  --bs-alert-bg: rgb(209, 213, 219);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-300 {
  --bs-border-color: rgb(209, 213, 219);
  --bs-alert-border: rgb(209, 213, 219);
  border-color: var(--bs-border-color);
}

.decoration-gray-300 {
  text-decoration-color: rgb(209, 213, 219);
}

.hover\:text-gray-300:hover {
  color: rgb(209, 213, 219);
}

.hover\:bg-gray-300:hover {
  --bs-btn-active-bg: rgb(209, 213, 219);
  --bs-alert-bg: rgb(209, 213, 219);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-300:hover {
  --bs-border-color: rgb(209, 213, 219);
  --bs-alert-border-color: rgb(209, 213, 219);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-300 {
  text-decoration-color: rgb(209, 213, 219);
}

.focus\:text-gray-300:focus {
  color: rgb(209, 213, 219);
}

.focus\:bg-gray-300:focus {
  --bs-btn-active-bg: rgb(209, 213, 219);
  --bs-alert-bg: rgb(209, 213, 219);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-300:focus {
  --bs-border-color: rgb(209, 213, 219);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-300 {
  text-decoration-color: rgb(209, 213, 219);
}

.active\:text-gray-300:active {
  color: rgb(209, 213, 219);
}

.active\:bg-gray-300:active {
  --bs-btn-active-bg: rgb(209, 213, 219);
  --bs-alert-bg: rgb(209, 213, 219);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-300:active {
  --bs-border-color: rgb(209, 213, 219);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-300:disabled {
  color: rgb(209, 213, 219);
}

.disabled\:bg-gray-300:disabled {
  --bs-btn-active-bg: rgb(209, 213, 219);
  --bs-alert-bg: rgb(209, 213, 219);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-300:disabled {
  --bs-border-color: rgb(209, 213, 219);
  border-color: var(--bs-border-color);
}

.text-gray-400 {
  --bs-alert-color: rgb(156, 163, 175);
  --bs-btn-color: rgb(156, 163, 175);
  color: var(--bs-btn-color);
}

.fill-gray-400 {
  color: rgb(156, 163, 175);
}

.stroke-gray-400 {
  color: rgb(156, 163, 175);
}

.accent-gray-400 {
  accent-color: rgb(156, 163, 175);
}

.bg-gray-400 {
  --bs-btn-active-bg: rgb(156, 163, 175);
  --bs-alert-bg: rgb(156, 163, 175);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-400 {
  --bs-border-color: rgb(156, 163, 175);
  --bs-alert-border: rgb(156, 163, 175);
  border-color: var(--bs-border-color);
}

.decoration-gray-400 {
  text-decoration-color: rgb(156, 163, 175);
}

.hover\:text-gray-400:hover {
  color: rgb(156, 163, 175);
}

.hover\:bg-gray-400:hover {
  --bs-btn-active-bg: rgb(156, 163, 175);
  --bs-alert-bg: rgb(156, 163, 175);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-400:hover {
  --bs-border-color: rgb(156, 163, 175);
  --bs-alert-border-color: rgb(156, 163, 175);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-400 {
  text-decoration-color: rgb(156, 163, 175);
}

.focus\:text-gray-400:focus {
  color: rgb(156, 163, 175);
}

.focus\:bg-gray-400:focus {
  --bs-btn-active-bg: rgb(156, 163, 175);
  --bs-alert-bg: rgb(156, 163, 175);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-400:focus {
  --bs-border-color: rgb(156, 163, 175);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-400 {
  text-decoration-color: rgb(156, 163, 175);
}

.active\:text-gray-400:active {
  color: rgb(156, 163, 175);
}

.active\:bg-gray-400:active {
  --bs-btn-active-bg: rgb(156, 163, 175);
  --bs-alert-bg: rgb(156, 163, 175);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-400:active {
  --bs-border-color: rgb(156, 163, 175);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-400:disabled {
  color: rgb(156, 163, 175);
}

.disabled\:bg-gray-400:disabled {
  --bs-btn-active-bg: rgb(156, 163, 175);
  --bs-alert-bg: rgb(156, 163, 175);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-400:disabled {
  --bs-border-color: rgb(156, 163, 175);
  border-color: var(--bs-border-color);
}

.text-gray-500 {
  --bs-alert-color: rgb(107, 114, 128);
  --bs-btn-color: rgb(107, 114, 128);
  color: var(--bs-btn-color);
}

.fill-gray-500 {
  color: rgb(107, 114, 128);
}

.stroke-gray-500 {
  color: rgb(107, 114, 128);
}

.accent-gray-500 {
  accent-color: rgb(107, 114, 128);
}

.bg-gray-500 {
  --bs-btn-active-bg: rgb(107, 114, 128);
  --bs-alert-bg: rgb(107, 114, 128);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-500 {
  --bs-border-color: rgb(107, 114, 128);
  --bs-alert-border: rgb(107, 114, 128);
  border-color: var(--bs-border-color);
}

.decoration-gray-500 {
  text-decoration-color: rgb(107, 114, 128);
}

.hover\:text-gray-500:hover {
  color: rgb(107, 114, 128);
}

.hover\:bg-gray-500:hover {
  --bs-btn-active-bg: rgb(107, 114, 128);
  --bs-alert-bg: rgb(107, 114, 128);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-500:hover {
  --bs-border-color: rgb(107, 114, 128);
  --bs-alert-border-color: rgb(107, 114, 128);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-500 {
  text-decoration-color: rgb(107, 114, 128);
}

.focus\:text-gray-500:focus {
  color: rgb(107, 114, 128);
}

.focus\:bg-gray-500:focus {
  --bs-btn-active-bg: rgb(107, 114, 128);
  --bs-alert-bg: rgb(107, 114, 128);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-500:focus {
  --bs-border-color: rgb(107, 114, 128);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-500 {
  text-decoration-color: rgb(107, 114, 128);
}

.active\:text-gray-500:active {
  color: rgb(107, 114, 128);
}

.active\:bg-gray-500:active {
  --bs-btn-active-bg: rgb(107, 114, 128);
  --bs-alert-bg: rgb(107, 114, 128);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-500:active {
  --bs-border-color: rgb(107, 114, 128);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-500:disabled {
  color: rgb(107, 114, 128);
}

.disabled\:bg-gray-500:disabled {
  --bs-btn-active-bg: rgb(107, 114, 128);
  --bs-alert-bg: rgb(107, 114, 128);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-500:disabled {
  --bs-border-color: rgb(107, 114, 128);
  border-color: var(--bs-border-color);
}

.text-gray-600 {
  --bs-alert-color: rgb(75, 85, 99);
  --bs-btn-color: rgb(75, 85, 99);
  color: var(--bs-btn-color);
}

.fill-gray-600 {
  color: rgb(75, 85, 99);
}

.stroke-gray-600 {
  color: rgb(75, 85, 99);
}

.accent-gray-600 {
  accent-color: rgb(75, 85, 99);
}

.bg-gray-600 {
  --bs-btn-active-bg: rgb(75, 85, 99);
  --bs-alert-bg: rgb(75, 85, 99);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-600 {
  --bs-border-color: rgb(75, 85, 99);
  --bs-alert-border: rgb(75, 85, 99);
  border-color: var(--bs-border-color);
}

.decoration-gray-600 {
  text-decoration-color: rgb(75, 85, 99);
}

.hover\:text-gray-600:hover {
  color: rgb(75, 85, 99);
}

.hover\:bg-gray-600:hover {
  --bs-btn-active-bg: rgb(75, 85, 99);
  --bs-alert-bg: rgb(75, 85, 99);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-600:hover {
  --bs-border-color: rgb(75, 85, 99);
  --bs-alert-border-color: rgb(75, 85, 99);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-600 {
  text-decoration-color: rgb(75, 85, 99);
}

.focus\:text-gray-600:focus {
  color: rgb(75, 85, 99);
}

.focus\:bg-gray-600:focus {
  --bs-btn-active-bg: rgb(75, 85, 99);
  --bs-alert-bg: rgb(75, 85, 99);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-600:focus {
  --bs-border-color: rgb(75, 85, 99);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-600 {
  text-decoration-color: rgb(75, 85, 99);
}

.active\:text-gray-600:active {
  color: rgb(75, 85, 99);
}

.active\:bg-gray-600:active {
  --bs-btn-active-bg: rgb(75, 85, 99);
  --bs-alert-bg: rgb(75, 85, 99);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-600:active {
  --bs-border-color: rgb(75, 85, 99);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-600:disabled {
  color: rgb(75, 85, 99);
}

.disabled\:bg-gray-600:disabled {
  --bs-btn-active-bg: rgb(75, 85, 99);
  --bs-alert-bg: rgb(75, 85, 99);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-600:disabled {
  --bs-border-color: rgb(75, 85, 99);
  border-color: var(--bs-border-color);
}

.text-gray-700 {
  --bs-alert-color: rgb(55, 65, 81);
  --bs-btn-color: rgb(55, 65, 81);
  color: var(--bs-btn-color);
}

.fill-gray-700 {
  color: rgb(55, 65, 81);
}

.stroke-gray-700 {
  color: rgb(55, 65, 81);
}

.accent-gray-700 {
  accent-color: rgb(55, 65, 81);
}

.bg-gray-700 {
  --bs-btn-active-bg: rgb(55, 65, 81);
  --bs-alert-bg: rgb(55, 65, 81);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-700 {
  --bs-border-color: rgb(55, 65, 81);
  --bs-alert-border: rgb(55, 65, 81);
  border-color: var(--bs-border-color);
}

.decoration-gray-700 {
  text-decoration-color: rgb(55, 65, 81);
}

.hover\:text-gray-700:hover {
  color: rgb(55, 65, 81);
}

.hover\:bg-gray-700:hover {
  --bs-btn-active-bg: rgb(55, 65, 81);
  --bs-alert-bg: rgb(55, 65, 81);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-700:hover {
  --bs-border-color: rgb(55, 65, 81);
  --bs-alert-border-color: rgb(55, 65, 81);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-700 {
  text-decoration-color: rgb(55, 65, 81);
}

.focus\:text-gray-700:focus {
  color: rgb(55, 65, 81);
}

.focus\:bg-gray-700:focus {
  --bs-btn-active-bg: rgb(55, 65, 81);
  --bs-alert-bg: rgb(55, 65, 81);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-700:focus {
  --bs-border-color: rgb(55, 65, 81);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-700 {
  text-decoration-color: rgb(55, 65, 81);
}

.active\:text-gray-700:active {
  color: rgb(55, 65, 81);
}

.active\:bg-gray-700:active {
  --bs-btn-active-bg: rgb(55, 65, 81);
  --bs-alert-bg: rgb(55, 65, 81);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-700:active {
  --bs-border-color: rgb(55, 65, 81);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-700:disabled {
  color: rgb(55, 65, 81);
}

.disabled\:bg-gray-700:disabled {
  --bs-btn-active-bg: rgb(55, 65, 81);
  --bs-alert-bg: rgb(55, 65, 81);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-700:disabled {
  --bs-border-color: rgb(55, 65, 81);
  border-color: var(--bs-border-color);
}

.text-gray-800 {
  --bs-alert-color: rgb(31, 41, 55);
  --bs-btn-color: rgb(31, 41, 55);
  color: var(--bs-btn-color);
}

.fill-gray-800 {
  color: rgb(31, 41, 55);
}

.stroke-gray-800 {
  color: rgb(31, 41, 55);
}

.accent-gray-800 {
  accent-color: rgb(31, 41, 55);
}

.bg-gray-800 {
  --bs-btn-active-bg: rgb(31, 41, 55);
  --bs-alert-bg: rgb(31, 41, 55);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-800 {
  --bs-border-color: rgb(31, 41, 55);
  --bs-alert-border: rgb(31, 41, 55);
  border-color: var(--bs-border-color);
}

.decoration-gray-800 {
  text-decoration-color: rgb(31, 41, 55);
}

.hover\:text-gray-800:hover {
  color: rgb(31, 41, 55);
}

.hover\:bg-gray-800:hover {
  --bs-btn-active-bg: rgb(31, 41, 55);
  --bs-alert-bg: rgb(31, 41, 55);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-800:hover {
  --bs-border-color: rgb(31, 41, 55);
  --bs-alert-border-color: rgb(31, 41, 55);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-800 {
  text-decoration-color: rgb(31, 41, 55);
}

.focus\:text-gray-800:focus {
  color: rgb(31, 41, 55);
}

.focus\:bg-gray-800:focus {
  --bs-btn-active-bg: rgb(31, 41, 55);
  --bs-alert-bg: rgb(31, 41, 55);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-800:focus {
  --bs-border-color: rgb(31, 41, 55);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-800 {
  text-decoration-color: rgb(31, 41, 55);
}

.active\:text-gray-800:active {
  color: rgb(31, 41, 55);
}

.active\:bg-gray-800:active {
  --bs-btn-active-bg: rgb(31, 41, 55);
  --bs-alert-bg: rgb(31, 41, 55);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-800:active {
  --bs-border-color: rgb(31, 41, 55);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-800:disabled {
  color: rgb(31, 41, 55);
}

.disabled\:bg-gray-800:disabled {
  --bs-btn-active-bg: rgb(31, 41, 55);
  --bs-alert-bg: rgb(31, 41, 55);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-800:disabled {
  --bs-border-color: rgb(31, 41, 55);
  border-color: var(--bs-border-color);
}

.text-gray-900 {
  --bs-alert-color: rgb(17, 24, 39);
  --bs-btn-color: rgb(17, 24, 39);
  color: var(--bs-btn-color);
}

.fill-gray-900 {
  color: rgb(17, 24, 39);
}

.stroke-gray-900 {
  color: rgb(17, 24, 39);
}

.accent-gray-900 {
  accent-color: rgb(17, 24, 39);
}

.bg-gray-900 {
  --bs-btn-active-bg: rgb(17, 24, 39);
  --bs-alert-bg: rgb(17, 24, 39);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-900 {
  --bs-border-color: rgb(17, 24, 39);
  --bs-alert-border: rgb(17, 24, 39);
  border-color: var(--bs-border-color);
}

.decoration-gray-900 {
  text-decoration-color: rgb(17, 24, 39);
}

.hover\:text-gray-900:hover {
  color: rgb(17, 24, 39);
}

.hover\:bg-gray-900:hover {
  --bs-btn-active-bg: rgb(17, 24, 39);
  --bs-alert-bg: rgb(17, 24, 39);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-900:hover {
  --bs-border-color: rgb(17, 24, 39);
  --bs-alert-border-color: rgb(17, 24, 39);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-900 {
  text-decoration-color: rgb(17, 24, 39);
}

.focus\:text-gray-900:focus {
  color: rgb(17, 24, 39);
}

.focus\:bg-gray-900:focus {
  --bs-btn-active-bg: rgb(17, 24, 39);
  --bs-alert-bg: rgb(17, 24, 39);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-900:focus {
  --bs-border-color: rgb(17, 24, 39);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-900 {
  text-decoration-color: rgb(17, 24, 39);
}

.active\:text-gray-900:active {
  color: rgb(17, 24, 39);
}

.active\:bg-gray-900:active {
  --bs-btn-active-bg: rgb(17, 24, 39);
  --bs-alert-bg: rgb(17, 24, 39);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-900:active {
  --bs-border-color: rgb(17, 24, 39);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-900:disabled {
  color: rgb(17, 24, 39);
}

.disabled\:bg-gray-900:disabled {
  --bs-btn-active-bg: rgb(17, 24, 39);
  --bs-alert-bg: rgb(17, 24, 39);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-900:disabled {
  --bs-border-color: rgb(17, 24, 39);
  border-color: var(--bs-border-color);
}

.text-gray-950 {
  --bs-alert-color: rgb(3, 7, 18);
  --bs-btn-color: rgb(3, 7, 18);
  color: var(--bs-btn-color);
}

.fill-gray-950 {
  color: rgb(3, 7, 18);
}

.stroke-gray-950 {
  color: rgb(3, 7, 18);
}

.accent-gray-950 {
  accent-color: rgb(3, 7, 18);
}

.bg-gray-950 {
  --bs-btn-active-bg: rgb(3, 7, 18);
  --bs-alert-bg: rgb(3, 7, 18);
  background-color: var(--bs-btn-active-bg);
}

.border-gray-950 {
  --bs-border-color: rgb(3, 7, 18);
  --bs-alert-border: rgb(3, 7, 18);
  border-color: var(--bs-border-color);
}

.decoration-gray-950 {
  text-decoration-color: rgb(3, 7, 18);
}

.hover\:text-gray-950:hover {
  color: rgb(3, 7, 18);
}

.hover\:bg-gray-950:hover {
  --bs-btn-active-bg: rgb(3, 7, 18);
  --bs-alert-bg: rgb(3, 7, 18);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-gray-950:hover {
  --bs-border-color: rgb(3, 7, 18);
  --bs-alert-border-color: rgb(3, 7, 18);
  border-color: var(--bs-border-color);
}

.hover\:decoration-gray-950 {
  text-decoration-color: rgb(3, 7, 18);
}

.focus\:text-gray-950:focus {
  color: rgb(3, 7, 18);
}

.focus\:bg-gray-950:focus {
  --bs-btn-active-bg: rgb(3, 7, 18);
  --bs-alert-bg: rgb(3, 7, 18);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-gray-950:focus {
  --bs-border-color: rgb(3, 7, 18);
  border-color: var(--bs-border-color);
}

.focus\:decoration-gray-950 {
  text-decoration-color: rgb(3, 7, 18);
}

.active\:text-gray-950:active {
  color: rgb(3, 7, 18);
}

.active\:bg-gray-950:active {
  --bs-btn-active-bg: rgb(3, 7, 18);
  --bs-alert-bg: rgb(3, 7, 18);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-gray-950:active {
  --bs-border-color: rgb(3, 7, 18);
  border-color: var(--bs-border-color);
}

.disabled\:text-gray-950:disabled {
  color: rgb(3, 7, 18);
}

.disabled\:bg-gray-950:disabled {
  --bs-btn-active-bg: rgb(3, 7, 18);
  --bs-alert-bg: rgb(3, 7, 18);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-gray-950:disabled {
  --bs-border-color: rgb(3, 7, 18);
  border-color: var(--bs-border-color);
}

.text-zinc-50 {
  --bs-alert-color: rgb(250, 250, 250);
  --bs-btn-color: rgb(250, 250, 250);
  color: var(--bs-btn-color);
}

.fill-zinc-50 {
  color: rgb(250, 250, 250);
}

.stroke-zinc-50 {
  color: rgb(250, 250, 250);
}

.accent-zinc-50 {
  accent-color: rgb(250, 250, 250);
}

.bg-zinc-50 {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-50 {
  --bs-border-color: rgb(250, 250, 250);
  --bs-alert-border: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.decoration-zinc-50 {
  text-decoration-color: rgb(250, 250, 250);
}

.hover\:text-zinc-50:hover {
  color: rgb(250, 250, 250);
}

.hover\:bg-zinc-50:hover {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-50:hover {
  --bs-border-color: rgb(250, 250, 250);
  --bs-alert-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-50 {
  text-decoration-color: rgb(250, 250, 250);
}

.focus\:text-zinc-50:focus {
  color: rgb(250, 250, 250);
}

.focus\:bg-zinc-50:focus {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-50:focus {
  --bs-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-50 {
  text-decoration-color: rgb(250, 250, 250);
}

.active\:text-zinc-50:active {
  color: rgb(250, 250, 250);
}

.active\:bg-zinc-50:active {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-50:active {
  --bs-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-50:disabled {
  color: rgb(250, 250, 250);
}

.disabled\:bg-zinc-50:disabled {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-50:disabled {
  --bs-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.text-zinc-100 {
  --bs-alert-color: rgb(244, 244, 245);
  --bs-btn-color: rgb(244, 244, 245);
  color: var(--bs-btn-color);
}

.fill-zinc-100 {
  color: rgb(244, 244, 245);
}

.stroke-zinc-100 {
  color: rgb(244, 244, 245);
}

.accent-zinc-100 {
  accent-color: rgb(244, 244, 245);
}

.bg-zinc-100 {
  --bs-btn-active-bg: rgb(244, 244, 245);
  --bs-alert-bg: rgb(244, 244, 245);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-100 {
  --bs-border-color: rgb(244, 244, 245);
  --bs-alert-border: rgb(244, 244, 245);
  border-color: var(--bs-border-color);
}

.decoration-zinc-100 {
  text-decoration-color: rgb(244, 244, 245);
}

.hover\:text-zinc-100:hover {
  color: rgb(244, 244, 245);
}

.hover\:bg-zinc-100:hover {
  --bs-btn-active-bg: rgb(244, 244, 245);
  --bs-alert-bg: rgb(244, 244, 245);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-100:hover {
  --bs-border-color: rgb(244, 244, 245);
  --bs-alert-border-color: rgb(244, 244, 245);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-100 {
  text-decoration-color: rgb(244, 244, 245);
}

.focus\:text-zinc-100:focus {
  color: rgb(244, 244, 245);
}

.focus\:bg-zinc-100:focus {
  --bs-btn-active-bg: rgb(244, 244, 245);
  --bs-alert-bg: rgb(244, 244, 245);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-100:focus {
  --bs-border-color: rgb(244, 244, 245);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-100 {
  text-decoration-color: rgb(244, 244, 245);
}

.active\:text-zinc-100:active {
  color: rgb(244, 244, 245);
}

.active\:bg-zinc-100:active {
  --bs-btn-active-bg: rgb(244, 244, 245);
  --bs-alert-bg: rgb(244, 244, 245);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-100:active {
  --bs-border-color: rgb(244, 244, 245);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-100:disabled {
  color: rgb(244, 244, 245);
}

.disabled\:bg-zinc-100:disabled {
  --bs-btn-active-bg: rgb(244, 244, 245);
  --bs-alert-bg: rgb(244, 244, 245);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-100:disabled {
  --bs-border-color: rgb(244, 244, 245);
  border-color: var(--bs-border-color);
}

.text-zinc-200 {
  --bs-alert-color: rgb(228, 228, 231);
  --bs-btn-color: rgb(228, 228, 231);
  color: var(--bs-btn-color);
}

.fill-zinc-200 {
  color: rgb(228, 228, 231);
}

.stroke-zinc-200 {
  color: rgb(228, 228, 231);
}

.accent-zinc-200 {
  accent-color: rgb(228, 228, 231);
}

.bg-zinc-200 {
  --bs-btn-active-bg: rgb(228, 228, 231);
  --bs-alert-bg: rgb(228, 228, 231);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-200 {
  --bs-border-color: rgb(228, 228, 231);
  --bs-alert-border: rgb(228, 228, 231);
  border-color: var(--bs-border-color);
}

.decoration-zinc-200 {
  text-decoration-color: rgb(228, 228, 231);
}

.hover\:text-zinc-200:hover {
  color: rgb(228, 228, 231);
}

.hover\:bg-zinc-200:hover {
  --bs-btn-active-bg: rgb(228, 228, 231);
  --bs-alert-bg: rgb(228, 228, 231);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-200:hover {
  --bs-border-color: rgb(228, 228, 231);
  --bs-alert-border-color: rgb(228, 228, 231);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-200 {
  text-decoration-color: rgb(228, 228, 231);
}

.focus\:text-zinc-200:focus {
  color: rgb(228, 228, 231);
}

.focus\:bg-zinc-200:focus {
  --bs-btn-active-bg: rgb(228, 228, 231);
  --bs-alert-bg: rgb(228, 228, 231);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-200:focus {
  --bs-border-color: rgb(228, 228, 231);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-200 {
  text-decoration-color: rgb(228, 228, 231);
}

.active\:text-zinc-200:active {
  color: rgb(228, 228, 231);
}

.active\:bg-zinc-200:active {
  --bs-btn-active-bg: rgb(228, 228, 231);
  --bs-alert-bg: rgb(228, 228, 231);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-200:active {
  --bs-border-color: rgb(228, 228, 231);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-200:disabled {
  color: rgb(228, 228, 231);
}

.disabled\:bg-zinc-200:disabled {
  --bs-btn-active-bg: rgb(228, 228, 231);
  --bs-alert-bg: rgb(228, 228, 231);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-200:disabled {
  --bs-border-color: rgb(228, 228, 231);
  border-color: var(--bs-border-color);
}

.text-zinc-300 {
  --bs-alert-color: rgb(212, 212, 216);
  --bs-btn-color: rgb(212, 212, 216);
  color: var(--bs-btn-color);
}

.fill-zinc-300 {
  color: rgb(212, 212, 216);
}

.stroke-zinc-300 {
  color: rgb(212, 212, 216);
}

.accent-zinc-300 {
  accent-color: rgb(212, 212, 216);
}

.bg-zinc-300 {
  --bs-btn-active-bg: rgb(212, 212, 216);
  --bs-alert-bg: rgb(212, 212, 216);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-300 {
  --bs-border-color: rgb(212, 212, 216);
  --bs-alert-border: rgb(212, 212, 216);
  border-color: var(--bs-border-color);
}

.decoration-zinc-300 {
  text-decoration-color: rgb(212, 212, 216);
}

.hover\:text-zinc-300:hover {
  color: rgb(212, 212, 216);
}

.hover\:bg-zinc-300:hover {
  --bs-btn-active-bg: rgb(212, 212, 216);
  --bs-alert-bg: rgb(212, 212, 216);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-300:hover {
  --bs-border-color: rgb(212, 212, 216);
  --bs-alert-border-color: rgb(212, 212, 216);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-300 {
  text-decoration-color: rgb(212, 212, 216);
}

.focus\:text-zinc-300:focus {
  color: rgb(212, 212, 216);
}

.focus\:bg-zinc-300:focus {
  --bs-btn-active-bg: rgb(212, 212, 216);
  --bs-alert-bg: rgb(212, 212, 216);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-300:focus {
  --bs-border-color: rgb(212, 212, 216);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-300 {
  text-decoration-color: rgb(212, 212, 216);
}

.active\:text-zinc-300:active {
  color: rgb(212, 212, 216);
}

.active\:bg-zinc-300:active {
  --bs-btn-active-bg: rgb(212, 212, 216);
  --bs-alert-bg: rgb(212, 212, 216);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-300:active {
  --bs-border-color: rgb(212, 212, 216);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-300:disabled {
  color: rgb(212, 212, 216);
}

.disabled\:bg-zinc-300:disabled {
  --bs-btn-active-bg: rgb(212, 212, 216);
  --bs-alert-bg: rgb(212, 212, 216);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-300:disabled {
  --bs-border-color: rgb(212, 212, 216);
  border-color: var(--bs-border-color);
}

.text-zinc-400 {
  --bs-alert-color: rgb(161, 161, 170);
  --bs-btn-color: rgb(161, 161, 170);
  color: var(--bs-btn-color);
}

.fill-zinc-400 {
  color: rgb(161, 161, 170);
}

.stroke-zinc-400 {
  color: rgb(161, 161, 170);
}

.accent-zinc-400 {
  accent-color: rgb(161, 161, 170);
}

.bg-zinc-400 {
  --bs-btn-active-bg: rgb(161, 161, 170);
  --bs-alert-bg: rgb(161, 161, 170);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-400 {
  --bs-border-color: rgb(161, 161, 170);
  --bs-alert-border: rgb(161, 161, 170);
  border-color: var(--bs-border-color);
}

.decoration-zinc-400 {
  text-decoration-color: rgb(161, 161, 170);
}

.hover\:text-zinc-400:hover {
  color: rgb(161, 161, 170);
}

.hover\:bg-zinc-400:hover {
  --bs-btn-active-bg: rgb(161, 161, 170);
  --bs-alert-bg: rgb(161, 161, 170);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-400:hover {
  --bs-border-color: rgb(161, 161, 170);
  --bs-alert-border-color: rgb(161, 161, 170);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-400 {
  text-decoration-color: rgb(161, 161, 170);
}

.focus\:text-zinc-400:focus {
  color: rgb(161, 161, 170);
}

.focus\:bg-zinc-400:focus {
  --bs-btn-active-bg: rgb(161, 161, 170);
  --bs-alert-bg: rgb(161, 161, 170);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-400:focus {
  --bs-border-color: rgb(161, 161, 170);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-400 {
  text-decoration-color: rgb(161, 161, 170);
}

.active\:text-zinc-400:active {
  color: rgb(161, 161, 170);
}

.active\:bg-zinc-400:active {
  --bs-btn-active-bg: rgb(161, 161, 170);
  --bs-alert-bg: rgb(161, 161, 170);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-400:active {
  --bs-border-color: rgb(161, 161, 170);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-400:disabled {
  color: rgb(161, 161, 170);
}

.disabled\:bg-zinc-400:disabled {
  --bs-btn-active-bg: rgb(161, 161, 170);
  --bs-alert-bg: rgb(161, 161, 170);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-400:disabled {
  --bs-border-color: rgb(161, 161, 170);
  border-color: var(--bs-border-color);
}

.text-zinc-500 {
  --bs-alert-color: rgb(113, 113, 122);
  --bs-btn-color: rgb(113, 113, 122);
  color: var(--bs-btn-color);
}

.fill-zinc-500 {
  color: rgb(113, 113, 122);
}

.stroke-zinc-500 {
  color: rgb(113, 113, 122);
}

.accent-zinc-500 {
  accent-color: rgb(113, 113, 122);
}

.bg-zinc-500 {
  --bs-btn-active-bg: rgb(113, 113, 122);
  --bs-alert-bg: rgb(113, 113, 122);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-500 {
  --bs-border-color: rgb(113, 113, 122);
  --bs-alert-border: rgb(113, 113, 122);
  border-color: var(--bs-border-color);
}

.decoration-zinc-500 {
  text-decoration-color: rgb(113, 113, 122);
}

.hover\:text-zinc-500:hover {
  color: rgb(113, 113, 122);
}

.hover\:bg-zinc-500:hover {
  --bs-btn-active-bg: rgb(113, 113, 122);
  --bs-alert-bg: rgb(113, 113, 122);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-500:hover {
  --bs-border-color: rgb(113, 113, 122);
  --bs-alert-border-color: rgb(113, 113, 122);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-500 {
  text-decoration-color: rgb(113, 113, 122);
}

.focus\:text-zinc-500:focus {
  color: rgb(113, 113, 122);
}

.focus\:bg-zinc-500:focus {
  --bs-btn-active-bg: rgb(113, 113, 122);
  --bs-alert-bg: rgb(113, 113, 122);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-500:focus {
  --bs-border-color: rgb(113, 113, 122);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-500 {
  text-decoration-color: rgb(113, 113, 122);
}

.active\:text-zinc-500:active {
  color: rgb(113, 113, 122);
}

.active\:bg-zinc-500:active {
  --bs-btn-active-bg: rgb(113, 113, 122);
  --bs-alert-bg: rgb(113, 113, 122);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-500:active {
  --bs-border-color: rgb(113, 113, 122);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-500:disabled {
  color: rgb(113, 113, 122);
}

.disabled\:bg-zinc-500:disabled {
  --bs-btn-active-bg: rgb(113, 113, 122);
  --bs-alert-bg: rgb(113, 113, 122);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-500:disabled {
  --bs-border-color: rgb(113, 113, 122);
  border-color: var(--bs-border-color);
}

.text-zinc-600 {
  --bs-alert-color: rgb(82, 82, 91);
  --bs-btn-color: rgb(82, 82, 91);
  color: var(--bs-btn-color);
}

.fill-zinc-600 {
  color: rgb(82, 82, 91);
}

.stroke-zinc-600 {
  color: rgb(82, 82, 91);
}

.accent-zinc-600 {
  accent-color: rgb(82, 82, 91);
}

.bg-zinc-600 {
  --bs-btn-active-bg: rgb(82, 82, 91);
  --bs-alert-bg: rgb(82, 82, 91);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-600 {
  --bs-border-color: rgb(82, 82, 91);
  --bs-alert-border: rgb(82, 82, 91);
  border-color: var(--bs-border-color);
}

.decoration-zinc-600 {
  text-decoration-color: rgb(82, 82, 91);
}

.hover\:text-zinc-600:hover {
  color: rgb(82, 82, 91);
}

.hover\:bg-zinc-600:hover {
  --bs-btn-active-bg: rgb(82, 82, 91);
  --bs-alert-bg: rgb(82, 82, 91);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-600:hover {
  --bs-border-color: rgb(82, 82, 91);
  --bs-alert-border-color: rgb(82, 82, 91);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-600 {
  text-decoration-color: rgb(82, 82, 91);
}

.focus\:text-zinc-600:focus {
  color: rgb(82, 82, 91);
}

.focus\:bg-zinc-600:focus {
  --bs-btn-active-bg: rgb(82, 82, 91);
  --bs-alert-bg: rgb(82, 82, 91);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-600:focus {
  --bs-border-color: rgb(82, 82, 91);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-600 {
  text-decoration-color: rgb(82, 82, 91);
}

.active\:text-zinc-600:active {
  color: rgb(82, 82, 91);
}

.active\:bg-zinc-600:active {
  --bs-btn-active-bg: rgb(82, 82, 91);
  --bs-alert-bg: rgb(82, 82, 91);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-600:active {
  --bs-border-color: rgb(82, 82, 91);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-600:disabled {
  color: rgb(82, 82, 91);
}

.disabled\:bg-zinc-600:disabled {
  --bs-btn-active-bg: rgb(82, 82, 91);
  --bs-alert-bg: rgb(82, 82, 91);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-600:disabled {
  --bs-border-color: rgb(82, 82, 91);
  border-color: var(--bs-border-color);
}

.text-zinc-700 {
  --bs-alert-color: rgb(63, 63, 70);
  --bs-btn-color: rgb(63, 63, 70);
  color: var(--bs-btn-color);
}

.fill-zinc-700 {
  color: rgb(63, 63, 70);
}

.stroke-zinc-700 {
  color: rgb(63, 63, 70);
}

.accent-zinc-700 {
  accent-color: rgb(63, 63, 70);
}

.bg-zinc-700 {
  --bs-btn-active-bg: rgb(63, 63, 70);
  --bs-alert-bg: rgb(63, 63, 70);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-700 {
  --bs-border-color: rgb(63, 63, 70);
  --bs-alert-border: rgb(63, 63, 70);
  border-color: var(--bs-border-color);
}

.decoration-zinc-700 {
  text-decoration-color: rgb(63, 63, 70);
}

.hover\:text-zinc-700:hover {
  color: rgb(63, 63, 70);
}

.hover\:bg-zinc-700:hover {
  --bs-btn-active-bg: rgb(63, 63, 70);
  --bs-alert-bg: rgb(63, 63, 70);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-700:hover {
  --bs-border-color: rgb(63, 63, 70);
  --bs-alert-border-color: rgb(63, 63, 70);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-700 {
  text-decoration-color: rgb(63, 63, 70);
}

.focus\:text-zinc-700:focus {
  color: rgb(63, 63, 70);
}

.focus\:bg-zinc-700:focus {
  --bs-btn-active-bg: rgb(63, 63, 70);
  --bs-alert-bg: rgb(63, 63, 70);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-700:focus {
  --bs-border-color: rgb(63, 63, 70);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-700 {
  text-decoration-color: rgb(63, 63, 70);
}

.active\:text-zinc-700:active {
  color: rgb(63, 63, 70);
}

.active\:bg-zinc-700:active {
  --bs-btn-active-bg: rgb(63, 63, 70);
  --bs-alert-bg: rgb(63, 63, 70);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-700:active {
  --bs-border-color: rgb(63, 63, 70);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-700:disabled {
  color: rgb(63, 63, 70);
}

.disabled\:bg-zinc-700:disabled {
  --bs-btn-active-bg: rgb(63, 63, 70);
  --bs-alert-bg: rgb(63, 63, 70);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-700:disabled {
  --bs-border-color: rgb(63, 63, 70);
  border-color: var(--bs-border-color);
}

.text-zinc-800 {
  --bs-alert-color: rgb(39, 39, 42);
  --bs-btn-color: rgb(39, 39, 42);
  color: var(--bs-btn-color);
}

.fill-zinc-800 {
  color: rgb(39, 39, 42);
}

.stroke-zinc-800 {
  color: rgb(39, 39, 42);
}

.accent-zinc-800 {
  accent-color: rgb(39, 39, 42);
}

.bg-zinc-800 {
  --bs-btn-active-bg: rgb(39, 39, 42);
  --bs-alert-bg: rgb(39, 39, 42);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-800 {
  --bs-border-color: rgb(39, 39, 42);
  --bs-alert-border: rgb(39, 39, 42);
  border-color: var(--bs-border-color);
}

.decoration-zinc-800 {
  text-decoration-color: rgb(39, 39, 42);
}

.hover\:text-zinc-800:hover {
  color: rgb(39, 39, 42);
}

.hover\:bg-zinc-800:hover {
  --bs-btn-active-bg: rgb(39, 39, 42);
  --bs-alert-bg: rgb(39, 39, 42);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-800:hover {
  --bs-border-color: rgb(39, 39, 42);
  --bs-alert-border-color: rgb(39, 39, 42);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-800 {
  text-decoration-color: rgb(39, 39, 42);
}

.focus\:text-zinc-800:focus {
  color: rgb(39, 39, 42);
}

.focus\:bg-zinc-800:focus {
  --bs-btn-active-bg: rgb(39, 39, 42);
  --bs-alert-bg: rgb(39, 39, 42);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-800:focus {
  --bs-border-color: rgb(39, 39, 42);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-800 {
  text-decoration-color: rgb(39, 39, 42);
}

.active\:text-zinc-800:active {
  color: rgb(39, 39, 42);
}

.active\:bg-zinc-800:active {
  --bs-btn-active-bg: rgb(39, 39, 42);
  --bs-alert-bg: rgb(39, 39, 42);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-800:active {
  --bs-border-color: rgb(39, 39, 42);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-800:disabled {
  color: rgb(39, 39, 42);
}

.disabled\:bg-zinc-800:disabled {
  --bs-btn-active-bg: rgb(39, 39, 42);
  --bs-alert-bg: rgb(39, 39, 42);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-800:disabled {
  --bs-border-color: rgb(39, 39, 42);
  border-color: var(--bs-border-color);
}

.text-zinc-900 {
  --bs-alert-color: rgb(24, 24, 27);
  --bs-btn-color: rgb(24, 24, 27);
  color: var(--bs-btn-color);
}

.fill-zinc-900 {
  color: rgb(24, 24, 27);
}

.stroke-zinc-900 {
  color: rgb(24, 24, 27);
}

.accent-zinc-900 {
  accent-color: rgb(24, 24, 27);
}

.bg-zinc-900 {
  --bs-btn-active-bg: rgb(24, 24, 27);
  --bs-alert-bg: rgb(24, 24, 27);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-900 {
  --bs-border-color: rgb(24, 24, 27);
  --bs-alert-border: rgb(24, 24, 27);
  border-color: var(--bs-border-color);
}

.decoration-zinc-900 {
  text-decoration-color: rgb(24, 24, 27);
}

.hover\:text-zinc-900:hover {
  color: rgb(24, 24, 27);
}

.hover\:bg-zinc-900:hover {
  --bs-btn-active-bg: rgb(24, 24, 27);
  --bs-alert-bg: rgb(24, 24, 27);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-900:hover {
  --bs-border-color: rgb(24, 24, 27);
  --bs-alert-border-color: rgb(24, 24, 27);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-900 {
  text-decoration-color: rgb(24, 24, 27);
}

.focus\:text-zinc-900:focus {
  color: rgb(24, 24, 27);
}

.focus\:bg-zinc-900:focus {
  --bs-btn-active-bg: rgb(24, 24, 27);
  --bs-alert-bg: rgb(24, 24, 27);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-900:focus {
  --bs-border-color: rgb(24, 24, 27);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-900 {
  text-decoration-color: rgb(24, 24, 27);
}

.active\:text-zinc-900:active {
  color: rgb(24, 24, 27);
}

.active\:bg-zinc-900:active {
  --bs-btn-active-bg: rgb(24, 24, 27);
  --bs-alert-bg: rgb(24, 24, 27);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-900:active {
  --bs-border-color: rgb(24, 24, 27);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-900:disabled {
  color: rgb(24, 24, 27);
}

.disabled\:bg-zinc-900:disabled {
  --bs-btn-active-bg: rgb(24, 24, 27);
  --bs-alert-bg: rgb(24, 24, 27);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-900:disabled {
  --bs-border-color: rgb(24, 24, 27);
  border-color: var(--bs-border-color);
}

.text-zinc-950 {
  --bs-alert-color: rgb(9, 9, 11);
  --bs-btn-color: rgb(9, 9, 11);
  color: var(--bs-btn-color);
}

.fill-zinc-950 {
  color: rgb(9, 9, 11);
}

.stroke-zinc-950 {
  color: rgb(9, 9, 11);
}

.accent-zinc-950 {
  accent-color: rgb(9, 9, 11);
}

.bg-zinc-950 {
  --bs-btn-active-bg: rgb(9, 9, 11);
  --bs-alert-bg: rgb(9, 9, 11);
  background-color: var(--bs-btn-active-bg);
}

.border-zinc-950 {
  --bs-border-color: rgb(9, 9, 11);
  --bs-alert-border: rgb(9, 9, 11);
  border-color: var(--bs-border-color);
}

.decoration-zinc-950 {
  text-decoration-color: rgb(9, 9, 11);
}

.hover\:text-zinc-950:hover {
  color: rgb(9, 9, 11);
}

.hover\:bg-zinc-950:hover {
  --bs-btn-active-bg: rgb(9, 9, 11);
  --bs-alert-bg: rgb(9, 9, 11);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-zinc-950:hover {
  --bs-border-color: rgb(9, 9, 11);
  --bs-alert-border-color: rgb(9, 9, 11);
  border-color: var(--bs-border-color);
}

.hover\:decoration-zinc-950 {
  text-decoration-color: rgb(9, 9, 11);
}

.focus\:text-zinc-950:focus {
  color: rgb(9, 9, 11);
}

.focus\:bg-zinc-950:focus {
  --bs-btn-active-bg: rgb(9, 9, 11);
  --bs-alert-bg: rgb(9, 9, 11);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-zinc-950:focus {
  --bs-border-color: rgb(9, 9, 11);
  border-color: var(--bs-border-color);
}

.focus\:decoration-zinc-950 {
  text-decoration-color: rgb(9, 9, 11);
}

.active\:text-zinc-950:active {
  color: rgb(9, 9, 11);
}

.active\:bg-zinc-950:active {
  --bs-btn-active-bg: rgb(9, 9, 11);
  --bs-alert-bg: rgb(9, 9, 11);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-zinc-950:active {
  --bs-border-color: rgb(9, 9, 11);
  border-color: var(--bs-border-color);
}

.disabled\:text-zinc-950:disabled {
  color: rgb(9, 9, 11);
}

.disabled\:bg-zinc-950:disabled {
  --bs-btn-active-bg: rgb(9, 9, 11);
  --bs-alert-bg: rgb(9, 9, 11);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-zinc-950:disabled {
  --bs-border-color: rgb(9, 9, 11);
  border-color: var(--bs-border-color);
}

.text-neutral-50 {
  --bs-alert-color: rgb(250, 250, 250);
  --bs-btn-color: rgb(250, 250, 250);
  color: var(--bs-btn-color);
}

.fill-neutral-50 {
  color: rgb(250, 250, 250);
}

.stroke-neutral-50 {
  color: rgb(250, 250, 250);
}

.accent-neutral-50 {
  accent-color: rgb(250, 250, 250);
}

.bg-neutral-50 {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-50 {
  --bs-border-color: rgb(250, 250, 250);
  --bs-alert-border: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.decoration-neutral-50 {
  text-decoration-color: rgb(250, 250, 250);
}

.hover\:text-neutral-50:hover {
  color: rgb(250, 250, 250);
}

.hover\:bg-neutral-50:hover {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-50:hover {
  --bs-border-color: rgb(250, 250, 250);
  --bs-alert-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-50 {
  text-decoration-color: rgb(250, 250, 250);
}

.focus\:text-neutral-50:focus {
  color: rgb(250, 250, 250);
}

.focus\:bg-neutral-50:focus {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-50:focus {
  --bs-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-50 {
  text-decoration-color: rgb(250, 250, 250);
}

.active\:text-neutral-50:active {
  color: rgb(250, 250, 250);
}

.active\:bg-neutral-50:active {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-50:active {
  --bs-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-50:disabled {
  color: rgb(250, 250, 250);
}

.disabled\:bg-neutral-50:disabled {
  --bs-btn-active-bg: rgb(250, 250, 250);
  --bs-alert-bg: rgb(250, 250, 250);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-50:disabled {
  --bs-border-color: rgb(250, 250, 250);
  border-color: var(--bs-border-color);
}

.text-neutral-100 {
  --bs-alert-color: rgb(245, 245, 245);
  --bs-btn-color: rgb(245, 245, 245);
  color: var(--bs-btn-color);
}

.fill-neutral-100 {
  color: rgb(245, 245, 245);
}

.stroke-neutral-100 {
  color: rgb(245, 245, 245);
}

.accent-neutral-100 {
  accent-color: rgb(245, 245, 245);
}

.bg-neutral-100 {
  --bs-btn-active-bg: rgb(245, 245, 245);
  --bs-alert-bg: rgb(245, 245, 245);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-100 {
  --bs-border-color: rgb(245, 245, 245);
  --bs-alert-border: rgb(245, 245, 245);
  border-color: var(--bs-border-color);
}

.decoration-neutral-100 {
  text-decoration-color: rgb(245, 245, 245);
}

.hover\:text-neutral-100:hover {
  color: rgb(245, 245, 245);
}

.hover\:bg-neutral-100:hover {
  --bs-btn-active-bg: rgb(245, 245, 245);
  --bs-alert-bg: rgb(245, 245, 245);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-100:hover {
  --bs-border-color: rgb(245, 245, 245);
  --bs-alert-border-color: rgb(245, 245, 245);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-100 {
  text-decoration-color: rgb(245, 245, 245);
}

.focus\:text-neutral-100:focus {
  color: rgb(245, 245, 245);
}

.focus\:bg-neutral-100:focus {
  --bs-btn-active-bg: rgb(245, 245, 245);
  --bs-alert-bg: rgb(245, 245, 245);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-100:focus {
  --bs-border-color: rgb(245, 245, 245);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-100 {
  text-decoration-color: rgb(245, 245, 245);
}

.active\:text-neutral-100:active {
  color: rgb(245, 245, 245);
}

.active\:bg-neutral-100:active {
  --bs-btn-active-bg: rgb(245, 245, 245);
  --bs-alert-bg: rgb(245, 245, 245);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-100:active {
  --bs-border-color: rgb(245, 245, 245);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-100:disabled {
  color: rgb(245, 245, 245);
}

.disabled\:bg-neutral-100:disabled {
  --bs-btn-active-bg: rgb(245, 245, 245);
  --bs-alert-bg: rgb(245, 245, 245);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-100:disabled {
  --bs-border-color: rgb(245, 245, 245);
  border-color: var(--bs-border-color);
}

.text-neutral-200 {
  --bs-alert-color: rgb(229, 229, 229);
  --bs-btn-color: rgb(229, 229, 229);
  color: var(--bs-btn-color);
}

.fill-neutral-200 {
  color: rgb(229, 229, 229);
}

.stroke-neutral-200 {
  color: rgb(229, 229, 229);
}

.accent-neutral-200 {
  accent-color: rgb(229, 229, 229);
}

.bg-neutral-200 {
  --bs-btn-active-bg: rgb(229, 229, 229);
  --bs-alert-bg: rgb(229, 229, 229);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-200 {
  --bs-border-color: rgb(229, 229, 229);
  --bs-alert-border: rgb(229, 229, 229);
  border-color: var(--bs-border-color);
}

.decoration-neutral-200 {
  text-decoration-color: rgb(229, 229, 229);
}

.hover\:text-neutral-200:hover {
  color: rgb(229, 229, 229);
}

.hover\:bg-neutral-200:hover {
  --bs-btn-active-bg: rgb(229, 229, 229);
  --bs-alert-bg: rgb(229, 229, 229);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-200:hover {
  --bs-border-color: rgb(229, 229, 229);
  --bs-alert-border-color: rgb(229, 229, 229);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-200 {
  text-decoration-color: rgb(229, 229, 229);
}

.focus\:text-neutral-200:focus {
  color: rgb(229, 229, 229);
}

.focus\:bg-neutral-200:focus {
  --bs-btn-active-bg: rgb(229, 229, 229);
  --bs-alert-bg: rgb(229, 229, 229);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-200:focus {
  --bs-border-color: rgb(229, 229, 229);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-200 {
  text-decoration-color: rgb(229, 229, 229);
}

.active\:text-neutral-200:active {
  color: rgb(229, 229, 229);
}

.active\:bg-neutral-200:active {
  --bs-btn-active-bg: rgb(229, 229, 229);
  --bs-alert-bg: rgb(229, 229, 229);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-200:active {
  --bs-border-color: rgb(229, 229, 229);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-200:disabled {
  color: rgb(229, 229, 229);
}

.disabled\:bg-neutral-200:disabled {
  --bs-btn-active-bg: rgb(229, 229, 229);
  --bs-alert-bg: rgb(229, 229, 229);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-200:disabled {
  --bs-border-color: rgb(229, 229, 229);
  border-color: var(--bs-border-color);
}

.text-neutral-300 {
  --bs-alert-color: rgb(212, 212, 212);
  --bs-btn-color: rgb(212, 212, 212);
  color: var(--bs-btn-color);
}

.fill-neutral-300 {
  color: rgb(212, 212, 212);
}

.stroke-neutral-300 {
  color: rgb(212, 212, 212);
}

.accent-neutral-300 {
  accent-color: rgb(212, 212, 212);
}

.bg-neutral-300 {
  --bs-btn-active-bg: rgb(212, 212, 212);
  --bs-alert-bg: rgb(212, 212, 212);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-300 {
  --bs-border-color: rgb(212, 212, 212);
  --bs-alert-border: rgb(212, 212, 212);
  border-color: var(--bs-border-color);
}

.decoration-neutral-300 {
  text-decoration-color: rgb(212, 212, 212);
}

.hover\:text-neutral-300:hover {
  color: rgb(212, 212, 212);
}

.hover\:bg-neutral-300:hover {
  --bs-btn-active-bg: rgb(212, 212, 212);
  --bs-alert-bg: rgb(212, 212, 212);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-300:hover {
  --bs-border-color: rgb(212, 212, 212);
  --bs-alert-border-color: rgb(212, 212, 212);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-300 {
  text-decoration-color: rgb(212, 212, 212);
}

.focus\:text-neutral-300:focus {
  color: rgb(212, 212, 212);
}

.focus\:bg-neutral-300:focus {
  --bs-btn-active-bg: rgb(212, 212, 212);
  --bs-alert-bg: rgb(212, 212, 212);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-300:focus {
  --bs-border-color: rgb(212, 212, 212);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-300 {
  text-decoration-color: rgb(212, 212, 212);
}

.active\:text-neutral-300:active {
  color: rgb(212, 212, 212);
}

.active\:bg-neutral-300:active {
  --bs-btn-active-bg: rgb(212, 212, 212);
  --bs-alert-bg: rgb(212, 212, 212);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-300:active {
  --bs-border-color: rgb(212, 212, 212);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-300:disabled {
  color: rgb(212, 212, 212);
}

.disabled\:bg-neutral-300:disabled {
  --bs-btn-active-bg: rgb(212, 212, 212);
  --bs-alert-bg: rgb(212, 212, 212);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-300:disabled {
  --bs-border-color: rgb(212, 212, 212);
  border-color: var(--bs-border-color);
}

.text-neutral-400 {
  --bs-alert-color: rgb(163, 163, 163);
  --bs-btn-color: rgb(163, 163, 163);
  color: var(--bs-btn-color);
}

.fill-neutral-400 {
  color: rgb(163, 163, 163);
}

.stroke-neutral-400 {
  color: rgb(163, 163, 163);
}

.accent-neutral-400 {
  accent-color: rgb(163, 163, 163);
}

.bg-neutral-400 {
  --bs-btn-active-bg: rgb(163, 163, 163);
  --bs-alert-bg: rgb(163, 163, 163);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-400 {
  --bs-border-color: rgb(163, 163, 163);
  --bs-alert-border: rgb(163, 163, 163);
  border-color: var(--bs-border-color);
}

.decoration-neutral-400 {
  text-decoration-color: rgb(163, 163, 163);
}

.hover\:text-neutral-400:hover {
  color: rgb(163, 163, 163);
}

.hover\:bg-neutral-400:hover {
  --bs-btn-active-bg: rgb(163, 163, 163);
  --bs-alert-bg: rgb(163, 163, 163);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-400:hover {
  --bs-border-color: rgb(163, 163, 163);
  --bs-alert-border-color: rgb(163, 163, 163);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-400 {
  text-decoration-color: rgb(163, 163, 163);
}

.focus\:text-neutral-400:focus {
  color: rgb(163, 163, 163);
}

.focus\:bg-neutral-400:focus {
  --bs-btn-active-bg: rgb(163, 163, 163);
  --bs-alert-bg: rgb(163, 163, 163);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-400:focus {
  --bs-border-color: rgb(163, 163, 163);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-400 {
  text-decoration-color: rgb(163, 163, 163);
}

.active\:text-neutral-400:active {
  color: rgb(163, 163, 163);
}

.active\:bg-neutral-400:active {
  --bs-btn-active-bg: rgb(163, 163, 163);
  --bs-alert-bg: rgb(163, 163, 163);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-400:active {
  --bs-border-color: rgb(163, 163, 163);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-400:disabled {
  color: rgb(163, 163, 163);
}

.disabled\:bg-neutral-400:disabled {
  --bs-btn-active-bg: rgb(163, 163, 163);
  --bs-alert-bg: rgb(163, 163, 163);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-400:disabled {
  --bs-border-color: rgb(163, 163, 163);
  border-color: var(--bs-border-color);
}

.text-neutral-500 {
  --bs-alert-color: rgb(115, 115, 115);
  --bs-btn-color: rgb(115, 115, 115);
  color: var(--bs-btn-color);
}

.fill-neutral-500 {
  color: rgb(115, 115, 115);
}

.stroke-neutral-500 {
  color: rgb(115, 115, 115);
}

.accent-neutral-500 {
  accent-color: rgb(115, 115, 115);
}

.bg-neutral-500 {
  --bs-btn-active-bg: rgb(115, 115, 115);
  --bs-alert-bg: rgb(115, 115, 115);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-500 {
  --bs-border-color: rgb(115, 115, 115);
  --bs-alert-border: rgb(115, 115, 115);
  border-color: var(--bs-border-color);
}

.decoration-neutral-500 {
  text-decoration-color: rgb(115, 115, 115);
}

.hover\:text-neutral-500:hover {
  color: rgb(115, 115, 115);
}

.hover\:bg-neutral-500:hover {
  --bs-btn-active-bg: rgb(115, 115, 115);
  --bs-alert-bg: rgb(115, 115, 115);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-500:hover {
  --bs-border-color: rgb(115, 115, 115);
  --bs-alert-border-color: rgb(115, 115, 115);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-500 {
  text-decoration-color: rgb(115, 115, 115);
}

.focus\:text-neutral-500:focus {
  color: rgb(115, 115, 115);
}

.focus\:bg-neutral-500:focus {
  --bs-btn-active-bg: rgb(115, 115, 115);
  --bs-alert-bg: rgb(115, 115, 115);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-500:focus {
  --bs-border-color: rgb(115, 115, 115);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-500 {
  text-decoration-color: rgb(115, 115, 115);
}

.active\:text-neutral-500:active {
  color: rgb(115, 115, 115);
}

.active\:bg-neutral-500:active {
  --bs-btn-active-bg: rgb(115, 115, 115);
  --bs-alert-bg: rgb(115, 115, 115);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-500:active {
  --bs-border-color: rgb(115, 115, 115);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-500:disabled {
  color: rgb(115, 115, 115);
}

.disabled\:bg-neutral-500:disabled {
  --bs-btn-active-bg: rgb(115, 115, 115);
  --bs-alert-bg: rgb(115, 115, 115);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-500:disabled {
  --bs-border-color: rgb(115, 115, 115);
  border-color: var(--bs-border-color);
}

.text-neutral-600 {
  --bs-alert-color: rgb(82, 82, 82);
  --bs-btn-color: rgb(82, 82, 82);
  color: var(--bs-btn-color);
}

.fill-neutral-600 {
  color: rgb(82, 82, 82);
}

.stroke-neutral-600 {
  color: rgb(82, 82, 82);
}

.accent-neutral-600 {
  accent-color: rgb(82, 82, 82);
}

.bg-neutral-600 {
  --bs-btn-active-bg: rgb(82, 82, 82);
  --bs-alert-bg: rgb(82, 82, 82);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-600 {
  --bs-border-color: rgb(82, 82, 82);
  --bs-alert-border: rgb(82, 82, 82);
  border-color: var(--bs-border-color);
}

.decoration-neutral-600 {
  text-decoration-color: rgb(82, 82, 82);
}

.hover\:text-neutral-600:hover {
  color: rgb(82, 82, 82);
}

.hover\:bg-neutral-600:hover {
  --bs-btn-active-bg: rgb(82, 82, 82);
  --bs-alert-bg: rgb(82, 82, 82);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-600:hover {
  --bs-border-color: rgb(82, 82, 82);
  --bs-alert-border-color: rgb(82, 82, 82);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-600 {
  text-decoration-color: rgb(82, 82, 82);
}

.focus\:text-neutral-600:focus {
  color: rgb(82, 82, 82);
}

.focus\:bg-neutral-600:focus {
  --bs-btn-active-bg: rgb(82, 82, 82);
  --bs-alert-bg: rgb(82, 82, 82);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-600:focus {
  --bs-border-color: rgb(82, 82, 82);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-600 {
  text-decoration-color: rgb(82, 82, 82);
}

.active\:text-neutral-600:active {
  color: rgb(82, 82, 82);
}

.active\:bg-neutral-600:active {
  --bs-btn-active-bg: rgb(82, 82, 82);
  --bs-alert-bg: rgb(82, 82, 82);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-600:active {
  --bs-border-color: rgb(82, 82, 82);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-600:disabled {
  color: rgb(82, 82, 82);
}

.disabled\:bg-neutral-600:disabled {
  --bs-btn-active-bg: rgb(82, 82, 82);
  --bs-alert-bg: rgb(82, 82, 82);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-600:disabled {
  --bs-border-color: rgb(82, 82, 82);
  border-color: var(--bs-border-color);
}

.text-neutral-700 {
  --bs-alert-color: rgb(64, 64, 64);
  --bs-btn-color: rgb(64, 64, 64);
  color: var(--bs-btn-color);
}

.fill-neutral-700 {
  color: rgb(64, 64, 64);
}

.stroke-neutral-700 {
  color: rgb(64, 64, 64);
}

.accent-neutral-700 {
  accent-color: rgb(64, 64, 64);
}

.bg-neutral-700 {
  --bs-btn-active-bg: rgb(64, 64, 64);
  --bs-alert-bg: rgb(64, 64, 64);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-700 {
  --bs-border-color: rgb(64, 64, 64);
  --bs-alert-border: rgb(64, 64, 64);
  border-color: var(--bs-border-color);
}

.decoration-neutral-700 {
  text-decoration-color: rgb(64, 64, 64);
}

.hover\:text-neutral-700:hover {
  color: rgb(64, 64, 64);
}

.hover\:bg-neutral-700:hover {
  --bs-btn-active-bg: rgb(64, 64, 64);
  --bs-alert-bg: rgb(64, 64, 64);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-700:hover {
  --bs-border-color: rgb(64, 64, 64);
  --bs-alert-border-color: rgb(64, 64, 64);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-700 {
  text-decoration-color: rgb(64, 64, 64);
}

.focus\:text-neutral-700:focus {
  color: rgb(64, 64, 64);
}

.focus\:bg-neutral-700:focus {
  --bs-btn-active-bg: rgb(64, 64, 64);
  --bs-alert-bg: rgb(64, 64, 64);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-700:focus {
  --bs-border-color: rgb(64, 64, 64);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-700 {
  text-decoration-color: rgb(64, 64, 64);
}

.active\:text-neutral-700:active {
  color: rgb(64, 64, 64);
}

.active\:bg-neutral-700:active {
  --bs-btn-active-bg: rgb(64, 64, 64);
  --bs-alert-bg: rgb(64, 64, 64);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-700:active {
  --bs-border-color: rgb(64, 64, 64);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-700:disabled {
  color: rgb(64, 64, 64);
}

.disabled\:bg-neutral-700:disabled {
  --bs-btn-active-bg: rgb(64, 64, 64);
  --bs-alert-bg: rgb(64, 64, 64);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-700:disabled {
  --bs-border-color: rgb(64, 64, 64);
  border-color: var(--bs-border-color);
}

.text-neutral-800 {
  --bs-alert-color: rgb(38, 38, 38);
  --bs-btn-color: rgb(38, 38, 38);
  color: var(--bs-btn-color);
}

.fill-neutral-800 {
  color: rgb(38, 38, 38);
}

.stroke-neutral-800 {
  color: rgb(38, 38, 38);
}

.accent-neutral-800 {
  accent-color: rgb(38, 38, 38);
}

.bg-neutral-800 {
  --bs-btn-active-bg: rgb(38, 38, 38);
  --bs-alert-bg: rgb(38, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-800 {
  --bs-border-color: rgb(38, 38, 38);
  --bs-alert-border: rgb(38, 38, 38);
  border-color: var(--bs-border-color);
}

.decoration-neutral-800 {
  text-decoration-color: rgb(38, 38, 38);
}

.hover\:text-neutral-800:hover {
  color: rgb(38, 38, 38);
}

.hover\:bg-neutral-800:hover {
  --bs-btn-active-bg: rgb(38, 38, 38);
  --bs-alert-bg: rgb(38, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-800:hover {
  --bs-border-color: rgb(38, 38, 38);
  --bs-alert-border-color: rgb(38, 38, 38);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-800 {
  text-decoration-color: rgb(38, 38, 38);
}

.focus\:text-neutral-800:focus {
  color: rgb(38, 38, 38);
}

.focus\:bg-neutral-800:focus {
  --bs-btn-active-bg: rgb(38, 38, 38);
  --bs-alert-bg: rgb(38, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-800:focus {
  --bs-border-color: rgb(38, 38, 38);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-800 {
  text-decoration-color: rgb(38, 38, 38);
}

.active\:text-neutral-800:active {
  color: rgb(38, 38, 38);
}

.active\:bg-neutral-800:active {
  --bs-btn-active-bg: rgb(38, 38, 38);
  --bs-alert-bg: rgb(38, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-800:active {
  --bs-border-color: rgb(38, 38, 38);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-800:disabled {
  color: rgb(38, 38, 38);
}

.disabled\:bg-neutral-800:disabled {
  --bs-btn-active-bg: rgb(38, 38, 38);
  --bs-alert-bg: rgb(38, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-800:disabled {
  --bs-border-color: rgb(38, 38, 38);
  border-color: var(--bs-border-color);
}

.text-neutral-900 {
  --bs-alert-color: rgb(23, 23, 23);
  --bs-btn-color: rgb(23, 23, 23);
  color: var(--bs-btn-color);
}

.fill-neutral-900 {
  color: rgb(23, 23, 23);
}

.stroke-neutral-900 {
  color: rgb(23, 23, 23);
}

.accent-neutral-900 {
  accent-color: rgb(23, 23, 23);
}

.bg-neutral-900 {
  --bs-btn-active-bg: rgb(23, 23, 23);
  --bs-alert-bg: rgb(23, 23, 23);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-900 {
  --bs-border-color: rgb(23, 23, 23);
  --bs-alert-border: rgb(23, 23, 23);
  border-color: var(--bs-border-color);
}

.decoration-neutral-900 {
  text-decoration-color: rgb(23, 23, 23);
}

.hover\:text-neutral-900:hover {
  color: rgb(23, 23, 23);
}

.hover\:bg-neutral-900:hover {
  --bs-btn-active-bg: rgb(23, 23, 23);
  --bs-alert-bg: rgb(23, 23, 23);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-900:hover {
  --bs-border-color: rgb(23, 23, 23);
  --bs-alert-border-color: rgb(23, 23, 23);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-900 {
  text-decoration-color: rgb(23, 23, 23);
}

.focus\:text-neutral-900:focus {
  color: rgb(23, 23, 23);
}

.focus\:bg-neutral-900:focus {
  --bs-btn-active-bg: rgb(23, 23, 23);
  --bs-alert-bg: rgb(23, 23, 23);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-900:focus {
  --bs-border-color: rgb(23, 23, 23);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-900 {
  text-decoration-color: rgb(23, 23, 23);
}

.active\:text-neutral-900:active {
  color: rgb(23, 23, 23);
}

.active\:bg-neutral-900:active {
  --bs-btn-active-bg: rgb(23, 23, 23);
  --bs-alert-bg: rgb(23, 23, 23);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-900:active {
  --bs-border-color: rgb(23, 23, 23);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-900:disabled {
  color: rgb(23, 23, 23);
}

.disabled\:bg-neutral-900:disabled {
  --bs-btn-active-bg: rgb(23, 23, 23);
  --bs-alert-bg: rgb(23, 23, 23);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-900:disabled {
  --bs-border-color: rgb(23, 23, 23);
  border-color: var(--bs-border-color);
}

.text-neutral-950 {
  --bs-alert-color: rgb(10, 10, 10);
  --bs-btn-color: rgb(10, 10, 10);
  color: var(--bs-btn-color);
}

.fill-neutral-950 {
  color: rgb(10, 10, 10);
}

.stroke-neutral-950 {
  color: rgb(10, 10, 10);
}

.accent-neutral-950 {
  accent-color: rgb(10, 10, 10);
}

.bg-neutral-950 {
  --bs-btn-active-bg: rgb(10, 10, 10);
  --bs-alert-bg: rgb(10, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.border-neutral-950 {
  --bs-border-color: rgb(10, 10, 10);
  --bs-alert-border: rgb(10, 10, 10);
  border-color: var(--bs-border-color);
}

.decoration-neutral-950 {
  text-decoration-color: rgb(10, 10, 10);
}

.hover\:text-neutral-950:hover {
  color: rgb(10, 10, 10);
}

.hover\:bg-neutral-950:hover {
  --bs-btn-active-bg: rgb(10, 10, 10);
  --bs-alert-bg: rgb(10, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-neutral-950:hover {
  --bs-border-color: rgb(10, 10, 10);
  --bs-alert-border-color: rgb(10, 10, 10);
  border-color: var(--bs-border-color);
}

.hover\:decoration-neutral-950 {
  text-decoration-color: rgb(10, 10, 10);
}

.focus\:text-neutral-950:focus {
  color: rgb(10, 10, 10);
}

.focus\:bg-neutral-950:focus {
  --bs-btn-active-bg: rgb(10, 10, 10);
  --bs-alert-bg: rgb(10, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-neutral-950:focus {
  --bs-border-color: rgb(10, 10, 10);
  border-color: var(--bs-border-color);
}

.focus\:decoration-neutral-950 {
  text-decoration-color: rgb(10, 10, 10);
}

.active\:text-neutral-950:active {
  color: rgb(10, 10, 10);
}

.active\:bg-neutral-950:active {
  --bs-btn-active-bg: rgb(10, 10, 10);
  --bs-alert-bg: rgb(10, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-neutral-950:active {
  --bs-border-color: rgb(10, 10, 10);
  border-color: var(--bs-border-color);
}

.disabled\:text-neutral-950:disabled {
  color: rgb(10, 10, 10);
}

.disabled\:bg-neutral-950:disabled {
  --bs-btn-active-bg: rgb(10, 10, 10);
  --bs-alert-bg: rgb(10, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-neutral-950:disabled {
  --bs-border-color: rgb(10, 10, 10);
  border-color: var(--bs-border-color);
}

.text-stone-50 {
  --bs-alert-color: rgb(250, 250, 249);
  --bs-btn-color: rgb(250, 250, 249);
  color: var(--bs-btn-color);
}

.fill-stone-50 {
  color: rgb(250, 250, 249);
}

.stroke-stone-50 {
  color: rgb(250, 250, 249);
}

.accent-stone-50 {
  accent-color: rgb(250, 250, 249);
}

.bg-stone-50 {
  --bs-btn-active-bg: rgb(250, 250, 249);
  --bs-alert-bg: rgb(250, 250, 249);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-50 {
  --bs-border-color: rgb(250, 250, 249);
  --bs-alert-border: rgb(250, 250, 249);
  border-color: var(--bs-border-color);
}

.decoration-stone-50 {
  text-decoration-color: rgb(250, 250, 249);
}

.hover\:text-stone-50:hover {
  color: rgb(250, 250, 249);
}

.hover\:bg-stone-50:hover {
  --bs-btn-active-bg: rgb(250, 250, 249);
  --bs-alert-bg: rgb(250, 250, 249);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-50:hover {
  --bs-border-color: rgb(250, 250, 249);
  --bs-alert-border-color: rgb(250, 250, 249);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-50 {
  text-decoration-color: rgb(250, 250, 249);
}

.focus\:text-stone-50:focus {
  color: rgb(250, 250, 249);
}

.focus\:bg-stone-50:focus {
  --bs-btn-active-bg: rgb(250, 250, 249);
  --bs-alert-bg: rgb(250, 250, 249);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-50:focus {
  --bs-border-color: rgb(250, 250, 249);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-50 {
  text-decoration-color: rgb(250, 250, 249);
}

.active\:text-stone-50:active {
  color: rgb(250, 250, 249);
}

.active\:bg-stone-50:active {
  --bs-btn-active-bg: rgb(250, 250, 249);
  --bs-alert-bg: rgb(250, 250, 249);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-50:active {
  --bs-border-color: rgb(250, 250, 249);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-50:disabled {
  color: rgb(250, 250, 249);
}

.disabled\:bg-stone-50:disabled {
  --bs-btn-active-bg: rgb(250, 250, 249);
  --bs-alert-bg: rgb(250, 250, 249);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-50:disabled {
  --bs-border-color: rgb(250, 250, 249);
  border-color: var(--bs-border-color);
}

.text-stone-100 {
  --bs-alert-color: rgb(245, 245, 244);
  --bs-btn-color: rgb(245, 245, 244);
  color: var(--bs-btn-color);
}

.fill-stone-100 {
  color: rgb(245, 245, 244);
}

.stroke-stone-100 {
  color: rgb(245, 245, 244);
}

.accent-stone-100 {
  accent-color: rgb(245, 245, 244);
}

.bg-stone-100 {
  --bs-btn-active-bg: rgb(245, 245, 244);
  --bs-alert-bg: rgb(245, 245, 244);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-100 {
  --bs-border-color: rgb(245, 245, 244);
  --bs-alert-border: rgb(245, 245, 244);
  border-color: var(--bs-border-color);
}

.decoration-stone-100 {
  text-decoration-color: rgb(245, 245, 244);
}

.hover\:text-stone-100:hover {
  color: rgb(245, 245, 244);
}

.hover\:bg-stone-100:hover {
  --bs-btn-active-bg: rgb(245, 245, 244);
  --bs-alert-bg: rgb(245, 245, 244);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-100:hover {
  --bs-border-color: rgb(245, 245, 244);
  --bs-alert-border-color: rgb(245, 245, 244);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-100 {
  text-decoration-color: rgb(245, 245, 244);
}

.focus\:text-stone-100:focus {
  color: rgb(245, 245, 244);
}

.focus\:bg-stone-100:focus {
  --bs-btn-active-bg: rgb(245, 245, 244);
  --bs-alert-bg: rgb(245, 245, 244);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-100:focus {
  --bs-border-color: rgb(245, 245, 244);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-100 {
  text-decoration-color: rgb(245, 245, 244);
}

.active\:text-stone-100:active {
  color: rgb(245, 245, 244);
}

.active\:bg-stone-100:active {
  --bs-btn-active-bg: rgb(245, 245, 244);
  --bs-alert-bg: rgb(245, 245, 244);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-100:active {
  --bs-border-color: rgb(245, 245, 244);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-100:disabled {
  color: rgb(245, 245, 244);
}

.disabled\:bg-stone-100:disabled {
  --bs-btn-active-bg: rgb(245, 245, 244);
  --bs-alert-bg: rgb(245, 245, 244);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-100:disabled {
  --bs-border-color: rgb(245, 245, 244);
  border-color: var(--bs-border-color);
}

.text-stone-200 {
  --bs-alert-color: rgb(231, 229, 228);
  --bs-btn-color: rgb(231, 229, 228);
  color: var(--bs-btn-color);
}

.fill-stone-200 {
  color: rgb(231, 229, 228);
}

.stroke-stone-200 {
  color: rgb(231, 229, 228);
}

.accent-stone-200 {
  accent-color: rgb(231, 229, 228);
}

.bg-stone-200 {
  --bs-btn-active-bg: rgb(231, 229, 228);
  --bs-alert-bg: rgb(231, 229, 228);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-200 {
  --bs-border-color: rgb(231, 229, 228);
  --bs-alert-border: rgb(231, 229, 228);
  border-color: var(--bs-border-color);
}

.decoration-stone-200 {
  text-decoration-color: rgb(231, 229, 228);
}

.hover\:text-stone-200:hover {
  color: rgb(231, 229, 228);
}

.hover\:bg-stone-200:hover {
  --bs-btn-active-bg: rgb(231, 229, 228);
  --bs-alert-bg: rgb(231, 229, 228);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-200:hover {
  --bs-border-color: rgb(231, 229, 228);
  --bs-alert-border-color: rgb(231, 229, 228);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-200 {
  text-decoration-color: rgb(231, 229, 228);
}

.focus\:text-stone-200:focus {
  color: rgb(231, 229, 228);
}

.focus\:bg-stone-200:focus {
  --bs-btn-active-bg: rgb(231, 229, 228);
  --bs-alert-bg: rgb(231, 229, 228);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-200:focus {
  --bs-border-color: rgb(231, 229, 228);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-200 {
  text-decoration-color: rgb(231, 229, 228);
}

.active\:text-stone-200:active {
  color: rgb(231, 229, 228);
}

.active\:bg-stone-200:active {
  --bs-btn-active-bg: rgb(231, 229, 228);
  --bs-alert-bg: rgb(231, 229, 228);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-200:active {
  --bs-border-color: rgb(231, 229, 228);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-200:disabled {
  color: rgb(231, 229, 228);
}

.disabled\:bg-stone-200:disabled {
  --bs-btn-active-bg: rgb(231, 229, 228);
  --bs-alert-bg: rgb(231, 229, 228);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-200:disabled {
  --bs-border-color: rgb(231, 229, 228);
  border-color: var(--bs-border-color);
}

.text-stone-300 {
  --bs-alert-color: rgb(214, 211, 209);
  --bs-btn-color: rgb(214, 211, 209);
  color: var(--bs-btn-color);
}

.fill-stone-300 {
  color: rgb(214, 211, 209);
}

.stroke-stone-300 {
  color: rgb(214, 211, 209);
}

.accent-stone-300 {
  accent-color: rgb(214, 211, 209);
}

.bg-stone-300 {
  --bs-btn-active-bg: rgb(214, 211, 209);
  --bs-alert-bg: rgb(214, 211, 209);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-300 {
  --bs-border-color: rgb(214, 211, 209);
  --bs-alert-border: rgb(214, 211, 209);
  border-color: var(--bs-border-color);
}

.decoration-stone-300 {
  text-decoration-color: rgb(214, 211, 209);
}

.hover\:text-stone-300:hover {
  color: rgb(214, 211, 209);
}

.hover\:bg-stone-300:hover {
  --bs-btn-active-bg: rgb(214, 211, 209);
  --bs-alert-bg: rgb(214, 211, 209);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-300:hover {
  --bs-border-color: rgb(214, 211, 209);
  --bs-alert-border-color: rgb(214, 211, 209);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-300 {
  text-decoration-color: rgb(214, 211, 209);
}

.focus\:text-stone-300:focus {
  color: rgb(214, 211, 209);
}

.focus\:bg-stone-300:focus {
  --bs-btn-active-bg: rgb(214, 211, 209);
  --bs-alert-bg: rgb(214, 211, 209);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-300:focus {
  --bs-border-color: rgb(214, 211, 209);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-300 {
  text-decoration-color: rgb(214, 211, 209);
}

.active\:text-stone-300:active {
  color: rgb(214, 211, 209);
}

.active\:bg-stone-300:active {
  --bs-btn-active-bg: rgb(214, 211, 209);
  --bs-alert-bg: rgb(214, 211, 209);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-300:active {
  --bs-border-color: rgb(214, 211, 209);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-300:disabled {
  color: rgb(214, 211, 209);
}

.disabled\:bg-stone-300:disabled {
  --bs-btn-active-bg: rgb(214, 211, 209);
  --bs-alert-bg: rgb(214, 211, 209);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-300:disabled {
  --bs-border-color: rgb(214, 211, 209);
  border-color: var(--bs-border-color);
}

.text-stone-400 {
  --bs-alert-color: rgb(168, 162, 158);
  --bs-btn-color: rgb(168, 162, 158);
  color: var(--bs-btn-color);
}

.fill-stone-400 {
  color: rgb(168, 162, 158);
}

.stroke-stone-400 {
  color: rgb(168, 162, 158);
}

.accent-stone-400 {
  accent-color: rgb(168, 162, 158);
}

.bg-stone-400 {
  --bs-btn-active-bg: rgb(168, 162, 158);
  --bs-alert-bg: rgb(168, 162, 158);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-400 {
  --bs-border-color: rgb(168, 162, 158);
  --bs-alert-border: rgb(168, 162, 158);
  border-color: var(--bs-border-color);
}

.decoration-stone-400 {
  text-decoration-color: rgb(168, 162, 158);
}

.hover\:text-stone-400:hover {
  color: rgb(168, 162, 158);
}

.hover\:bg-stone-400:hover {
  --bs-btn-active-bg: rgb(168, 162, 158);
  --bs-alert-bg: rgb(168, 162, 158);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-400:hover {
  --bs-border-color: rgb(168, 162, 158);
  --bs-alert-border-color: rgb(168, 162, 158);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-400 {
  text-decoration-color: rgb(168, 162, 158);
}

.focus\:text-stone-400:focus {
  color: rgb(168, 162, 158);
}

.focus\:bg-stone-400:focus {
  --bs-btn-active-bg: rgb(168, 162, 158);
  --bs-alert-bg: rgb(168, 162, 158);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-400:focus {
  --bs-border-color: rgb(168, 162, 158);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-400 {
  text-decoration-color: rgb(168, 162, 158);
}

.active\:text-stone-400:active {
  color: rgb(168, 162, 158);
}

.active\:bg-stone-400:active {
  --bs-btn-active-bg: rgb(168, 162, 158);
  --bs-alert-bg: rgb(168, 162, 158);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-400:active {
  --bs-border-color: rgb(168, 162, 158);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-400:disabled {
  color: rgb(168, 162, 158);
}

.disabled\:bg-stone-400:disabled {
  --bs-btn-active-bg: rgb(168, 162, 158);
  --bs-alert-bg: rgb(168, 162, 158);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-400:disabled {
  --bs-border-color: rgb(168, 162, 158);
  border-color: var(--bs-border-color);
}

.text-stone-500 {
  --bs-alert-color: rgb(120, 113, 108);
  --bs-btn-color: rgb(120, 113, 108);
  color: var(--bs-btn-color);
}

.fill-stone-500 {
  color: rgb(120, 113, 108);
}

.stroke-stone-500 {
  color: rgb(120, 113, 108);
}

.accent-stone-500 {
  accent-color: rgb(120, 113, 108);
}

.bg-stone-500 {
  --bs-btn-active-bg: rgb(120, 113, 108);
  --bs-alert-bg: rgb(120, 113, 108);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-500 {
  --bs-border-color: rgb(120, 113, 108);
  --bs-alert-border: rgb(120, 113, 108);
  border-color: var(--bs-border-color);
}

.decoration-stone-500 {
  text-decoration-color: rgb(120, 113, 108);
}

.hover\:text-stone-500:hover {
  color: rgb(120, 113, 108);
}

.hover\:bg-stone-500:hover {
  --bs-btn-active-bg: rgb(120, 113, 108);
  --bs-alert-bg: rgb(120, 113, 108);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-500:hover {
  --bs-border-color: rgb(120, 113, 108);
  --bs-alert-border-color: rgb(120, 113, 108);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-500 {
  text-decoration-color: rgb(120, 113, 108);
}

.focus\:text-stone-500:focus {
  color: rgb(120, 113, 108);
}

.focus\:bg-stone-500:focus {
  --bs-btn-active-bg: rgb(120, 113, 108);
  --bs-alert-bg: rgb(120, 113, 108);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-500:focus {
  --bs-border-color: rgb(120, 113, 108);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-500 {
  text-decoration-color: rgb(120, 113, 108);
}

.active\:text-stone-500:active {
  color: rgb(120, 113, 108);
}

.active\:bg-stone-500:active {
  --bs-btn-active-bg: rgb(120, 113, 108);
  --bs-alert-bg: rgb(120, 113, 108);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-500:active {
  --bs-border-color: rgb(120, 113, 108);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-500:disabled {
  color: rgb(120, 113, 108);
}

.disabled\:bg-stone-500:disabled {
  --bs-btn-active-bg: rgb(120, 113, 108);
  --bs-alert-bg: rgb(120, 113, 108);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-500:disabled {
  --bs-border-color: rgb(120, 113, 108);
  border-color: var(--bs-border-color);
}

.text-stone-600 {
  --bs-alert-color: rgb(87, 83, 78);
  --bs-btn-color: rgb(87, 83, 78);
  color: var(--bs-btn-color);
}

.fill-stone-600 {
  color: rgb(87, 83, 78);
}

.stroke-stone-600 {
  color: rgb(87, 83, 78);
}

.accent-stone-600 {
  accent-color: rgb(87, 83, 78);
}

.bg-stone-600 {
  --bs-btn-active-bg: rgb(87, 83, 78);
  --bs-alert-bg: rgb(87, 83, 78);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-600 {
  --bs-border-color: rgb(87, 83, 78);
  --bs-alert-border: rgb(87, 83, 78);
  border-color: var(--bs-border-color);
}

.decoration-stone-600 {
  text-decoration-color: rgb(87, 83, 78);
}

.hover\:text-stone-600:hover {
  color: rgb(87, 83, 78);
}

.hover\:bg-stone-600:hover {
  --bs-btn-active-bg: rgb(87, 83, 78);
  --bs-alert-bg: rgb(87, 83, 78);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-600:hover {
  --bs-border-color: rgb(87, 83, 78);
  --bs-alert-border-color: rgb(87, 83, 78);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-600 {
  text-decoration-color: rgb(87, 83, 78);
}

.focus\:text-stone-600:focus {
  color: rgb(87, 83, 78);
}

.focus\:bg-stone-600:focus {
  --bs-btn-active-bg: rgb(87, 83, 78);
  --bs-alert-bg: rgb(87, 83, 78);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-600:focus {
  --bs-border-color: rgb(87, 83, 78);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-600 {
  text-decoration-color: rgb(87, 83, 78);
}

.active\:text-stone-600:active {
  color: rgb(87, 83, 78);
}

.active\:bg-stone-600:active {
  --bs-btn-active-bg: rgb(87, 83, 78);
  --bs-alert-bg: rgb(87, 83, 78);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-600:active {
  --bs-border-color: rgb(87, 83, 78);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-600:disabled {
  color: rgb(87, 83, 78);
}

.disabled\:bg-stone-600:disabled {
  --bs-btn-active-bg: rgb(87, 83, 78);
  --bs-alert-bg: rgb(87, 83, 78);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-600:disabled {
  --bs-border-color: rgb(87, 83, 78);
  border-color: var(--bs-border-color);
}

.text-stone-700 {
  --bs-alert-color: rgb(68, 64, 60);
  --bs-btn-color: rgb(68, 64, 60);
  color: var(--bs-btn-color);
}

.fill-stone-700 {
  color: rgb(68, 64, 60);
}

.stroke-stone-700 {
  color: rgb(68, 64, 60);
}

.accent-stone-700 {
  accent-color: rgb(68, 64, 60);
}

.bg-stone-700 {
  --bs-btn-active-bg: rgb(68, 64, 60);
  --bs-alert-bg: rgb(68, 64, 60);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-700 {
  --bs-border-color: rgb(68, 64, 60);
  --bs-alert-border: rgb(68, 64, 60);
  border-color: var(--bs-border-color);
}

.decoration-stone-700 {
  text-decoration-color: rgb(68, 64, 60);
}

.hover\:text-stone-700:hover {
  color: rgb(68, 64, 60);
}

.hover\:bg-stone-700:hover {
  --bs-btn-active-bg: rgb(68, 64, 60);
  --bs-alert-bg: rgb(68, 64, 60);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-700:hover {
  --bs-border-color: rgb(68, 64, 60);
  --bs-alert-border-color: rgb(68, 64, 60);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-700 {
  text-decoration-color: rgb(68, 64, 60);
}

.focus\:text-stone-700:focus {
  color: rgb(68, 64, 60);
}

.focus\:bg-stone-700:focus {
  --bs-btn-active-bg: rgb(68, 64, 60);
  --bs-alert-bg: rgb(68, 64, 60);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-700:focus {
  --bs-border-color: rgb(68, 64, 60);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-700 {
  text-decoration-color: rgb(68, 64, 60);
}

.active\:text-stone-700:active {
  color: rgb(68, 64, 60);
}

.active\:bg-stone-700:active {
  --bs-btn-active-bg: rgb(68, 64, 60);
  --bs-alert-bg: rgb(68, 64, 60);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-700:active {
  --bs-border-color: rgb(68, 64, 60);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-700:disabled {
  color: rgb(68, 64, 60);
}

.disabled\:bg-stone-700:disabled {
  --bs-btn-active-bg: rgb(68, 64, 60);
  --bs-alert-bg: rgb(68, 64, 60);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-700:disabled {
  --bs-border-color: rgb(68, 64, 60);
  border-color: var(--bs-border-color);
}

.text-stone-800 {
  --bs-alert-color: rgb(41, 37, 36);
  --bs-btn-color: rgb(41, 37, 36);
  color: var(--bs-btn-color);
}

.fill-stone-800 {
  color: rgb(41, 37, 36);
}

.stroke-stone-800 {
  color: rgb(41, 37, 36);
}

.accent-stone-800 {
  accent-color: rgb(41, 37, 36);
}

.bg-stone-800 {
  --bs-btn-active-bg: rgb(41, 37, 36);
  --bs-alert-bg: rgb(41, 37, 36);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-800 {
  --bs-border-color: rgb(41, 37, 36);
  --bs-alert-border: rgb(41, 37, 36);
  border-color: var(--bs-border-color);
}

.decoration-stone-800 {
  text-decoration-color: rgb(41, 37, 36);
}

.hover\:text-stone-800:hover {
  color: rgb(41, 37, 36);
}

.hover\:bg-stone-800:hover {
  --bs-btn-active-bg: rgb(41, 37, 36);
  --bs-alert-bg: rgb(41, 37, 36);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-800:hover {
  --bs-border-color: rgb(41, 37, 36);
  --bs-alert-border-color: rgb(41, 37, 36);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-800 {
  text-decoration-color: rgb(41, 37, 36);
}

.focus\:text-stone-800:focus {
  color: rgb(41, 37, 36);
}

.focus\:bg-stone-800:focus {
  --bs-btn-active-bg: rgb(41, 37, 36);
  --bs-alert-bg: rgb(41, 37, 36);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-800:focus {
  --bs-border-color: rgb(41, 37, 36);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-800 {
  text-decoration-color: rgb(41, 37, 36);
}

.active\:text-stone-800:active {
  color: rgb(41, 37, 36);
}

.active\:bg-stone-800:active {
  --bs-btn-active-bg: rgb(41, 37, 36);
  --bs-alert-bg: rgb(41, 37, 36);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-800:active {
  --bs-border-color: rgb(41, 37, 36);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-800:disabled {
  color: rgb(41, 37, 36);
}

.disabled\:bg-stone-800:disabled {
  --bs-btn-active-bg: rgb(41, 37, 36);
  --bs-alert-bg: rgb(41, 37, 36);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-800:disabled {
  --bs-border-color: rgb(41, 37, 36);
  border-color: var(--bs-border-color);
}

.text-stone-900 {
  --bs-alert-color: rgb(28, 25, 23);
  --bs-btn-color: rgb(28, 25, 23);
  color: var(--bs-btn-color);
}

.fill-stone-900 {
  color: rgb(28, 25, 23);
}

.stroke-stone-900 {
  color: rgb(28, 25, 23);
}

.accent-stone-900 {
  accent-color: rgb(28, 25, 23);
}

.bg-stone-900 {
  --bs-btn-active-bg: rgb(28, 25, 23);
  --bs-alert-bg: rgb(28, 25, 23);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-900 {
  --bs-border-color: rgb(28, 25, 23);
  --bs-alert-border: rgb(28, 25, 23);
  border-color: var(--bs-border-color);
}

.decoration-stone-900 {
  text-decoration-color: rgb(28, 25, 23);
}

.hover\:text-stone-900:hover {
  color: rgb(28, 25, 23);
}

.hover\:bg-stone-900:hover {
  --bs-btn-active-bg: rgb(28, 25, 23);
  --bs-alert-bg: rgb(28, 25, 23);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-900:hover {
  --bs-border-color: rgb(28, 25, 23);
  --bs-alert-border-color: rgb(28, 25, 23);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-900 {
  text-decoration-color: rgb(28, 25, 23);
}

.focus\:text-stone-900:focus {
  color: rgb(28, 25, 23);
}

.focus\:bg-stone-900:focus {
  --bs-btn-active-bg: rgb(28, 25, 23);
  --bs-alert-bg: rgb(28, 25, 23);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-900:focus {
  --bs-border-color: rgb(28, 25, 23);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-900 {
  text-decoration-color: rgb(28, 25, 23);
}

.active\:text-stone-900:active {
  color: rgb(28, 25, 23);
}

.active\:bg-stone-900:active {
  --bs-btn-active-bg: rgb(28, 25, 23);
  --bs-alert-bg: rgb(28, 25, 23);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-900:active {
  --bs-border-color: rgb(28, 25, 23);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-900:disabled {
  color: rgb(28, 25, 23);
}

.disabled\:bg-stone-900:disabled {
  --bs-btn-active-bg: rgb(28, 25, 23);
  --bs-alert-bg: rgb(28, 25, 23);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-900:disabled {
  --bs-border-color: rgb(28, 25, 23);
  border-color: var(--bs-border-color);
}

.text-stone-950 {
  --bs-alert-color: rgb(12, 10, 9);
  --bs-btn-color: rgb(12, 10, 9);
  color: var(--bs-btn-color);
}

.fill-stone-950 {
  color: rgb(12, 10, 9);
}

.stroke-stone-950 {
  color: rgb(12, 10, 9);
}

.accent-stone-950 {
  accent-color: rgb(12, 10, 9);
}

.bg-stone-950 {
  --bs-btn-active-bg: rgb(12, 10, 9);
  --bs-alert-bg: rgb(12, 10, 9);
  background-color: var(--bs-btn-active-bg);
}

.border-stone-950 {
  --bs-border-color: rgb(12, 10, 9);
  --bs-alert-border: rgb(12, 10, 9);
  border-color: var(--bs-border-color);
}

.decoration-stone-950 {
  text-decoration-color: rgb(12, 10, 9);
}

.hover\:text-stone-950:hover {
  color: rgb(12, 10, 9);
}

.hover\:bg-stone-950:hover {
  --bs-btn-active-bg: rgb(12, 10, 9);
  --bs-alert-bg: rgb(12, 10, 9);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-stone-950:hover {
  --bs-border-color: rgb(12, 10, 9);
  --bs-alert-border-color: rgb(12, 10, 9);
  border-color: var(--bs-border-color);
}

.hover\:decoration-stone-950 {
  text-decoration-color: rgb(12, 10, 9);
}

.focus\:text-stone-950:focus {
  color: rgb(12, 10, 9);
}

.focus\:bg-stone-950:focus {
  --bs-btn-active-bg: rgb(12, 10, 9);
  --bs-alert-bg: rgb(12, 10, 9);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-stone-950:focus {
  --bs-border-color: rgb(12, 10, 9);
  border-color: var(--bs-border-color);
}

.focus\:decoration-stone-950 {
  text-decoration-color: rgb(12, 10, 9);
}

.active\:text-stone-950:active {
  color: rgb(12, 10, 9);
}

.active\:bg-stone-950:active {
  --bs-btn-active-bg: rgb(12, 10, 9);
  --bs-alert-bg: rgb(12, 10, 9);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-stone-950:active {
  --bs-border-color: rgb(12, 10, 9);
  border-color: var(--bs-border-color);
}

.disabled\:text-stone-950:disabled {
  color: rgb(12, 10, 9);
}

.disabled\:bg-stone-950:disabled {
  --bs-btn-active-bg: rgb(12, 10, 9);
  --bs-alert-bg: rgb(12, 10, 9);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-stone-950:disabled {
  --bs-border-color: rgb(12, 10, 9);
  border-color: var(--bs-border-color);
}

.text-red-50 {
  --bs-alert-color: rgb(254, 242, 242);
  --bs-btn-color: rgb(254, 242, 242);
  color: var(--bs-btn-color);
}

.fill-red-50 {
  color: rgb(254, 242, 242);
}

.stroke-red-50 {
  color: rgb(254, 242, 242);
}

.accent-red-50 {
  accent-color: rgb(254, 242, 242);
}

.bg-red-50 {
  --bs-btn-active-bg: rgb(254, 242, 242);
  --bs-alert-bg: rgb(254, 242, 242);
  background-color: var(--bs-btn-active-bg);
}

.border-red-50 {
  --bs-border-color: rgb(254, 242, 242);
  --bs-alert-border: rgb(254, 242, 242);
  border-color: var(--bs-border-color);
}

.decoration-red-50 {
  text-decoration-color: rgb(254, 242, 242);
}

.hover\:text-red-50:hover {
  color: rgb(254, 242, 242);
}

.hover\:bg-red-50:hover {
  --bs-btn-active-bg: rgb(254, 242, 242);
  --bs-alert-bg: rgb(254, 242, 242);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-50:hover {
  --bs-border-color: rgb(254, 242, 242);
  --bs-alert-border-color: rgb(254, 242, 242);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-50 {
  text-decoration-color: rgb(254, 242, 242);
}

.focus\:text-red-50:focus {
  color: rgb(254, 242, 242);
}

.focus\:bg-red-50:focus {
  --bs-btn-active-bg: rgb(254, 242, 242);
  --bs-alert-bg: rgb(254, 242, 242);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-50:focus {
  --bs-border-color: rgb(254, 242, 242);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-50 {
  text-decoration-color: rgb(254, 242, 242);
}

.active\:text-red-50:active {
  color: rgb(254, 242, 242);
}

.active\:bg-red-50:active {
  --bs-btn-active-bg: rgb(254, 242, 242);
  --bs-alert-bg: rgb(254, 242, 242);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-50:active {
  --bs-border-color: rgb(254, 242, 242);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-50:disabled {
  color: rgb(254, 242, 242);
}

.disabled\:bg-red-50:disabled {
  --bs-btn-active-bg: rgb(254, 242, 242);
  --bs-alert-bg: rgb(254, 242, 242);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-50:disabled {
  --bs-border-color: rgb(254, 242, 242);
  border-color: var(--bs-border-color);
}

.text-red-100 {
  --bs-alert-color: rgb(254, 226, 226);
  --bs-btn-color: rgb(254, 226, 226);
  color: var(--bs-btn-color);
}

.fill-red-100 {
  color: rgb(254, 226, 226);
}

.stroke-red-100 {
  color: rgb(254, 226, 226);
}

.accent-red-100 {
  accent-color: rgb(254, 226, 226);
}

.bg-red-100 {
  --bs-btn-active-bg: rgb(254, 226, 226);
  --bs-alert-bg: rgb(254, 226, 226);
  background-color: var(--bs-btn-active-bg);
}

.border-red-100 {
  --bs-border-color: rgb(254, 226, 226);
  --bs-alert-border: rgb(254, 226, 226);
  border-color: var(--bs-border-color);
}

.decoration-red-100 {
  text-decoration-color: rgb(254, 226, 226);
}

.hover\:text-red-100:hover {
  color: rgb(254, 226, 226);
}

.hover\:bg-red-100:hover {
  --bs-btn-active-bg: rgb(254, 226, 226);
  --bs-alert-bg: rgb(254, 226, 226);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-100:hover {
  --bs-border-color: rgb(254, 226, 226);
  --bs-alert-border-color: rgb(254, 226, 226);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-100 {
  text-decoration-color: rgb(254, 226, 226);
}

.focus\:text-red-100:focus {
  color: rgb(254, 226, 226);
}

.focus\:bg-red-100:focus {
  --bs-btn-active-bg: rgb(254, 226, 226);
  --bs-alert-bg: rgb(254, 226, 226);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-100:focus {
  --bs-border-color: rgb(254, 226, 226);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-100 {
  text-decoration-color: rgb(254, 226, 226);
}

.active\:text-red-100:active {
  color: rgb(254, 226, 226);
}

.active\:bg-red-100:active {
  --bs-btn-active-bg: rgb(254, 226, 226);
  --bs-alert-bg: rgb(254, 226, 226);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-100:active {
  --bs-border-color: rgb(254, 226, 226);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-100:disabled {
  color: rgb(254, 226, 226);
}

.disabled\:bg-red-100:disabled {
  --bs-btn-active-bg: rgb(254, 226, 226);
  --bs-alert-bg: rgb(254, 226, 226);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-100:disabled {
  --bs-border-color: rgb(254, 226, 226);
  border-color: var(--bs-border-color);
}

.text-red-200 {
  --bs-alert-color: rgb(254, 202, 202);
  --bs-btn-color: rgb(254, 202, 202);
  color: var(--bs-btn-color);
}

.fill-red-200 {
  color: rgb(254, 202, 202);
}

.stroke-red-200 {
  color: rgb(254, 202, 202);
}

.accent-red-200 {
  accent-color: rgb(254, 202, 202);
}

.bg-red-200 {
  --bs-btn-active-bg: rgb(254, 202, 202);
  --bs-alert-bg: rgb(254, 202, 202);
  background-color: var(--bs-btn-active-bg);
}

.border-red-200 {
  --bs-border-color: rgb(254, 202, 202);
  --bs-alert-border: rgb(254, 202, 202);
  border-color: var(--bs-border-color);
}

.decoration-red-200 {
  text-decoration-color: rgb(254, 202, 202);
}

.hover\:text-red-200:hover {
  color: rgb(254, 202, 202);
}

.hover\:bg-red-200:hover {
  --bs-btn-active-bg: rgb(254, 202, 202);
  --bs-alert-bg: rgb(254, 202, 202);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-200:hover {
  --bs-border-color: rgb(254, 202, 202);
  --bs-alert-border-color: rgb(254, 202, 202);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-200 {
  text-decoration-color: rgb(254, 202, 202);
}

.focus\:text-red-200:focus {
  color: rgb(254, 202, 202);
}

.focus\:bg-red-200:focus {
  --bs-btn-active-bg: rgb(254, 202, 202);
  --bs-alert-bg: rgb(254, 202, 202);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-200:focus {
  --bs-border-color: rgb(254, 202, 202);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-200 {
  text-decoration-color: rgb(254, 202, 202);
}

.active\:text-red-200:active {
  color: rgb(254, 202, 202);
}

.active\:bg-red-200:active {
  --bs-btn-active-bg: rgb(254, 202, 202);
  --bs-alert-bg: rgb(254, 202, 202);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-200:active {
  --bs-border-color: rgb(254, 202, 202);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-200:disabled {
  color: rgb(254, 202, 202);
}

.disabled\:bg-red-200:disabled {
  --bs-btn-active-bg: rgb(254, 202, 202);
  --bs-alert-bg: rgb(254, 202, 202);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-200:disabled {
  --bs-border-color: rgb(254, 202, 202);
  border-color: var(--bs-border-color);
}

.text-red-300 {
  --bs-alert-color: rgb(252, 165, 165);
  --bs-btn-color: rgb(252, 165, 165);
  color: var(--bs-btn-color);
}

.fill-red-300 {
  color: rgb(252, 165, 165);
}

.stroke-red-300 {
  color: rgb(252, 165, 165);
}

.accent-red-300 {
  accent-color: rgb(252, 165, 165);
}

.bg-red-300 {
  --bs-btn-active-bg: rgb(252, 165, 165);
  --bs-alert-bg: rgb(252, 165, 165);
  background-color: var(--bs-btn-active-bg);
}

.border-red-300 {
  --bs-border-color: rgb(252, 165, 165);
  --bs-alert-border: rgb(252, 165, 165);
  border-color: var(--bs-border-color);
}

.decoration-red-300 {
  text-decoration-color: rgb(252, 165, 165);
}

.hover\:text-red-300:hover {
  color: rgb(252, 165, 165);
}

.hover\:bg-red-300:hover {
  --bs-btn-active-bg: rgb(252, 165, 165);
  --bs-alert-bg: rgb(252, 165, 165);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-300:hover {
  --bs-border-color: rgb(252, 165, 165);
  --bs-alert-border-color: rgb(252, 165, 165);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-300 {
  text-decoration-color: rgb(252, 165, 165);
}

.focus\:text-red-300:focus {
  color: rgb(252, 165, 165);
}

.focus\:bg-red-300:focus {
  --bs-btn-active-bg: rgb(252, 165, 165);
  --bs-alert-bg: rgb(252, 165, 165);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-300:focus {
  --bs-border-color: rgb(252, 165, 165);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-300 {
  text-decoration-color: rgb(252, 165, 165);
}

.active\:text-red-300:active {
  color: rgb(252, 165, 165);
}

.active\:bg-red-300:active {
  --bs-btn-active-bg: rgb(252, 165, 165);
  --bs-alert-bg: rgb(252, 165, 165);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-300:active {
  --bs-border-color: rgb(252, 165, 165);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-300:disabled {
  color: rgb(252, 165, 165);
}

.disabled\:bg-red-300:disabled {
  --bs-btn-active-bg: rgb(252, 165, 165);
  --bs-alert-bg: rgb(252, 165, 165);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-300:disabled {
  --bs-border-color: rgb(252, 165, 165);
  border-color: var(--bs-border-color);
}

.text-red-400 {
  --bs-alert-color: rgb(248, 113, 113);
  --bs-btn-color: rgb(248, 113, 113);
  color: var(--bs-btn-color);
}

.fill-red-400 {
  color: rgb(248, 113, 113);
}

.stroke-red-400 {
  color: rgb(248, 113, 113);
}

.accent-red-400 {
  accent-color: rgb(248, 113, 113);
}

.bg-red-400 {
  --bs-btn-active-bg: rgb(248, 113, 113);
  --bs-alert-bg: rgb(248, 113, 113);
  background-color: var(--bs-btn-active-bg);
}

.border-red-400 {
  --bs-border-color: rgb(248, 113, 113);
  --bs-alert-border: rgb(248, 113, 113);
  border-color: var(--bs-border-color);
}

.decoration-red-400 {
  text-decoration-color: rgb(248, 113, 113);
}

.hover\:text-red-400:hover {
  color: rgb(248, 113, 113);
}

.hover\:bg-red-400:hover {
  --bs-btn-active-bg: rgb(248, 113, 113);
  --bs-alert-bg: rgb(248, 113, 113);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-400:hover {
  --bs-border-color: rgb(248, 113, 113);
  --bs-alert-border-color: rgb(248, 113, 113);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-400 {
  text-decoration-color: rgb(248, 113, 113);
}

.focus\:text-red-400:focus {
  color: rgb(248, 113, 113);
}

.focus\:bg-red-400:focus {
  --bs-btn-active-bg: rgb(248, 113, 113);
  --bs-alert-bg: rgb(248, 113, 113);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-400:focus {
  --bs-border-color: rgb(248, 113, 113);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-400 {
  text-decoration-color: rgb(248, 113, 113);
}

.active\:text-red-400:active {
  color: rgb(248, 113, 113);
}

.active\:bg-red-400:active {
  --bs-btn-active-bg: rgb(248, 113, 113);
  --bs-alert-bg: rgb(248, 113, 113);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-400:active {
  --bs-border-color: rgb(248, 113, 113);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-400:disabled {
  color: rgb(248, 113, 113);
}

.disabled\:bg-red-400:disabled {
  --bs-btn-active-bg: rgb(248, 113, 113);
  --bs-alert-bg: rgb(248, 113, 113);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-400:disabled {
  --bs-border-color: rgb(248, 113, 113);
  border-color: var(--bs-border-color);
}

.text-red-500 {
  --bs-alert-color: rgb(239, 68, 68);
  --bs-btn-color: rgb(239, 68, 68);
  color: var(--bs-btn-color);
}

.fill-red-500 {
  color: rgb(239, 68, 68);
}

.stroke-red-500 {
  color: rgb(239, 68, 68);
}

.accent-red-500 {
  accent-color: rgb(239, 68, 68);
}

.bg-red-500 {
  --bs-btn-active-bg: rgb(239, 68, 68);
  --bs-alert-bg: rgb(239, 68, 68);
  background-color: var(--bs-btn-active-bg);
}

.border-red-500 {
  --bs-border-color: rgb(239, 68, 68);
  --bs-alert-border: rgb(239, 68, 68);
  border-color: var(--bs-border-color);
}

.decoration-red-500 {
  text-decoration-color: rgb(239, 68, 68);
}

.hover\:text-red-500:hover {
  color: rgb(239, 68, 68);
}

.hover\:bg-red-500:hover {
  --bs-btn-active-bg: rgb(239, 68, 68);
  --bs-alert-bg: rgb(239, 68, 68);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-500:hover {
  --bs-border-color: rgb(239, 68, 68);
  --bs-alert-border-color: rgb(239, 68, 68);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-500 {
  text-decoration-color: rgb(239, 68, 68);
}

.focus\:text-red-500:focus {
  color: rgb(239, 68, 68);
}

.focus\:bg-red-500:focus {
  --bs-btn-active-bg: rgb(239, 68, 68);
  --bs-alert-bg: rgb(239, 68, 68);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-500:focus {
  --bs-border-color: rgb(239, 68, 68);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-500 {
  text-decoration-color: rgb(239, 68, 68);
}

.active\:text-red-500:active {
  color: rgb(239, 68, 68);
}

.active\:bg-red-500:active {
  --bs-btn-active-bg: rgb(239, 68, 68);
  --bs-alert-bg: rgb(239, 68, 68);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-500:active {
  --bs-border-color: rgb(239, 68, 68);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-500:disabled {
  color: rgb(239, 68, 68);
}

.disabled\:bg-red-500:disabled {
  --bs-btn-active-bg: rgb(239, 68, 68);
  --bs-alert-bg: rgb(239, 68, 68);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-500:disabled {
  --bs-border-color: rgb(239, 68, 68);
  border-color: var(--bs-border-color);
}

.text-red-600 {
  --bs-alert-color: rgb(220, 38, 38);
  --bs-btn-color: rgb(220, 38, 38);
  color: var(--bs-btn-color);
}

.fill-red-600 {
  color: rgb(220, 38, 38);
}

.stroke-red-600 {
  color: rgb(220, 38, 38);
}

.accent-red-600 {
  accent-color: rgb(220, 38, 38);
}

.bg-red-600 {
  --bs-btn-active-bg: rgb(220, 38, 38);
  --bs-alert-bg: rgb(220, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.border-red-600 {
  --bs-border-color: rgb(220, 38, 38);
  --bs-alert-border: rgb(220, 38, 38);
  border-color: var(--bs-border-color);
}

.decoration-red-600 {
  text-decoration-color: rgb(220, 38, 38);
}

.hover\:text-red-600:hover {
  color: rgb(220, 38, 38);
}

.hover\:bg-red-600:hover {
  --bs-btn-active-bg: rgb(220, 38, 38);
  --bs-alert-bg: rgb(220, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-600:hover {
  --bs-border-color: rgb(220, 38, 38);
  --bs-alert-border-color: rgb(220, 38, 38);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-600 {
  text-decoration-color: rgb(220, 38, 38);
}

.focus\:text-red-600:focus {
  color: rgb(220, 38, 38);
}

.focus\:bg-red-600:focus {
  --bs-btn-active-bg: rgb(220, 38, 38);
  --bs-alert-bg: rgb(220, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-600:focus {
  --bs-border-color: rgb(220, 38, 38);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-600 {
  text-decoration-color: rgb(220, 38, 38);
}

.active\:text-red-600:active {
  color: rgb(220, 38, 38);
}

.active\:bg-red-600:active {
  --bs-btn-active-bg: rgb(220, 38, 38);
  --bs-alert-bg: rgb(220, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-600:active {
  --bs-border-color: rgb(220, 38, 38);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-600:disabled {
  color: rgb(220, 38, 38);
}

.disabled\:bg-red-600:disabled {
  --bs-btn-active-bg: rgb(220, 38, 38);
  --bs-alert-bg: rgb(220, 38, 38);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-600:disabled {
  --bs-border-color: rgb(220, 38, 38);
  border-color: var(--bs-border-color);
}

.text-red-700 {
  --bs-alert-color: rgb(185, 28, 28);
  --bs-btn-color: rgb(185, 28, 28);
  color: var(--bs-btn-color);
}

.fill-red-700 {
  color: rgb(185, 28, 28);
}

.stroke-red-700 {
  color: rgb(185, 28, 28);
}

.accent-red-700 {
  accent-color: rgb(185, 28, 28);
}

.bg-red-700 {
  --bs-btn-active-bg: rgb(185, 28, 28);
  --bs-alert-bg: rgb(185, 28, 28);
  background-color: var(--bs-btn-active-bg);
}

.border-red-700 {
  --bs-border-color: rgb(185, 28, 28);
  --bs-alert-border: rgb(185, 28, 28);
  border-color: var(--bs-border-color);
}

.decoration-red-700 {
  text-decoration-color: rgb(185, 28, 28);
}

.hover\:text-red-700:hover {
  color: rgb(185, 28, 28);
}

.hover\:bg-red-700:hover {
  --bs-btn-active-bg: rgb(185, 28, 28);
  --bs-alert-bg: rgb(185, 28, 28);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-700:hover {
  --bs-border-color: rgb(185, 28, 28);
  --bs-alert-border-color: rgb(185, 28, 28);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-700 {
  text-decoration-color: rgb(185, 28, 28);
}

.focus\:text-red-700:focus {
  color: rgb(185, 28, 28);
}

.focus\:bg-red-700:focus {
  --bs-btn-active-bg: rgb(185, 28, 28);
  --bs-alert-bg: rgb(185, 28, 28);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-700:focus {
  --bs-border-color: rgb(185, 28, 28);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-700 {
  text-decoration-color: rgb(185, 28, 28);
}

.active\:text-red-700:active {
  color: rgb(185, 28, 28);
}

.active\:bg-red-700:active {
  --bs-btn-active-bg: rgb(185, 28, 28);
  --bs-alert-bg: rgb(185, 28, 28);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-700:active {
  --bs-border-color: rgb(185, 28, 28);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-700:disabled {
  color: rgb(185, 28, 28);
}

.disabled\:bg-red-700:disabled {
  --bs-btn-active-bg: rgb(185, 28, 28);
  --bs-alert-bg: rgb(185, 28, 28);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-700:disabled {
  --bs-border-color: rgb(185, 28, 28);
  border-color: var(--bs-border-color);
}

.text-red-800 {
  --bs-alert-color: rgb(153, 27, 27);
  --bs-btn-color: rgb(153, 27, 27);
  color: var(--bs-btn-color);
}

.fill-red-800 {
  color: rgb(153, 27, 27);
}

.stroke-red-800 {
  color: rgb(153, 27, 27);
}

.accent-red-800 {
  accent-color: rgb(153, 27, 27);
}

.bg-red-800 {
  --bs-btn-active-bg: rgb(153, 27, 27);
  --bs-alert-bg: rgb(153, 27, 27);
  background-color: var(--bs-btn-active-bg);
}

.border-red-800 {
  --bs-border-color: rgb(153, 27, 27);
  --bs-alert-border: rgb(153, 27, 27);
  border-color: var(--bs-border-color);
}

.decoration-red-800 {
  text-decoration-color: rgb(153, 27, 27);
}

.hover\:text-red-800:hover {
  color: rgb(153, 27, 27);
}

.hover\:bg-red-800:hover {
  --bs-btn-active-bg: rgb(153, 27, 27);
  --bs-alert-bg: rgb(153, 27, 27);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-800:hover {
  --bs-border-color: rgb(153, 27, 27);
  --bs-alert-border-color: rgb(153, 27, 27);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-800 {
  text-decoration-color: rgb(153, 27, 27);
}

.focus\:text-red-800:focus {
  color: rgb(153, 27, 27);
}

.focus\:bg-red-800:focus {
  --bs-btn-active-bg: rgb(153, 27, 27);
  --bs-alert-bg: rgb(153, 27, 27);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-800:focus {
  --bs-border-color: rgb(153, 27, 27);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-800 {
  text-decoration-color: rgb(153, 27, 27);
}

.active\:text-red-800:active {
  color: rgb(153, 27, 27);
}

.active\:bg-red-800:active {
  --bs-btn-active-bg: rgb(153, 27, 27);
  --bs-alert-bg: rgb(153, 27, 27);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-800:active {
  --bs-border-color: rgb(153, 27, 27);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-800:disabled {
  color: rgb(153, 27, 27);
}

.disabled\:bg-red-800:disabled {
  --bs-btn-active-bg: rgb(153, 27, 27);
  --bs-alert-bg: rgb(153, 27, 27);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-800:disabled {
  --bs-border-color: rgb(153, 27, 27);
  border-color: var(--bs-border-color);
}

.text-red-900 {
  --bs-alert-color: rgb(127, 29, 29);
  --bs-btn-color: rgb(127, 29, 29);
  color: var(--bs-btn-color);
}

.fill-red-900 {
  color: rgb(127, 29, 29);
}

.stroke-red-900 {
  color: rgb(127, 29, 29);
}

.accent-red-900 {
  accent-color: rgb(127, 29, 29);
}

.bg-red-900 {
  --bs-btn-active-bg: rgb(127, 29, 29);
  --bs-alert-bg: rgb(127, 29, 29);
  background-color: var(--bs-btn-active-bg);
}

.border-red-900 {
  --bs-border-color: rgb(127, 29, 29);
  --bs-alert-border: rgb(127, 29, 29);
  border-color: var(--bs-border-color);
}

.decoration-red-900 {
  text-decoration-color: rgb(127, 29, 29);
}

.hover\:text-red-900:hover {
  color: rgb(127, 29, 29);
}

.hover\:bg-red-900:hover {
  --bs-btn-active-bg: rgb(127, 29, 29);
  --bs-alert-bg: rgb(127, 29, 29);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-900:hover {
  --bs-border-color: rgb(127, 29, 29);
  --bs-alert-border-color: rgb(127, 29, 29);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-900 {
  text-decoration-color: rgb(127, 29, 29);
}

.focus\:text-red-900:focus {
  color: rgb(127, 29, 29);
}

.focus\:bg-red-900:focus {
  --bs-btn-active-bg: rgb(127, 29, 29);
  --bs-alert-bg: rgb(127, 29, 29);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-900:focus {
  --bs-border-color: rgb(127, 29, 29);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-900 {
  text-decoration-color: rgb(127, 29, 29);
}

.active\:text-red-900:active {
  color: rgb(127, 29, 29);
}

.active\:bg-red-900:active {
  --bs-btn-active-bg: rgb(127, 29, 29);
  --bs-alert-bg: rgb(127, 29, 29);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-900:active {
  --bs-border-color: rgb(127, 29, 29);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-900:disabled {
  color: rgb(127, 29, 29);
}

.disabled\:bg-red-900:disabled {
  --bs-btn-active-bg: rgb(127, 29, 29);
  --bs-alert-bg: rgb(127, 29, 29);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-900:disabled {
  --bs-border-color: rgb(127, 29, 29);
  border-color: var(--bs-border-color);
}

.text-red-950 {
  --bs-alert-color: rgb(69, 10, 10);
  --bs-btn-color: rgb(69, 10, 10);
  color: var(--bs-btn-color);
}

.fill-red-950 {
  color: rgb(69, 10, 10);
}

.stroke-red-950 {
  color: rgb(69, 10, 10);
}

.accent-red-950 {
  accent-color: rgb(69, 10, 10);
}

.bg-red-950 {
  --bs-btn-active-bg: rgb(69, 10, 10);
  --bs-alert-bg: rgb(69, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.border-red-950 {
  --bs-border-color: rgb(69, 10, 10);
  --bs-alert-border: rgb(69, 10, 10);
  border-color: var(--bs-border-color);
}

.decoration-red-950 {
  text-decoration-color: rgb(69, 10, 10);
}

.hover\:text-red-950:hover {
  color: rgb(69, 10, 10);
}

.hover\:bg-red-950:hover {
  --bs-btn-active-bg: rgb(69, 10, 10);
  --bs-alert-bg: rgb(69, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-red-950:hover {
  --bs-border-color: rgb(69, 10, 10);
  --bs-alert-border-color: rgb(69, 10, 10);
  border-color: var(--bs-border-color);
}

.hover\:decoration-red-950 {
  text-decoration-color: rgb(69, 10, 10);
}

.focus\:text-red-950:focus {
  color: rgb(69, 10, 10);
}

.focus\:bg-red-950:focus {
  --bs-btn-active-bg: rgb(69, 10, 10);
  --bs-alert-bg: rgb(69, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-red-950:focus {
  --bs-border-color: rgb(69, 10, 10);
  border-color: var(--bs-border-color);
}

.focus\:decoration-red-950 {
  text-decoration-color: rgb(69, 10, 10);
}

.active\:text-red-950:active {
  color: rgb(69, 10, 10);
}

.active\:bg-red-950:active {
  --bs-btn-active-bg: rgb(69, 10, 10);
  --bs-alert-bg: rgb(69, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-red-950:active {
  --bs-border-color: rgb(69, 10, 10);
  border-color: var(--bs-border-color);
}

.disabled\:text-red-950:disabled {
  color: rgb(69, 10, 10);
}

.disabled\:bg-red-950:disabled {
  --bs-btn-active-bg: rgb(69, 10, 10);
  --bs-alert-bg: rgb(69, 10, 10);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-red-950:disabled {
  --bs-border-color: rgb(69, 10, 10);
  border-color: var(--bs-border-color);
}

.text-orange-50 {
  --bs-alert-color: rgb(255, 247, 237);
  --bs-btn-color: rgb(255, 247, 237);
  color: var(--bs-btn-color);
}

.fill-orange-50 {
  color: rgb(255, 247, 237);
}

.stroke-orange-50 {
  color: rgb(255, 247, 237);
}

.accent-orange-50 {
  accent-color: rgb(255, 247, 237);
}

.bg-orange-50 {
  --bs-btn-active-bg: rgb(255, 247, 237);
  --bs-alert-bg: rgb(255, 247, 237);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-50 {
  --bs-border-color: rgb(255, 247, 237);
  --bs-alert-border: rgb(255, 247, 237);
  border-color: var(--bs-border-color);
}

.decoration-orange-50 {
  text-decoration-color: rgb(255, 247, 237);
}

.hover\:text-orange-50:hover {
  color: rgb(255, 247, 237);
}

.hover\:bg-orange-50:hover {
  --bs-btn-active-bg: rgb(255, 247, 237);
  --bs-alert-bg: rgb(255, 247, 237);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-50:hover {
  --bs-border-color: rgb(255, 247, 237);
  --bs-alert-border-color: rgb(255, 247, 237);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-50 {
  text-decoration-color: rgb(255, 247, 237);
}

.focus\:text-orange-50:focus {
  color: rgb(255, 247, 237);
}

.focus\:bg-orange-50:focus {
  --bs-btn-active-bg: rgb(255, 247, 237);
  --bs-alert-bg: rgb(255, 247, 237);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-50:focus {
  --bs-border-color: rgb(255, 247, 237);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-50 {
  text-decoration-color: rgb(255, 247, 237);
}

.active\:text-orange-50:active {
  color: rgb(255, 247, 237);
}

.active\:bg-orange-50:active {
  --bs-btn-active-bg: rgb(255, 247, 237);
  --bs-alert-bg: rgb(255, 247, 237);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-50:active {
  --bs-border-color: rgb(255, 247, 237);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-50:disabled {
  color: rgb(255, 247, 237);
}

.disabled\:bg-orange-50:disabled {
  --bs-btn-active-bg: rgb(255, 247, 237);
  --bs-alert-bg: rgb(255, 247, 237);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-50:disabled {
  --bs-border-color: rgb(255, 247, 237);
  border-color: var(--bs-border-color);
}

.text-orange-100 {
  --bs-alert-color: rgb(255, 237, 213);
  --bs-btn-color: rgb(255, 237, 213);
  color: var(--bs-btn-color);
}

.fill-orange-100 {
  color: rgb(255, 237, 213);
}

.stroke-orange-100 {
  color: rgb(255, 237, 213);
}

.accent-orange-100 {
  accent-color: rgb(255, 237, 213);
}

.bg-orange-100 {
  --bs-btn-active-bg: rgb(255, 237, 213);
  --bs-alert-bg: rgb(255, 237, 213);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-100 {
  --bs-border-color: rgb(255, 237, 213);
  --bs-alert-border: rgb(255, 237, 213);
  border-color: var(--bs-border-color);
}

.decoration-orange-100 {
  text-decoration-color: rgb(255, 237, 213);
}

.hover\:text-orange-100:hover {
  color: rgb(255, 237, 213);
}

.hover\:bg-orange-100:hover {
  --bs-btn-active-bg: rgb(255, 237, 213);
  --bs-alert-bg: rgb(255, 237, 213);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-100:hover {
  --bs-border-color: rgb(255, 237, 213);
  --bs-alert-border-color: rgb(255, 237, 213);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-100 {
  text-decoration-color: rgb(255, 237, 213);
}

.focus\:text-orange-100:focus {
  color: rgb(255, 237, 213);
}

.focus\:bg-orange-100:focus {
  --bs-btn-active-bg: rgb(255, 237, 213);
  --bs-alert-bg: rgb(255, 237, 213);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-100:focus {
  --bs-border-color: rgb(255, 237, 213);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-100 {
  text-decoration-color: rgb(255, 237, 213);
}

.active\:text-orange-100:active {
  color: rgb(255, 237, 213);
}

.active\:bg-orange-100:active {
  --bs-btn-active-bg: rgb(255, 237, 213);
  --bs-alert-bg: rgb(255, 237, 213);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-100:active {
  --bs-border-color: rgb(255, 237, 213);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-100:disabled {
  color: rgb(255, 237, 213);
}

.disabled\:bg-orange-100:disabled {
  --bs-btn-active-bg: rgb(255, 237, 213);
  --bs-alert-bg: rgb(255, 237, 213);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-100:disabled {
  --bs-border-color: rgb(255, 237, 213);
  border-color: var(--bs-border-color);
}

.text-orange-200 {
  --bs-alert-color: rgb(254, 215, 170);
  --bs-btn-color: rgb(254, 215, 170);
  color: var(--bs-btn-color);
}

.fill-orange-200 {
  color: rgb(254, 215, 170);
}

.stroke-orange-200 {
  color: rgb(254, 215, 170);
}

.accent-orange-200 {
  accent-color: rgb(254, 215, 170);
}

.bg-orange-200 {
  --bs-btn-active-bg: rgb(254, 215, 170);
  --bs-alert-bg: rgb(254, 215, 170);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-200 {
  --bs-border-color: rgb(254, 215, 170);
  --bs-alert-border: rgb(254, 215, 170);
  border-color: var(--bs-border-color);
}

.decoration-orange-200 {
  text-decoration-color: rgb(254, 215, 170);
}

.hover\:text-orange-200:hover {
  color: rgb(254, 215, 170);
}

.hover\:bg-orange-200:hover {
  --bs-btn-active-bg: rgb(254, 215, 170);
  --bs-alert-bg: rgb(254, 215, 170);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-200:hover {
  --bs-border-color: rgb(254, 215, 170);
  --bs-alert-border-color: rgb(254, 215, 170);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-200 {
  text-decoration-color: rgb(254, 215, 170);
}

.focus\:text-orange-200:focus {
  color: rgb(254, 215, 170);
}

.focus\:bg-orange-200:focus {
  --bs-btn-active-bg: rgb(254, 215, 170);
  --bs-alert-bg: rgb(254, 215, 170);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-200:focus {
  --bs-border-color: rgb(254, 215, 170);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-200 {
  text-decoration-color: rgb(254, 215, 170);
}

.active\:text-orange-200:active {
  color: rgb(254, 215, 170);
}

.active\:bg-orange-200:active {
  --bs-btn-active-bg: rgb(254, 215, 170);
  --bs-alert-bg: rgb(254, 215, 170);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-200:active {
  --bs-border-color: rgb(254, 215, 170);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-200:disabled {
  color: rgb(254, 215, 170);
}

.disabled\:bg-orange-200:disabled {
  --bs-btn-active-bg: rgb(254, 215, 170);
  --bs-alert-bg: rgb(254, 215, 170);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-200:disabled {
  --bs-border-color: rgb(254, 215, 170);
  border-color: var(--bs-border-color);
}

.text-orange-300 {
  --bs-alert-color: rgb(253, 186, 116);
  --bs-btn-color: rgb(253, 186, 116);
  color: var(--bs-btn-color);
}

.fill-orange-300 {
  color: rgb(253, 186, 116);
}

.stroke-orange-300 {
  color: rgb(253, 186, 116);
}

.accent-orange-300 {
  accent-color: rgb(253, 186, 116);
}

.bg-orange-300 {
  --bs-btn-active-bg: rgb(253, 186, 116);
  --bs-alert-bg: rgb(253, 186, 116);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-300 {
  --bs-border-color: rgb(253, 186, 116);
  --bs-alert-border: rgb(253, 186, 116);
  border-color: var(--bs-border-color);
}

.decoration-orange-300 {
  text-decoration-color: rgb(253, 186, 116);
}

.hover\:text-orange-300:hover {
  color: rgb(253, 186, 116);
}

.hover\:bg-orange-300:hover {
  --bs-btn-active-bg: rgb(253, 186, 116);
  --bs-alert-bg: rgb(253, 186, 116);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-300:hover {
  --bs-border-color: rgb(253, 186, 116);
  --bs-alert-border-color: rgb(253, 186, 116);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-300 {
  text-decoration-color: rgb(253, 186, 116);
}

.focus\:text-orange-300:focus {
  color: rgb(253, 186, 116);
}

.focus\:bg-orange-300:focus {
  --bs-btn-active-bg: rgb(253, 186, 116);
  --bs-alert-bg: rgb(253, 186, 116);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-300:focus {
  --bs-border-color: rgb(253, 186, 116);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-300 {
  text-decoration-color: rgb(253, 186, 116);
}

.active\:text-orange-300:active {
  color: rgb(253, 186, 116);
}

.active\:bg-orange-300:active {
  --bs-btn-active-bg: rgb(253, 186, 116);
  --bs-alert-bg: rgb(253, 186, 116);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-300:active {
  --bs-border-color: rgb(253, 186, 116);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-300:disabled {
  color: rgb(253, 186, 116);
}

.disabled\:bg-orange-300:disabled {
  --bs-btn-active-bg: rgb(253, 186, 116);
  --bs-alert-bg: rgb(253, 186, 116);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-300:disabled {
  --bs-border-color: rgb(253, 186, 116);
  border-color: var(--bs-border-color);
}

.text-orange-400 {
  --bs-alert-color: rgb(251, 146, 60);
  --bs-btn-color: rgb(251, 146, 60);
  color: var(--bs-btn-color);
}

.fill-orange-400 {
  color: rgb(251, 146, 60);
}

.stroke-orange-400 {
  color: rgb(251, 146, 60);
}

.accent-orange-400 {
  accent-color: rgb(251, 146, 60);
}

.bg-orange-400 {
  --bs-btn-active-bg: rgb(251, 146, 60);
  --bs-alert-bg: rgb(251, 146, 60);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-400 {
  --bs-border-color: rgb(251, 146, 60);
  --bs-alert-border: rgb(251, 146, 60);
  border-color: var(--bs-border-color);
}

.decoration-orange-400 {
  text-decoration-color: rgb(251, 146, 60);
}

.hover\:text-orange-400:hover {
  color: rgb(251, 146, 60);
}

.hover\:bg-orange-400:hover {
  --bs-btn-active-bg: rgb(251, 146, 60);
  --bs-alert-bg: rgb(251, 146, 60);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-400:hover {
  --bs-border-color: rgb(251, 146, 60);
  --bs-alert-border-color: rgb(251, 146, 60);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-400 {
  text-decoration-color: rgb(251, 146, 60);
}

.focus\:text-orange-400:focus {
  color: rgb(251, 146, 60);
}

.focus\:bg-orange-400:focus {
  --bs-btn-active-bg: rgb(251, 146, 60);
  --bs-alert-bg: rgb(251, 146, 60);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-400:focus {
  --bs-border-color: rgb(251, 146, 60);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-400 {
  text-decoration-color: rgb(251, 146, 60);
}

.active\:text-orange-400:active {
  color: rgb(251, 146, 60);
}

.active\:bg-orange-400:active {
  --bs-btn-active-bg: rgb(251, 146, 60);
  --bs-alert-bg: rgb(251, 146, 60);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-400:active {
  --bs-border-color: rgb(251, 146, 60);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-400:disabled {
  color: rgb(251, 146, 60);
}

.disabled\:bg-orange-400:disabled {
  --bs-btn-active-bg: rgb(251, 146, 60);
  --bs-alert-bg: rgb(251, 146, 60);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-400:disabled {
  --bs-border-color: rgb(251, 146, 60);
  border-color: var(--bs-border-color);
}

.text-orange-500 {
  --bs-alert-color: rgb(249, 115, 22);
  --bs-btn-color: rgb(249, 115, 22);
  color: var(--bs-btn-color);
}

.fill-orange-500 {
  color: rgb(249, 115, 22);
}

.stroke-orange-500 {
  color: rgb(249, 115, 22);
}

.accent-orange-500 {
  accent-color: rgb(249, 115, 22);
}

.bg-orange-500 {
  --bs-btn-active-bg: rgb(249, 115, 22);
  --bs-alert-bg: rgb(249, 115, 22);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-500 {
  --bs-border-color: rgb(249, 115, 22);
  --bs-alert-border: rgb(249, 115, 22);
  border-color: var(--bs-border-color);
}

.decoration-orange-500 {
  text-decoration-color: rgb(249, 115, 22);
}

.hover\:text-orange-500:hover {
  color: rgb(249, 115, 22);
}

.hover\:bg-orange-500:hover {
  --bs-btn-active-bg: rgb(249, 115, 22);
  --bs-alert-bg: rgb(249, 115, 22);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-500:hover {
  --bs-border-color: rgb(249, 115, 22);
  --bs-alert-border-color: rgb(249, 115, 22);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-500 {
  text-decoration-color: rgb(249, 115, 22);
}

.focus\:text-orange-500:focus {
  color: rgb(249, 115, 22);
}

.focus\:bg-orange-500:focus {
  --bs-btn-active-bg: rgb(249, 115, 22);
  --bs-alert-bg: rgb(249, 115, 22);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-500:focus {
  --bs-border-color: rgb(249, 115, 22);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-500 {
  text-decoration-color: rgb(249, 115, 22);
}

.active\:text-orange-500:active {
  color: rgb(249, 115, 22);
}

.active\:bg-orange-500:active {
  --bs-btn-active-bg: rgb(249, 115, 22);
  --bs-alert-bg: rgb(249, 115, 22);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-500:active {
  --bs-border-color: rgb(249, 115, 22);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-500:disabled {
  color: rgb(249, 115, 22);
}

.disabled\:bg-orange-500:disabled {
  --bs-btn-active-bg: rgb(249, 115, 22);
  --bs-alert-bg: rgb(249, 115, 22);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-500:disabled {
  --bs-border-color: rgb(249, 115, 22);
  border-color: var(--bs-border-color);
}

.text-orange-600 {
  --bs-alert-color: rgb(234, 88, 12);
  --bs-btn-color: rgb(234, 88, 12);
  color: var(--bs-btn-color);
}

.fill-orange-600 {
  color: rgb(234, 88, 12);
}

.stroke-orange-600 {
  color: rgb(234, 88, 12);
}

.accent-orange-600 {
  accent-color: rgb(234, 88, 12);
}

.bg-orange-600 {
  --bs-btn-active-bg: rgb(234, 88, 12);
  --bs-alert-bg: rgb(234, 88, 12);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-600 {
  --bs-border-color: rgb(234, 88, 12);
  --bs-alert-border: rgb(234, 88, 12);
  border-color: var(--bs-border-color);
}

.decoration-orange-600 {
  text-decoration-color: rgb(234, 88, 12);
}

.hover\:text-orange-600:hover {
  color: rgb(234, 88, 12);
}

.hover\:bg-orange-600:hover {
  --bs-btn-active-bg: rgb(234, 88, 12);
  --bs-alert-bg: rgb(234, 88, 12);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-600:hover {
  --bs-border-color: rgb(234, 88, 12);
  --bs-alert-border-color: rgb(234, 88, 12);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-600 {
  text-decoration-color: rgb(234, 88, 12);
}

.focus\:text-orange-600:focus {
  color: rgb(234, 88, 12);
}

.focus\:bg-orange-600:focus {
  --bs-btn-active-bg: rgb(234, 88, 12);
  --bs-alert-bg: rgb(234, 88, 12);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-600:focus {
  --bs-border-color: rgb(234, 88, 12);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-600 {
  text-decoration-color: rgb(234, 88, 12);
}

.active\:text-orange-600:active {
  color: rgb(234, 88, 12);
}

.active\:bg-orange-600:active {
  --bs-btn-active-bg: rgb(234, 88, 12);
  --bs-alert-bg: rgb(234, 88, 12);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-600:active {
  --bs-border-color: rgb(234, 88, 12);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-600:disabled {
  color: rgb(234, 88, 12);
}

.disabled\:bg-orange-600:disabled {
  --bs-btn-active-bg: rgb(234, 88, 12);
  --bs-alert-bg: rgb(234, 88, 12);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-600:disabled {
  --bs-border-color: rgb(234, 88, 12);
  border-color: var(--bs-border-color);
}

.text-orange-700 {
  --bs-alert-color: rgb(194, 65, 12);
  --bs-btn-color: rgb(194, 65, 12);
  color: var(--bs-btn-color);
}

.fill-orange-700 {
  color: rgb(194, 65, 12);
}

.stroke-orange-700 {
  color: rgb(194, 65, 12);
}

.accent-orange-700 {
  accent-color: rgb(194, 65, 12);
}

.bg-orange-700 {
  --bs-btn-active-bg: rgb(194, 65, 12);
  --bs-alert-bg: rgb(194, 65, 12);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-700 {
  --bs-border-color: rgb(194, 65, 12);
  --bs-alert-border: rgb(194, 65, 12);
  border-color: var(--bs-border-color);
}

.decoration-orange-700 {
  text-decoration-color: rgb(194, 65, 12);
}

.hover\:text-orange-700:hover {
  color: rgb(194, 65, 12);
}

.hover\:bg-orange-700:hover {
  --bs-btn-active-bg: rgb(194, 65, 12);
  --bs-alert-bg: rgb(194, 65, 12);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-700:hover {
  --bs-border-color: rgb(194, 65, 12);
  --bs-alert-border-color: rgb(194, 65, 12);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-700 {
  text-decoration-color: rgb(194, 65, 12);
}

.focus\:text-orange-700:focus {
  color: rgb(194, 65, 12);
}

.focus\:bg-orange-700:focus {
  --bs-btn-active-bg: rgb(194, 65, 12);
  --bs-alert-bg: rgb(194, 65, 12);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-700:focus {
  --bs-border-color: rgb(194, 65, 12);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-700 {
  text-decoration-color: rgb(194, 65, 12);
}

.active\:text-orange-700:active {
  color: rgb(194, 65, 12);
}

.active\:bg-orange-700:active {
  --bs-btn-active-bg: rgb(194, 65, 12);
  --bs-alert-bg: rgb(194, 65, 12);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-700:active {
  --bs-border-color: rgb(194, 65, 12);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-700:disabled {
  color: rgb(194, 65, 12);
}

.disabled\:bg-orange-700:disabled {
  --bs-btn-active-bg: rgb(194, 65, 12);
  --bs-alert-bg: rgb(194, 65, 12);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-700:disabled {
  --bs-border-color: rgb(194, 65, 12);
  border-color: var(--bs-border-color);
}

.text-orange-800 {
  --bs-alert-color: rgb(154, 52, 18);
  --bs-btn-color: rgb(154, 52, 18);
  color: var(--bs-btn-color);
}

.fill-orange-800 {
  color: rgb(154, 52, 18);
}

.stroke-orange-800 {
  color: rgb(154, 52, 18);
}

.accent-orange-800 {
  accent-color: rgb(154, 52, 18);
}

.bg-orange-800 {
  --bs-btn-active-bg: rgb(154, 52, 18);
  --bs-alert-bg: rgb(154, 52, 18);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-800 {
  --bs-border-color: rgb(154, 52, 18);
  --bs-alert-border: rgb(154, 52, 18);
  border-color: var(--bs-border-color);
}

.decoration-orange-800 {
  text-decoration-color: rgb(154, 52, 18);
}

.hover\:text-orange-800:hover {
  color: rgb(154, 52, 18);
}

.hover\:bg-orange-800:hover {
  --bs-btn-active-bg: rgb(154, 52, 18);
  --bs-alert-bg: rgb(154, 52, 18);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-800:hover {
  --bs-border-color: rgb(154, 52, 18);
  --bs-alert-border-color: rgb(154, 52, 18);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-800 {
  text-decoration-color: rgb(154, 52, 18);
}

.focus\:text-orange-800:focus {
  color: rgb(154, 52, 18);
}

.focus\:bg-orange-800:focus {
  --bs-btn-active-bg: rgb(154, 52, 18);
  --bs-alert-bg: rgb(154, 52, 18);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-800:focus {
  --bs-border-color: rgb(154, 52, 18);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-800 {
  text-decoration-color: rgb(154, 52, 18);
}

.active\:text-orange-800:active {
  color: rgb(154, 52, 18);
}

.active\:bg-orange-800:active {
  --bs-btn-active-bg: rgb(154, 52, 18);
  --bs-alert-bg: rgb(154, 52, 18);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-800:active {
  --bs-border-color: rgb(154, 52, 18);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-800:disabled {
  color: rgb(154, 52, 18);
}

.disabled\:bg-orange-800:disabled {
  --bs-btn-active-bg: rgb(154, 52, 18);
  --bs-alert-bg: rgb(154, 52, 18);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-800:disabled {
  --bs-border-color: rgb(154, 52, 18);
  border-color: var(--bs-border-color);
}

.text-orange-900 {
  --bs-alert-color: rgb(124, 45, 18);
  --bs-btn-color: rgb(124, 45, 18);
  color: var(--bs-btn-color);
}

.fill-orange-900 {
  color: rgb(124, 45, 18);
}

.stroke-orange-900 {
  color: rgb(124, 45, 18);
}

.accent-orange-900 {
  accent-color: rgb(124, 45, 18);
}

.bg-orange-900 {
  --bs-btn-active-bg: rgb(124, 45, 18);
  --bs-alert-bg: rgb(124, 45, 18);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-900 {
  --bs-border-color: rgb(124, 45, 18);
  --bs-alert-border: rgb(124, 45, 18);
  border-color: var(--bs-border-color);
}

.decoration-orange-900 {
  text-decoration-color: rgb(124, 45, 18);
}

.hover\:text-orange-900:hover {
  color: rgb(124, 45, 18);
}

.hover\:bg-orange-900:hover {
  --bs-btn-active-bg: rgb(124, 45, 18);
  --bs-alert-bg: rgb(124, 45, 18);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-900:hover {
  --bs-border-color: rgb(124, 45, 18);
  --bs-alert-border-color: rgb(124, 45, 18);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-900 {
  text-decoration-color: rgb(124, 45, 18);
}

.focus\:text-orange-900:focus {
  color: rgb(124, 45, 18);
}

.focus\:bg-orange-900:focus {
  --bs-btn-active-bg: rgb(124, 45, 18);
  --bs-alert-bg: rgb(124, 45, 18);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-900:focus {
  --bs-border-color: rgb(124, 45, 18);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-900 {
  text-decoration-color: rgb(124, 45, 18);
}

.active\:text-orange-900:active {
  color: rgb(124, 45, 18);
}

.active\:bg-orange-900:active {
  --bs-btn-active-bg: rgb(124, 45, 18);
  --bs-alert-bg: rgb(124, 45, 18);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-900:active {
  --bs-border-color: rgb(124, 45, 18);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-900:disabled {
  color: rgb(124, 45, 18);
}

.disabled\:bg-orange-900:disabled {
  --bs-btn-active-bg: rgb(124, 45, 18);
  --bs-alert-bg: rgb(124, 45, 18);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-900:disabled {
  --bs-border-color: rgb(124, 45, 18);
  border-color: var(--bs-border-color);
}

.text-orange-950 {
  --bs-alert-color: rgb(67, 20, 7);
  --bs-btn-color: rgb(67, 20, 7);
  color: var(--bs-btn-color);
}

.fill-orange-950 {
  color: rgb(67, 20, 7);
}

.stroke-orange-950 {
  color: rgb(67, 20, 7);
}

.accent-orange-950 {
  accent-color: rgb(67, 20, 7);
}

.bg-orange-950 {
  --bs-btn-active-bg: rgb(67, 20, 7);
  --bs-alert-bg: rgb(67, 20, 7);
  background-color: var(--bs-btn-active-bg);
}

.border-orange-950 {
  --bs-border-color: rgb(67, 20, 7);
  --bs-alert-border: rgb(67, 20, 7);
  border-color: var(--bs-border-color);
}

.decoration-orange-950 {
  text-decoration-color: rgb(67, 20, 7);
}

.hover\:text-orange-950:hover {
  color: rgb(67, 20, 7);
}

.hover\:bg-orange-950:hover {
  --bs-btn-active-bg: rgb(67, 20, 7);
  --bs-alert-bg: rgb(67, 20, 7);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-orange-950:hover {
  --bs-border-color: rgb(67, 20, 7);
  --bs-alert-border-color: rgb(67, 20, 7);
  border-color: var(--bs-border-color);
}

.hover\:decoration-orange-950 {
  text-decoration-color: rgb(67, 20, 7);
}

.focus\:text-orange-950:focus {
  color: rgb(67, 20, 7);
}

.focus\:bg-orange-950:focus {
  --bs-btn-active-bg: rgb(67, 20, 7);
  --bs-alert-bg: rgb(67, 20, 7);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-orange-950:focus {
  --bs-border-color: rgb(67, 20, 7);
  border-color: var(--bs-border-color);
}

.focus\:decoration-orange-950 {
  text-decoration-color: rgb(67, 20, 7);
}

.active\:text-orange-950:active {
  color: rgb(67, 20, 7);
}

.active\:bg-orange-950:active {
  --bs-btn-active-bg: rgb(67, 20, 7);
  --bs-alert-bg: rgb(67, 20, 7);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-orange-950:active {
  --bs-border-color: rgb(67, 20, 7);
  border-color: var(--bs-border-color);
}

.disabled\:text-orange-950:disabled {
  color: rgb(67, 20, 7);
}

.disabled\:bg-orange-950:disabled {
  --bs-btn-active-bg: rgb(67, 20, 7);
  --bs-alert-bg: rgb(67, 20, 7);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-orange-950:disabled {
  --bs-border-color: rgb(67, 20, 7);
  border-color: var(--bs-border-color);
}

.text-amber-50 {
  --bs-alert-color: rgb(255, 251, 235);
  --bs-btn-color: rgb(255, 251, 235);
  color: var(--bs-btn-color);
}

.fill-amber-50 {
  color: rgb(255, 251, 235);
}

.stroke-amber-50 {
  color: rgb(255, 251, 235);
}

.accent-amber-50 {
  accent-color: rgb(255, 251, 235);
}

.bg-amber-50 {
  --bs-btn-active-bg: rgb(255, 251, 235);
  --bs-alert-bg: rgb(255, 251, 235);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-50 {
  --bs-border-color: rgb(255, 251, 235);
  --bs-alert-border: rgb(255, 251, 235);
  border-color: var(--bs-border-color);
}

.decoration-amber-50 {
  text-decoration-color: rgb(255, 251, 235);
}

.hover\:text-amber-50:hover {
  color: rgb(255, 251, 235);
}

.hover\:bg-amber-50:hover {
  --bs-btn-active-bg: rgb(255, 251, 235);
  --bs-alert-bg: rgb(255, 251, 235);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-50:hover {
  --bs-border-color: rgb(255, 251, 235);
  --bs-alert-border-color: rgb(255, 251, 235);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-50 {
  text-decoration-color: rgb(255, 251, 235);
}

.focus\:text-amber-50:focus {
  color: rgb(255, 251, 235);
}

.focus\:bg-amber-50:focus {
  --bs-btn-active-bg: rgb(255, 251, 235);
  --bs-alert-bg: rgb(255, 251, 235);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-50:focus {
  --bs-border-color: rgb(255, 251, 235);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-50 {
  text-decoration-color: rgb(255, 251, 235);
}

.active\:text-amber-50:active {
  color: rgb(255, 251, 235);
}

.active\:bg-amber-50:active {
  --bs-btn-active-bg: rgb(255, 251, 235);
  --bs-alert-bg: rgb(255, 251, 235);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-50:active {
  --bs-border-color: rgb(255, 251, 235);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-50:disabled {
  color: rgb(255, 251, 235);
}

.disabled\:bg-amber-50:disabled {
  --bs-btn-active-bg: rgb(255, 251, 235);
  --bs-alert-bg: rgb(255, 251, 235);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-50:disabled {
  --bs-border-color: rgb(255, 251, 235);
  border-color: var(--bs-border-color);
}

.text-amber-100 {
  --bs-alert-color: rgb(254, 243, 199);
  --bs-btn-color: rgb(254, 243, 199);
  color: var(--bs-btn-color);
}

.fill-amber-100 {
  color: rgb(254, 243, 199);
}

.stroke-amber-100 {
  color: rgb(254, 243, 199);
}

.accent-amber-100 {
  accent-color: rgb(254, 243, 199);
}

.bg-amber-100 {
  --bs-btn-active-bg: rgb(254, 243, 199);
  --bs-alert-bg: rgb(254, 243, 199);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-100 {
  --bs-border-color: rgb(254, 243, 199);
  --bs-alert-border: rgb(254, 243, 199);
  border-color: var(--bs-border-color);
}

.decoration-amber-100 {
  text-decoration-color: rgb(254, 243, 199);
}

.hover\:text-amber-100:hover {
  color: rgb(254, 243, 199);
}

.hover\:bg-amber-100:hover {
  --bs-btn-active-bg: rgb(254, 243, 199);
  --bs-alert-bg: rgb(254, 243, 199);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-100:hover {
  --bs-border-color: rgb(254, 243, 199);
  --bs-alert-border-color: rgb(254, 243, 199);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-100 {
  text-decoration-color: rgb(254, 243, 199);
}

.focus\:text-amber-100:focus {
  color: rgb(254, 243, 199);
}

.focus\:bg-amber-100:focus {
  --bs-btn-active-bg: rgb(254, 243, 199);
  --bs-alert-bg: rgb(254, 243, 199);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-100:focus {
  --bs-border-color: rgb(254, 243, 199);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-100 {
  text-decoration-color: rgb(254, 243, 199);
}

.active\:text-amber-100:active {
  color: rgb(254, 243, 199);
}

.active\:bg-amber-100:active {
  --bs-btn-active-bg: rgb(254, 243, 199);
  --bs-alert-bg: rgb(254, 243, 199);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-100:active {
  --bs-border-color: rgb(254, 243, 199);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-100:disabled {
  color: rgb(254, 243, 199);
}

.disabled\:bg-amber-100:disabled {
  --bs-btn-active-bg: rgb(254, 243, 199);
  --bs-alert-bg: rgb(254, 243, 199);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-100:disabled {
  --bs-border-color: rgb(254, 243, 199);
  border-color: var(--bs-border-color);
}

.text-amber-200 {
  --bs-alert-color: rgb(253, 230, 138);
  --bs-btn-color: rgb(253, 230, 138);
  color: var(--bs-btn-color);
}

.fill-amber-200 {
  color: rgb(253, 230, 138);
}

.stroke-amber-200 {
  color: rgb(253, 230, 138);
}

.accent-amber-200 {
  accent-color: rgb(253, 230, 138);
}

.bg-amber-200 {
  --bs-btn-active-bg: rgb(253, 230, 138);
  --bs-alert-bg: rgb(253, 230, 138);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-200 {
  --bs-border-color: rgb(253, 230, 138);
  --bs-alert-border: rgb(253, 230, 138);
  border-color: var(--bs-border-color);
}

.decoration-amber-200 {
  text-decoration-color: rgb(253, 230, 138);
}

.hover\:text-amber-200:hover {
  color: rgb(253, 230, 138);
}

.hover\:bg-amber-200:hover {
  --bs-btn-active-bg: rgb(253, 230, 138);
  --bs-alert-bg: rgb(253, 230, 138);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-200:hover {
  --bs-border-color: rgb(253, 230, 138);
  --bs-alert-border-color: rgb(253, 230, 138);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-200 {
  text-decoration-color: rgb(253, 230, 138);
}

.focus\:text-amber-200:focus {
  color: rgb(253, 230, 138);
}

.focus\:bg-amber-200:focus {
  --bs-btn-active-bg: rgb(253, 230, 138);
  --bs-alert-bg: rgb(253, 230, 138);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-200:focus {
  --bs-border-color: rgb(253, 230, 138);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-200 {
  text-decoration-color: rgb(253, 230, 138);
}

.active\:text-amber-200:active {
  color: rgb(253, 230, 138);
}

.active\:bg-amber-200:active {
  --bs-btn-active-bg: rgb(253, 230, 138);
  --bs-alert-bg: rgb(253, 230, 138);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-200:active {
  --bs-border-color: rgb(253, 230, 138);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-200:disabled {
  color: rgb(253, 230, 138);
}

.disabled\:bg-amber-200:disabled {
  --bs-btn-active-bg: rgb(253, 230, 138);
  --bs-alert-bg: rgb(253, 230, 138);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-200:disabled {
  --bs-border-color: rgb(253, 230, 138);
  border-color: var(--bs-border-color);
}

.text-amber-300 {
  --bs-alert-color: rgb(252, 211, 77);
  --bs-btn-color: rgb(252, 211, 77);
  color: var(--bs-btn-color);
}

.fill-amber-300 {
  color: rgb(252, 211, 77);
}

.stroke-amber-300 {
  color: rgb(252, 211, 77);
}

.accent-amber-300 {
  accent-color: rgb(252, 211, 77);
}

.bg-amber-300 {
  --bs-btn-active-bg: rgb(252, 211, 77);
  --bs-alert-bg: rgb(252, 211, 77);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-300 {
  --bs-border-color: rgb(252, 211, 77);
  --bs-alert-border: rgb(252, 211, 77);
  border-color: var(--bs-border-color);
}

.decoration-amber-300 {
  text-decoration-color: rgb(252, 211, 77);
}

.hover\:text-amber-300:hover {
  color: rgb(252, 211, 77);
}

.hover\:bg-amber-300:hover {
  --bs-btn-active-bg: rgb(252, 211, 77);
  --bs-alert-bg: rgb(252, 211, 77);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-300:hover {
  --bs-border-color: rgb(252, 211, 77);
  --bs-alert-border-color: rgb(252, 211, 77);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-300 {
  text-decoration-color: rgb(252, 211, 77);
}

.focus\:text-amber-300:focus {
  color: rgb(252, 211, 77);
}

.focus\:bg-amber-300:focus {
  --bs-btn-active-bg: rgb(252, 211, 77);
  --bs-alert-bg: rgb(252, 211, 77);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-300:focus {
  --bs-border-color: rgb(252, 211, 77);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-300 {
  text-decoration-color: rgb(252, 211, 77);
}

.active\:text-amber-300:active {
  color: rgb(252, 211, 77);
}

.active\:bg-amber-300:active {
  --bs-btn-active-bg: rgb(252, 211, 77);
  --bs-alert-bg: rgb(252, 211, 77);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-300:active {
  --bs-border-color: rgb(252, 211, 77);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-300:disabled {
  color: rgb(252, 211, 77);
}

.disabled\:bg-amber-300:disabled {
  --bs-btn-active-bg: rgb(252, 211, 77);
  --bs-alert-bg: rgb(252, 211, 77);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-300:disabled {
  --bs-border-color: rgb(252, 211, 77);
  border-color: var(--bs-border-color);
}

.text-amber-400 {
  --bs-alert-color: rgb(251, 191, 36);
  --bs-btn-color: rgb(251, 191, 36);
  color: var(--bs-btn-color);
}

.fill-amber-400 {
  color: rgb(251, 191, 36);
}

.stroke-amber-400 {
  color: rgb(251, 191, 36);
}

.accent-amber-400 {
  accent-color: rgb(251, 191, 36);
}

.bg-amber-400 {
  --bs-btn-active-bg: rgb(251, 191, 36);
  --bs-alert-bg: rgb(251, 191, 36);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-400 {
  --bs-border-color: rgb(251, 191, 36);
  --bs-alert-border: rgb(251, 191, 36);
  border-color: var(--bs-border-color);
}

.decoration-amber-400 {
  text-decoration-color: rgb(251, 191, 36);
}

.hover\:text-amber-400:hover {
  color: rgb(251, 191, 36);
}

.hover\:bg-amber-400:hover {
  --bs-btn-active-bg: rgb(251, 191, 36);
  --bs-alert-bg: rgb(251, 191, 36);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-400:hover {
  --bs-border-color: rgb(251, 191, 36);
  --bs-alert-border-color: rgb(251, 191, 36);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-400 {
  text-decoration-color: rgb(251, 191, 36);
}

.focus\:text-amber-400:focus {
  color: rgb(251, 191, 36);
}

.focus\:bg-amber-400:focus {
  --bs-btn-active-bg: rgb(251, 191, 36);
  --bs-alert-bg: rgb(251, 191, 36);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-400:focus {
  --bs-border-color: rgb(251, 191, 36);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-400 {
  text-decoration-color: rgb(251, 191, 36);
}

.active\:text-amber-400:active {
  color: rgb(251, 191, 36);
}

.active\:bg-amber-400:active {
  --bs-btn-active-bg: rgb(251, 191, 36);
  --bs-alert-bg: rgb(251, 191, 36);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-400:active {
  --bs-border-color: rgb(251, 191, 36);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-400:disabled {
  color: rgb(251, 191, 36);
}

.disabled\:bg-amber-400:disabled {
  --bs-btn-active-bg: rgb(251, 191, 36);
  --bs-alert-bg: rgb(251, 191, 36);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-400:disabled {
  --bs-border-color: rgb(251, 191, 36);
  border-color: var(--bs-border-color);
}

.text-amber-500 {
  --bs-alert-color: rgb(245, 158, 11);
  --bs-btn-color: rgb(245, 158, 11);
  color: var(--bs-btn-color);
}

.fill-amber-500 {
  color: rgb(245, 158, 11);
}

.stroke-amber-500 {
  color: rgb(245, 158, 11);
}

.accent-amber-500 {
  accent-color: rgb(245, 158, 11);
}

.bg-amber-500 {
  --bs-btn-active-bg: rgb(245, 158, 11);
  --bs-alert-bg: rgb(245, 158, 11);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-500 {
  --bs-border-color: rgb(245, 158, 11);
  --bs-alert-border: rgb(245, 158, 11);
  border-color: var(--bs-border-color);
}

.decoration-amber-500 {
  text-decoration-color: rgb(245, 158, 11);
}

.hover\:text-amber-500:hover {
  color: rgb(245, 158, 11);
}

.hover\:bg-amber-500:hover {
  --bs-btn-active-bg: rgb(245, 158, 11);
  --bs-alert-bg: rgb(245, 158, 11);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-500:hover {
  --bs-border-color: rgb(245, 158, 11);
  --bs-alert-border-color: rgb(245, 158, 11);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-500 {
  text-decoration-color: rgb(245, 158, 11);
}

.focus\:text-amber-500:focus {
  color: rgb(245, 158, 11);
}

.focus\:bg-amber-500:focus {
  --bs-btn-active-bg: rgb(245, 158, 11);
  --bs-alert-bg: rgb(245, 158, 11);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-500:focus {
  --bs-border-color: rgb(245, 158, 11);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-500 {
  text-decoration-color: rgb(245, 158, 11);
}

.active\:text-amber-500:active {
  color: rgb(245, 158, 11);
}

.active\:bg-amber-500:active {
  --bs-btn-active-bg: rgb(245, 158, 11);
  --bs-alert-bg: rgb(245, 158, 11);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-500:active {
  --bs-border-color: rgb(245, 158, 11);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-500:disabled {
  color: rgb(245, 158, 11);
}

.disabled\:bg-amber-500:disabled {
  --bs-btn-active-bg: rgb(245, 158, 11);
  --bs-alert-bg: rgb(245, 158, 11);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-500:disabled {
  --bs-border-color: rgb(245, 158, 11);
  border-color: var(--bs-border-color);
}

.text-amber-600 {
  --bs-alert-color: rgb(217, 119, 6);
  --bs-btn-color: rgb(217, 119, 6);
  color: var(--bs-btn-color);
}

.fill-amber-600 {
  color: rgb(217, 119, 6);
}

.stroke-amber-600 {
  color: rgb(217, 119, 6);
}

.accent-amber-600 {
  accent-color: rgb(217, 119, 6);
}

.bg-amber-600 {
  --bs-btn-active-bg: rgb(217, 119, 6);
  --bs-alert-bg: rgb(217, 119, 6);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-600 {
  --bs-border-color: rgb(217, 119, 6);
  --bs-alert-border: rgb(217, 119, 6);
  border-color: var(--bs-border-color);
}

.decoration-amber-600 {
  text-decoration-color: rgb(217, 119, 6);
}

.hover\:text-amber-600:hover {
  color: rgb(217, 119, 6);
}

.hover\:bg-amber-600:hover {
  --bs-btn-active-bg: rgb(217, 119, 6);
  --bs-alert-bg: rgb(217, 119, 6);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-600:hover {
  --bs-border-color: rgb(217, 119, 6);
  --bs-alert-border-color: rgb(217, 119, 6);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-600 {
  text-decoration-color: rgb(217, 119, 6);
}

.focus\:text-amber-600:focus {
  color: rgb(217, 119, 6);
}

.focus\:bg-amber-600:focus {
  --bs-btn-active-bg: rgb(217, 119, 6);
  --bs-alert-bg: rgb(217, 119, 6);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-600:focus {
  --bs-border-color: rgb(217, 119, 6);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-600 {
  text-decoration-color: rgb(217, 119, 6);
}

.active\:text-amber-600:active {
  color: rgb(217, 119, 6);
}

.active\:bg-amber-600:active {
  --bs-btn-active-bg: rgb(217, 119, 6);
  --bs-alert-bg: rgb(217, 119, 6);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-600:active {
  --bs-border-color: rgb(217, 119, 6);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-600:disabled {
  color: rgb(217, 119, 6);
}

.disabled\:bg-amber-600:disabled {
  --bs-btn-active-bg: rgb(217, 119, 6);
  --bs-alert-bg: rgb(217, 119, 6);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-600:disabled {
  --bs-border-color: rgb(217, 119, 6);
  border-color: var(--bs-border-color);
}

.text-amber-700 {
  --bs-alert-color: rgb(180, 83, 9);
  --bs-btn-color: rgb(180, 83, 9);
  color: var(--bs-btn-color);
}

.fill-amber-700 {
  color: rgb(180, 83, 9);
}

.stroke-amber-700 {
  color: rgb(180, 83, 9);
}

.accent-amber-700 {
  accent-color: rgb(180, 83, 9);
}

.bg-amber-700 {
  --bs-btn-active-bg: rgb(180, 83, 9);
  --bs-alert-bg: rgb(180, 83, 9);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-700 {
  --bs-border-color: rgb(180, 83, 9);
  --bs-alert-border: rgb(180, 83, 9);
  border-color: var(--bs-border-color);
}

.decoration-amber-700 {
  text-decoration-color: rgb(180, 83, 9);
}

.hover\:text-amber-700:hover {
  color: rgb(180, 83, 9);
}

.hover\:bg-amber-700:hover {
  --bs-btn-active-bg: rgb(180, 83, 9);
  --bs-alert-bg: rgb(180, 83, 9);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-700:hover {
  --bs-border-color: rgb(180, 83, 9);
  --bs-alert-border-color: rgb(180, 83, 9);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-700 {
  text-decoration-color: rgb(180, 83, 9);
}

.focus\:text-amber-700:focus {
  color: rgb(180, 83, 9);
}

.focus\:bg-amber-700:focus {
  --bs-btn-active-bg: rgb(180, 83, 9);
  --bs-alert-bg: rgb(180, 83, 9);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-700:focus {
  --bs-border-color: rgb(180, 83, 9);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-700 {
  text-decoration-color: rgb(180, 83, 9);
}

.active\:text-amber-700:active {
  color: rgb(180, 83, 9);
}

.active\:bg-amber-700:active {
  --bs-btn-active-bg: rgb(180, 83, 9);
  --bs-alert-bg: rgb(180, 83, 9);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-700:active {
  --bs-border-color: rgb(180, 83, 9);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-700:disabled {
  color: rgb(180, 83, 9);
}

.disabled\:bg-amber-700:disabled {
  --bs-btn-active-bg: rgb(180, 83, 9);
  --bs-alert-bg: rgb(180, 83, 9);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-700:disabled {
  --bs-border-color: rgb(180, 83, 9);
  border-color: var(--bs-border-color);
}

.text-amber-800 {
  --bs-alert-color: rgb(146, 64, 14);
  --bs-btn-color: rgb(146, 64, 14);
  color: var(--bs-btn-color);
}

.fill-amber-800 {
  color: rgb(146, 64, 14);
}

.stroke-amber-800 {
  color: rgb(146, 64, 14);
}

.accent-amber-800 {
  accent-color: rgb(146, 64, 14);
}

.bg-amber-800 {
  --bs-btn-active-bg: rgb(146, 64, 14);
  --bs-alert-bg: rgb(146, 64, 14);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-800 {
  --bs-border-color: rgb(146, 64, 14);
  --bs-alert-border: rgb(146, 64, 14);
  border-color: var(--bs-border-color);
}

.decoration-amber-800 {
  text-decoration-color: rgb(146, 64, 14);
}

.hover\:text-amber-800:hover {
  color: rgb(146, 64, 14);
}

.hover\:bg-amber-800:hover {
  --bs-btn-active-bg: rgb(146, 64, 14);
  --bs-alert-bg: rgb(146, 64, 14);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-800:hover {
  --bs-border-color: rgb(146, 64, 14);
  --bs-alert-border-color: rgb(146, 64, 14);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-800 {
  text-decoration-color: rgb(146, 64, 14);
}

.focus\:text-amber-800:focus {
  color: rgb(146, 64, 14);
}

.focus\:bg-amber-800:focus {
  --bs-btn-active-bg: rgb(146, 64, 14);
  --bs-alert-bg: rgb(146, 64, 14);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-800:focus {
  --bs-border-color: rgb(146, 64, 14);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-800 {
  text-decoration-color: rgb(146, 64, 14);
}

.active\:text-amber-800:active {
  color: rgb(146, 64, 14);
}

.active\:bg-amber-800:active {
  --bs-btn-active-bg: rgb(146, 64, 14);
  --bs-alert-bg: rgb(146, 64, 14);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-800:active {
  --bs-border-color: rgb(146, 64, 14);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-800:disabled {
  color: rgb(146, 64, 14);
}

.disabled\:bg-amber-800:disabled {
  --bs-btn-active-bg: rgb(146, 64, 14);
  --bs-alert-bg: rgb(146, 64, 14);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-800:disabled {
  --bs-border-color: rgb(146, 64, 14);
  border-color: var(--bs-border-color);
}

.text-amber-900 {
  --bs-alert-color: rgb(120, 53, 15);
  --bs-btn-color: rgb(120, 53, 15);
  color: var(--bs-btn-color);
}

.fill-amber-900 {
  color: rgb(120, 53, 15);
}

.stroke-amber-900 {
  color: rgb(120, 53, 15);
}

.accent-amber-900 {
  accent-color: rgb(120, 53, 15);
}

.bg-amber-900 {
  --bs-btn-active-bg: rgb(120, 53, 15);
  --bs-alert-bg: rgb(120, 53, 15);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-900 {
  --bs-border-color: rgb(120, 53, 15);
  --bs-alert-border: rgb(120, 53, 15);
  border-color: var(--bs-border-color);
}

.decoration-amber-900 {
  text-decoration-color: rgb(120, 53, 15);
}

.hover\:text-amber-900:hover {
  color: rgb(120, 53, 15);
}

.hover\:bg-amber-900:hover {
  --bs-btn-active-bg: rgb(120, 53, 15);
  --bs-alert-bg: rgb(120, 53, 15);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-900:hover {
  --bs-border-color: rgb(120, 53, 15);
  --bs-alert-border-color: rgb(120, 53, 15);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-900 {
  text-decoration-color: rgb(120, 53, 15);
}

.focus\:text-amber-900:focus {
  color: rgb(120, 53, 15);
}

.focus\:bg-amber-900:focus {
  --bs-btn-active-bg: rgb(120, 53, 15);
  --bs-alert-bg: rgb(120, 53, 15);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-900:focus {
  --bs-border-color: rgb(120, 53, 15);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-900 {
  text-decoration-color: rgb(120, 53, 15);
}

.active\:text-amber-900:active {
  color: rgb(120, 53, 15);
}

.active\:bg-amber-900:active {
  --bs-btn-active-bg: rgb(120, 53, 15);
  --bs-alert-bg: rgb(120, 53, 15);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-900:active {
  --bs-border-color: rgb(120, 53, 15);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-900:disabled {
  color: rgb(120, 53, 15);
}

.disabled\:bg-amber-900:disabled {
  --bs-btn-active-bg: rgb(120, 53, 15);
  --bs-alert-bg: rgb(120, 53, 15);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-900:disabled {
  --bs-border-color: rgb(120, 53, 15);
  border-color: var(--bs-border-color);
}

.text-amber-950 {
  --bs-alert-color: rgb(69, 26, 3);
  --bs-btn-color: rgb(69, 26, 3);
  color: var(--bs-btn-color);
}

.fill-amber-950 {
  color: rgb(69, 26, 3);
}

.stroke-amber-950 {
  color: rgb(69, 26, 3);
}

.accent-amber-950 {
  accent-color: rgb(69, 26, 3);
}

.bg-amber-950 {
  --bs-btn-active-bg: rgb(69, 26, 3);
  --bs-alert-bg: rgb(69, 26, 3);
  background-color: var(--bs-btn-active-bg);
}

.border-amber-950 {
  --bs-border-color: rgb(69, 26, 3);
  --bs-alert-border: rgb(69, 26, 3);
  border-color: var(--bs-border-color);
}

.decoration-amber-950 {
  text-decoration-color: rgb(69, 26, 3);
}

.hover\:text-amber-950:hover {
  color: rgb(69, 26, 3);
}

.hover\:bg-amber-950:hover {
  --bs-btn-active-bg: rgb(69, 26, 3);
  --bs-alert-bg: rgb(69, 26, 3);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-amber-950:hover {
  --bs-border-color: rgb(69, 26, 3);
  --bs-alert-border-color: rgb(69, 26, 3);
  border-color: var(--bs-border-color);
}

.hover\:decoration-amber-950 {
  text-decoration-color: rgb(69, 26, 3);
}

.focus\:text-amber-950:focus {
  color: rgb(69, 26, 3);
}

.focus\:bg-amber-950:focus {
  --bs-btn-active-bg: rgb(69, 26, 3);
  --bs-alert-bg: rgb(69, 26, 3);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-amber-950:focus {
  --bs-border-color: rgb(69, 26, 3);
  border-color: var(--bs-border-color);
}

.focus\:decoration-amber-950 {
  text-decoration-color: rgb(69, 26, 3);
}

.active\:text-amber-950:active {
  color: rgb(69, 26, 3);
}

.active\:bg-amber-950:active {
  --bs-btn-active-bg: rgb(69, 26, 3);
  --bs-alert-bg: rgb(69, 26, 3);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-amber-950:active {
  --bs-border-color: rgb(69, 26, 3);
  border-color: var(--bs-border-color);
}

.disabled\:text-amber-950:disabled {
  color: rgb(69, 26, 3);
}

.disabled\:bg-amber-950:disabled {
  --bs-btn-active-bg: rgb(69, 26, 3);
  --bs-alert-bg: rgb(69, 26, 3);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-amber-950:disabled {
  --bs-border-color: rgb(69, 26, 3);
  border-color: var(--bs-border-color);
}

.text-yellow-50 {
  --bs-alert-color: rgb(254, 252, 232);
  --bs-btn-color: rgb(254, 252, 232);
  color: var(--bs-btn-color);
}

.fill-yellow-50 {
  color: rgb(254, 252, 232);
}

.stroke-yellow-50 {
  color: rgb(254, 252, 232);
}

.accent-yellow-50 {
  accent-color: rgb(254, 252, 232);
}

.bg-yellow-50 {
  --bs-btn-active-bg: rgb(254, 252, 232);
  --bs-alert-bg: rgb(254, 252, 232);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-50 {
  --bs-border-color: rgb(254, 252, 232);
  --bs-alert-border: rgb(254, 252, 232);
  border-color: var(--bs-border-color);
}

.decoration-yellow-50 {
  text-decoration-color: rgb(254, 252, 232);
}

.hover\:text-yellow-50:hover {
  color: rgb(254, 252, 232);
}

.hover\:bg-yellow-50:hover {
  --bs-btn-active-bg: rgb(254, 252, 232);
  --bs-alert-bg: rgb(254, 252, 232);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-50:hover {
  --bs-border-color: rgb(254, 252, 232);
  --bs-alert-border-color: rgb(254, 252, 232);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-50 {
  text-decoration-color: rgb(254, 252, 232);
}

.focus\:text-yellow-50:focus {
  color: rgb(254, 252, 232);
}

.focus\:bg-yellow-50:focus {
  --bs-btn-active-bg: rgb(254, 252, 232);
  --bs-alert-bg: rgb(254, 252, 232);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-50:focus {
  --bs-border-color: rgb(254, 252, 232);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-50 {
  text-decoration-color: rgb(254, 252, 232);
}

.active\:text-yellow-50:active {
  color: rgb(254, 252, 232);
}

.active\:bg-yellow-50:active {
  --bs-btn-active-bg: rgb(254, 252, 232);
  --bs-alert-bg: rgb(254, 252, 232);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-50:active {
  --bs-border-color: rgb(254, 252, 232);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-50:disabled {
  color: rgb(254, 252, 232);
}

.disabled\:bg-yellow-50:disabled {
  --bs-btn-active-bg: rgb(254, 252, 232);
  --bs-alert-bg: rgb(254, 252, 232);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-50:disabled {
  --bs-border-color: rgb(254, 252, 232);
  border-color: var(--bs-border-color);
}

.text-yellow-100 {
  --bs-alert-color: rgb(254, 249, 195);
  --bs-btn-color: rgb(254, 249, 195);
  color: var(--bs-btn-color);
}

.fill-yellow-100 {
  color: rgb(254, 249, 195);
}

.stroke-yellow-100 {
  color: rgb(254, 249, 195);
}

.accent-yellow-100 {
  accent-color: rgb(254, 249, 195);
}

.bg-yellow-100 {
  --bs-btn-active-bg: rgb(254, 249, 195);
  --bs-alert-bg: rgb(254, 249, 195);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-100 {
  --bs-border-color: rgb(254, 249, 195);
  --bs-alert-border: rgb(254, 249, 195);
  border-color: var(--bs-border-color);
}

.decoration-yellow-100 {
  text-decoration-color: rgb(254, 249, 195);
}

.hover\:text-yellow-100:hover {
  color: rgb(254, 249, 195);
}

.hover\:bg-yellow-100:hover {
  --bs-btn-active-bg: rgb(254, 249, 195);
  --bs-alert-bg: rgb(254, 249, 195);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-100:hover {
  --bs-border-color: rgb(254, 249, 195);
  --bs-alert-border-color: rgb(254, 249, 195);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-100 {
  text-decoration-color: rgb(254, 249, 195);
}

.focus\:text-yellow-100:focus {
  color: rgb(254, 249, 195);
}

.focus\:bg-yellow-100:focus {
  --bs-btn-active-bg: rgb(254, 249, 195);
  --bs-alert-bg: rgb(254, 249, 195);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-100:focus {
  --bs-border-color: rgb(254, 249, 195);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-100 {
  text-decoration-color: rgb(254, 249, 195);
}

.active\:text-yellow-100:active {
  color: rgb(254, 249, 195);
}

.active\:bg-yellow-100:active {
  --bs-btn-active-bg: rgb(254, 249, 195);
  --bs-alert-bg: rgb(254, 249, 195);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-100:active {
  --bs-border-color: rgb(254, 249, 195);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-100:disabled {
  color: rgb(254, 249, 195);
}

.disabled\:bg-yellow-100:disabled {
  --bs-btn-active-bg: rgb(254, 249, 195);
  --bs-alert-bg: rgb(254, 249, 195);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-100:disabled {
  --bs-border-color: rgb(254, 249, 195);
  border-color: var(--bs-border-color);
}

.text-yellow-200 {
  --bs-alert-color: rgb(254, 240, 138);
  --bs-btn-color: rgb(254, 240, 138);
  color: var(--bs-btn-color);
}

.fill-yellow-200 {
  color: rgb(254, 240, 138);
}

.stroke-yellow-200 {
  color: rgb(254, 240, 138);
}

.accent-yellow-200 {
  accent-color: rgb(254, 240, 138);
}

.bg-yellow-200 {
  --bs-btn-active-bg: rgb(254, 240, 138);
  --bs-alert-bg: rgb(254, 240, 138);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-200 {
  --bs-border-color: rgb(254, 240, 138);
  --bs-alert-border: rgb(254, 240, 138);
  border-color: var(--bs-border-color);
}

.decoration-yellow-200 {
  text-decoration-color: rgb(254, 240, 138);
}

.hover\:text-yellow-200:hover {
  color: rgb(254, 240, 138);
}

.hover\:bg-yellow-200:hover {
  --bs-btn-active-bg: rgb(254, 240, 138);
  --bs-alert-bg: rgb(254, 240, 138);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-200:hover {
  --bs-border-color: rgb(254, 240, 138);
  --bs-alert-border-color: rgb(254, 240, 138);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-200 {
  text-decoration-color: rgb(254, 240, 138);
}

.focus\:text-yellow-200:focus {
  color: rgb(254, 240, 138);
}

.focus\:bg-yellow-200:focus {
  --bs-btn-active-bg: rgb(254, 240, 138);
  --bs-alert-bg: rgb(254, 240, 138);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-200:focus {
  --bs-border-color: rgb(254, 240, 138);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-200 {
  text-decoration-color: rgb(254, 240, 138);
}

.active\:text-yellow-200:active {
  color: rgb(254, 240, 138);
}

.active\:bg-yellow-200:active {
  --bs-btn-active-bg: rgb(254, 240, 138);
  --bs-alert-bg: rgb(254, 240, 138);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-200:active {
  --bs-border-color: rgb(254, 240, 138);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-200:disabled {
  color: rgb(254, 240, 138);
}

.disabled\:bg-yellow-200:disabled {
  --bs-btn-active-bg: rgb(254, 240, 138);
  --bs-alert-bg: rgb(254, 240, 138);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-200:disabled {
  --bs-border-color: rgb(254, 240, 138);
  border-color: var(--bs-border-color);
}

.text-yellow-300 {
  --bs-alert-color: rgb(253, 224, 71);
  --bs-btn-color: rgb(253, 224, 71);
  color: var(--bs-btn-color);
}

.fill-yellow-300 {
  color: rgb(253, 224, 71);
}

.stroke-yellow-300 {
  color: rgb(253, 224, 71);
}

.accent-yellow-300 {
  accent-color: rgb(253, 224, 71);
}

.bg-yellow-300 {
  --bs-btn-active-bg: rgb(253, 224, 71);
  --bs-alert-bg: rgb(253, 224, 71);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-300 {
  --bs-border-color: rgb(253, 224, 71);
  --bs-alert-border: rgb(253, 224, 71);
  border-color: var(--bs-border-color);
}

.decoration-yellow-300 {
  text-decoration-color: rgb(253, 224, 71);
}

.hover\:text-yellow-300:hover {
  color: rgb(253, 224, 71);
}

.hover\:bg-yellow-300:hover {
  --bs-btn-active-bg: rgb(253, 224, 71);
  --bs-alert-bg: rgb(253, 224, 71);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-300:hover {
  --bs-border-color: rgb(253, 224, 71);
  --bs-alert-border-color: rgb(253, 224, 71);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-300 {
  text-decoration-color: rgb(253, 224, 71);
}

.focus\:text-yellow-300:focus {
  color: rgb(253, 224, 71);
}

.focus\:bg-yellow-300:focus {
  --bs-btn-active-bg: rgb(253, 224, 71);
  --bs-alert-bg: rgb(253, 224, 71);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-300:focus {
  --bs-border-color: rgb(253, 224, 71);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-300 {
  text-decoration-color: rgb(253, 224, 71);
}

.active\:text-yellow-300:active {
  color: rgb(253, 224, 71);
}

.active\:bg-yellow-300:active {
  --bs-btn-active-bg: rgb(253, 224, 71);
  --bs-alert-bg: rgb(253, 224, 71);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-300:active {
  --bs-border-color: rgb(253, 224, 71);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-300:disabled {
  color: rgb(253, 224, 71);
}

.disabled\:bg-yellow-300:disabled {
  --bs-btn-active-bg: rgb(253, 224, 71);
  --bs-alert-bg: rgb(253, 224, 71);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-300:disabled {
  --bs-border-color: rgb(253, 224, 71);
  border-color: var(--bs-border-color);
}

.text-yellow-400 {
  --bs-alert-color: rgb(250, 204, 21);
  --bs-btn-color: rgb(250, 204, 21);
  color: var(--bs-btn-color);
}

.fill-yellow-400 {
  color: rgb(250, 204, 21);
}

.stroke-yellow-400 {
  color: rgb(250, 204, 21);
}

.accent-yellow-400 {
  accent-color: rgb(250, 204, 21);
}

.bg-yellow-400 {
  --bs-btn-active-bg: rgb(250, 204, 21);
  --bs-alert-bg: rgb(250, 204, 21);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-400 {
  --bs-border-color: rgb(250, 204, 21);
  --bs-alert-border: rgb(250, 204, 21);
  border-color: var(--bs-border-color);
}

.decoration-yellow-400 {
  text-decoration-color: rgb(250, 204, 21);
}

.hover\:text-yellow-400:hover {
  color: rgb(250, 204, 21);
}

.hover\:bg-yellow-400:hover {
  --bs-btn-active-bg: rgb(250, 204, 21);
  --bs-alert-bg: rgb(250, 204, 21);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-400:hover {
  --bs-border-color: rgb(250, 204, 21);
  --bs-alert-border-color: rgb(250, 204, 21);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-400 {
  text-decoration-color: rgb(250, 204, 21);
}

.focus\:text-yellow-400:focus {
  color: rgb(250, 204, 21);
}

.focus\:bg-yellow-400:focus {
  --bs-btn-active-bg: rgb(250, 204, 21);
  --bs-alert-bg: rgb(250, 204, 21);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-400:focus {
  --bs-border-color: rgb(250, 204, 21);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-400 {
  text-decoration-color: rgb(250, 204, 21);
}

.active\:text-yellow-400:active {
  color: rgb(250, 204, 21);
}

.active\:bg-yellow-400:active {
  --bs-btn-active-bg: rgb(250, 204, 21);
  --bs-alert-bg: rgb(250, 204, 21);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-400:active {
  --bs-border-color: rgb(250, 204, 21);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-400:disabled {
  color: rgb(250, 204, 21);
}

.disabled\:bg-yellow-400:disabled {
  --bs-btn-active-bg: rgb(250, 204, 21);
  --bs-alert-bg: rgb(250, 204, 21);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-400:disabled {
  --bs-border-color: rgb(250, 204, 21);
  border-color: var(--bs-border-color);
}

.text-yellow-500 {
  --bs-alert-color: rgb(234, 179, 8);
  --bs-btn-color: rgb(234, 179, 8);
  color: var(--bs-btn-color);
}

.fill-yellow-500 {
  color: rgb(234, 179, 8);
}

.stroke-yellow-500 {
  color: rgb(234, 179, 8);
}

.accent-yellow-500 {
  accent-color: rgb(234, 179, 8);
}

.bg-yellow-500 {
  --bs-btn-active-bg: rgb(234, 179, 8);
  --bs-alert-bg: rgb(234, 179, 8);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-500 {
  --bs-border-color: rgb(234, 179, 8);
  --bs-alert-border: rgb(234, 179, 8);
  border-color: var(--bs-border-color);
}

.decoration-yellow-500 {
  text-decoration-color: rgb(234, 179, 8);
}

.hover\:text-yellow-500:hover {
  color: rgb(234, 179, 8);
}

.hover\:bg-yellow-500:hover {
  --bs-btn-active-bg: rgb(234, 179, 8);
  --bs-alert-bg: rgb(234, 179, 8);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-500:hover {
  --bs-border-color: rgb(234, 179, 8);
  --bs-alert-border-color: rgb(234, 179, 8);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-500 {
  text-decoration-color: rgb(234, 179, 8);
}

.focus\:text-yellow-500:focus {
  color: rgb(234, 179, 8);
}

.focus\:bg-yellow-500:focus {
  --bs-btn-active-bg: rgb(234, 179, 8);
  --bs-alert-bg: rgb(234, 179, 8);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-500:focus {
  --bs-border-color: rgb(234, 179, 8);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-500 {
  text-decoration-color: rgb(234, 179, 8);
}

.active\:text-yellow-500:active {
  color: rgb(234, 179, 8);
}

.active\:bg-yellow-500:active {
  --bs-btn-active-bg: rgb(234, 179, 8);
  --bs-alert-bg: rgb(234, 179, 8);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-500:active {
  --bs-border-color: rgb(234, 179, 8);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-500:disabled {
  color: rgb(234, 179, 8);
}

.disabled\:bg-yellow-500:disabled {
  --bs-btn-active-bg: rgb(234, 179, 8);
  --bs-alert-bg: rgb(234, 179, 8);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-500:disabled {
  --bs-border-color: rgb(234, 179, 8);
  border-color: var(--bs-border-color);
}

.text-yellow-600 {
  --bs-alert-color: rgb(202, 138, 4);
  --bs-btn-color: rgb(202, 138, 4);
  color: var(--bs-btn-color);
}

.fill-yellow-600 {
  color: rgb(202, 138, 4);
}

.stroke-yellow-600 {
  color: rgb(202, 138, 4);
}

.accent-yellow-600 {
  accent-color: rgb(202, 138, 4);
}

.bg-yellow-600 {
  --bs-btn-active-bg: rgb(202, 138, 4);
  --bs-alert-bg: rgb(202, 138, 4);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-600 {
  --bs-border-color: rgb(202, 138, 4);
  --bs-alert-border: rgb(202, 138, 4);
  border-color: var(--bs-border-color);
}

.decoration-yellow-600 {
  text-decoration-color: rgb(202, 138, 4);
}

.hover\:text-yellow-600:hover {
  color: rgb(202, 138, 4);
}

.hover\:bg-yellow-600:hover {
  --bs-btn-active-bg: rgb(202, 138, 4);
  --bs-alert-bg: rgb(202, 138, 4);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-600:hover {
  --bs-border-color: rgb(202, 138, 4);
  --bs-alert-border-color: rgb(202, 138, 4);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-600 {
  text-decoration-color: rgb(202, 138, 4);
}

.focus\:text-yellow-600:focus {
  color: rgb(202, 138, 4);
}

.focus\:bg-yellow-600:focus {
  --bs-btn-active-bg: rgb(202, 138, 4);
  --bs-alert-bg: rgb(202, 138, 4);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-600:focus {
  --bs-border-color: rgb(202, 138, 4);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-600 {
  text-decoration-color: rgb(202, 138, 4);
}

.active\:text-yellow-600:active {
  color: rgb(202, 138, 4);
}

.active\:bg-yellow-600:active {
  --bs-btn-active-bg: rgb(202, 138, 4);
  --bs-alert-bg: rgb(202, 138, 4);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-600:active {
  --bs-border-color: rgb(202, 138, 4);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-600:disabled {
  color: rgb(202, 138, 4);
}

.disabled\:bg-yellow-600:disabled {
  --bs-btn-active-bg: rgb(202, 138, 4);
  --bs-alert-bg: rgb(202, 138, 4);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-600:disabled {
  --bs-border-color: rgb(202, 138, 4);
  border-color: var(--bs-border-color);
}

.text-yellow-700 {
  --bs-alert-color: rgb(161, 98, 7);
  --bs-btn-color: rgb(161, 98, 7);
  color: var(--bs-btn-color);
}

.fill-yellow-700 {
  color: rgb(161, 98, 7);
}

.stroke-yellow-700 {
  color: rgb(161, 98, 7);
}

.accent-yellow-700 {
  accent-color: rgb(161, 98, 7);
}

.bg-yellow-700 {
  --bs-btn-active-bg: rgb(161, 98, 7);
  --bs-alert-bg: rgb(161, 98, 7);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-700 {
  --bs-border-color: rgb(161, 98, 7);
  --bs-alert-border: rgb(161, 98, 7);
  border-color: var(--bs-border-color);
}

.decoration-yellow-700 {
  text-decoration-color: rgb(161, 98, 7);
}

.hover\:text-yellow-700:hover {
  color: rgb(161, 98, 7);
}

.hover\:bg-yellow-700:hover {
  --bs-btn-active-bg: rgb(161, 98, 7);
  --bs-alert-bg: rgb(161, 98, 7);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-700:hover {
  --bs-border-color: rgb(161, 98, 7);
  --bs-alert-border-color: rgb(161, 98, 7);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-700 {
  text-decoration-color: rgb(161, 98, 7);
}

.focus\:text-yellow-700:focus {
  color: rgb(161, 98, 7);
}

.focus\:bg-yellow-700:focus {
  --bs-btn-active-bg: rgb(161, 98, 7);
  --bs-alert-bg: rgb(161, 98, 7);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-700:focus {
  --bs-border-color: rgb(161, 98, 7);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-700 {
  text-decoration-color: rgb(161, 98, 7);
}

.active\:text-yellow-700:active {
  color: rgb(161, 98, 7);
}

.active\:bg-yellow-700:active {
  --bs-btn-active-bg: rgb(161, 98, 7);
  --bs-alert-bg: rgb(161, 98, 7);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-700:active {
  --bs-border-color: rgb(161, 98, 7);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-700:disabled {
  color: rgb(161, 98, 7);
}

.disabled\:bg-yellow-700:disabled {
  --bs-btn-active-bg: rgb(161, 98, 7);
  --bs-alert-bg: rgb(161, 98, 7);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-700:disabled {
  --bs-border-color: rgb(161, 98, 7);
  border-color: var(--bs-border-color);
}

.text-yellow-800 {
  --bs-alert-color: rgb(133, 77, 14);
  --bs-btn-color: rgb(133, 77, 14);
  color: var(--bs-btn-color);
}

.fill-yellow-800 {
  color: rgb(133, 77, 14);
}

.stroke-yellow-800 {
  color: rgb(133, 77, 14);
}

.accent-yellow-800 {
  accent-color: rgb(133, 77, 14);
}

.bg-yellow-800 {
  --bs-btn-active-bg: rgb(133, 77, 14);
  --bs-alert-bg: rgb(133, 77, 14);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-800 {
  --bs-border-color: rgb(133, 77, 14);
  --bs-alert-border: rgb(133, 77, 14);
  border-color: var(--bs-border-color);
}

.decoration-yellow-800 {
  text-decoration-color: rgb(133, 77, 14);
}

.hover\:text-yellow-800:hover {
  color: rgb(133, 77, 14);
}

.hover\:bg-yellow-800:hover {
  --bs-btn-active-bg: rgb(133, 77, 14);
  --bs-alert-bg: rgb(133, 77, 14);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-800:hover {
  --bs-border-color: rgb(133, 77, 14);
  --bs-alert-border-color: rgb(133, 77, 14);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-800 {
  text-decoration-color: rgb(133, 77, 14);
}

.focus\:text-yellow-800:focus {
  color: rgb(133, 77, 14);
}

.focus\:bg-yellow-800:focus {
  --bs-btn-active-bg: rgb(133, 77, 14);
  --bs-alert-bg: rgb(133, 77, 14);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-800:focus {
  --bs-border-color: rgb(133, 77, 14);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-800 {
  text-decoration-color: rgb(133, 77, 14);
}

.active\:text-yellow-800:active {
  color: rgb(133, 77, 14);
}

.active\:bg-yellow-800:active {
  --bs-btn-active-bg: rgb(133, 77, 14);
  --bs-alert-bg: rgb(133, 77, 14);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-800:active {
  --bs-border-color: rgb(133, 77, 14);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-800:disabled {
  color: rgb(133, 77, 14);
}

.disabled\:bg-yellow-800:disabled {
  --bs-btn-active-bg: rgb(133, 77, 14);
  --bs-alert-bg: rgb(133, 77, 14);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-800:disabled {
  --bs-border-color: rgb(133, 77, 14);
  border-color: var(--bs-border-color);
}

.text-yellow-900 {
  --bs-alert-color: rgb(113, 63, 18);
  --bs-btn-color: rgb(113, 63, 18);
  color: var(--bs-btn-color);
}

.fill-yellow-900 {
  color: rgb(113, 63, 18);
}

.stroke-yellow-900 {
  color: rgb(113, 63, 18);
}

.accent-yellow-900 {
  accent-color: rgb(113, 63, 18);
}

.bg-yellow-900 {
  --bs-btn-active-bg: rgb(113, 63, 18);
  --bs-alert-bg: rgb(113, 63, 18);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-900 {
  --bs-border-color: rgb(113, 63, 18);
  --bs-alert-border: rgb(113, 63, 18);
  border-color: var(--bs-border-color);
}

.decoration-yellow-900 {
  text-decoration-color: rgb(113, 63, 18);
}

.hover\:text-yellow-900:hover {
  color: rgb(113, 63, 18);
}

.hover\:bg-yellow-900:hover {
  --bs-btn-active-bg: rgb(113, 63, 18);
  --bs-alert-bg: rgb(113, 63, 18);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-900:hover {
  --bs-border-color: rgb(113, 63, 18);
  --bs-alert-border-color: rgb(113, 63, 18);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-900 {
  text-decoration-color: rgb(113, 63, 18);
}

.focus\:text-yellow-900:focus {
  color: rgb(113, 63, 18);
}

.focus\:bg-yellow-900:focus {
  --bs-btn-active-bg: rgb(113, 63, 18);
  --bs-alert-bg: rgb(113, 63, 18);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-900:focus {
  --bs-border-color: rgb(113, 63, 18);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-900 {
  text-decoration-color: rgb(113, 63, 18);
}

.active\:text-yellow-900:active {
  color: rgb(113, 63, 18);
}

.active\:bg-yellow-900:active {
  --bs-btn-active-bg: rgb(113, 63, 18);
  --bs-alert-bg: rgb(113, 63, 18);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-900:active {
  --bs-border-color: rgb(113, 63, 18);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-900:disabled {
  color: rgb(113, 63, 18);
}

.disabled\:bg-yellow-900:disabled {
  --bs-btn-active-bg: rgb(113, 63, 18);
  --bs-alert-bg: rgb(113, 63, 18);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-900:disabled {
  --bs-border-color: rgb(113, 63, 18);
  border-color: var(--bs-border-color);
}

.text-yellow-950 {
  --bs-alert-color: rgb(66, 32, 6);
  --bs-btn-color: rgb(66, 32, 6);
  color: var(--bs-btn-color);
}

.fill-yellow-950 {
  color: rgb(66, 32, 6);
}

.stroke-yellow-950 {
  color: rgb(66, 32, 6);
}

.accent-yellow-950 {
  accent-color: rgb(66, 32, 6);
}

.bg-yellow-950 {
  --bs-btn-active-bg: rgb(66, 32, 6);
  --bs-alert-bg: rgb(66, 32, 6);
  background-color: var(--bs-btn-active-bg);
}

.border-yellow-950 {
  --bs-border-color: rgb(66, 32, 6);
  --bs-alert-border: rgb(66, 32, 6);
  border-color: var(--bs-border-color);
}

.decoration-yellow-950 {
  text-decoration-color: rgb(66, 32, 6);
}

.hover\:text-yellow-950:hover {
  color: rgb(66, 32, 6);
}

.hover\:bg-yellow-950:hover {
  --bs-btn-active-bg: rgb(66, 32, 6);
  --bs-alert-bg: rgb(66, 32, 6);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-yellow-950:hover {
  --bs-border-color: rgb(66, 32, 6);
  --bs-alert-border-color: rgb(66, 32, 6);
  border-color: var(--bs-border-color);
}

.hover\:decoration-yellow-950 {
  text-decoration-color: rgb(66, 32, 6);
}

.focus\:text-yellow-950:focus {
  color: rgb(66, 32, 6);
}

.focus\:bg-yellow-950:focus {
  --bs-btn-active-bg: rgb(66, 32, 6);
  --bs-alert-bg: rgb(66, 32, 6);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-yellow-950:focus {
  --bs-border-color: rgb(66, 32, 6);
  border-color: var(--bs-border-color);
}

.focus\:decoration-yellow-950 {
  text-decoration-color: rgb(66, 32, 6);
}

.active\:text-yellow-950:active {
  color: rgb(66, 32, 6);
}

.active\:bg-yellow-950:active {
  --bs-btn-active-bg: rgb(66, 32, 6);
  --bs-alert-bg: rgb(66, 32, 6);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-yellow-950:active {
  --bs-border-color: rgb(66, 32, 6);
  border-color: var(--bs-border-color);
}

.disabled\:text-yellow-950:disabled {
  color: rgb(66, 32, 6);
}

.disabled\:bg-yellow-950:disabled {
  --bs-btn-active-bg: rgb(66, 32, 6);
  --bs-alert-bg: rgb(66, 32, 6);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-yellow-950:disabled {
  --bs-border-color: rgb(66, 32, 6);
  border-color: var(--bs-border-color);
}

.text-lime-50 {
  --bs-alert-color: rgb(247, 254, 231);
  --bs-btn-color: rgb(247, 254, 231);
  color: var(--bs-btn-color);
}

.fill-lime-50 {
  color: rgb(247, 254, 231);
}

.stroke-lime-50 {
  color: rgb(247, 254, 231);
}

.accent-lime-50 {
  accent-color: rgb(247, 254, 231);
}

.bg-lime-50 {
  --bs-btn-active-bg: rgb(247, 254, 231);
  --bs-alert-bg: rgb(247, 254, 231);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-50 {
  --bs-border-color: rgb(247, 254, 231);
  --bs-alert-border: rgb(247, 254, 231);
  border-color: var(--bs-border-color);
}

.decoration-lime-50 {
  text-decoration-color: rgb(247, 254, 231);
}

.hover\:text-lime-50:hover {
  color: rgb(247, 254, 231);
}

.hover\:bg-lime-50:hover {
  --bs-btn-active-bg: rgb(247, 254, 231);
  --bs-alert-bg: rgb(247, 254, 231);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-50:hover {
  --bs-border-color: rgb(247, 254, 231);
  --bs-alert-border-color: rgb(247, 254, 231);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-50 {
  text-decoration-color: rgb(247, 254, 231);
}

.focus\:text-lime-50:focus {
  color: rgb(247, 254, 231);
}

.focus\:bg-lime-50:focus {
  --bs-btn-active-bg: rgb(247, 254, 231);
  --bs-alert-bg: rgb(247, 254, 231);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-50:focus {
  --bs-border-color: rgb(247, 254, 231);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-50 {
  text-decoration-color: rgb(247, 254, 231);
}

.active\:text-lime-50:active {
  color: rgb(247, 254, 231);
}

.active\:bg-lime-50:active {
  --bs-btn-active-bg: rgb(247, 254, 231);
  --bs-alert-bg: rgb(247, 254, 231);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-50:active {
  --bs-border-color: rgb(247, 254, 231);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-50:disabled {
  color: rgb(247, 254, 231);
}

.disabled\:bg-lime-50:disabled {
  --bs-btn-active-bg: rgb(247, 254, 231);
  --bs-alert-bg: rgb(247, 254, 231);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-50:disabled {
  --bs-border-color: rgb(247, 254, 231);
  border-color: var(--bs-border-color);
}

.text-lime-100 {
  --bs-alert-color: rgb(236, 252, 203);
  --bs-btn-color: rgb(236, 252, 203);
  color: var(--bs-btn-color);
}

.fill-lime-100 {
  color: rgb(236, 252, 203);
}

.stroke-lime-100 {
  color: rgb(236, 252, 203);
}

.accent-lime-100 {
  accent-color: rgb(236, 252, 203);
}

.bg-lime-100 {
  --bs-btn-active-bg: rgb(236, 252, 203);
  --bs-alert-bg: rgb(236, 252, 203);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-100 {
  --bs-border-color: rgb(236, 252, 203);
  --bs-alert-border: rgb(236, 252, 203);
  border-color: var(--bs-border-color);
}

.decoration-lime-100 {
  text-decoration-color: rgb(236, 252, 203);
}

.hover\:text-lime-100:hover {
  color: rgb(236, 252, 203);
}

.hover\:bg-lime-100:hover {
  --bs-btn-active-bg: rgb(236, 252, 203);
  --bs-alert-bg: rgb(236, 252, 203);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-100:hover {
  --bs-border-color: rgb(236, 252, 203);
  --bs-alert-border-color: rgb(236, 252, 203);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-100 {
  text-decoration-color: rgb(236, 252, 203);
}

.focus\:text-lime-100:focus {
  color: rgb(236, 252, 203);
}

.focus\:bg-lime-100:focus {
  --bs-btn-active-bg: rgb(236, 252, 203);
  --bs-alert-bg: rgb(236, 252, 203);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-100:focus {
  --bs-border-color: rgb(236, 252, 203);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-100 {
  text-decoration-color: rgb(236, 252, 203);
}

.active\:text-lime-100:active {
  color: rgb(236, 252, 203);
}

.active\:bg-lime-100:active {
  --bs-btn-active-bg: rgb(236, 252, 203);
  --bs-alert-bg: rgb(236, 252, 203);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-100:active {
  --bs-border-color: rgb(236, 252, 203);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-100:disabled {
  color: rgb(236, 252, 203);
}

.disabled\:bg-lime-100:disabled {
  --bs-btn-active-bg: rgb(236, 252, 203);
  --bs-alert-bg: rgb(236, 252, 203);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-100:disabled {
  --bs-border-color: rgb(236, 252, 203);
  border-color: var(--bs-border-color);
}

.text-lime-200 {
  --bs-alert-color: rgb(217, 249, 157);
  --bs-btn-color: rgb(217, 249, 157);
  color: var(--bs-btn-color);
}

.fill-lime-200 {
  color: rgb(217, 249, 157);
}

.stroke-lime-200 {
  color: rgb(217, 249, 157);
}

.accent-lime-200 {
  accent-color: rgb(217, 249, 157);
}

.bg-lime-200 {
  --bs-btn-active-bg: rgb(217, 249, 157);
  --bs-alert-bg: rgb(217, 249, 157);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-200 {
  --bs-border-color: rgb(217, 249, 157);
  --bs-alert-border: rgb(217, 249, 157);
  border-color: var(--bs-border-color);
}

.decoration-lime-200 {
  text-decoration-color: rgb(217, 249, 157);
}

.hover\:text-lime-200:hover {
  color: rgb(217, 249, 157);
}

.hover\:bg-lime-200:hover {
  --bs-btn-active-bg: rgb(217, 249, 157);
  --bs-alert-bg: rgb(217, 249, 157);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-200:hover {
  --bs-border-color: rgb(217, 249, 157);
  --bs-alert-border-color: rgb(217, 249, 157);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-200 {
  text-decoration-color: rgb(217, 249, 157);
}

.focus\:text-lime-200:focus {
  color: rgb(217, 249, 157);
}

.focus\:bg-lime-200:focus {
  --bs-btn-active-bg: rgb(217, 249, 157);
  --bs-alert-bg: rgb(217, 249, 157);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-200:focus {
  --bs-border-color: rgb(217, 249, 157);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-200 {
  text-decoration-color: rgb(217, 249, 157);
}

.active\:text-lime-200:active {
  color: rgb(217, 249, 157);
}

.active\:bg-lime-200:active {
  --bs-btn-active-bg: rgb(217, 249, 157);
  --bs-alert-bg: rgb(217, 249, 157);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-200:active {
  --bs-border-color: rgb(217, 249, 157);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-200:disabled {
  color: rgb(217, 249, 157);
}

.disabled\:bg-lime-200:disabled {
  --bs-btn-active-bg: rgb(217, 249, 157);
  --bs-alert-bg: rgb(217, 249, 157);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-200:disabled {
  --bs-border-color: rgb(217, 249, 157);
  border-color: var(--bs-border-color);
}

.text-lime-300 {
  --bs-alert-color: rgb(190, 242, 100);
  --bs-btn-color: rgb(190, 242, 100);
  color: var(--bs-btn-color);
}

.fill-lime-300 {
  color: rgb(190, 242, 100);
}

.stroke-lime-300 {
  color: rgb(190, 242, 100);
}

.accent-lime-300 {
  accent-color: rgb(190, 242, 100);
}

.bg-lime-300 {
  --bs-btn-active-bg: rgb(190, 242, 100);
  --bs-alert-bg: rgb(190, 242, 100);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-300 {
  --bs-border-color: rgb(190, 242, 100);
  --bs-alert-border: rgb(190, 242, 100);
  border-color: var(--bs-border-color);
}

.decoration-lime-300 {
  text-decoration-color: rgb(190, 242, 100);
}

.hover\:text-lime-300:hover {
  color: rgb(190, 242, 100);
}

.hover\:bg-lime-300:hover {
  --bs-btn-active-bg: rgb(190, 242, 100);
  --bs-alert-bg: rgb(190, 242, 100);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-300:hover {
  --bs-border-color: rgb(190, 242, 100);
  --bs-alert-border-color: rgb(190, 242, 100);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-300 {
  text-decoration-color: rgb(190, 242, 100);
}

.focus\:text-lime-300:focus {
  color: rgb(190, 242, 100);
}

.focus\:bg-lime-300:focus {
  --bs-btn-active-bg: rgb(190, 242, 100);
  --bs-alert-bg: rgb(190, 242, 100);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-300:focus {
  --bs-border-color: rgb(190, 242, 100);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-300 {
  text-decoration-color: rgb(190, 242, 100);
}

.active\:text-lime-300:active {
  color: rgb(190, 242, 100);
}

.active\:bg-lime-300:active {
  --bs-btn-active-bg: rgb(190, 242, 100);
  --bs-alert-bg: rgb(190, 242, 100);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-300:active {
  --bs-border-color: rgb(190, 242, 100);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-300:disabled {
  color: rgb(190, 242, 100);
}

.disabled\:bg-lime-300:disabled {
  --bs-btn-active-bg: rgb(190, 242, 100);
  --bs-alert-bg: rgb(190, 242, 100);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-300:disabled {
  --bs-border-color: rgb(190, 242, 100);
  border-color: var(--bs-border-color);
}

.text-lime-400 {
  --bs-alert-color: rgb(163, 230, 53);
  --bs-btn-color: rgb(163, 230, 53);
  color: var(--bs-btn-color);
}

.fill-lime-400 {
  color: rgb(163, 230, 53);
}

.stroke-lime-400 {
  color: rgb(163, 230, 53);
}

.accent-lime-400 {
  accent-color: rgb(163, 230, 53);
}

.bg-lime-400 {
  --bs-btn-active-bg: rgb(163, 230, 53);
  --bs-alert-bg: rgb(163, 230, 53);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-400 {
  --bs-border-color: rgb(163, 230, 53);
  --bs-alert-border: rgb(163, 230, 53);
  border-color: var(--bs-border-color);
}

.decoration-lime-400 {
  text-decoration-color: rgb(163, 230, 53);
}

.hover\:text-lime-400:hover {
  color: rgb(163, 230, 53);
}

.hover\:bg-lime-400:hover {
  --bs-btn-active-bg: rgb(163, 230, 53);
  --bs-alert-bg: rgb(163, 230, 53);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-400:hover {
  --bs-border-color: rgb(163, 230, 53);
  --bs-alert-border-color: rgb(163, 230, 53);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-400 {
  text-decoration-color: rgb(163, 230, 53);
}

.focus\:text-lime-400:focus {
  color: rgb(163, 230, 53);
}

.focus\:bg-lime-400:focus {
  --bs-btn-active-bg: rgb(163, 230, 53);
  --bs-alert-bg: rgb(163, 230, 53);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-400:focus {
  --bs-border-color: rgb(163, 230, 53);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-400 {
  text-decoration-color: rgb(163, 230, 53);
}

.active\:text-lime-400:active {
  color: rgb(163, 230, 53);
}

.active\:bg-lime-400:active {
  --bs-btn-active-bg: rgb(163, 230, 53);
  --bs-alert-bg: rgb(163, 230, 53);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-400:active {
  --bs-border-color: rgb(163, 230, 53);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-400:disabled {
  color: rgb(163, 230, 53);
}

.disabled\:bg-lime-400:disabled {
  --bs-btn-active-bg: rgb(163, 230, 53);
  --bs-alert-bg: rgb(163, 230, 53);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-400:disabled {
  --bs-border-color: rgb(163, 230, 53);
  border-color: var(--bs-border-color);
}

.text-lime-500 {
  --bs-alert-color: rgb(132, 204, 22);
  --bs-btn-color: rgb(132, 204, 22);
  color: var(--bs-btn-color);
}

.fill-lime-500 {
  color: rgb(132, 204, 22);
}

.stroke-lime-500 {
  color: rgb(132, 204, 22);
}

.accent-lime-500 {
  accent-color: rgb(132, 204, 22);
}

.bg-lime-500 {
  --bs-btn-active-bg: rgb(132, 204, 22);
  --bs-alert-bg: rgb(132, 204, 22);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-500 {
  --bs-border-color: rgb(132, 204, 22);
  --bs-alert-border: rgb(132, 204, 22);
  border-color: var(--bs-border-color);
}

.decoration-lime-500 {
  text-decoration-color: rgb(132, 204, 22);
}

.hover\:text-lime-500:hover {
  color: rgb(132, 204, 22);
}

.hover\:bg-lime-500:hover {
  --bs-btn-active-bg: rgb(132, 204, 22);
  --bs-alert-bg: rgb(132, 204, 22);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-500:hover {
  --bs-border-color: rgb(132, 204, 22);
  --bs-alert-border-color: rgb(132, 204, 22);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-500 {
  text-decoration-color: rgb(132, 204, 22);
}

.focus\:text-lime-500:focus {
  color: rgb(132, 204, 22);
}

.focus\:bg-lime-500:focus {
  --bs-btn-active-bg: rgb(132, 204, 22);
  --bs-alert-bg: rgb(132, 204, 22);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-500:focus {
  --bs-border-color: rgb(132, 204, 22);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-500 {
  text-decoration-color: rgb(132, 204, 22);
}

.active\:text-lime-500:active {
  color: rgb(132, 204, 22);
}

.active\:bg-lime-500:active {
  --bs-btn-active-bg: rgb(132, 204, 22);
  --bs-alert-bg: rgb(132, 204, 22);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-500:active {
  --bs-border-color: rgb(132, 204, 22);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-500:disabled {
  color: rgb(132, 204, 22);
}

.disabled\:bg-lime-500:disabled {
  --bs-btn-active-bg: rgb(132, 204, 22);
  --bs-alert-bg: rgb(132, 204, 22);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-500:disabled {
  --bs-border-color: rgb(132, 204, 22);
  border-color: var(--bs-border-color);
}

.text-lime-600 {
  --bs-alert-color: rgb(101, 163, 13);
  --bs-btn-color: rgb(101, 163, 13);
  color: var(--bs-btn-color);
}

.fill-lime-600 {
  color: rgb(101, 163, 13);
}

.stroke-lime-600 {
  color: rgb(101, 163, 13);
}

.accent-lime-600 {
  accent-color: rgb(101, 163, 13);
}

.bg-lime-600 {
  --bs-btn-active-bg: rgb(101, 163, 13);
  --bs-alert-bg: rgb(101, 163, 13);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-600 {
  --bs-border-color: rgb(101, 163, 13);
  --bs-alert-border: rgb(101, 163, 13);
  border-color: var(--bs-border-color);
}

.decoration-lime-600 {
  text-decoration-color: rgb(101, 163, 13);
}

.hover\:text-lime-600:hover {
  color: rgb(101, 163, 13);
}

.hover\:bg-lime-600:hover {
  --bs-btn-active-bg: rgb(101, 163, 13);
  --bs-alert-bg: rgb(101, 163, 13);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-600:hover {
  --bs-border-color: rgb(101, 163, 13);
  --bs-alert-border-color: rgb(101, 163, 13);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-600 {
  text-decoration-color: rgb(101, 163, 13);
}

.focus\:text-lime-600:focus {
  color: rgb(101, 163, 13);
}

.focus\:bg-lime-600:focus {
  --bs-btn-active-bg: rgb(101, 163, 13);
  --bs-alert-bg: rgb(101, 163, 13);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-600:focus {
  --bs-border-color: rgb(101, 163, 13);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-600 {
  text-decoration-color: rgb(101, 163, 13);
}

.active\:text-lime-600:active {
  color: rgb(101, 163, 13);
}

.active\:bg-lime-600:active {
  --bs-btn-active-bg: rgb(101, 163, 13);
  --bs-alert-bg: rgb(101, 163, 13);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-600:active {
  --bs-border-color: rgb(101, 163, 13);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-600:disabled {
  color: rgb(101, 163, 13);
}

.disabled\:bg-lime-600:disabled {
  --bs-btn-active-bg: rgb(101, 163, 13);
  --bs-alert-bg: rgb(101, 163, 13);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-600:disabled {
  --bs-border-color: rgb(101, 163, 13);
  border-color: var(--bs-border-color);
}

.text-lime-700 {
  --bs-alert-color: rgb(77, 124, 15);
  --bs-btn-color: rgb(77, 124, 15);
  color: var(--bs-btn-color);
}

.fill-lime-700 {
  color: rgb(77, 124, 15);
}

.stroke-lime-700 {
  color: rgb(77, 124, 15);
}

.accent-lime-700 {
  accent-color: rgb(77, 124, 15);
}

.bg-lime-700 {
  --bs-btn-active-bg: rgb(77, 124, 15);
  --bs-alert-bg: rgb(77, 124, 15);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-700 {
  --bs-border-color: rgb(77, 124, 15);
  --bs-alert-border: rgb(77, 124, 15);
  border-color: var(--bs-border-color);
}

.decoration-lime-700 {
  text-decoration-color: rgb(77, 124, 15);
}

.hover\:text-lime-700:hover {
  color: rgb(77, 124, 15);
}

.hover\:bg-lime-700:hover {
  --bs-btn-active-bg: rgb(77, 124, 15);
  --bs-alert-bg: rgb(77, 124, 15);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-700:hover {
  --bs-border-color: rgb(77, 124, 15);
  --bs-alert-border-color: rgb(77, 124, 15);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-700 {
  text-decoration-color: rgb(77, 124, 15);
}

.focus\:text-lime-700:focus {
  color: rgb(77, 124, 15);
}

.focus\:bg-lime-700:focus {
  --bs-btn-active-bg: rgb(77, 124, 15);
  --bs-alert-bg: rgb(77, 124, 15);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-700:focus {
  --bs-border-color: rgb(77, 124, 15);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-700 {
  text-decoration-color: rgb(77, 124, 15);
}

.active\:text-lime-700:active {
  color: rgb(77, 124, 15);
}

.active\:bg-lime-700:active {
  --bs-btn-active-bg: rgb(77, 124, 15);
  --bs-alert-bg: rgb(77, 124, 15);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-700:active {
  --bs-border-color: rgb(77, 124, 15);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-700:disabled {
  color: rgb(77, 124, 15);
}

.disabled\:bg-lime-700:disabled {
  --bs-btn-active-bg: rgb(77, 124, 15);
  --bs-alert-bg: rgb(77, 124, 15);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-700:disabled {
  --bs-border-color: rgb(77, 124, 15);
  border-color: var(--bs-border-color);
}

.text-lime-800 {
  --bs-alert-color: rgb(63, 98, 18);
  --bs-btn-color: rgb(63, 98, 18);
  color: var(--bs-btn-color);
}

.fill-lime-800 {
  color: rgb(63, 98, 18);
}

.stroke-lime-800 {
  color: rgb(63, 98, 18);
}

.accent-lime-800 {
  accent-color: rgb(63, 98, 18);
}

.bg-lime-800 {
  --bs-btn-active-bg: rgb(63, 98, 18);
  --bs-alert-bg: rgb(63, 98, 18);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-800 {
  --bs-border-color: rgb(63, 98, 18);
  --bs-alert-border: rgb(63, 98, 18);
  border-color: var(--bs-border-color);
}

.decoration-lime-800 {
  text-decoration-color: rgb(63, 98, 18);
}

.hover\:text-lime-800:hover {
  color: rgb(63, 98, 18);
}

.hover\:bg-lime-800:hover {
  --bs-btn-active-bg: rgb(63, 98, 18);
  --bs-alert-bg: rgb(63, 98, 18);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-800:hover {
  --bs-border-color: rgb(63, 98, 18);
  --bs-alert-border-color: rgb(63, 98, 18);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-800 {
  text-decoration-color: rgb(63, 98, 18);
}

.focus\:text-lime-800:focus {
  color: rgb(63, 98, 18);
}

.focus\:bg-lime-800:focus {
  --bs-btn-active-bg: rgb(63, 98, 18);
  --bs-alert-bg: rgb(63, 98, 18);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-800:focus {
  --bs-border-color: rgb(63, 98, 18);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-800 {
  text-decoration-color: rgb(63, 98, 18);
}

.active\:text-lime-800:active {
  color: rgb(63, 98, 18);
}

.active\:bg-lime-800:active {
  --bs-btn-active-bg: rgb(63, 98, 18);
  --bs-alert-bg: rgb(63, 98, 18);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-800:active {
  --bs-border-color: rgb(63, 98, 18);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-800:disabled {
  color: rgb(63, 98, 18);
}

.disabled\:bg-lime-800:disabled {
  --bs-btn-active-bg: rgb(63, 98, 18);
  --bs-alert-bg: rgb(63, 98, 18);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-800:disabled {
  --bs-border-color: rgb(63, 98, 18);
  border-color: var(--bs-border-color);
}

.text-lime-900 {
  --bs-alert-color: rgb(54, 83, 20);
  --bs-btn-color: rgb(54, 83, 20);
  color: var(--bs-btn-color);
}

.fill-lime-900 {
  color: rgb(54, 83, 20);
}

.stroke-lime-900 {
  color: rgb(54, 83, 20);
}

.accent-lime-900 {
  accent-color: rgb(54, 83, 20);
}

.bg-lime-900 {
  --bs-btn-active-bg: rgb(54, 83, 20);
  --bs-alert-bg: rgb(54, 83, 20);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-900 {
  --bs-border-color: rgb(54, 83, 20);
  --bs-alert-border: rgb(54, 83, 20);
  border-color: var(--bs-border-color);
}

.decoration-lime-900 {
  text-decoration-color: rgb(54, 83, 20);
}

.hover\:text-lime-900:hover {
  color: rgb(54, 83, 20);
}

.hover\:bg-lime-900:hover {
  --bs-btn-active-bg: rgb(54, 83, 20);
  --bs-alert-bg: rgb(54, 83, 20);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-900:hover {
  --bs-border-color: rgb(54, 83, 20);
  --bs-alert-border-color: rgb(54, 83, 20);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-900 {
  text-decoration-color: rgb(54, 83, 20);
}

.focus\:text-lime-900:focus {
  color: rgb(54, 83, 20);
}

.focus\:bg-lime-900:focus {
  --bs-btn-active-bg: rgb(54, 83, 20);
  --bs-alert-bg: rgb(54, 83, 20);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-900:focus {
  --bs-border-color: rgb(54, 83, 20);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-900 {
  text-decoration-color: rgb(54, 83, 20);
}

.active\:text-lime-900:active {
  color: rgb(54, 83, 20);
}

.active\:bg-lime-900:active {
  --bs-btn-active-bg: rgb(54, 83, 20);
  --bs-alert-bg: rgb(54, 83, 20);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-900:active {
  --bs-border-color: rgb(54, 83, 20);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-900:disabled {
  color: rgb(54, 83, 20);
}

.disabled\:bg-lime-900:disabled {
  --bs-btn-active-bg: rgb(54, 83, 20);
  --bs-alert-bg: rgb(54, 83, 20);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-900:disabled {
  --bs-border-color: rgb(54, 83, 20);
  border-color: var(--bs-border-color);
}

.text-lime-950 {
  --bs-alert-color: rgb(26, 46, 5);
  --bs-btn-color: rgb(26, 46, 5);
  color: var(--bs-btn-color);
}

.fill-lime-950 {
  color: rgb(26, 46, 5);
}

.stroke-lime-950 {
  color: rgb(26, 46, 5);
}

.accent-lime-950 {
  accent-color: rgb(26, 46, 5);
}

.bg-lime-950 {
  --bs-btn-active-bg: rgb(26, 46, 5);
  --bs-alert-bg: rgb(26, 46, 5);
  background-color: var(--bs-btn-active-bg);
}

.border-lime-950 {
  --bs-border-color: rgb(26, 46, 5);
  --bs-alert-border: rgb(26, 46, 5);
  border-color: var(--bs-border-color);
}

.decoration-lime-950 {
  text-decoration-color: rgb(26, 46, 5);
}

.hover\:text-lime-950:hover {
  color: rgb(26, 46, 5);
}

.hover\:bg-lime-950:hover {
  --bs-btn-active-bg: rgb(26, 46, 5);
  --bs-alert-bg: rgb(26, 46, 5);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-lime-950:hover {
  --bs-border-color: rgb(26, 46, 5);
  --bs-alert-border-color: rgb(26, 46, 5);
  border-color: var(--bs-border-color);
}

.hover\:decoration-lime-950 {
  text-decoration-color: rgb(26, 46, 5);
}

.focus\:text-lime-950:focus {
  color: rgb(26, 46, 5);
}

.focus\:bg-lime-950:focus {
  --bs-btn-active-bg: rgb(26, 46, 5);
  --bs-alert-bg: rgb(26, 46, 5);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-lime-950:focus {
  --bs-border-color: rgb(26, 46, 5);
  border-color: var(--bs-border-color);
}

.focus\:decoration-lime-950 {
  text-decoration-color: rgb(26, 46, 5);
}

.active\:text-lime-950:active {
  color: rgb(26, 46, 5);
}

.active\:bg-lime-950:active {
  --bs-btn-active-bg: rgb(26, 46, 5);
  --bs-alert-bg: rgb(26, 46, 5);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-lime-950:active {
  --bs-border-color: rgb(26, 46, 5);
  border-color: var(--bs-border-color);
}

.disabled\:text-lime-950:disabled {
  color: rgb(26, 46, 5);
}

.disabled\:bg-lime-950:disabled {
  --bs-btn-active-bg: rgb(26, 46, 5);
  --bs-alert-bg: rgb(26, 46, 5);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-lime-950:disabled {
  --bs-border-color: rgb(26, 46, 5);
  border-color: var(--bs-border-color);
}

.text-green-50 {
  --bs-alert-color: rgb(240, 253, 244);
  --bs-btn-color: rgb(240, 253, 244);
  color: var(--bs-btn-color);
}

.fill-green-50 {
  color: rgb(240, 253, 244);
}

.stroke-green-50 {
  color: rgb(240, 253, 244);
}

.accent-green-50 {
  accent-color: rgb(240, 253, 244);
}

.bg-green-50 {
  --bs-btn-active-bg: rgb(240, 253, 244);
  --bs-alert-bg: rgb(240, 253, 244);
  background-color: var(--bs-btn-active-bg);
}

.border-green-50 {
  --bs-border-color: rgb(240, 253, 244);
  --bs-alert-border: rgb(240, 253, 244);
  border-color: var(--bs-border-color);
}

.decoration-green-50 {
  text-decoration-color: rgb(240, 253, 244);
}

.hover\:text-green-50:hover {
  color: rgb(240, 253, 244);
}

.hover\:bg-green-50:hover {
  --bs-btn-active-bg: rgb(240, 253, 244);
  --bs-alert-bg: rgb(240, 253, 244);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-50:hover {
  --bs-border-color: rgb(240, 253, 244);
  --bs-alert-border-color: rgb(240, 253, 244);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-50 {
  text-decoration-color: rgb(240, 253, 244);
}

.focus\:text-green-50:focus {
  color: rgb(240, 253, 244);
}

.focus\:bg-green-50:focus {
  --bs-btn-active-bg: rgb(240, 253, 244);
  --bs-alert-bg: rgb(240, 253, 244);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-50:focus {
  --bs-border-color: rgb(240, 253, 244);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-50 {
  text-decoration-color: rgb(240, 253, 244);
}

.active\:text-green-50:active {
  color: rgb(240, 253, 244);
}

.active\:bg-green-50:active {
  --bs-btn-active-bg: rgb(240, 253, 244);
  --bs-alert-bg: rgb(240, 253, 244);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-50:active {
  --bs-border-color: rgb(240, 253, 244);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-50:disabled {
  color: rgb(240, 253, 244);
}

.disabled\:bg-green-50:disabled {
  --bs-btn-active-bg: rgb(240, 253, 244);
  --bs-alert-bg: rgb(240, 253, 244);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-50:disabled {
  --bs-border-color: rgb(240, 253, 244);
  border-color: var(--bs-border-color);
}

.text-green-100 {
  --bs-alert-color: rgb(220, 252, 231);
  --bs-btn-color: rgb(220, 252, 231);
  color: var(--bs-btn-color);
}

.fill-green-100 {
  color: rgb(220, 252, 231);
}

.stroke-green-100 {
  color: rgb(220, 252, 231);
}

.accent-green-100 {
  accent-color: rgb(220, 252, 231);
}

.bg-green-100 {
  --bs-btn-active-bg: rgb(220, 252, 231);
  --bs-alert-bg: rgb(220, 252, 231);
  background-color: var(--bs-btn-active-bg);
}

.border-green-100 {
  --bs-border-color: rgb(220, 252, 231);
  --bs-alert-border: rgb(220, 252, 231);
  border-color: var(--bs-border-color);
}

.decoration-green-100 {
  text-decoration-color: rgb(220, 252, 231);
}

.hover\:text-green-100:hover {
  color: rgb(220, 252, 231);
}

.hover\:bg-green-100:hover {
  --bs-btn-active-bg: rgb(220, 252, 231);
  --bs-alert-bg: rgb(220, 252, 231);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-100:hover {
  --bs-border-color: rgb(220, 252, 231);
  --bs-alert-border-color: rgb(220, 252, 231);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-100 {
  text-decoration-color: rgb(220, 252, 231);
}

.focus\:text-green-100:focus {
  color: rgb(220, 252, 231);
}

.focus\:bg-green-100:focus {
  --bs-btn-active-bg: rgb(220, 252, 231);
  --bs-alert-bg: rgb(220, 252, 231);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-100:focus {
  --bs-border-color: rgb(220, 252, 231);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-100 {
  text-decoration-color: rgb(220, 252, 231);
}

.active\:text-green-100:active {
  color: rgb(220, 252, 231);
}

.active\:bg-green-100:active {
  --bs-btn-active-bg: rgb(220, 252, 231);
  --bs-alert-bg: rgb(220, 252, 231);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-100:active {
  --bs-border-color: rgb(220, 252, 231);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-100:disabled {
  color: rgb(220, 252, 231);
}

.disabled\:bg-green-100:disabled {
  --bs-btn-active-bg: rgb(220, 252, 231);
  --bs-alert-bg: rgb(220, 252, 231);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-100:disabled {
  --bs-border-color: rgb(220, 252, 231);
  border-color: var(--bs-border-color);
}

.text-green-200 {
  --bs-alert-color: rgb(187, 247, 208);
  --bs-btn-color: rgb(187, 247, 208);
  color: var(--bs-btn-color);
}

.fill-green-200 {
  color: rgb(187, 247, 208);
}

.stroke-green-200 {
  color: rgb(187, 247, 208);
}

.accent-green-200 {
  accent-color: rgb(187, 247, 208);
}

.bg-green-200 {
  --bs-btn-active-bg: rgb(187, 247, 208);
  --bs-alert-bg: rgb(187, 247, 208);
  background-color: var(--bs-btn-active-bg);
}

.border-green-200 {
  --bs-border-color: rgb(187, 247, 208);
  --bs-alert-border: rgb(187, 247, 208);
  border-color: var(--bs-border-color);
}

.decoration-green-200 {
  text-decoration-color: rgb(187, 247, 208);
}

.hover\:text-green-200:hover {
  color: rgb(187, 247, 208);
}

.hover\:bg-green-200:hover {
  --bs-btn-active-bg: rgb(187, 247, 208);
  --bs-alert-bg: rgb(187, 247, 208);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-200:hover {
  --bs-border-color: rgb(187, 247, 208);
  --bs-alert-border-color: rgb(187, 247, 208);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-200 {
  text-decoration-color: rgb(187, 247, 208);
}

.focus\:text-green-200:focus {
  color: rgb(187, 247, 208);
}

.focus\:bg-green-200:focus {
  --bs-btn-active-bg: rgb(187, 247, 208);
  --bs-alert-bg: rgb(187, 247, 208);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-200:focus {
  --bs-border-color: rgb(187, 247, 208);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-200 {
  text-decoration-color: rgb(187, 247, 208);
}

.active\:text-green-200:active {
  color: rgb(187, 247, 208);
}

.active\:bg-green-200:active {
  --bs-btn-active-bg: rgb(187, 247, 208);
  --bs-alert-bg: rgb(187, 247, 208);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-200:active {
  --bs-border-color: rgb(187, 247, 208);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-200:disabled {
  color: rgb(187, 247, 208);
}

.disabled\:bg-green-200:disabled {
  --bs-btn-active-bg: rgb(187, 247, 208);
  --bs-alert-bg: rgb(187, 247, 208);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-200:disabled {
  --bs-border-color: rgb(187, 247, 208);
  border-color: var(--bs-border-color);
}

.text-green-300 {
  --bs-alert-color: rgb(134, 239, 172);
  --bs-btn-color: rgb(134, 239, 172);
  color: var(--bs-btn-color);
}

.fill-green-300 {
  color: rgb(134, 239, 172);
}

.stroke-green-300 {
  color: rgb(134, 239, 172);
}

.accent-green-300 {
  accent-color: rgb(134, 239, 172);
}

.bg-green-300 {
  --bs-btn-active-bg: rgb(134, 239, 172);
  --bs-alert-bg: rgb(134, 239, 172);
  background-color: var(--bs-btn-active-bg);
}

.border-green-300 {
  --bs-border-color: rgb(134, 239, 172);
  --bs-alert-border: rgb(134, 239, 172);
  border-color: var(--bs-border-color);
}

.decoration-green-300 {
  text-decoration-color: rgb(134, 239, 172);
}

.hover\:text-green-300:hover {
  color: rgb(134, 239, 172);
}

.hover\:bg-green-300:hover {
  --bs-btn-active-bg: rgb(134, 239, 172);
  --bs-alert-bg: rgb(134, 239, 172);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-300:hover {
  --bs-border-color: rgb(134, 239, 172);
  --bs-alert-border-color: rgb(134, 239, 172);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-300 {
  text-decoration-color: rgb(134, 239, 172);
}

.focus\:text-green-300:focus {
  color: rgb(134, 239, 172);
}

.focus\:bg-green-300:focus {
  --bs-btn-active-bg: rgb(134, 239, 172);
  --bs-alert-bg: rgb(134, 239, 172);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-300:focus {
  --bs-border-color: rgb(134, 239, 172);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-300 {
  text-decoration-color: rgb(134, 239, 172);
}

.active\:text-green-300:active {
  color: rgb(134, 239, 172);
}

.active\:bg-green-300:active {
  --bs-btn-active-bg: rgb(134, 239, 172);
  --bs-alert-bg: rgb(134, 239, 172);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-300:active {
  --bs-border-color: rgb(134, 239, 172);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-300:disabled {
  color: rgb(134, 239, 172);
}

.disabled\:bg-green-300:disabled {
  --bs-btn-active-bg: rgb(134, 239, 172);
  --bs-alert-bg: rgb(134, 239, 172);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-300:disabled {
  --bs-border-color: rgb(134, 239, 172);
  border-color: var(--bs-border-color);
}

.text-green-400 {
  --bs-alert-color: rgb(74, 222, 128);
  --bs-btn-color: rgb(74, 222, 128);
  color: var(--bs-btn-color);
}

.fill-green-400 {
  color: rgb(74, 222, 128);
}

.stroke-green-400 {
  color: rgb(74, 222, 128);
}

.accent-green-400 {
  accent-color: rgb(74, 222, 128);
}

.bg-green-400 {
  --bs-btn-active-bg: rgb(74, 222, 128);
  --bs-alert-bg: rgb(74, 222, 128);
  background-color: var(--bs-btn-active-bg);
}

.border-green-400 {
  --bs-border-color: rgb(74, 222, 128);
  --bs-alert-border: rgb(74, 222, 128);
  border-color: var(--bs-border-color);
}

.decoration-green-400 {
  text-decoration-color: rgb(74, 222, 128);
}

.hover\:text-green-400:hover {
  color: rgb(74, 222, 128);
}

.hover\:bg-green-400:hover {
  --bs-btn-active-bg: rgb(74, 222, 128);
  --bs-alert-bg: rgb(74, 222, 128);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-400:hover {
  --bs-border-color: rgb(74, 222, 128);
  --bs-alert-border-color: rgb(74, 222, 128);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-400 {
  text-decoration-color: rgb(74, 222, 128);
}

.focus\:text-green-400:focus {
  color: rgb(74, 222, 128);
}

.focus\:bg-green-400:focus {
  --bs-btn-active-bg: rgb(74, 222, 128);
  --bs-alert-bg: rgb(74, 222, 128);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-400:focus {
  --bs-border-color: rgb(74, 222, 128);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-400 {
  text-decoration-color: rgb(74, 222, 128);
}

.active\:text-green-400:active {
  color: rgb(74, 222, 128);
}

.active\:bg-green-400:active {
  --bs-btn-active-bg: rgb(74, 222, 128);
  --bs-alert-bg: rgb(74, 222, 128);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-400:active {
  --bs-border-color: rgb(74, 222, 128);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-400:disabled {
  color: rgb(74, 222, 128);
}

.disabled\:bg-green-400:disabled {
  --bs-btn-active-bg: rgb(74, 222, 128);
  --bs-alert-bg: rgb(74, 222, 128);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-400:disabled {
  --bs-border-color: rgb(74, 222, 128);
  border-color: var(--bs-border-color);
}

.text-green-500 {
  --bs-alert-color: rgb(34, 197, 94);
  --bs-btn-color: rgb(34, 197, 94);
  color: var(--bs-btn-color);
}

.fill-green-500 {
  color: rgb(34, 197, 94);
}

.stroke-green-500 {
  color: rgb(34, 197, 94);
}

.accent-green-500 {
  accent-color: rgb(34, 197, 94);
}

.bg-green-500 {
  --bs-btn-active-bg: rgb(34, 197, 94);
  --bs-alert-bg: rgb(34, 197, 94);
  background-color: var(--bs-btn-active-bg);
}

.border-green-500 {
  --bs-border-color: rgb(34, 197, 94);
  --bs-alert-border: rgb(34, 197, 94);
  border-color: var(--bs-border-color);
}

.decoration-green-500 {
  text-decoration-color: rgb(34, 197, 94);
}

.hover\:text-green-500:hover {
  color: rgb(34, 197, 94);
}

.hover\:bg-green-500:hover {
  --bs-btn-active-bg: rgb(34, 197, 94);
  --bs-alert-bg: rgb(34, 197, 94);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-500:hover {
  --bs-border-color: rgb(34, 197, 94);
  --bs-alert-border-color: rgb(34, 197, 94);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-500 {
  text-decoration-color: rgb(34, 197, 94);
}

.focus\:text-green-500:focus {
  color: rgb(34, 197, 94);
}

.focus\:bg-green-500:focus {
  --bs-btn-active-bg: rgb(34, 197, 94);
  --bs-alert-bg: rgb(34, 197, 94);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-500:focus {
  --bs-border-color: rgb(34, 197, 94);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-500 {
  text-decoration-color: rgb(34, 197, 94);
}

.active\:text-green-500:active {
  color: rgb(34, 197, 94);
}

.active\:bg-green-500:active {
  --bs-btn-active-bg: rgb(34, 197, 94);
  --bs-alert-bg: rgb(34, 197, 94);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-500:active {
  --bs-border-color: rgb(34, 197, 94);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-500:disabled {
  color: rgb(34, 197, 94);
}

.disabled\:bg-green-500:disabled {
  --bs-btn-active-bg: rgb(34, 197, 94);
  --bs-alert-bg: rgb(34, 197, 94);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-500:disabled {
  --bs-border-color: rgb(34, 197, 94);
  border-color: var(--bs-border-color);
}

.text-green-600 {
  --bs-alert-color: rgb(22, 163, 74);
  --bs-btn-color: rgb(22, 163, 74);
  color: var(--bs-btn-color);
}

.fill-green-600 {
  color: rgb(22, 163, 74);
}

.stroke-green-600 {
  color: rgb(22, 163, 74);
}

.accent-green-600 {
  accent-color: rgb(22, 163, 74);
}

.bg-green-600 {
  --bs-btn-active-bg: rgb(22, 163, 74);
  --bs-alert-bg: rgb(22, 163, 74);
  background-color: var(--bs-btn-active-bg);
}

.border-green-600 {
  --bs-border-color: rgb(22, 163, 74);
  --bs-alert-border: rgb(22, 163, 74);
  border-color: var(--bs-border-color);
}

.decoration-green-600 {
  text-decoration-color: rgb(22, 163, 74);
}

.hover\:text-green-600:hover {
  color: rgb(22, 163, 74);
}

.hover\:bg-green-600:hover {
  --bs-btn-active-bg: rgb(22, 163, 74);
  --bs-alert-bg: rgb(22, 163, 74);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-600:hover {
  --bs-border-color: rgb(22, 163, 74);
  --bs-alert-border-color: rgb(22, 163, 74);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-600 {
  text-decoration-color: rgb(22, 163, 74);
}

.focus\:text-green-600:focus {
  color: rgb(22, 163, 74);
}

.focus\:bg-green-600:focus {
  --bs-btn-active-bg: rgb(22, 163, 74);
  --bs-alert-bg: rgb(22, 163, 74);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-600:focus {
  --bs-border-color: rgb(22, 163, 74);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-600 {
  text-decoration-color: rgb(22, 163, 74);
}

.active\:text-green-600:active {
  color: rgb(22, 163, 74);
}

.active\:bg-green-600:active {
  --bs-btn-active-bg: rgb(22, 163, 74);
  --bs-alert-bg: rgb(22, 163, 74);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-600:active {
  --bs-border-color: rgb(22, 163, 74);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-600:disabled {
  color: rgb(22, 163, 74);
}

.disabled\:bg-green-600:disabled {
  --bs-btn-active-bg: rgb(22, 163, 74);
  --bs-alert-bg: rgb(22, 163, 74);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-600:disabled {
  --bs-border-color: rgb(22, 163, 74);
  border-color: var(--bs-border-color);
}

.text-green-700 {
  --bs-alert-color: rgb(21, 128, 61);
  --bs-btn-color: rgb(21, 128, 61);
  color: var(--bs-btn-color);
}

.fill-green-700 {
  color: rgb(21, 128, 61);
}

.stroke-green-700 {
  color: rgb(21, 128, 61);
}

.accent-green-700 {
  accent-color: rgb(21, 128, 61);
}

.bg-green-700 {
  --bs-btn-active-bg: rgb(21, 128, 61);
  --bs-alert-bg: rgb(21, 128, 61);
  background-color: var(--bs-btn-active-bg);
}

.border-green-700 {
  --bs-border-color: rgb(21, 128, 61);
  --bs-alert-border: rgb(21, 128, 61);
  border-color: var(--bs-border-color);
}

.decoration-green-700 {
  text-decoration-color: rgb(21, 128, 61);
}

.hover\:text-green-700:hover {
  color: rgb(21, 128, 61);
}

.hover\:bg-green-700:hover {
  --bs-btn-active-bg: rgb(21, 128, 61);
  --bs-alert-bg: rgb(21, 128, 61);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-700:hover {
  --bs-border-color: rgb(21, 128, 61);
  --bs-alert-border-color: rgb(21, 128, 61);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-700 {
  text-decoration-color: rgb(21, 128, 61);
}

.focus\:text-green-700:focus {
  color: rgb(21, 128, 61);
}

.focus\:bg-green-700:focus {
  --bs-btn-active-bg: rgb(21, 128, 61);
  --bs-alert-bg: rgb(21, 128, 61);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-700:focus {
  --bs-border-color: rgb(21, 128, 61);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-700 {
  text-decoration-color: rgb(21, 128, 61);
}

.active\:text-green-700:active {
  color: rgb(21, 128, 61);
}

.active\:bg-green-700:active {
  --bs-btn-active-bg: rgb(21, 128, 61);
  --bs-alert-bg: rgb(21, 128, 61);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-700:active {
  --bs-border-color: rgb(21, 128, 61);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-700:disabled {
  color: rgb(21, 128, 61);
}

.disabled\:bg-green-700:disabled {
  --bs-btn-active-bg: rgb(21, 128, 61);
  --bs-alert-bg: rgb(21, 128, 61);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-700:disabled {
  --bs-border-color: rgb(21, 128, 61);
  border-color: var(--bs-border-color);
}

.text-green-800 {
  --bs-alert-color: rgb(22, 101, 52);
  --bs-btn-color: rgb(22, 101, 52);
  color: var(--bs-btn-color);
}

.fill-green-800 {
  color: rgb(22, 101, 52);
}

.stroke-green-800 {
  color: rgb(22, 101, 52);
}

.accent-green-800 {
  accent-color: rgb(22, 101, 52);
}

.bg-green-800 {
  --bs-btn-active-bg: rgb(22, 101, 52);
  --bs-alert-bg: rgb(22, 101, 52);
  background-color: var(--bs-btn-active-bg);
}

.border-green-800 {
  --bs-border-color: rgb(22, 101, 52);
  --bs-alert-border: rgb(22, 101, 52);
  border-color: var(--bs-border-color);
}

.decoration-green-800 {
  text-decoration-color: rgb(22, 101, 52);
}

.hover\:text-green-800:hover {
  color: rgb(22, 101, 52);
}

.hover\:bg-green-800:hover {
  --bs-btn-active-bg: rgb(22, 101, 52);
  --bs-alert-bg: rgb(22, 101, 52);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-800:hover {
  --bs-border-color: rgb(22, 101, 52);
  --bs-alert-border-color: rgb(22, 101, 52);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-800 {
  text-decoration-color: rgb(22, 101, 52);
}

.focus\:text-green-800:focus {
  color: rgb(22, 101, 52);
}

.focus\:bg-green-800:focus {
  --bs-btn-active-bg: rgb(22, 101, 52);
  --bs-alert-bg: rgb(22, 101, 52);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-800:focus {
  --bs-border-color: rgb(22, 101, 52);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-800 {
  text-decoration-color: rgb(22, 101, 52);
}

.active\:text-green-800:active {
  color: rgb(22, 101, 52);
}

.active\:bg-green-800:active {
  --bs-btn-active-bg: rgb(22, 101, 52);
  --bs-alert-bg: rgb(22, 101, 52);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-800:active {
  --bs-border-color: rgb(22, 101, 52);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-800:disabled {
  color: rgb(22, 101, 52);
}

.disabled\:bg-green-800:disabled {
  --bs-btn-active-bg: rgb(22, 101, 52);
  --bs-alert-bg: rgb(22, 101, 52);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-800:disabled {
  --bs-border-color: rgb(22, 101, 52);
  border-color: var(--bs-border-color);
}

.text-green-900 {
  --bs-alert-color: rgb(20, 83, 45);
  --bs-btn-color: rgb(20, 83, 45);
  color: var(--bs-btn-color);
}

.fill-green-900 {
  color: rgb(20, 83, 45);
}

.stroke-green-900 {
  color: rgb(20, 83, 45);
}

.accent-green-900 {
  accent-color: rgb(20, 83, 45);
}

.bg-green-900 {
  --bs-btn-active-bg: rgb(20, 83, 45);
  --bs-alert-bg: rgb(20, 83, 45);
  background-color: var(--bs-btn-active-bg);
}

.border-green-900 {
  --bs-border-color: rgb(20, 83, 45);
  --bs-alert-border: rgb(20, 83, 45);
  border-color: var(--bs-border-color);
}

.decoration-green-900 {
  text-decoration-color: rgb(20, 83, 45);
}

.hover\:text-green-900:hover {
  color: rgb(20, 83, 45);
}

.hover\:bg-green-900:hover {
  --bs-btn-active-bg: rgb(20, 83, 45);
  --bs-alert-bg: rgb(20, 83, 45);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-900:hover {
  --bs-border-color: rgb(20, 83, 45);
  --bs-alert-border-color: rgb(20, 83, 45);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-900 {
  text-decoration-color: rgb(20, 83, 45);
}

.focus\:text-green-900:focus {
  color: rgb(20, 83, 45);
}

.focus\:bg-green-900:focus {
  --bs-btn-active-bg: rgb(20, 83, 45);
  --bs-alert-bg: rgb(20, 83, 45);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-900:focus {
  --bs-border-color: rgb(20, 83, 45);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-900 {
  text-decoration-color: rgb(20, 83, 45);
}

.active\:text-green-900:active {
  color: rgb(20, 83, 45);
}

.active\:bg-green-900:active {
  --bs-btn-active-bg: rgb(20, 83, 45);
  --bs-alert-bg: rgb(20, 83, 45);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-900:active {
  --bs-border-color: rgb(20, 83, 45);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-900:disabled {
  color: rgb(20, 83, 45);
}

.disabled\:bg-green-900:disabled {
  --bs-btn-active-bg: rgb(20, 83, 45);
  --bs-alert-bg: rgb(20, 83, 45);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-900:disabled {
  --bs-border-color: rgb(20, 83, 45);
  border-color: var(--bs-border-color);
}

.text-green-950 {
  --bs-alert-color: rgb(5, 46, 22);
  --bs-btn-color: rgb(5, 46, 22);
  color: var(--bs-btn-color);
}

.fill-green-950 {
  color: rgb(5, 46, 22);
}

.stroke-green-950 {
  color: rgb(5, 46, 22);
}

.accent-green-950 {
  accent-color: rgb(5, 46, 22);
}

.bg-green-950 {
  --bs-btn-active-bg: rgb(5, 46, 22);
  --bs-alert-bg: rgb(5, 46, 22);
  background-color: var(--bs-btn-active-bg);
}

.border-green-950 {
  --bs-border-color: rgb(5, 46, 22);
  --bs-alert-border: rgb(5, 46, 22);
  border-color: var(--bs-border-color);
}

.decoration-green-950 {
  text-decoration-color: rgb(5, 46, 22);
}

.hover\:text-green-950:hover {
  color: rgb(5, 46, 22);
}

.hover\:bg-green-950:hover {
  --bs-btn-active-bg: rgb(5, 46, 22);
  --bs-alert-bg: rgb(5, 46, 22);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-green-950:hover {
  --bs-border-color: rgb(5, 46, 22);
  --bs-alert-border-color: rgb(5, 46, 22);
  border-color: var(--bs-border-color);
}

.hover\:decoration-green-950 {
  text-decoration-color: rgb(5, 46, 22);
}

.focus\:text-green-950:focus {
  color: rgb(5, 46, 22);
}

.focus\:bg-green-950:focus {
  --bs-btn-active-bg: rgb(5, 46, 22);
  --bs-alert-bg: rgb(5, 46, 22);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-green-950:focus {
  --bs-border-color: rgb(5, 46, 22);
  border-color: var(--bs-border-color);
}

.focus\:decoration-green-950 {
  text-decoration-color: rgb(5, 46, 22);
}

.active\:text-green-950:active {
  color: rgb(5, 46, 22);
}

.active\:bg-green-950:active {
  --bs-btn-active-bg: rgb(5, 46, 22);
  --bs-alert-bg: rgb(5, 46, 22);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-green-950:active {
  --bs-border-color: rgb(5, 46, 22);
  border-color: var(--bs-border-color);
}

.disabled\:text-green-950:disabled {
  color: rgb(5, 46, 22);
}

.disabled\:bg-green-950:disabled {
  --bs-btn-active-bg: rgb(5, 46, 22);
  --bs-alert-bg: rgb(5, 46, 22);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-green-950:disabled {
  --bs-border-color: rgb(5, 46, 22);
  border-color: var(--bs-border-color);
}

.text-emerald-50 {
  --bs-alert-color: rgb(236, 253, 245);
  --bs-btn-color: rgb(236, 253, 245);
  color: var(--bs-btn-color);
}

.fill-emerald-50 {
  color: rgb(236, 253, 245);
}

.stroke-emerald-50 {
  color: rgb(236, 253, 245);
}

.accent-emerald-50 {
  accent-color: rgb(236, 253, 245);
}

.bg-emerald-50 {
  --bs-btn-active-bg: rgb(236, 253, 245);
  --bs-alert-bg: rgb(236, 253, 245);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-50 {
  --bs-border-color: rgb(236, 253, 245);
  --bs-alert-border: rgb(236, 253, 245);
  border-color: var(--bs-border-color);
}

.decoration-emerald-50 {
  text-decoration-color: rgb(236, 253, 245);
}

.hover\:text-emerald-50:hover {
  color: rgb(236, 253, 245);
}

.hover\:bg-emerald-50:hover {
  --bs-btn-active-bg: rgb(236, 253, 245);
  --bs-alert-bg: rgb(236, 253, 245);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-50:hover {
  --bs-border-color: rgb(236, 253, 245);
  --bs-alert-border-color: rgb(236, 253, 245);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-50 {
  text-decoration-color: rgb(236, 253, 245);
}

.focus\:text-emerald-50:focus {
  color: rgb(236, 253, 245);
}

.focus\:bg-emerald-50:focus {
  --bs-btn-active-bg: rgb(236, 253, 245);
  --bs-alert-bg: rgb(236, 253, 245);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-50:focus {
  --bs-border-color: rgb(236, 253, 245);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-50 {
  text-decoration-color: rgb(236, 253, 245);
}

.active\:text-emerald-50:active {
  color: rgb(236, 253, 245);
}

.active\:bg-emerald-50:active {
  --bs-btn-active-bg: rgb(236, 253, 245);
  --bs-alert-bg: rgb(236, 253, 245);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-50:active {
  --bs-border-color: rgb(236, 253, 245);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-50:disabled {
  color: rgb(236, 253, 245);
}

.disabled\:bg-emerald-50:disabled {
  --bs-btn-active-bg: rgb(236, 253, 245);
  --bs-alert-bg: rgb(236, 253, 245);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-50:disabled {
  --bs-border-color: rgb(236, 253, 245);
  border-color: var(--bs-border-color);
}

.text-emerald-100 {
  --bs-alert-color: rgb(209, 250, 229);
  --bs-btn-color: rgb(209, 250, 229);
  color: var(--bs-btn-color);
}

.fill-emerald-100 {
  color: rgb(209, 250, 229);
}

.stroke-emerald-100 {
  color: rgb(209, 250, 229);
}

.accent-emerald-100 {
  accent-color: rgb(209, 250, 229);
}

.bg-emerald-100 {
  --bs-btn-active-bg: rgb(209, 250, 229);
  --bs-alert-bg: rgb(209, 250, 229);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-100 {
  --bs-border-color: rgb(209, 250, 229);
  --bs-alert-border: rgb(209, 250, 229);
  border-color: var(--bs-border-color);
}

.decoration-emerald-100 {
  text-decoration-color: rgb(209, 250, 229);
}

.hover\:text-emerald-100:hover {
  color: rgb(209, 250, 229);
}

.hover\:bg-emerald-100:hover {
  --bs-btn-active-bg: rgb(209, 250, 229);
  --bs-alert-bg: rgb(209, 250, 229);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-100:hover {
  --bs-border-color: rgb(209, 250, 229);
  --bs-alert-border-color: rgb(209, 250, 229);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-100 {
  text-decoration-color: rgb(209, 250, 229);
}

.focus\:text-emerald-100:focus {
  color: rgb(209, 250, 229);
}

.focus\:bg-emerald-100:focus {
  --bs-btn-active-bg: rgb(209, 250, 229);
  --bs-alert-bg: rgb(209, 250, 229);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-100:focus {
  --bs-border-color: rgb(209, 250, 229);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-100 {
  text-decoration-color: rgb(209, 250, 229);
}

.active\:text-emerald-100:active {
  color: rgb(209, 250, 229);
}

.active\:bg-emerald-100:active {
  --bs-btn-active-bg: rgb(209, 250, 229);
  --bs-alert-bg: rgb(209, 250, 229);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-100:active {
  --bs-border-color: rgb(209, 250, 229);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-100:disabled {
  color: rgb(209, 250, 229);
}

.disabled\:bg-emerald-100:disabled {
  --bs-btn-active-bg: rgb(209, 250, 229);
  --bs-alert-bg: rgb(209, 250, 229);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-100:disabled {
  --bs-border-color: rgb(209, 250, 229);
  border-color: var(--bs-border-color);
}

.text-emerald-200 {
  --bs-alert-color: rgb(167, 243, 208);
  --bs-btn-color: rgb(167, 243, 208);
  color: var(--bs-btn-color);
}

.fill-emerald-200 {
  color: rgb(167, 243, 208);
}

.stroke-emerald-200 {
  color: rgb(167, 243, 208);
}

.accent-emerald-200 {
  accent-color: rgb(167, 243, 208);
}

.bg-emerald-200 {
  --bs-btn-active-bg: rgb(167, 243, 208);
  --bs-alert-bg: rgb(167, 243, 208);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-200 {
  --bs-border-color: rgb(167, 243, 208);
  --bs-alert-border: rgb(167, 243, 208);
  border-color: var(--bs-border-color);
}

.decoration-emerald-200 {
  text-decoration-color: rgb(167, 243, 208);
}

.hover\:text-emerald-200:hover {
  color: rgb(167, 243, 208);
}

.hover\:bg-emerald-200:hover {
  --bs-btn-active-bg: rgb(167, 243, 208);
  --bs-alert-bg: rgb(167, 243, 208);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-200:hover {
  --bs-border-color: rgb(167, 243, 208);
  --bs-alert-border-color: rgb(167, 243, 208);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-200 {
  text-decoration-color: rgb(167, 243, 208);
}

.focus\:text-emerald-200:focus {
  color: rgb(167, 243, 208);
}

.focus\:bg-emerald-200:focus {
  --bs-btn-active-bg: rgb(167, 243, 208);
  --bs-alert-bg: rgb(167, 243, 208);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-200:focus {
  --bs-border-color: rgb(167, 243, 208);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-200 {
  text-decoration-color: rgb(167, 243, 208);
}

.active\:text-emerald-200:active {
  color: rgb(167, 243, 208);
}

.active\:bg-emerald-200:active {
  --bs-btn-active-bg: rgb(167, 243, 208);
  --bs-alert-bg: rgb(167, 243, 208);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-200:active {
  --bs-border-color: rgb(167, 243, 208);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-200:disabled {
  color: rgb(167, 243, 208);
}

.disabled\:bg-emerald-200:disabled {
  --bs-btn-active-bg: rgb(167, 243, 208);
  --bs-alert-bg: rgb(167, 243, 208);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-200:disabled {
  --bs-border-color: rgb(167, 243, 208);
  border-color: var(--bs-border-color);
}

.text-emerald-300 {
  --bs-alert-color: rgb(110, 231, 183);
  --bs-btn-color: rgb(110, 231, 183);
  color: var(--bs-btn-color);
}

.fill-emerald-300 {
  color: rgb(110, 231, 183);
}

.stroke-emerald-300 {
  color: rgb(110, 231, 183);
}

.accent-emerald-300 {
  accent-color: rgb(110, 231, 183);
}

.bg-emerald-300 {
  --bs-btn-active-bg: rgb(110, 231, 183);
  --bs-alert-bg: rgb(110, 231, 183);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-300 {
  --bs-border-color: rgb(110, 231, 183);
  --bs-alert-border: rgb(110, 231, 183);
  border-color: var(--bs-border-color);
}

.decoration-emerald-300 {
  text-decoration-color: rgb(110, 231, 183);
}

.hover\:text-emerald-300:hover {
  color: rgb(110, 231, 183);
}

.hover\:bg-emerald-300:hover {
  --bs-btn-active-bg: rgb(110, 231, 183);
  --bs-alert-bg: rgb(110, 231, 183);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-300:hover {
  --bs-border-color: rgb(110, 231, 183);
  --bs-alert-border-color: rgb(110, 231, 183);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-300 {
  text-decoration-color: rgb(110, 231, 183);
}

.focus\:text-emerald-300:focus {
  color: rgb(110, 231, 183);
}

.focus\:bg-emerald-300:focus {
  --bs-btn-active-bg: rgb(110, 231, 183);
  --bs-alert-bg: rgb(110, 231, 183);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-300:focus {
  --bs-border-color: rgb(110, 231, 183);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-300 {
  text-decoration-color: rgb(110, 231, 183);
}

.active\:text-emerald-300:active {
  color: rgb(110, 231, 183);
}

.active\:bg-emerald-300:active {
  --bs-btn-active-bg: rgb(110, 231, 183);
  --bs-alert-bg: rgb(110, 231, 183);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-300:active {
  --bs-border-color: rgb(110, 231, 183);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-300:disabled {
  color: rgb(110, 231, 183);
}

.disabled\:bg-emerald-300:disabled {
  --bs-btn-active-bg: rgb(110, 231, 183);
  --bs-alert-bg: rgb(110, 231, 183);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-300:disabled {
  --bs-border-color: rgb(110, 231, 183);
  border-color: var(--bs-border-color);
}

.text-emerald-400 {
  --bs-alert-color: rgb(52, 211, 153);
  --bs-btn-color: rgb(52, 211, 153);
  color: var(--bs-btn-color);
}

.fill-emerald-400 {
  color: rgb(52, 211, 153);
}

.stroke-emerald-400 {
  color: rgb(52, 211, 153);
}

.accent-emerald-400 {
  accent-color: rgb(52, 211, 153);
}

.bg-emerald-400 {
  --bs-btn-active-bg: rgb(52, 211, 153);
  --bs-alert-bg: rgb(52, 211, 153);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-400 {
  --bs-border-color: rgb(52, 211, 153);
  --bs-alert-border: rgb(52, 211, 153);
  border-color: var(--bs-border-color);
}

.decoration-emerald-400 {
  text-decoration-color: rgb(52, 211, 153);
}

.hover\:text-emerald-400:hover {
  color: rgb(52, 211, 153);
}

.hover\:bg-emerald-400:hover {
  --bs-btn-active-bg: rgb(52, 211, 153);
  --bs-alert-bg: rgb(52, 211, 153);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-400:hover {
  --bs-border-color: rgb(52, 211, 153);
  --bs-alert-border-color: rgb(52, 211, 153);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-400 {
  text-decoration-color: rgb(52, 211, 153);
}

.focus\:text-emerald-400:focus {
  color: rgb(52, 211, 153);
}

.focus\:bg-emerald-400:focus {
  --bs-btn-active-bg: rgb(52, 211, 153);
  --bs-alert-bg: rgb(52, 211, 153);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-400:focus {
  --bs-border-color: rgb(52, 211, 153);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-400 {
  text-decoration-color: rgb(52, 211, 153);
}

.active\:text-emerald-400:active {
  color: rgb(52, 211, 153);
}

.active\:bg-emerald-400:active {
  --bs-btn-active-bg: rgb(52, 211, 153);
  --bs-alert-bg: rgb(52, 211, 153);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-400:active {
  --bs-border-color: rgb(52, 211, 153);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-400:disabled {
  color: rgb(52, 211, 153);
}

.disabled\:bg-emerald-400:disabled {
  --bs-btn-active-bg: rgb(52, 211, 153);
  --bs-alert-bg: rgb(52, 211, 153);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-400:disabled {
  --bs-border-color: rgb(52, 211, 153);
  border-color: var(--bs-border-color);
}

.text-emerald-500 {
  --bs-alert-color: rgb(16, 185, 129);
  --bs-btn-color: rgb(16, 185, 129);
  color: var(--bs-btn-color);
}

.fill-emerald-500 {
  color: rgb(16, 185, 129);
}

.stroke-emerald-500 {
  color: rgb(16, 185, 129);
}

.accent-emerald-500 {
  accent-color: rgb(16, 185, 129);
}

.bg-emerald-500 {
  --bs-btn-active-bg: rgb(16, 185, 129);
  --bs-alert-bg: rgb(16, 185, 129);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-500 {
  --bs-border-color: rgb(16, 185, 129);
  --bs-alert-border: rgb(16, 185, 129);
  border-color: var(--bs-border-color);
}

.decoration-emerald-500 {
  text-decoration-color: rgb(16, 185, 129);
}

.hover\:text-emerald-500:hover {
  color: rgb(16, 185, 129);
}

.hover\:bg-emerald-500:hover {
  --bs-btn-active-bg: rgb(16, 185, 129);
  --bs-alert-bg: rgb(16, 185, 129);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-500:hover {
  --bs-border-color: rgb(16, 185, 129);
  --bs-alert-border-color: rgb(16, 185, 129);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-500 {
  text-decoration-color: rgb(16, 185, 129);
}

.focus\:text-emerald-500:focus {
  color: rgb(16, 185, 129);
}

.focus\:bg-emerald-500:focus {
  --bs-btn-active-bg: rgb(16, 185, 129);
  --bs-alert-bg: rgb(16, 185, 129);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-500:focus {
  --bs-border-color: rgb(16, 185, 129);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-500 {
  text-decoration-color: rgb(16, 185, 129);
}

.active\:text-emerald-500:active {
  color: rgb(16, 185, 129);
}

.active\:bg-emerald-500:active {
  --bs-btn-active-bg: rgb(16, 185, 129);
  --bs-alert-bg: rgb(16, 185, 129);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-500:active {
  --bs-border-color: rgb(16, 185, 129);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-500:disabled {
  color: rgb(16, 185, 129);
}

.disabled\:bg-emerald-500:disabled {
  --bs-btn-active-bg: rgb(16, 185, 129);
  --bs-alert-bg: rgb(16, 185, 129);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-500:disabled {
  --bs-border-color: rgb(16, 185, 129);
  border-color: var(--bs-border-color);
}

.text-emerald-600 {
  --bs-alert-color: rgb(5, 150, 105);
  --bs-btn-color: rgb(5, 150, 105);
  color: var(--bs-btn-color);
}

.fill-emerald-600 {
  color: rgb(5, 150, 105);
}

.stroke-emerald-600 {
  color: rgb(5, 150, 105);
}

.accent-emerald-600 {
  accent-color: rgb(5, 150, 105);
}

.bg-emerald-600 {
  --bs-btn-active-bg: rgb(5, 150, 105);
  --bs-alert-bg: rgb(5, 150, 105);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-600 {
  --bs-border-color: rgb(5, 150, 105);
  --bs-alert-border: rgb(5, 150, 105);
  border-color: var(--bs-border-color);
}

.decoration-emerald-600 {
  text-decoration-color: rgb(5, 150, 105);
}

.hover\:text-emerald-600:hover {
  color: rgb(5, 150, 105);
}

.hover\:bg-emerald-600:hover {
  --bs-btn-active-bg: rgb(5, 150, 105);
  --bs-alert-bg: rgb(5, 150, 105);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-600:hover {
  --bs-border-color: rgb(5, 150, 105);
  --bs-alert-border-color: rgb(5, 150, 105);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-600 {
  text-decoration-color: rgb(5, 150, 105);
}

.focus\:text-emerald-600:focus {
  color: rgb(5, 150, 105);
}

.focus\:bg-emerald-600:focus {
  --bs-btn-active-bg: rgb(5, 150, 105);
  --bs-alert-bg: rgb(5, 150, 105);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-600:focus {
  --bs-border-color: rgb(5, 150, 105);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-600 {
  text-decoration-color: rgb(5, 150, 105);
}

.active\:text-emerald-600:active {
  color: rgb(5, 150, 105);
}

.active\:bg-emerald-600:active {
  --bs-btn-active-bg: rgb(5, 150, 105);
  --bs-alert-bg: rgb(5, 150, 105);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-600:active {
  --bs-border-color: rgb(5, 150, 105);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-600:disabled {
  color: rgb(5, 150, 105);
}

.disabled\:bg-emerald-600:disabled {
  --bs-btn-active-bg: rgb(5, 150, 105);
  --bs-alert-bg: rgb(5, 150, 105);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-600:disabled {
  --bs-border-color: rgb(5, 150, 105);
  border-color: var(--bs-border-color);
}

.text-emerald-700 {
  --bs-alert-color: rgb(4, 120, 87);
  --bs-btn-color: rgb(4, 120, 87);
  color: var(--bs-btn-color);
}

.fill-emerald-700 {
  color: rgb(4, 120, 87);
}

.stroke-emerald-700 {
  color: rgb(4, 120, 87);
}

.accent-emerald-700 {
  accent-color: rgb(4, 120, 87);
}

.bg-emerald-700 {
  --bs-btn-active-bg: rgb(4, 120, 87);
  --bs-alert-bg: rgb(4, 120, 87);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-700 {
  --bs-border-color: rgb(4, 120, 87);
  --bs-alert-border: rgb(4, 120, 87);
  border-color: var(--bs-border-color);
}

.decoration-emerald-700 {
  text-decoration-color: rgb(4, 120, 87);
}

.hover\:text-emerald-700:hover {
  color: rgb(4, 120, 87);
}

.hover\:bg-emerald-700:hover {
  --bs-btn-active-bg: rgb(4, 120, 87);
  --bs-alert-bg: rgb(4, 120, 87);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-700:hover {
  --bs-border-color: rgb(4, 120, 87);
  --bs-alert-border-color: rgb(4, 120, 87);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-700 {
  text-decoration-color: rgb(4, 120, 87);
}

.focus\:text-emerald-700:focus {
  color: rgb(4, 120, 87);
}

.focus\:bg-emerald-700:focus {
  --bs-btn-active-bg: rgb(4, 120, 87);
  --bs-alert-bg: rgb(4, 120, 87);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-700:focus {
  --bs-border-color: rgb(4, 120, 87);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-700 {
  text-decoration-color: rgb(4, 120, 87);
}

.active\:text-emerald-700:active {
  color: rgb(4, 120, 87);
}

.active\:bg-emerald-700:active {
  --bs-btn-active-bg: rgb(4, 120, 87);
  --bs-alert-bg: rgb(4, 120, 87);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-700:active {
  --bs-border-color: rgb(4, 120, 87);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-700:disabled {
  color: rgb(4, 120, 87);
}

.disabled\:bg-emerald-700:disabled {
  --bs-btn-active-bg: rgb(4, 120, 87);
  --bs-alert-bg: rgb(4, 120, 87);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-700:disabled {
  --bs-border-color: rgb(4, 120, 87);
  border-color: var(--bs-border-color);
}

.text-emerald-800 {
  --bs-alert-color: rgb(6, 95, 70);
  --bs-btn-color: rgb(6, 95, 70);
  color: var(--bs-btn-color);
}

.fill-emerald-800 {
  color: rgb(6, 95, 70);
}

.stroke-emerald-800 {
  color: rgb(6, 95, 70);
}

.accent-emerald-800 {
  accent-color: rgb(6, 95, 70);
}

.bg-emerald-800 {
  --bs-btn-active-bg: rgb(6, 95, 70);
  --bs-alert-bg: rgb(6, 95, 70);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-800 {
  --bs-border-color: rgb(6, 95, 70);
  --bs-alert-border: rgb(6, 95, 70);
  border-color: var(--bs-border-color);
}

.decoration-emerald-800 {
  text-decoration-color: rgb(6, 95, 70);
}

.hover\:text-emerald-800:hover {
  color: rgb(6, 95, 70);
}

.hover\:bg-emerald-800:hover {
  --bs-btn-active-bg: rgb(6, 95, 70);
  --bs-alert-bg: rgb(6, 95, 70);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-800:hover {
  --bs-border-color: rgb(6, 95, 70);
  --bs-alert-border-color: rgb(6, 95, 70);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-800 {
  text-decoration-color: rgb(6, 95, 70);
}

.focus\:text-emerald-800:focus {
  color: rgb(6, 95, 70);
}

.focus\:bg-emerald-800:focus {
  --bs-btn-active-bg: rgb(6, 95, 70);
  --bs-alert-bg: rgb(6, 95, 70);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-800:focus {
  --bs-border-color: rgb(6, 95, 70);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-800 {
  text-decoration-color: rgb(6, 95, 70);
}

.active\:text-emerald-800:active {
  color: rgb(6, 95, 70);
}

.active\:bg-emerald-800:active {
  --bs-btn-active-bg: rgb(6, 95, 70);
  --bs-alert-bg: rgb(6, 95, 70);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-800:active {
  --bs-border-color: rgb(6, 95, 70);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-800:disabled {
  color: rgb(6, 95, 70);
}

.disabled\:bg-emerald-800:disabled {
  --bs-btn-active-bg: rgb(6, 95, 70);
  --bs-alert-bg: rgb(6, 95, 70);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-800:disabled {
  --bs-border-color: rgb(6, 95, 70);
  border-color: var(--bs-border-color);
}

.text-emerald-900 {
  --bs-alert-color: rgb(6, 78, 59);
  --bs-btn-color: rgb(6, 78, 59);
  color: var(--bs-btn-color);
}

.fill-emerald-900 {
  color: rgb(6, 78, 59);
}

.stroke-emerald-900 {
  color: rgb(6, 78, 59);
}

.accent-emerald-900 {
  accent-color: rgb(6, 78, 59);
}

.bg-emerald-900 {
  --bs-btn-active-bg: rgb(6, 78, 59);
  --bs-alert-bg: rgb(6, 78, 59);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-900 {
  --bs-border-color: rgb(6, 78, 59);
  --bs-alert-border: rgb(6, 78, 59);
  border-color: var(--bs-border-color);
}

.decoration-emerald-900 {
  text-decoration-color: rgb(6, 78, 59);
}

.hover\:text-emerald-900:hover {
  color: rgb(6, 78, 59);
}

.hover\:bg-emerald-900:hover {
  --bs-btn-active-bg: rgb(6, 78, 59);
  --bs-alert-bg: rgb(6, 78, 59);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-900:hover {
  --bs-border-color: rgb(6, 78, 59);
  --bs-alert-border-color: rgb(6, 78, 59);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-900 {
  text-decoration-color: rgb(6, 78, 59);
}

.focus\:text-emerald-900:focus {
  color: rgb(6, 78, 59);
}

.focus\:bg-emerald-900:focus {
  --bs-btn-active-bg: rgb(6, 78, 59);
  --bs-alert-bg: rgb(6, 78, 59);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-900:focus {
  --bs-border-color: rgb(6, 78, 59);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-900 {
  text-decoration-color: rgb(6, 78, 59);
}

.active\:text-emerald-900:active {
  color: rgb(6, 78, 59);
}

.active\:bg-emerald-900:active {
  --bs-btn-active-bg: rgb(6, 78, 59);
  --bs-alert-bg: rgb(6, 78, 59);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-900:active {
  --bs-border-color: rgb(6, 78, 59);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-900:disabled {
  color: rgb(6, 78, 59);
}

.disabled\:bg-emerald-900:disabled {
  --bs-btn-active-bg: rgb(6, 78, 59);
  --bs-alert-bg: rgb(6, 78, 59);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-900:disabled {
  --bs-border-color: rgb(6, 78, 59);
  border-color: var(--bs-border-color);
}

.text-emerald-950 {
  --bs-alert-color: rgb(2, 44, 34);
  --bs-btn-color: rgb(2, 44, 34);
  color: var(--bs-btn-color);
}

.fill-emerald-950 {
  color: rgb(2, 44, 34);
}

.stroke-emerald-950 {
  color: rgb(2, 44, 34);
}

.accent-emerald-950 {
  accent-color: rgb(2, 44, 34);
}

.bg-emerald-950 {
  --bs-btn-active-bg: rgb(2, 44, 34);
  --bs-alert-bg: rgb(2, 44, 34);
  background-color: var(--bs-btn-active-bg);
}

.border-emerald-950 {
  --bs-border-color: rgb(2, 44, 34);
  --bs-alert-border: rgb(2, 44, 34);
  border-color: var(--bs-border-color);
}

.decoration-emerald-950 {
  text-decoration-color: rgb(2, 44, 34);
}

.hover\:text-emerald-950:hover {
  color: rgb(2, 44, 34);
}

.hover\:bg-emerald-950:hover {
  --bs-btn-active-bg: rgb(2, 44, 34);
  --bs-alert-bg: rgb(2, 44, 34);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-emerald-950:hover {
  --bs-border-color: rgb(2, 44, 34);
  --bs-alert-border-color: rgb(2, 44, 34);
  border-color: var(--bs-border-color);
}

.hover\:decoration-emerald-950 {
  text-decoration-color: rgb(2, 44, 34);
}

.focus\:text-emerald-950:focus {
  color: rgb(2, 44, 34);
}

.focus\:bg-emerald-950:focus {
  --bs-btn-active-bg: rgb(2, 44, 34);
  --bs-alert-bg: rgb(2, 44, 34);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-emerald-950:focus {
  --bs-border-color: rgb(2, 44, 34);
  border-color: var(--bs-border-color);
}

.focus\:decoration-emerald-950 {
  text-decoration-color: rgb(2, 44, 34);
}

.active\:text-emerald-950:active {
  color: rgb(2, 44, 34);
}

.active\:bg-emerald-950:active {
  --bs-btn-active-bg: rgb(2, 44, 34);
  --bs-alert-bg: rgb(2, 44, 34);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-emerald-950:active {
  --bs-border-color: rgb(2, 44, 34);
  border-color: var(--bs-border-color);
}

.disabled\:text-emerald-950:disabled {
  color: rgb(2, 44, 34);
}

.disabled\:bg-emerald-950:disabled {
  --bs-btn-active-bg: rgb(2, 44, 34);
  --bs-alert-bg: rgb(2, 44, 34);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-emerald-950:disabled {
  --bs-border-color: rgb(2, 44, 34);
  border-color: var(--bs-border-color);
}

.text-teal-50 {
  --bs-alert-color: rgb(240, 253, 250);
  --bs-btn-color: rgb(240, 253, 250);
  color: var(--bs-btn-color);
}

.fill-teal-50 {
  color: rgb(240, 253, 250);
}

.stroke-teal-50 {
  color: rgb(240, 253, 250);
}

.accent-teal-50 {
  accent-color: rgb(240, 253, 250);
}

.bg-teal-50 {
  --bs-btn-active-bg: rgb(240, 253, 250);
  --bs-alert-bg: rgb(240, 253, 250);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-50 {
  --bs-border-color: rgb(240, 253, 250);
  --bs-alert-border: rgb(240, 253, 250);
  border-color: var(--bs-border-color);
}

.decoration-teal-50 {
  text-decoration-color: rgb(240, 253, 250);
}

.hover\:text-teal-50:hover {
  color: rgb(240, 253, 250);
}

.hover\:bg-teal-50:hover {
  --bs-btn-active-bg: rgb(240, 253, 250);
  --bs-alert-bg: rgb(240, 253, 250);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-50:hover {
  --bs-border-color: rgb(240, 253, 250);
  --bs-alert-border-color: rgb(240, 253, 250);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-50 {
  text-decoration-color: rgb(240, 253, 250);
}

.focus\:text-teal-50:focus {
  color: rgb(240, 253, 250);
}

.focus\:bg-teal-50:focus {
  --bs-btn-active-bg: rgb(240, 253, 250);
  --bs-alert-bg: rgb(240, 253, 250);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-50:focus {
  --bs-border-color: rgb(240, 253, 250);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-50 {
  text-decoration-color: rgb(240, 253, 250);
}

.active\:text-teal-50:active {
  color: rgb(240, 253, 250);
}

.active\:bg-teal-50:active {
  --bs-btn-active-bg: rgb(240, 253, 250);
  --bs-alert-bg: rgb(240, 253, 250);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-50:active {
  --bs-border-color: rgb(240, 253, 250);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-50:disabled {
  color: rgb(240, 253, 250);
}

.disabled\:bg-teal-50:disabled {
  --bs-btn-active-bg: rgb(240, 253, 250);
  --bs-alert-bg: rgb(240, 253, 250);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-50:disabled {
  --bs-border-color: rgb(240, 253, 250);
  border-color: var(--bs-border-color);
}

.text-teal-100 {
  --bs-alert-color: rgb(204, 251, 241);
  --bs-btn-color: rgb(204, 251, 241);
  color: var(--bs-btn-color);
}

.fill-teal-100 {
  color: rgb(204, 251, 241);
}

.stroke-teal-100 {
  color: rgb(204, 251, 241);
}

.accent-teal-100 {
  accent-color: rgb(204, 251, 241);
}

.bg-teal-100 {
  --bs-btn-active-bg: rgb(204, 251, 241);
  --bs-alert-bg: rgb(204, 251, 241);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-100 {
  --bs-border-color: rgb(204, 251, 241);
  --bs-alert-border: rgb(204, 251, 241);
  border-color: var(--bs-border-color);
}

.decoration-teal-100 {
  text-decoration-color: rgb(204, 251, 241);
}

.hover\:text-teal-100:hover {
  color: rgb(204, 251, 241);
}

.hover\:bg-teal-100:hover {
  --bs-btn-active-bg: rgb(204, 251, 241);
  --bs-alert-bg: rgb(204, 251, 241);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-100:hover {
  --bs-border-color: rgb(204, 251, 241);
  --bs-alert-border-color: rgb(204, 251, 241);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-100 {
  text-decoration-color: rgb(204, 251, 241);
}

.focus\:text-teal-100:focus {
  color: rgb(204, 251, 241);
}

.focus\:bg-teal-100:focus {
  --bs-btn-active-bg: rgb(204, 251, 241);
  --bs-alert-bg: rgb(204, 251, 241);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-100:focus {
  --bs-border-color: rgb(204, 251, 241);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-100 {
  text-decoration-color: rgb(204, 251, 241);
}

.active\:text-teal-100:active {
  color: rgb(204, 251, 241);
}

.active\:bg-teal-100:active {
  --bs-btn-active-bg: rgb(204, 251, 241);
  --bs-alert-bg: rgb(204, 251, 241);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-100:active {
  --bs-border-color: rgb(204, 251, 241);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-100:disabled {
  color: rgb(204, 251, 241);
}

.disabled\:bg-teal-100:disabled {
  --bs-btn-active-bg: rgb(204, 251, 241);
  --bs-alert-bg: rgb(204, 251, 241);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-100:disabled {
  --bs-border-color: rgb(204, 251, 241);
  border-color: var(--bs-border-color);
}

.text-teal-200 {
  --bs-alert-color: rgb(153, 246, 228);
  --bs-btn-color: rgb(153, 246, 228);
  color: var(--bs-btn-color);
}

.fill-teal-200 {
  color: rgb(153, 246, 228);
}

.stroke-teal-200 {
  color: rgb(153, 246, 228);
}

.accent-teal-200 {
  accent-color: rgb(153, 246, 228);
}

.bg-teal-200 {
  --bs-btn-active-bg: rgb(153, 246, 228);
  --bs-alert-bg: rgb(153, 246, 228);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-200 {
  --bs-border-color: rgb(153, 246, 228);
  --bs-alert-border: rgb(153, 246, 228);
  border-color: var(--bs-border-color);
}

.decoration-teal-200 {
  text-decoration-color: rgb(153, 246, 228);
}

.hover\:text-teal-200:hover {
  color: rgb(153, 246, 228);
}

.hover\:bg-teal-200:hover {
  --bs-btn-active-bg: rgb(153, 246, 228);
  --bs-alert-bg: rgb(153, 246, 228);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-200:hover {
  --bs-border-color: rgb(153, 246, 228);
  --bs-alert-border-color: rgb(153, 246, 228);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-200 {
  text-decoration-color: rgb(153, 246, 228);
}

.focus\:text-teal-200:focus {
  color: rgb(153, 246, 228);
}

.focus\:bg-teal-200:focus {
  --bs-btn-active-bg: rgb(153, 246, 228);
  --bs-alert-bg: rgb(153, 246, 228);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-200:focus {
  --bs-border-color: rgb(153, 246, 228);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-200 {
  text-decoration-color: rgb(153, 246, 228);
}

.active\:text-teal-200:active {
  color: rgb(153, 246, 228);
}

.active\:bg-teal-200:active {
  --bs-btn-active-bg: rgb(153, 246, 228);
  --bs-alert-bg: rgb(153, 246, 228);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-200:active {
  --bs-border-color: rgb(153, 246, 228);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-200:disabled {
  color: rgb(153, 246, 228);
}

.disabled\:bg-teal-200:disabled {
  --bs-btn-active-bg: rgb(153, 246, 228);
  --bs-alert-bg: rgb(153, 246, 228);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-200:disabled {
  --bs-border-color: rgb(153, 246, 228);
  border-color: var(--bs-border-color);
}

.text-teal-300 {
  --bs-alert-color: rgb(94, 234, 212);
  --bs-btn-color: rgb(94, 234, 212);
  color: var(--bs-btn-color);
}

.fill-teal-300 {
  color: rgb(94, 234, 212);
}

.stroke-teal-300 {
  color: rgb(94, 234, 212);
}

.accent-teal-300 {
  accent-color: rgb(94, 234, 212);
}

.bg-teal-300 {
  --bs-btn-active-bg: rgb(94, 234, 212);
  --bs-alert-bg: rgb(94, 234, 212);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-300 {
  --bs-border-color: rgb(94, 234, 212);
  --bs-alert-border: rgb(94, 234, 212);
  border-color: var(--bs-border-color);
}

.decoration-teal-300 {
  text-decoration-color: rgb(94, 234, 212);
}

.hover\:text-teal-300:hover {
  color: rgb(94, 234, 212);
}

.hover\:bg-teal-300:hover {
  --bs-btn-active-bg: rgb(94, 234, 212);
  --bs-alert-bg: rgb(94, 234, 212);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-300:hover {
  --bs-border-color: rgb(94, 234, 212);
  --bs-alert-border-color: rgb(94, 234, 212);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-300 {
  text-decoration-color: rgb(94, 234, 212);
}

.focus\:text-teal-300:focus {
  color: rgb(94, 234, 212);
}

.focus\:bg-teal-300:focus {
  --bs-btn-active-bg: rgb(94, 234, 212);
  --bs-alert-bg: rgb(94, 234, 212);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-300:focus {
  --bs-border-color: rgb(94, 234, 212);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-300 {
  text-decoration-color: rgb(94, 234, 212);
}

.active\:text-teal-300:active {
  color: rgb(94, 234, 212);
}

.active\:bg-teal-300:active {
  --bs-btn-active-bg: rgb(94, 234, 212);
  --bs-alert-bg: rgb(94, 234, 212);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-300:active {
  --bs-border-color: rgb(94, 234, 212);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-300:disabled {
  color: rgb(94, 234, 212);
}

.disabled\:bg-teal-300:disabled {
  --bs-btn-active-bg: rgb(94, 234, 212);
  --bs-alert-bg: rgb(94, 234, 212);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-300:disabled {
  --bs-border-color: rgb(94, 234, 212);
  border-color: var(--bs-border-color);
}

.text-teal-400 {
  --bs-alert-color: rgb(45, 212, 191);
  --bs-btn-color: rgb(45, 212, 191);
  color: var(--bs-btn-color);
}

.fill-teal-400 {
  color: rgb(45, 212, 191);
}

.stroke-teal-400 {
  color: rgb(45, 212, 191);
}

.accent-teal-400 {
  accent-color: rgb(45, 212, 191);
}

.bg-teal-400 {
  --bs-btn-active-bg: rgb(45, 212, 191);
  --bs-alert-bg: rgb(45, 212, 191);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-400 {
  --bs-border-color: rgb(45, 212, 191);
  --bs-alert-border: rgb(45, 212, 191);
  border-color: var(--bs-border-color);
}

.decoration-teal-400 {
  text-decoration-color: rgb(45, 212, 191);
}

.hover\:text-teal-400:hover {
  color: rgb(45, 212, 191);
}

.hover\:bg-teal-400:hover {
  --bs-btn-active-bg: rgb(45, 212, 191);
  --bs-alert-bg: rgb(45, 212, 191);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-400:hover {
  --bs-border-color: rgb(45, 212, 191);
  --bs-alert-border-color: rgb(45, 212, 191);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-400 {
  text-decoration-color: rgb(45, 212, 191);
}

.focus\:text-teal-400:focus {
  color: rgb(45, 212, 191);
}

.focus\:bg-teal-400:focus {
  --bs-btn-active-bg: rgb(45, 212, 191);
  --bs-alert-bg: rgb(45, 212, 191);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-400:focus {
  --bs-border-color: rgb(45, 212, 191);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-400 {
  text-decoration-color: rgb(45, 212, 191);
}

.active\:text-teal-400:active {
  color: rgb(45, 212, 191);
}

.active\:bg-teal-400:active {
  --bs-btn-active-bg: rgb(45, 212, 191);
  --bs-alert-bg: rgb(45, 212, 191);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-400:active {
  --bs-border-color: rgb(45, 212, 191);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-400:disabled {
  color: rgb(45, 212, 191);
}

.disabled\:bg-teal-400:disabled {
  --bs-btn-active-bg: rgb(45, 212, 191);
  --bs-alert-bg: rgb(45, 212, 191);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-400:disabled {
  --bs-border-color: rgb(45, 212, 191);
  border-color: var(--bs-border-color);
}

.text-teal-500 {
  --bs-alert-color: rgb(20, 184, 166);
  --bs-btn-color: rgb(20, 184, 166);
  color: var(--bs-btn-color);
}

.fill-teal-500 {
  color: rgb(20, 184, 166);
}

.stroke-teal-500 {
  color: rgb(20, 184, 166);
}

.accent-teal-500 {
  accent-color: rgb(20, 184, 166);
}

.bg-teal-500 {
  --bs-btn-active-bg: rgb(20, 184, 166);
  --bs-alert-bg: rgb(20, 184, 166);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-500 {
  --bs-border-color: rgb(20, 184, 166);
  --bs-alert-border: rgb(20, 184, 166);
  border-color: var(--bs-border-color);
}

.decoration-teal-500 {
  text-decoration-color: rgb(20, 184, 166);
}

.hover\:text-teal-500:hover {
  color: rgb(20, 184, 166);
}

.hover\:bg-teal-500:hover {
  --bs-btn-active-bg: rgb(20, 184, 166);
  --bs-alert-bg: rgb(20, 184, 166);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-500:hover {
  --bs-border-color: rgb(20, 184, 166);
  --bs-alert-border-color: rgb(20, 184, 166);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-500 {
  text-decoration-color: rgb(20, 184, 166);
}

.focus\:text-teal-500:focus {
  color: rgb(20, 184, 166);
}

.focus\:bg-teal-500:focus {
  --bs-btn-active-bg: rgb(20, 184, 166);
  --bs-alert-bg: rgb(20, 184, 166);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-500:focus {
  --bs-border-color: rgb(20, 184, 166);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-500 {
  text-decoration-color: rgb(20, 184, 166);
}

.active\:text-teal-500:active {
  color: rgb(20, 184, 166);
}

.active\:bg-teal-500:active {
  --bs-btn-active-bg: rgb(20, 184, 166);
  --bs-alert-bg: rgb(20, 184, 166);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-500:active {
  --bs-border-color: rgb(20, 184, 166);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-500:disabled {
  color: rgb(20, 184, 166);
}

.disabled\:bg-teal-500:disabled {
  --bs-btn-active-bg: rgb(20, 184, 166);
  --bs-alert-bg: rgb(20, 184, 166);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-500:disabled {
  --bs-border-color: rgb(20, 184, 166);
  border-color: var(--bs-border-color);
}

.text-teal-600 {
  --bs-alert-color: rgb(13, 148, 136);
  --bs-btn-color: rgb(13, 148, 136);
  color: var(--bs-btn-color);
}

.fill-teal-600 {
  color: rgb(13, 148, 136);
}

.stroke-teal-600 {
  color: rgb(13, 148, 136);
}

.accent-teal-600 {
  accent-color: rgb(13, 148, 136);
}

.bg-teal-600 {
  --bs-btn-active-bg: rgb(13, 148, 136);
  --bs-alert-bg: rgb(13, 148, 136);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-600 {
  --bs-border-color: rgb(13, 148, 136);
  --bs-alert-border: rgb(13, 148, 136);
  border-color: var(--bs-border-color);
}

.decoration-teal-600 {
  text-decoration-color: rgb(13, 148, 136);
}

.hover\:text-teal-600:hover {
  color: rgb(13, 148, 136);
}

.hover\:bg-teal-600:hover {
  --bs-btn-active-bg: rgb(13, 148, 136);
  --bs-alert-bg: rgb(13, 148, 136);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-600:hover {
  --bs-border-color: rgb(13, 148, 136);
  --bs-alert-border-color: rgb(13, 148, 136);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-600 {
  text-decoration-color: rgb(13, 148, 136);
}

.focus\:text-teal-600:focus {
  color: rgb(13, 148, 136);
}

.focus\:bg-teal-600:focus {
  --bs-btn-active-bg: rgb(13, 148, 136);
  --bs-alert-bg: rgb(13, 148, 136);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-600:focus {
  --bs-border-color: rgb(13, 148, 136);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-600 {
  text-decoration-color: rgb(13, 148, 136);
}

.active\:text-teal-600:active {
  color: rgb(13, 148, 136);
}

.active\:bg-teal-600:active {
  --bs-btn-active-bg: rgb(13, 148, 136);
  --bs-alert-bg: rgb(13, 148, 136);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-600:active {
  --bs-border-color: rgb(13, 148, 136);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-600:disabled {
  color: rgb(13, 148, 136);
}

.disabled\:bg-teal-600:disabled {
  --bs-btn-active-bg: rgb(13, 148, 136);
  --bs-alert-bg: rgb(13, 148, 136);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-600:disabled {
  --bs-border-color: rgb(13, 148, 136);
  border-color: var(--bs-border-color);
}

.text-teal-700 {
  --bs-alert-color: rgb(15, 118, 110);
  --bs-btn-color: rgb(15, 118, 110);
  color: var(--bs-btn-color);
}

.fill-teal-700 {
  color: rgb(15, 118, 110);
}

.stroke-teal-700 {
  color: rgb(15, 118, 110);
}

.accent-teal-700 {
  accent-color: rgb(15, 118, 110);
}

.bg-teal-700 {
  --bs-btn-active-bg: rgb(15, 118, 110);
  --bs-alert-bg: rgb(15, 118, 110);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-700 {
  --bs-border-color: rgb(15, 118, 110);
  --bs-alert-border: rgb(15, 118, 110);
  border-color: var(--bs-border-color);
}

.decoration-teal-700 {
  text-decoration-color: rgb(15, 118, 110);
}

.hover\:text-teal-700:hover {
  color: rgb(15, 118, 110);
}

.hover\:bg-teal-700:hover {
  --bs-btn-active-bg: rgb(15, 118, 110);
  --bs-alert-bg: rgb(15, 118, 110);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-700:hover {
  --bs-border-color: rgb(15, 118, 110);
  --bs-alert-border-color: rgb(15, 118, 110);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-700 {
  text-decoration-color: rgb(15, 118, 110);
}

.focus\:text-teal-700:focus {
  color: rgb(15, 118, 110);
}

.focus\:bg-teal-700:focus {
  --bs-btn-active-bg: rgb(15, 118, 110);
  --bs-alert-bg: rgb(15, 118, 110);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-700:focus {
  --bs-border-color: rgb(15, 118, 110);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-700 {
  text-decoration-color: rgb(15, 118, 110);
}

.active\:text-teal-700:active {
  color: rgb(15, 118, 110);
}

.active\:bg-teal-700:active {
  --bs-btn-active-bg: rgb(15, 118, 110);
  --bs-alert-bg: rgb(15, 118, 110);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-700:active {
  --bs-border-color: rgb(15, 118, 110);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-700:disabled {
  color: rgb(15, 118, 110);
}

.disabled\:bg-teal-700:disabled {
  --bs-btn-active-bg: rgb(15, 118, 110);
  --bs-alert-bg: rgb(15, 118, 110);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-700:disabled {
  --bs-border-color: rgb(15, 118, 110);
  border-color: var(--bs-border-color);
}

.text-teal-800 {
  --bs-alert-color: rgb(17, 94, 89);
  --bs-btn-color: rgb(17, 94, 89);
  color: var(--bs-btn-color);
}

.fill-teal-800 {
  color: rgb(17, 94, 89);
}

.stroke-teal-800 {
  color: rgb(17, 94, 89);
}

.accent-teal-800 {
  accent-color: rgb(17, 94, 89);
}

.bg-teal-800 {
  --bs-btn-active-bg: rgb(17, 94, 89);
  --bs-alert-bg: rgb(17, 94, 89);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-800 {
  --bs-border-color: rgb(17, 94, 89);
  --bs-alert-border: rgb(17, 94, 89);
  border-color: var(--bs-border-color);
}

.decoration-teal-800 {
  text-decoration-color: rgb(17, 94, 89);
}

.hover\:text-teal-800:hover {
  color: rgb(17, 94, 89);
}

.hover\:bg-teal-800:hover {
  --bs-btn-active-bg: rgb(17, 94, 89);
  --bs-alert-bg: rgb(17, 94, 89);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-800:hover {
  --bs-border-color: rgb(17, 94, 89);
  --bs-alert-border-color: rgb(17, 94, 89);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-800 {
  text-decoration-color: rgb(17, 94, 89);
}

.focus\:text-teal-800:focus {
  color: rgb(17, 94, 89);
}

.focus\:bg-teal-800:focus {
  --bs-btn-active-bg: rgb(17, 94, 89);
  --bs-alert-bg: rgb(17, 94, 89);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-800:focus {
  --bs-border-color: rgb(17, 94, 89);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-800 {
  text-decoration-color: rgb(17, 94, 89);
}

.active\:text-teal-800:active {
  color: rgb(17, 94, 89);
}

.active\:bg-teal-800:active {
  --bs-btn-active-bg: rgb(17, 94, 89);
  --bs-alert-bg: rgb(17, 94, 89);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-800:active {
  --bs-border-color: rgb(17, 94, 89);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-800:disabled {
  color: rgb(17, 94, 89);
}

.disabled\:bg-teal-800:disabled {
  --bs-btn-active-bg: rgb(17, 94, 89);
  --bs-alert-bg: rgb(17, 94, 89);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-800:disabled {
  --bs-border-color: rgb(17, 94, 89);
  border-color: var(--bs-border-color);
}

.text-teal-900 {
  --bs-alert-color: rgb(19, 78, 74);
  --bs-btn-color: rgb(19, 78, 74);
  color: var(--bs-btn-color);
}

.fill-teal-900 {
  color: rgb(19, 78, 74);
}

.stroke-teal-900 {
  color: rgb(19, 78, 74);
}

.accent-teal-900 {
  accent-color: rgb(19, 78, 74);
}

.bg-teal-900 {
  --bs-btn-active-bg: rgb(19, 78, 74);
  --bs-alert-bg: rgb(19, 78, 74);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-900 {
  --bs-border-color: rgb(19, 78, 74);
  --bs-alert-border: rgb(19, 78, 74);
  border-color: var(--bs-border-color);
}

.decoration-teal-900 {
  text-decoration-color: rgb(19, 78, 74);
}

.hover\:text-teal-900:hover {
  color: rgb(19, 78, 74);
}

.hover\:bg-teal-900:hover {
  --bs-btn-active-bg: rgb(19, 78, 74);
  --bs-alert-bg: rgb(19, 78, 74);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-900:hover {
  --bs-border-color: rgb(19, 78, 74);
  --bs-alert-border-color: rgb(19, 78, 74);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-900 {
  text-decoration-color: rgb(19, 78, 74);
}

.focus\:text-teal-900:focus {
  color: rgb(19, 78, 74);
}

.focus\:bg-teal-900:focus {
  --bs-btn-active-bg: rgb(19, 78, 74);
  --bs-alert-bg: rgb(19, 78, 74);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-900:focus {
  --bs-border-color: rgb(19, 78, 74);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-900 {
  text-decoration-color: rgb(19, 78, 74);
}

.active\:text-teal-900:active {
  color: rgb(19, 78, 74);
}

.active\:bg-teal-900:active {
  --bs-btn-active-bg: rgb(19, 78, 74);
  --bs-alert-bg: rgb(19, 78, 74);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-900:active {
  --bs-border-color: rgb(19, 78, 74);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-900:disabled {
  color: rgb(19, 78, 74);
}

.disabled\:bg-teal-900:disabled {
  --bs-btn-active-bg: rgb(19, 78, 74);
  --bs-alert-bg: rgb(19, 78, 74);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-900:disabled {
  --bs-border-color: rgb(19, 78, 74);
  border-color: var(--bs-border-color);
}

.text-teal-950 {
  --bs-alert-color: rgb(4, 47, 46);
  --bs-btn-color: rgb(4, 47, 46);
  color: var(--bs-btn-color);
}

.fill-teal-950 {
  color: rgb(4, 47, 46);
}

.stroke-teal-950 {
  color: rgb(4, 47, 46);
}

.accent-teal-950 {
  accent-color: rgb(4, 47, 46);
}

.bg-teal-950 {
  --bs-btn-active-bg: rgb(4, 47, 46);
  --bs-alert-bg: rgb(4, 47, 46);
  background-color: var(--bs-btn-active-bg);
}

.border-teal-950 {
  --bs-border-color: rgb(4, 47, 46);
  --bs-alert-border: rgb(4, 47, 46);
  border-color: var(--bs-border-color);
}

.decoration-teal-950 {
  text-decoration-color: rgb(4, 47, 46);
}

.hover\:text-teal-950:hover {
  color: rgb(4, 47, 46);
}

.hover\:bg-teal-950:hover {
  --bs-btn-active-bg: rgb(4, 47, 46);
  --bs-alert-bg: rgb(4, 47, 46);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-teal-950:hover {
  --bs-border-color: rgb(4, 47, 46);
  --bs-alert-border-color: rgb(4, 47, 46);
  border-color: var(--bs-border-color);
}

.hover\:decoration-teal-950 {
  text-decoration-color: rgb(4, 47, 46);
}

.focus\:text-teal-950:focus {
  color: rgb(4, 47, 46);
}

.focus\:bg-teal-950:focus {
  --bs-btn-active-bg: rgb(4, 47, 46);
  --bs-alert-bg: rgb(4, 47, 46);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-teal-950:focus {
  --bs-border-color: rgb(4, 47, 46);
  border-color: var(--bs-border-color);
}

.focus\:decoration-teal-950 {
  text-decoration-color: rgb(4, 47, 46);
}

.active\:text-teal-950:active {
  color: rgb(4, 47, 46);
}

.active\:bg-teal-950:active {
  --bs-btn-active-bg: rgb(4, 47, 46);
  --bs-alert-bg: rgb(4, 47, 46);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-teal-950:active {
  --bs-border-color: rgb(4, 47, 46);
  border-color: var(--bs-border-color);
}

.disabled\:text-teal-950:disabled {
  color: rgb(4, 47, 46);
}

.disabled\:bg-teal-950:disabled {
  --bs-btn-active-bg: rgb(4, 47, 46);
  --bs-alert-bg: rgb(4, 47, 46);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-teal-950:disabled {
  --bs-border-color: rgb(4, 47, 46);
  border-color: var(--bs-border-color);
}

.text-cyan-50 {
  --bs-alert-color: rgb(236, 254, 255);
  --bs-btn-color: rgb(236, 254, 255);
  color: var(--bs-btn-color);
}

.fill-cyan-50 {
  color: rgb(236, 254, 255);
}

.stroke-cyan-50 {
  color: rgb(236, 254, 255);
}

.accent-cyan-50 {
  accent-color: rgb(236, 254, 255);
}

.bg-cyan-50 {
  --bs-btn-active-bg: rgb(236, 254, 255);
  --bs-alert-bg: rgb(236, 254, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-50 {
  --bs-border-color: rgb(236, 254, 255);
  --bs-alert-border: rgb(236, 254, 255);
  border-color: var(--bs-border-color);
}

.decoration-cyan-50 {
  text-decoration-color: rgb(236, 254, 255);
}

.hover\:text-cyan-50:hover {
  color: rgb(236, 254, 255);
}

.hover\:bg-cyan-50:hover {
  --bs-btn-active-bg: rgb(236, 254, 255);
  --bs-alert-bg: rgb(236, 254, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-50:hover {
  --bs-border-color: rgb(236, 254, 255);
  --bs-alert-border-color: rgb(236, 254, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-50 {
  text-decoration-color: rgb(236, 254, 255);
}

.focus\:text-cyan-50:focus {
  color: rgb(236, 254, 255);
}

.focus\:bg-cyan-50:focus {
  --bs-btn-active-bg: rgb(236, 254, 255);
  --bs-alert-bg: rgb(236, 254, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-50:focus {
  --bs-border-color: rgb(236, 254, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-50 {
  text-decoration-color: rgb(236, 254, 255);
}

.active\:text-cyan-50:active {
  color: rgb(236, 254, 255);
}

.active\:bg-cyan-50:active {
  --bs-btn-active-bg: rgb(236, 254, 255);
  --bs-alert-bg: rgb(236, 254, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-50:active {
  --bs-border-color: rgb(236, 254, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-50:disabled {
  color: rgb(236, 254, 255);
}

.disabled\:bg-cyan-50:disabled {
  --bs-btn-active-bg: rgb(236, 254, 255);
  --bs-alert-bg: rgb(236, 254, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-50:disabled {
  --bs-border-color: rgb(236, 254, 255);
  border-color: var(--bs-border-color);
}

.text-cyan-100 {
  --bs-alert-color: rgb(207, 250, 254);
  --bs-btn-color: rgb(207, 250, 254);
  color: var(--bs-btn-color);
}

.fill-cyan-100 {
  color: rgb(207, 250, 254);
}

.stroke-cyan-100 {
  color: rgb(207, 250, 254);
}

.accent-cyan-100 {
  accent-color: rgb(207, 250, 254);
}

.bg-cyan-100 {
  --bs-btn-active-bg: rgb(207, 250, 254);
  --bs-alert-bg: rgb(207, 250, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-100 {
  --bs-border-color: rgb(207, 250, 254);
  --bs-alert-border: rgb(207, 250, 254);
  border-color: var(--bs-border-color);
}

.decoration-cyan-100 {
  text-decoration-color: rgb(207, 250, 254);
}

.hover\:text-cyan-100:hover {
  color: rgb(207, 250, 254);
}

.hover\:bg-cyan-100:hover {
  --bs-btn-active-bg: rgb(207, 250, 254);
  --bs-alert-bg: rgb(207, 250, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-100:hover {
  --bs-border-color: rgb(207, 250, 254);
  --bs-alert-border-color: rgb(207, 250, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-100 {
  text-decoration-color: rgb(207, 250, 254);
}

.focus\:text-cyan-100:focus {
  color: rgb(207, 250, 254);
}

.focus\:bg-cyan-100:focus {
  --bs-btn-active-bg: rgb(207, 250, 254);
  --bs-alert-bg: rgb(207, 250, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-100:focus {
  --bs-border-color: rgb(207, 250, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-100 {
  text-decoration-color: rgb(207, 250, 254);
}

.active\:text-cyan-100:active {
  color: rgb(207, 250, 254);
}

.active\:bg-cyan-100:active {
  --bs-btn-active-bg: rgb(207, 250, 254);
  --bs-alert-bg: rgb(207, 250, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-100:active {
  --bs-border-color: rgb(207, 250, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-100:disabled {
  color: rgb(207, 250, 254);
}

.disabled\:bg-cyan-100:disabled {
  --bs-btn-active-bg: rgb(207, 250, 254);
  --bs-alert-bg: rgb(207, 250, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-100:disabled {
  --bs-border-color: rgb(207, 250, 254);
  border-color: var(--bs-border-color);
}

.text-cyan-200 {
  --bs-alert-color: rgb(165, 243, 252);
  --bs-btn-color: rgb(165, 243, 252);
  color: var(--bs-btn-color);
}

.fill-cyan-200 {
  color: rgb(165, 243, 252);
}

.stroke-cyan-200 {
  color: rgb(165, 243, 252);
}

.accent-cyan-200 {
  accent-color: rgb(165, 243, 252);
}

.bg-cyan-200 {
  --bs-btn-active-bg: rgb(165, 243, 252);
  --bs-alert-bg: rgb(165, 243, 252);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-200 {
  --bs-border-color: rgb(165, 243, 252);
  --bs-alert-border: rgb(165, 243, 252);
  border-color: var(--bs-border-color);
}

.decoration-cyan-200 {
  text-decoration-color: rgb(165, 243, 252);
}

.hover\:text-cyan-200:hover {
  color: rgb(165, 243, 252);
}

.hover\:bg-cyan-200:hover {
  --bs-btn-active-bg: rgb(165, 243, 252);
  --bs-alert-bg: rgb(165, 243, 252);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-200:hover {
  --bs-border-color: rgb(165, 243, 252);
  --bs-alert-border-color: rgb(165, 243, 252);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-200 {
  text-decoration-color: rgb(165, 243, 252);
}

.focus\:text-cyan-200:focus {
  color: rgb(165, 243, 252);
}

.focus\:bg-cyan-200:focus {
  --bs-btn-active-bg: rgb(165, 243, 252);
  --bs-alert-bg: rgb(165, 243, 252);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-200:focus {
  --bs-border-color: rgb(165, 243, 252);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-200 {
  text-decoration-color: rgb(165, 243, 252);
}

.active\:text-cyan-200:active {
  color: rgb(165, 243, 252);
}

.active\:bg-cyan-200:active {
  --bs-btn-active-bg: rgb(165, 243, 252);
  --bs-alert-bg: rgb(165, 243, 252);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-200:active {
  --bs-border-color: rgb(165, 243, 252);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-200:disabled {
  color: rgb(165, 243, 252);
}

.disabled\:bg-cyan-200:disabled {
  --bs-btn-active-bg: rgb(165, 243, 252);
  --bs-alert-bg: rgb(165, 243, 252);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-200:disabled {
  --bs-border-color: rgb(165, 243, 252);
  border-color: var(--bs-border-color);
}

.text-cyan-300 {
  --bs-alert-color: rgb(103, 232, 249);
  --bs-btn-color: rgb(103, 232, 249);
  color: var(--bs-btn-color);
}

.fill-cyan-300 {
  color: rgb(103, 232, 249);
}

.stroke-cyan-300 {
  color: rgb(103, 232, 249);
}

.accent-cyan-300 {
  accent-color: rgb(103, 232, 249);
}

.bg-cyan-300 {
  --bs-btn-active-bg: rgb(103, 232, 249);
  --bs-alert-bg: rgb(103, 232, 249);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-300 {
  --bs-border-color: rgb(103, 232, 249);
  --bs-alert-border: rgb(103, 232, 249);
  border-color: var(--bs-border-color);
}

.decoration-cyan-300 {
  text-decoration-color: rgb(103, 232, 249);
}

.hover\:text-cyan-300:hover {
  color: rgb(103, 232, 249);
}

.hover\:bg-cyan-300:hover {
  --bs-btn-active-bg: rgb(103, 232, 249);
  --bs-alert-bg: rgb(103, 232, 249);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-300:hover {
  --bs-border-color: rgb(103, 232, 249);
  --bs-alert-border-color: rgb(103, 232, 249);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-300 {
  text-decoration-color: rgb(103, 232, 249);
}

.focus\:text-cyan-300:focus {
  color: rgb(103, 232, 249);
}

.focus\:bg-cyan-300:focus {
  --bs-btn-active-bg: rgb(103, 232, 249);
  --bs-alert-bg: rgb(103, 232, 249);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-300:focus {
  --bs-border-color: rgb(103, 232, 249);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-300 {
  text-decoration-color: rgb(103, 232, 249);
}

.active\:text-cyan-300:active {
  color: rgb(103, 232, 249);
}

.active\:bg-cyan-300:active {
  --bs-btn-active-bg: rgb(103, 232, 249);
  --bs-alert-bg: rgb(103, 232, 249);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-300:active {
  --bs-border-color: rgb(103, 232, 249);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-300:disabled {
  color: rgb(103, 232, 249);
}

.disabled\:bg-cyan-300:disabled {
  --bs-btn-active-bg: rgb(103, 232, 249);
  --bs-alert-bg: rgb(103, 232, 249);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-300:disabled {
  --bs-border-color: rgb(103, 232, 249);
  border-color: var(--bs-border-color);
}

.text-cyan-400 {
  --bs-alert-color: rgb(34, 211, 238);
  --bs-btn-color: rgb(34, 211, 238);
  color: var(--bs-btn-color);
}

.fill-cyan-400 {
  color: rgb(34, 211, 238);
}

.stroke-cyan-400 {
  color: rgb(34, 211, 238);
}

.accent-cyan-400 {
  accent-color: rgb(34, 211, 238);
}

.bg-cyan-400 {
  --bs-btn-active-bg: rgb(34, 211, 238);
  --bs-alert-bg: rgb(34, 211, 238);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-400 {
  --bs-border-color: rgb(34, 211, 238);
  --bs-alert-border: rgb(34, 211, 238);
  border-color: var(--bs-border-color);
}

.decoration-cyan-400 {
  text-decoration-color: rgb(34, 211, 238);
}

.hover\:text-cyan-400:hover {
  color: rgb(34, 211, 238);
}

.hover\:bg-cyan-400:hover {
  --bs-btn-active-bg: rgb(34, 211, 238);
  --bs-alert-bg: rgb(34, 211, 238);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-400:hover {
  --bs-border-color: rgb(34, 211, 238);
  --bs-alert-border-color: rgb(34, 211, 238);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-400 {
  text-decoration-color: rgb(34, 211, 238);
}

.focus\:text-cyan-400:focus {
  color: rgb(34, 211, 238);
}

.focus\:bg-cyan-400:focus {
  --bs-btn-active-bg: rgb(34, 211, 238);
  --bs-alert-bg: rgb(34, 211, 238);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-400:focus {
  --bs-border-color: rgb(34, 211, 238);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-400 {
  text-decoration-color: rgb(34, 211, 238);
}

.active\:text-cyan-400:active {
  color: rgb(34, 211, 238);
}

.active\:bg-cyan-400:active {
  --bs-btn-active-bg: rgb(34, 211, 238);
  --bs-alert-bg: rgb(34, 211, 238);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-400:active {
  --bs-border-color: rgb(34, 211, 238);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-400:disabled {
  color: rgb(34, 211, 238);
}

.disabled\:bg-cyan-400:disabled {
  --bs-btn-active-bg: rgb(34, 211, 238);
  --bs-alert-bg: rgb(34, 211, 238);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-400:disabled {
  --bs-border-color: rgb(34, 211, 238);
  border-color: var(--bs-border-color);
}

.text-cyan-500 {
  --bs-alert-color: rgb(6, 182, 212);
  --bs-btn-color: rgb(6, 182, 212);
  color: var(--bs-btn-color);
}

.fill-cyan-500 {
  color: rgb(6, 182, 212);
}

.stroke-cyan-500 {
  color: rgb(6, 182, 212);
}

.accent-cyan-500 {
  accent-color: rgb(6, 182, 212);
}

.bg-cyan-500 {
  --bs-btn-active-bg: rgb(6, 182, 212);
  --bs-alert-bg: rgb(6, 182, 212);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-500 {
  --bs-border-color: rgb(6, 182, 212);
  --bs-alert-border: rgb(6, 182, 212);
  border-color: var(--bs-border-color);
}

.decoration-cyan-500 {
  text-decoration-color: rgb(6, 182, 212);
}

.hover\:text-cyan-500:hover {
  color: rgb(6, 182, 212);
}

.hover\:bg-cyan-500:hover {
  --bs-btn-active-bg: rgb(6, 182, 212);
  --bs-alert-bg: rgb(6, 182, 212);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-500:hover {
  --bs-border-color: rgb(6, 182, 212);
  --bs-alert-border-color: rgb(6, 182, 212);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-500 {
  text-decoration-color: rgb(6, 182, 212);
}

.focus\:text-cyan-500:focus {
  color: rgb(6, 182, 212);
}

.focus\:bg-cyan-500:focus {
  --bs-btn-active-bg: rgb(6, 182, 212);
  --bs-alert-bg: rgb(6, 182, 212);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-500:focus {
  --bs-border-color: rgb(6, 182, 212);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-500 {
  text-decoration-color: rgb(6, 182, 212);
}

.active\:text-cyan-500:active {
  color: rgb(6, 182, 212);
}

.active\:bg-cyan-500:active {
  --bs-btn-active-bg: rgb(6, 182, 212);
  --bs-alert-bg: rgb(6, 182, 212);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-500:active {
  --bs-border-color: rgb(6, 182, 212);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-500:disabled {
  color: rgb(6, 182, 212);
}

.disabled\:bg-cyan-500:disabled {
  --bs-btn-active-bg: rgb(6, 182, 212);
  --bs-alert-bg: rgb(6, 182, 212);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-500:disabled {
  --bs-border-color: rgb(6, 182, 212);
  border-color: var(--bs-border-color);
}

.text-cyan-600 {
  --bs-alert-color: rgb(8, 145, 178);
  --bs-btn-color: rgb(8, 145, 178);
  color: var(--bs-btn-color);
}

.fill-cyan-600 {
  color: rgb(8, 145, 178);
}

.stroke-cyan-600 {
  color: rgb(8, 145, 178);
}

.accent-cyan-600 {
  accent-color: rgb(8, 145, 178);
}

.bg-cyan-600 {
  --bs-btn-active-bg: rgb(8, 145, 178);
  --bs-alert-bg: rgb(8, 145, 178);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-600 {
  --bs-border-color: rgb(8, 145, 178);
  --bs-alert-border: rgb(8, 145, 178);
  border-color: var(--bs-border-color);
}

.decoration-cyan-600 {
  text-decoration-color: rgb(8, 145, 178);
}

.hover\:text-cyan-600:hover {
  color: rgb(8, 145, 178);
}

.hover\:bg-cyan-600:hover {
  --bs-btn-active-bg: rgb(8, 145, 178);
  --bs-alert-bg: rgb(8, 145, 178);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-600:hover {
  --bs-border-color: rgb(8, 145, 178);
  --bs-alert-border-color: rgb(8, 145, 178);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-600 {
  text-decoration-color: rgb(8, 145, 178);
}

.focus\:text-cyan-600:focus {
  color: rgb(8, 145, 178);
}

.focus\:bg-cyan-600:focus {
  --bs-btn-active-bg: rgb(8, 145, 178);
  --bs-alert-bg: rgb(8, 145, 178);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-600:focus {
  --bs-border-color: rgb(8, 145, 178);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-600 {
  text-decoration-color: rgb(8, 145, 178);
}

.active\:text-cyan-600:active {
  color: rgb(8, 145, 178);
}

.active\:bg-cyan-600:active {
  --bs-btn-active-bg: rgb(8, 145, 178);
  --bs-alert-bg: rgb(8, 145, 178);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-600:active {
  --bs-border-color: rgb(8, 145, 178);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-600:disabled {
  color: rgb(8, 145, 178);
}

.disabled\:bg-cyan-600:disabled {
  --bs-btn-active-bg: rgb(8, 145, 178);
  --bs-alert-bg: rgb(8, 145, 178);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-600:disabled {
  --bs-border-color: rgb(8, 145, 178);
  border-color: var(--bs-border-color);
}

.text-cyan-700 {
  --bs-alert-color: rgb(14, 116, 144);
  --bs-btn-color: rgb(14, 116, 144);
  color: var(--bs-btn-color);
}

.fill-cyan-700 {
  color: rgb(14, 116, 144);
}

.stroke-cyan-700 {
  color: rgb(14, 116, 144);
}

.accent-cyan-700 {
  accent-color: rgb(14, 116, 144);
}

.bg-cyan-700 {
  --bs-btn-active-bg: rgb(14, 116, 144);
  --bs-alert-bg: rgb(14, 116, 144);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-700 {
  --bs-border-color: rgb(14, 116, 144);
  --bs-alert-border: rgb(14, 116, 144);
  border-color: var(--bs-border-color);
}

.decoration-cyan-700 {
  text-decoration-color: rgb(14, 116, 144);
}

.hover\:text-cyan-700:hover {
  color: rgb(14, 116, 144);
}

.hover\:bg-cyan-700:hover {
  --bs-btn-active-bg: rgb(14, 116, 144);
  --bs-alert-bg: rgb(14, 116, 144);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-700:hover {
  --bs-border-color: rgb(14, 116, 144);
  --bs-alert-border-color: rgb(14, 116, 144);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-700 {
  text-decoration-color: rgb(14, 116, 144);
}

.focus\:text-cyan-700:focus {
  color: rgb(14, 116, 144);
}

.focus\:bg-cyan-700:focus {
  --bs-btn-active-bg: rgb(14, 116, 144);
  --bs-alert-bg: rgb(14, 116, 144);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-700:focus {
  --bs-border-color: rgb(14, 116, 144);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-700 {
  text-decoration-color: rgb(14, 116, 144);
}

.active\:text-cyan-700:active {
  color: rgb(14, 116, 144);
}

.active\:bg-cyan-700:active {
  --bs-btn-active-bg: rgb(14, 116, 144);
  --bs-alert-bg: rgb(14, 116, 144);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-700:active {
  --bs-border-color: rgb(14, 116, 144);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-700:disabled {
  color: rgb(14, 116, 144);
}

.disabled\:bg-cyan-700:disabled {
  --bs-btn-active-bg: rgb(14, 116, 144);
  --bs-alert-bg: rgb(14, 116, 144);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-700:disabled {
  --bs-border-color: rgb(14, 116, 144);
  border-color: var(--bs-border-color);
}

.text-cyan-800 {
  --bs-alert-color: rgb(21, 94, 117);
  --bs-btn-color: rgb(21, 94, 117);
  color: var(--bs-btn-color);
}

.fill-cyan-800 {
  color: rgb(21, 94, 117);
}

.stroke-cyan-800 {
  color: rgb(21, 94, 117);
}

.accent-cyan-800 {
  accent-color: rgb(21, 94, 117);
}

.bg-cyan-800 {
  --bs-btn-active-bg: rgb(21, 94, 117);
  --bs-alert-bg: rgb(21, 94, 117);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-800 {
  --bs-border-color: rgb(21, 94, 117);
  --bs-alert-border: rgb(21, 94, 117);
  border-color: var(--bs-border-color);
}

.decoration-cyan-800 {
  text-decoration-color: rgb(21, 94, 117);
}

.hover\:text-cyan-800:hover {
  color: rgb(21, 94, 117);
}

.hover\:bg-cyan-800:hover {
  --bs-btn-active-bg: rgb(21, 94, 117);
  --bs-alert-bg: rgb(21, 94, 117);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-800:hover {
  --bs-border-color: rgb(21, 94, 117);
  --bs-alert-border-color: rgb(21, 94, 117);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-800 {
  text-decoration-color: rgb(21, 94, 117);
}

.focus\:text-cyan-800:focus {
  color: rgb(21, 94, 117);
}

.focus\:bg-cyan-800:focus {
  --bs-btn-active-bg: rgb(21, 94, 117);
  --bs-alert-bg: rgb(21, 94, 117);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-800:focus {
  --bs-border-color: rgb(21, 94, 117);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-800 {
  text-decoration-color: rgb(21, 94, 117);
}

.active\:text-cyan-800:active {
  color: rgb(21, 94, 117);
}

.active\:bg-cyan-800:active {
  --bs-btn-active-bg: rgb(21, 94, 117);
  --bs-alert-bg: rgb(21, 94, 117);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-800:active {
  --bs-border-color: rgb(21, 94, 117);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-800:disabled {
  color: rgb(21, 94, 117);
}

.disabled\:bg-cyan-800:disabled {
  --bs-btn-active-bg: rgb(21, 94, 117);
  --bs-alert-bg: rgb(21, 94, 117);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-800:disabled {
  --bs-border-color: rgb(21, 94, 117);
  border-color: var(--bs-border-color);
}

.text-cyan-900 {
  --bs-alert-color: rgb(22, 78, 99);
  --bs-btn-color: rgb(22, 78, 99);
  color: var(--bs-btn-color);
}

.fill-cyan-900 {
  color: rgb(22, 78, 99);
}

.stroke-cyan-900 {
  color: rgb(22, 78, 99);
}

.accent-cyan-900 {
  accent-color: rgb(22, 78, 99);
}

.bg-cyan-900 {
  --bs-btn-active-bg: rgb(22, 78, 99);
  --bs-alert-bg: rgb(22, 78, 99);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-900 {
  --bs-border-color: rgb(22, 78, 99);
  --bs-alert-border: rgb(22, 78, 99);
  border-color: var(--bs-border-color);
}

.decoration-cyan-900 {
  text-decoration-color: rgb(22, 78, 99);
}

.hover\:text-cyan-900:hover {
  color: rgb(22, 78, 99);
}

.hover\:bg-cyan-900:hover {
  --bs-btn-active-bg: rgb(22, 78, 99);
  --bs-alert-bg: rgb(22, 78, 99);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-900:hover {
  --bs-border-color: rgb(22, 78, 99);
  --bs-alert-border-color: rgb(22, 78, 99);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-900 {
  text-decoration-color: rgb(22, 78, 99);
}

.focus\:text-cyan-900:focus {
  color: rgb(22, 78, 99);
}

.focus\:bg-cyan-900:focus {
  --bs-btn-active-bg: rgb(22, 78, 99);
  --bs-alert-bg: rgb(22, 78, 99);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-900:focus {
  --bs-border-color: rgb(22, 78, 99);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-900 {
  text-decoration-color: rgb(22, 78, 99);
}

.active\:text-cyan-900:active {
  color: rgb(22, 78, 99);
}

.active\:bg-cyan-900:active {
  --bs-btn-active-bg: rgb(22, 78, 99);
  --bs-alert-bg: rgb(22, 78, 99);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-900:active {
  --bs-border-color: rgb(22, 78, 99);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-900:disabled {
  color: rgb(22, 78, 99);
}

.disabled\:bg-cyan-900:disabled {
  --bs-btn-active-bg: rgb(22, 78, 99);
  --bs-alert-bg: rgb(22, 78, 99);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-900:disabled {
  --bs-border-color: rgb(22, 78, 99);
  border-color: var(--bs-border-color);
}

.text-cyan-950 {
  --bs-alert-color: rgb(8, 51, 68);
  --bs-btn-color: rgb(8, 51, 68);
  color: var(--bs-btn-color);
}

.fill-cyan-950 {
  color: rgb(8, 51, 68);
}

.stroke-cyan-950 {
  color: rgb(8, 51, 68);
}

.accent-cyan-950 {
  accent-color: rgb(8, 51, 68);
}

.bg-cyan-950 {
  --bs-btn-active-bg: rgb(8, 51, 68);
  --bs-alert-bg: rgb(8, 51, 68);
  background-color: var(--bs-btn-active-bg);
}

.border-cyan-950 {
  --bs-border-color: rgb(8, 51, 68);
  --bs-alert-border: rgb(8, 51, 68);
  border-color: var(--bs-border-color);
}

.decoration-cyan-950 {
  text-decoration-color: rgb(8, 51, 68);
}

.hover\:text-cyan-950:hover {
  color: rgb(8, 51, 68);
}

.hover\:bg-cyan-950:hover {
  --bs-btn-active-bg: rgb(8, 51, 68);
  --bs-alert-bg: rgb(8, 51, 68);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-cyan-950:hover {
  --bs-border-color: rgb(8, 51, 68);
  --bs-alert-border-color: rgb(8, 51, 68);
  border-color: var(--bs-border-color);
}

.hover\:decoration-cyan-950 {
  text-decoration-color: rgb(8, 51, 68);
}

.focus\:text-cyan-950:focus {
  color: rgb(8, 51, 68);
}

.focus\:bg-cyan-950:focus {
  --bs-btn-active-bg: rgb(8, 51, 68);
  --bs-alert-bg: rgb(8, 51, 68);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-cyan-950:focus {
  --bs-border-color: rgb(8, 51, 68);
  border-color: var(--bs-border-color);
}

.focus\:decoration-cyan-950 {
  text-decoration-color: rgb(8, 51, 68);
}

.active\:text-cyan-950:active {
  color: rgb(8, 51, 68);
}

.active\:bg-cyan-950:active {
  --bs-btn-active-bg: rgb(8, 51, 68);
  --bs-alert-bg: rgb(8, 51, 68);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-cyan-950:active {
  --bs-border-color: rgb(8, 51, 68);
  border-color: var(--bs-border-color);
}

.disabled\:text-cyan-950:disabled {
  color: rgb(8, 51, 68);
}

.disabled\:bg-cyan-950:disabled {
  --bs-btn-active-bg: rgb(8, 51, 68);
  --bs-alert-bg: rgb(8, 51, 68);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-cyan-950:disabled {
  --bs-border-color: rgb(8, 51, 68);
  border-color: var(--bs-border-color);
}

.text-sky-50 {
  --bs-alert-color: rgb(240, 249, 255);
  --bs-btn-color: rgb(240, 249, 255);
  color: var(--bs-btn-color);
}

.fill-sky-50 {
  color: rgb(240, 249, 255);
}

.stroke-sky-50 {
  color: rgb(240, 249, 255);
}

.accent-sky-50 {
  accent-color: rgb(240, 249, 255);
}

.bg-sky-50 {
  --bs-btn-active-bg: rgb(240, 249, 255);
  --bs-alert-bg: rgb(240, 249, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-50 {
  --bs-border-color: rgb(240, 249, 255);
  --bs-alert-border: rgb(240, 249, 255);
  border-color: var(--bs-border-color);
}

.decoration-sky-50 {
  text-decoration-color: rgb(240, 249, 255);
}

.hover\:text-sky-50:hover {
  color: rgb(240, 249, 255);
}

.hover\:bg-sky-50:hover {
  --bs-btn-active-bg: rgb(240, 249, 255);
  --bs-alert-bg: rgb(240, 249, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-50:hover {
  --bs-border-color: rgb(240, 249, 255);
  --bs-alert-border-color: rgb(240, 249, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-50 {
  text-decoration-color: rgb(240, 249, 255);
}

.focus\:text-sky-50:focus {
  color: rgb(240, 249, 255);
}

.focus\:bg-sky-50:focus {
  --bs-btn-active-bg: rgb(240, 249, 255);
  --bs-alert-bg: rgb(240, 249, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-50:focus {
  --bs-border-color: rgb(240, 249, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-50 {
  text-decoration-color: rgb(240, 249, 255);
}

.active\:text-sky-50:active {
  color: rgb(240, 249, 255);
}

.active\:bg-sky-50:active {
  --bs-btn-active-bg: rgb(240, 249, 255);
  --bs-alert-bg: rgb(240, 249, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-50:active {
  --bs-border-color: rgb(240, 249, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-50:disabled {
  color: rgb(240, 249, 255);
}

.disabled\:bg-sky-50:disabled {
  --bs-btn-active-bg: rgb(240, 249, 255);
  --bs-alert-bg: rgb(240, 249, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-50:disabled {
  --bs-border-color: rgb(240, 249, 255);
  border-color: var(--bs-border-color);
}

.text-sky-100 {
  --bs-alert-color: rgb(224, 242, 254);
  --bs-btn-color: rgb(224, 242, 254);
  color: var(--bs-btn-color);
}

.fill-sky-100 {
  color: rgb(224, 242, 254);
}

.stroke-sky-100 {
  color: rgb(224, 242, 254);
}

.accent-sky-100 {
  accent-color: rgb(224, 242, 254);
}

.bg-sky-100 {
  --bs-btn-active-bg: rgb(224, 242, 254);
  --bs-alert-bg: rgb(224, 242, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-100 {
  --bs-border-color: rgb(224, 242, 254);
  --bs-alert-border: rgb(224, 242, 254);
  border-color: var(--bs-border-color);
}

.decoration-sky-100 {
  text-decoration-color: rgb(224, 242, 254);
}

.hover\:text-sky-100:hover {
  color: rgb(224, 242, 254);
}

.hover\:bg-sky-100:hover {
  --bs-btn-active-bg: rgb(224, 242, 254);
  --bs-alert-bg: rgb(224, 242, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-100:hover {
  --bs-border-color: rgb(224, 242, 254);
  --bs-alert-border-color: rgb(224, 242, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-100 {
  text-decoration-color: rgb(224, 242, 254);
}

.focus\:text-sky-100:focus {
  color: rgb(224, 242, 254);
}

.focus\:bg-sky-100:focus {
  --bs-btn-active-bg: rgb(224, 242, 254);
  --bs-alert-bg: rgb(224, 242, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-100:focus {
  --bs-border-color: rgb(224, 242, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-100 {
  text-decoration-color: rgb(224, 242, 254);
}

.active\:text-sky-100:active {
  color: rgb(224, 242, 254);
}

.active\:bg-sky-100:active {
  --bs-btn-active-bg: rgb(224, 242, 254);
  --bs-alert-bg: rgb(224, 242, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-100:active {
  --bs-border-color: rgb(224, 242, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-100:disabled {
  color: rgb(224, 242, 254);
}

.disabled\:bg-sky-100:disabled {
  --bs-btn-active-bg: rgb(224, 242, 254);
  --bs-alert-bg: rgb(224, 242, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-100:disabled {
  --bs-border-color: rgb(224, 242, 254);
  border-color: var(--bs-border-color);
}

.text-sky-200 {
  --bs-alert-color: rgb(186, 230, 253);
  --bs-btn-color: rgb(186, 230, 253);
  color: var(--bs-btn-color);
}

.fill-sky-200 {
  color: rgb(186, 230, 253);
}

.stroke-sky-200 {
  color: rgb(186, 230, 253);
}

.accent-sky-200 {
  accent-color: rgb(186, 230, 253);
}

.bg-sky-200 {
  --bs-btn-active-bg: rgb(186, 230, 253);
  --bs-alert-bg: rgb(186, 230, 253);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-200 {
  --bs-border-color: rgb(186, 230, 253);
  --bs-alert-border: rgb(186, 230, 253);
  border-color: var(--bs-border-color);
}

.decoration-sky-200 {
  text-decoration-color: rgb(186, 230, 253);
}

.hover\:text-sky-200:hover {
  color: rgb(186, 230, 253);
}

.hover\:bg-sky-200:hover {
  --bs-btn-active-bg: rgb(186, 230, 253);
  --bs-alert-bg: rgb(186, 230, 253);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-200:hover {
  --bs-border-color: rgb(186, 230, 253);
  --bs-alert-border-color: rgb(186, 230, 253);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-200 {
  text-decoration-color: rgb(186, 230, 253);
}

.focus\:text-sky-200:focus {
  color: rgb(186, 230, 253);
}

.focus\:bg-sky-200:focus {
  --bs-btn-active-bg: rgb(186, 230, 253);
  --bs-alert-bg: rgb(186, 230, 253);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-200:focus {
  --bs-border-color: rgb(186, 230, 253);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-200 {
  text-decoration-color: rgb(186, 230, 253);
}

.active\:text-sky-200:active {
  color: rgb(186, 230, 253);
}

.active\:bg-sky-200:active {
  --bs-btn-active-bg: rgb(186, 230, 253);
  --bs-alert-bg: rgb(186, 230, 253);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-200:active {
  --bs-border-color: rgb(186, 230, 253);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-200:disabled {
  color: rgb(186, 230, 253);
}

.disabled\:bg-sky-200:disabled {
  --bs-btn-active-bg: rgb(186, 230, 253);
  --bs-alert-bg: rgb(186, 230, 253);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-200:disabled {
  --bs-border-color: rgb(186, 230, 253);
  border-color: var(--bs-border-color);
}

.text-sky-300 {
  --bs-alert-color: rgb(125, 211, 252);
  --bs-btn-color: rgb(125, 211, 252);
  color: var(--bs-btn-color);
}

.fill-sky-300 {
  color: rgb(125, 211, 252);
}

.stroke-sky-300 {
  color: rgb(125, 211, 252);
}

.accent-sky-300 {
  accent-color: rgb(125, 211, 252);
}

.bg-sky-300 {
  --bs-btn-active-bg: rgb(125, 211, 252);
  --bs-alert-bg: rgb(125, 211, 252);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-300 {
  --bs-border-color: rgb(125, 211, 252);
  --bs-alert-border: rgb(125, 211, 252);
  border-color: var(--bs-border-color);
}

.decoration-sky-300 {
  text-decoration-color: rgb(125, 211, 252);
}

.hover\:text-sky-300:hover {
  color: rgb(125, 211, 252);
}

.hover\:bg-sky-300:hover {
  --bs-btn-active-bg: rgb(125, 211, 252);
  --bs-alert-bg: rgb(125, 211, 252);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-300:hover {
  --bs-border-color: rgb(125, 211, 252);
  --bs-alert-border-color: rgb(125, 211, 252);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-300 {
  text-decoration-color: rgb(125, 211, 252);
}

.focus\:text-sky-300:focus {
  color: rgb(125, 211, 252);
}

.focus\:bg-sky-300:focus {
  --bs-btn-active-bg: rgb(125, 211, 252);
  --bs-alert-bg: rgb(125, 211, 252);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-300:focus {
  --bs-border-color: rgb(125, 211, 252);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-300 {
  text-decoration-color: rgb(125, 211, 252);
}

.active\:text-sky-300:active {
  color: rgb(125, 211, 252);
}

.active\:bg-sky-300:active {
  --bs-btn-active-bg: rgb(125, 211, 252);
  --bs-alert-bg: rgb(125, 211, 252);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-300:active {
  --bs-border-color: rgb(125, 211, 252);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-300:disabled {
  color: rgb(125, 211, 252);
}

.disabled\:bg-sky-300:disabled {
  --bs-btn-active-bg: rgb(125, 211, 252);
  --bs-alert-bg: rgb(125, 211, 252);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-300:disabled {
  --bs-border-color: rgb(125, 211, 252);
  border-color: var(--bs-border-color);
}

.text-sky-400 {
  --bs-alert-color: rgb(56, 189, 248);
  --bs-btn-color: rgb(56, 189, 248);
  color: var(--bs-btn-color);
}

.fill-sky-400 {
  color: rgb(56, 189, 248);
}

.stroke-sky-400 {
  color: rgb(56, 189, 248);
}

.accent-sky-400 {
  accent-color: rgb(56, 189, 248);
}

.bg-sky-400 {
  --bs-btn-active-bg: rgb(56, 189, 248);
  --bs-alert-bg: rgb(56, 189, 248);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-400 {
  --bs-border-color: rgb(56, 189, 248);
  --bs-alert-border: rgb(56, 189, 248);
  border-color: var(--bs-border-color);
}

.decoration-sky-400 {
  text-decoration-color: rgb(56, 189, 248);
}

.hover\:text-sky-400:hover {
  color: rgb(56, 189, 248);
}

.hover\:bg-sky-400:hover {
  --bs-btn-active-bg: rgb(56, 189, 248);
  --bs-alert-bg: rgb(56, 189, 248);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-400:hover {
  --bs-border-color: rgb(56, 189, 248);
  --bs-alert-border-color: rgb(56, 189, 248);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-400 {
  text-decoration-color: rgb(56, 189, 248);
}

.focus\:text-sky-400:focus {
  color: rgb(56, 189, 248);
}

.focus\:bg-sky-400:focus {
  --bs-btn-active-bg: rgb(56, 189, 248);
  --bs-alert-bg: rgb(56, 189, 248);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-400:focus {
  --bs-border-color: rgb(56, 189, 248);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-400 {
  text-decoration-color: rgb(56, 189, 248);
}

.active\:text-sky-400:active {
  color: rgb(56, 189, 248);
}

.active\:bg-sky-400:active {
  --bs-btn-active-bg: rgb(56, 189, 248);
  --bs-alert-bg: rgb(56, 189, 248);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-400:active {
  --bs-border-color: rgb(56, 189, 248);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-400:disabled {
  color: rgb(56, 189, 248);
}

.disabled\:bg-sky-400:disabled {
  --bs-btn-active-bg: rgb(56, 189, 248);
  --bs-alert-bg: rgb(56, 189, 248);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-400:disabled {
  --bs-border-color: rgb(56, 189, 248);
  border-color: var(--bs-border-color);
}

.text-sky-500 {
  --bs-alert-color: rgb(14, 165, 233);
  --bs-btn-color: rgb(14, 165, 233);
  color: var(--bs-btn-color);
}

.fill-sky-500 {
  color: rgb(14, 165, 233);
}

.stroke-sky-500 {
  color: rgb(14, 165, 233);
}

.accent-sky-500 {
  accent-color: rgb(14, 165, 233);
}

.bg-sky-500 {
  --bs-btn-active-bg: rgb(14, 165, 233);
  --bs-alert-bg: rgb(14, 165, 233);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-500 {
  --bs-border-color: rgb(14, 165, 233);
  --bs-alert-border: rgb(14, 165, 233);
  border-color: var(--bs-border-color);
}

.decoration-sky-500 {
  text-decoration-color: rgb(14, 165, 233);
}

.hover\:text-sky-500:hover {
  color: rgb(14, 165, 233);
}

.hover\:bg-sky-500:hover {
  --bs-btn-active-bg: rgb(14, 165, 233);
  --bs-alert-bg: rgb(14, 165, 233);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-500:hover {
  --bs-border-color: rgb(14, 165, 233);
  --bs-alert-border-color: rgb(14, 165, 233);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-500 {
  text-decoration-color: rgb(14, 165, 233);
}

.focus\:text-sky-500:focus {
  color: rgb(14, 165, 233);
}

.focus\:bg-sky-500:focus {
  --bs-btn-active-bg: rgb(14, 165, 233);
  --bs-alert-bg: rgb(14, 165, 233);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-500:focus {
  --bs-border-color: rgb(14, 165, 233);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-500 {
  text-decoration-color: rgb(14, 165, 233);
}

.active\:text-sky-500:active {
  color: rgb(14, 165, 233);
}

.active\:bg-sky-500:active {
  --bs-btn-active-bg: rgb(14, 165, 233);
  --bs-alert-bg: rgb(14, 165, 233);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-500:active {
  --bs-border-color: rgb(14, 165, 233);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-500:disabled {
  color: rgb(14, 165, 233);
}

.disabled\:bg-sky-500:disabled {
  --bs-btn-active-bg: rgb(14, 165, 233);
  --bs-alert-bg: rgb(14, 165, 233);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-500:disabled {
  --bs-border-color: rgb(14, 165, 233);
  border-color: var(--bs-border-color);
}

.text-sky-600 {
  --bs-alert-color: rgb(2, 132, 199);
  --bs-btn-color: rgb(2, 132, 199);
  color: var(--bs-btn-color);
}

.fill-sky-600 {
  color: rgb(2, 132, 199);
}

.stroke-sky-600 {
  color: rgb(2, 132, 199);
}

.accent-sky-600 {
  accent-color: rgb(2, 132, 199);
}

.bg-sky-600 {
  --bs-btn-active-bg: rgb(2, 132, 199);
  --bs-alert-bg: rgb(2, 132, 199);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-600 {
  --bs-border-color: rgb(2, 132, 199);
  --bs-alert-border: rgb(2, 132, 199);
  border-color: var(--bs-border-color);
}

.decoration-sky-600 {
  text-decoration-color: rgb(2, 132, 199);
}

.hover\:text-sky-600:hover {
  color: rgb(2, 132, 199);
}

.hover\:bg-sky-600:hover {
  --bs-btn-active-bg: rgb(2, 132, 199);
  --bs-alert-bg: rgb(2, 132, 199);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-600:hover {
  --bs-border-color: rgb(2, 132, 199);
  --bs-alert-border-color: rgb(2, 132, 199);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-600 {
  text-decoration-color: rgb(2, 132, 199);
}

.focus\:text-sky-600:focus {
  color: rgb(2, 132, 199);
}

.focus\:bg-sky-600:focus {
  --bs-btn-active-bg: rgb(2, 132, 199);
  --bs-alert-bg: rgb(2, 132, 199);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-600:focus {
  --bs-border-color: rgb(2, 132, 199);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-600 {
  text-decoration-color: rgb(2, 132, 199);
}

.active\:text-sky-600:active {
  color: rgb(2, 132, 199);
}

.active\:bg-sky-600:active {
  --bs-btn-active-bg: rgb(2, 132, 199);
  --bs-alert-bg: rgb(2, 132, 199);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-600:active {
  --bs-border-color: rgb(2, 132, 199);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-600:disabled {
  color: rgb(2, 132, 199);
}

.disabled\:bg-sky-600:disabled {
  --bs-btn-active-bg: rgb(2, 132, 199);
  --bs-alert-bg: rgb(2, 132, 199);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-600:disabled {
  --bs-border-color: rgb(2, 132, 199);
  border-color: var(--bs-border-color);
}

.text-sky-700 {
  --bs-alert-color: rgb(3, 105, 161);
  --bs-btn-color: rgb(3, 105, 161);
  color: var(--bs-btn-color);
}

.fill-sky-700 {
  color: rgb(3, 105, 161);
}

.stroke-sky-700 {
  color: rgb(3, 105, 161);
}

.accent-sky-700 {
  accent-color: rgb(3, 105, 161);
}

.bg-sky-700 {
  --bs-btn-active-bg: rgb(3, 105, 161);
  --bs-alert-bg: rgb(3, 105, 161);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-700 {
  --bs-border-color: rgb(3, 105, 161);
  --bs-alert-border: rgb(3, 105, 161);
  border-color: var(--bs-border-color);
}

.decoration-sky-700 {
  text-decoration-color: rgb(3, 105, 161);
}

.hover\:text-sky-700:hover {
  color: rgb(3, 105, 161);
}

.hover\:bg-sky-700:hover {
  --bs-btn-active-bg: rgb(3, 105, 161);
  --bs-alert-bg: rgb(3, 105, 161);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-700:hover {
  --bs-border-color: rgb(3, 105, 161);
  --bs-alert-border-color: rgb(3, 105, 161);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-700 {
  text-decoration-color: rgb(3, 105, 161);
}

.focus\:text-sky-700:focus {
  color: rgb(3, 105, 161);
}

.focus\:bg-sky-700:focus {
  --bs-btn-active-bg: rgb(3, 105, 161);
  --bs-alert-bg: rgb(3, 105, 161);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-700:focus {
  --bs-border-color: rgb(3, 105, 161);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-700 {
  text-decoration-color: rgb(3, 105, 161);
}

.active\:text-sky-700:active {
  color: rgb(3, 105, 161);
}

.active\:bg-sky-700:active {
  --bs-btn-active-bg: rgb(3, 105, 161);
  --bs-alert-bg: rgb(3, 105, 161);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-700:active {
  --bs-border-color: rgb(3, 105, 161);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-700:disabled {
  color: rgb(3, 105, 161);
}

.disabled\:bg-sky-700:disabled {
  --bs-btn-active-bg: rgb(3, 105, 161);
  --bs-alert-bg: rgb(3, 105, 161);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-700:disabled {
  --bs-border-color: rgb(3, 105, 161);
  border-color: var(--bs-border-color);
}

.text-sky-800 {
  --bs-alert-color: rgb(7, 89, 133);
  --bs-btn-color: rgb(7, 89, 133);
  color: var(--bs-btn-color);
}

.fill-sky-800 {
  color: rgb(7, 89, 133);
}

.stroke-sky-800 {
  color: rgb(7, 89, 133);
}

.accent-sky-800 {
  accent-color: rgb(7, 89, 133);
}

.bg-sky-800 {
  --bs-btn-active-bg: rgb(7, 89, 133);
  --bs-alert-bg: rgb(7, 89, 133);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-800 {
  --bs-border-color: rgb(7, 89, 133);
  --bs-alert-border: rgb(7, 89, 133);
  border-color: var(--bs-border-color);
}

.decoration-sky-800 {
  text-decoration-color: rgb(7, 89, 133);
}

.hover\:text-sky-800:hover {
  color: rgb(7, 89, 133);
}

.hover\:bg-sky-800:hover {
  --bs-btn-active-bg: rgb(7, 89, 133);
  --bs-alert-bg: rgb(7, 89, 133);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-800:hover {
  --bs-border-color: rgb(7, 89, 133);
  --bs-alert-border-color: rgb(7, 89, 133);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-800 {
  text-decoration-color: rgb(7, 89, 133);
}

.focus\:text-sky-800:focus {
  color: rgb(7, 89, 133);
}

.focus\:bg-sky-800:focus {
  --bs-btn-active-bg: rgb(7, 89, 133);
  --bs-alert-bg: rgb(7, 89, 133);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-800:focus {
  --bs-border-color: rgb(7, 89, 133);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-800 {
  text-decoration-color: rgb(7, 89, 133);
}

.active\:text-sky-800:active {
  color: rgb(7, 89, 133);
}

.active\:bg-sky-800:active {
  --bs-btn-active-bg: rgb(7, 89, 133);
  --bs-alert-bg: rgb(7, 89, 133);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-800:active {
  --bs-border-color: rgb(7, 89, 133);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-800:disabled {
  color: rgb(7, 89, 133);
}

.disabled\:bg-sky-800:disabled {
  --bs-btn-active-bg: rgb(7, 89, 133);
  --bs-alert-bg: rgb(7, 89, 133);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-800:disabled {
  --bs-border-color: rgb(7, 89, 133);
  border-color: var(--bs-border-color);
}

.text-sky-900 {
  --bs-alert-color: rgb(12, 74, 110);
  --bs-btn-color: rgb(12, 74, 110);
  color: var(--bs-btn-color);
}

.fill-sky-900 {
  color: rgb(12, 74, 110);
}

.stroke-sky-900 {
  color: rgb(12, 74, 110);
}

.accent-sky-900 {
  accent-color: rgb(12, 74, 110);
}

.bg-sky-900 {
  --bs-btn-active-bg: rgb(12, 74, 110);
  --bs-alert-bg: rgb(12, 74, 110);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-900 {
  --bs-border-color: rgb(12, 74, 110);
  --bs-alert-border: rgb(12, 74, 110);
  border-color: var(--bs-border-color);
}

.decoration-sky-900 {
  text-decoration-color: rgb(12, 74, 110);
}

.hover\:text-sky-900:hover {
  color: rgb(12, 74, 110);
}

.hover\:bg-sky-900:hover {
  --bs-btn-active-bg: rgb(12, 74, 110);
  --bs-alert-bg: rgb(12, 74, 110);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-900:hover {
  --bs-border-color: rgb(12, 74, 110);
  --bs-alert-border-color: rgb(12, 74, 110);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-900 {
  text-decoration-color: rgb(12, 74, 110);
}

.focus\:text-sky-900:focus {
  color: rgb(12, 74, 110);
}

.focus\:bg-sky-900:focus {
  --bs-btn-active-bg: rgb(12, 74, 110);
  --bs-alert-bg: rgb(12, 74, 110);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-900:focus {
  --bs-border-color: rgb(12, 74, 110);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-900 {
  text-decoration-color: rgb(12, 74, 110);
}

.active\:text-sky-900:active {
  color: rgb(12, 74, 110);
}

.active\:bg-sky-900:active {
  --bs-btn-active-bg: rgb(12, 74, 110);
  --bs-alert-bg: rgb(12, 74, 110);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-900:active {
  --bs-border-color: rgb(12, 74, 110);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-900:disabled {
  color: rgb(12, 74, 110);
}

.disabled\:bg-sky-900:disabled {
  --bs-btn-active-bg: rgb(12, 74, 110);
  --bs-alert-bg: rgb(12, 74, 110);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-900:disabled {
  --bs-border-color: rgb(12, 74, 110);
  border-color: var(--bs-border-color);
}

.text-sky-950 {
  --bs-alert-color: rgb(8, 47, 73);
  --bs-btn-color: rgb(8, 47, 73);
  color: var(--bs-btn-color);
}

.fill-sky-950 {
  color: rgb(8, 47, 73);
}

.stroke-sky-950 {
  color: rgb(8, 47, 73);
}

.accent-sky-950 {
  accent-color: rgb(8, 47, 73);
}

.bg-sky-950 {
  --bs-btn-active-bg: rgb(8, 47, 73);
  --bs-alert-bg: rgb(8, 47, 73);
  background-color: var(--bs-btn-active-bg);
}

.border-sky-950 {
  --bs-border-color: rgb(8, 47, 73);
  --bs-alert-border: rgb(8, 47, 73);
  border-color: var(--bs-border-color);
}

.decoration-sky-950 {
  text-decoration-color: rgb(8, 47, 73);
}

.hover\:text-sky-950:hover {
  color: rgb(8, 47, 73);
}

.hover\:bg-sky-950:hover {
  --bs-btn-active-bg: rgb(8, 47, 73);
  --bs-alert-bg: rgb(8, 47, 73);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-sky-950:hover {
  --bs-border-color: rgb(8, 47, 73);
  --bs-alert-border-color: rgb(8, 47, 73);
  border-color: var(--bs-border-color);
}

.hover\:decoration-sky-950 {
  text-decoration-color: rgb(8, 47, 73);
}

.focus\:text-sky-950:focus {
  color: rgb(8, 47, 73);
}

.focus\:bg-sky-950:focus {
  --bs-btn-active-bg: rgb(8, 47, 73);
  --bs-alert-bg: rgb(8, 47, 73);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-sky-950:focus {
  --bs-border-color: rgb(8, 47, 73);
  border-color: var(--bs-border-color);
}

.focus\:decoration-sky-950 {
  text-decoration-color: rgb(8, 47, 73);
}

.active\:text-sky-950:active {
  color: rgb(8, 47, 73);
}

.active\:bg-sky-950:active {
  --bs-btn-active-bg: rgb(8, 47, 73);
  --bs-alert-bg: rgb(8, 47, 73);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-sky-950:active {
  --bs-border-color: rgb(8, 47, 73);
  border-color: var(--bs-border-color);
}

.disabled\:text-sky-950:disabled {
  color: rgb(8, 47, 73);
}

.disabled\:bg-sky-950:disabled {
  --bs-btn-active-bg: rgb(8, 47, 73);
  --bs-alert-bg: rgb(8, 47, 73);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-sky-950:disabled {
  --bs-border-color: rgb(8, 47, 73);
  border-color: var(--bs-border-color);
}

.text-blue-50 {
  --bs-alert-color: rgb(239, 246, 255);
  --bs-btn-color: rgb(239, 246, 255);
  color: var(--bs-btn-color);
}

.fill-blue-50 {
  color: rgb(239, 246, 255);
}

.stroke-blue-50 {
  color: rgb(239, 246, 255);
}

.accent-blue-50 {
  accent-color: rgb(239, 246, 255);
}

.bg-blue-50 {
  --bs-btn-active-bg: rgb(239, 246, 255);
  --bs-alert-bg: rgb(239, 246, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-50 {
  --bs-border-color: rgb(239, 246, 255);
  --bs-alert-border: rgb(239, 246, 255);
  border-color: var(--bs-border-color);
}

.decoration-blue-50 {
  text-decoration-color: rgb(239, 246, 255);
}

.hover\:text-blue-50:hover {
  color: rgb(239, 246, 255);
}

.hover\:bg-blue-50:hover {
  --bs-btn-active-bg: rgb(239, 246, 255);
  --bs-alert-bg: rgb(239, 246, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-50:hover {
  --bs-border-color: rgb(239, 246, 255);
  --bs-alert-border-color: rgb(239, 246, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-50 {
  text-decoration-color: rgb(239, 246, 255);
}

.focus\:text-blue-50:focus {
  color: rgb(239, 246, 255);
}

.focus\:bg-blue-50:focus {
  --bs-btn-active-bg: rgb(239, 246, 255);
  --bs-alert-bg: rgb(239, 246, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-50:focus {
  --bs-border-color: rgb(239, 246, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-50 {
  text-decoration-color: rgb(239, 246, 255);
}

.active\:text-blue-50:active {
  color: rgb(239, 246, 255);
}

.active\:bg-blue-50:active {
  --bs-btn-active-bg: rgb(239, 246, 255);
  --bs-alert-bg: rgb(239, 246, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-50:active {
  --bs-border-color: rgb(239, 246, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-50:disabled {
  color: rgb(239, 246, 255);
}

.disabled\:bg-blue-50:disabled {
  --bs-btn-active-bg: rgb(239, 246, 255);
  --bs-alert-bg: rgb(239, 246, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-50:disabled {
  --bs-border-color: rgb(239, 246, 255);
  border-color: var(--bs-border-color);
}

.text-blue-100 {
  --bs-alert-color: rgb(219, 234, 254);
  --bs-btn-color: rgb(219, 234, 254);
  color: var(--bs-btn-color);
}

.fill-blue-100 {
  color: rgb(219, 234, 254);
}

.stroke-blue-100 {
  color: rgb(219, 234, 254);
}

.accent-blue-100 {
  accent-color: rgb(219, 234, 254);
}

.bg-blue-100 {
  --bs-btn-active-bg: rgb(219, 234, 254);
  --bs-alert-bg: rgb(219, 234, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-100 {
  --bs-border-color: rgb(219, 234, 254);
  --bs-alert-border: rgb(219, 234, 254);
  border-color: var(--bs-border-color);
}

.decoration-blue-100 {
  text-decoration-color: rgb(219, 234, 254);
}

.hover\:text-blue-100:hover {
  color: rgb(219, 234, 254);
}

.hover\:bg-blue-100:hover {
  --bs-btn-active-bg: rgb(219, 234, 254);
  --bs-alert-bg: rgb(219, 234, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-100:hover {
  --bs-border-color: rgb(219, 234, 254);
  --bs-alert-border-color: rgb(219, 234, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-100 {
  text-decoration-color: rgb(219, 234, 254);
}

.focus\:text-blue-100:focus {
  color: rgb(219, 234, 254);
}

.focus\:bg-blue-100:focus {
  --bs-btn-active-bg: rgb(219, 234, 254);
  --bs-alert-bg: rgb(219, 234, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-100:focus {
  --bs-border-color: rgb(219, 234, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-100 {
  text-decoration-color: rgb(219, 234, 254);
}

.active\:text-blue-100:active {
  color: rgb(219, 234, 254);
}

.active\:bg-blue-100:active {
  --bs-btn-active-bg: rgb(219, 234, 254);
  --bs-alert-bg: rgb(219, 234, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-100:active {
  --bs-border-color: rgb(219, 234, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-100:disabled {
  color: rgb(219, 234, 254);
}

.disabled\:bg-blue-100:disabled {
  --bs-btn-active-bg: rgb(219, 234, 254);
  --bs-alert-bg: rgb(219, 234, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-100:disabled {
  --bs-border-color: rgb(219, 234, 254);
  border-color: var(--bs-border-color);
}

.text-blue-200 {
  --bs-alert-color: rgb(191, 219, 254);
  --bs-btn-color: rgb(191, 219, 254);
  color: var(--bs-btn-color);
}

.fill-blue-200 {
  color: rgb(191, 219, 254);
}

.stroke-blue-200 {
  color: rgb(191, 219, 254);
}

.accent-blue-200 {
  accent-color: rgb(191, 219, 254);
}

.bg-blue-200 {
  --bs-btn-active-bg: rgb(191, 219, 254);
  --bs-alert-bg: rgb(191, 219, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-200 {
  --bs-border-color: rgb(191, 219, 254);
  --bs-alert-border: rgb(191, 219, 254);
  border-color: var(--bs-border-color);
}

.decoration-blue-200 {
  text-decoration-color: rgb(191, 219, 254);
}

.hover\:text-blue-200:hover {
  color: rgb(191, 219, 254);
}

.hover\:bg-blue-200:hover {
  --bs-btn-active-bg: rgb(191, 219, 254);
  --bs-alert-bg: rgb(191, 219, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-200:hover {
  --bs-border-color: rgb(191, 219, 254);
  --bs-alert-border-color: rgb(191, 219, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-200 {
  text-decoration-color: rgb(191, 219, 254);
}

.focus\:text-blue-200:focus {
  color: rgb(191, 219, 254);
}

.focus\:bg-blue-200:focus {
  --bs-btn-active-bg: rgb(191, 219, 254);
  --bs-alert-bg: rgb(191, 219, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-200:focus {
  --bs-border-color: rgb(191, 219, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-200 {
  text-decoration-color: rgb(191, 219, 254);
}

.active\:text-blue-200:active {
  color: rgb(191, 219, 254);
}

.active\:bg-blue-200:active {
  --bs-btn-active-bg: rgb(191, 219, 254);
  --bs-alert-bg: rgb(191, 219, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-200:active {
  --bs-border-color: rgb(191, 219, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-200:disabled {
  color: rgb(191, 219, 254);
}

.disabled\:bg-blue-200:disabled {
  --bs-btn-active-bg: rgb(191, 219, 254);
  --bs-alert-bg: rgb(191, 219, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-200:disabled {
  --bs-border-color: rgb(191, 219, 254);
  border-color: var(--bs-border-color);
}

.text-blue-300 {
  --bs-alert-color: rgb(147, 197, 253);
  --bs-btn-color: rgb(147, 197, 253);
  color: var(--bs-btn-color);
}

.fill-blue-300 {
  color: rgb(147, 197, 253);
}

.stroke-blue-300 {
  color: rgb(147, 197, 253);
}

.accent-blue-300 {
  accent-color: rgb(147, 197, 253);
}

.bg-blue-300 {
  --bs-btn-active-bg: rgb(147, 197, 253);
  --bs-alert-bg: rgb(147, 197, 253);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-300 {
  --bs-border-color: rgb(147, 197, 253);
  --bs-alert-border: rgb(147, 197, 253);
  border-color: var(--bs-border-color);
}

.decoration-blue-300 {
  text-decoration-color: rgb(147, 197, 253);
}

.hover\:text-blue-300:hover {
  color: rgb(147, 197, 253);
}

.hover\:bg-blue-300:hover {
  --bs-btn-active-bg: rgb(147, 197, 253);
  --bs-alert-bg: rgb(147, 197, 253);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-300:hover {
  --bs-border-color: rgb(147, 197, 253);
  --bs-alert-border-color: rgb(147, 197, 253);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-300 {
  text-decoration-color: rgb(147, 197, 253);
}

.focus\:text-blue-300:focus {
  color: rgb(147, 197, 253);
}

.focus\:bg-blue-300:focus {
  --bs-btn-active-bg: rgb(147, 197, 253);
  --bs-alert-bg: rgb(147, 197, 253);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-300:focus {
  --bs-border-color: rgb(147, 197, 253);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-300 {
  text-decoration-color: rgb(147, 197, 253);
}

.active\:text-blue-300:active {
  color: rgb(147, 197, 253);
}

.active\:bg-blue-300:active {
  --bs-btn-active-bg: rgb(147, 197, 253);
  --bs-alert-bg: rgb(147, 197, 253);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-300:active {
  --bs-border-color: rgb(147, 197, 253);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-300:disabled {
  color: rgb(147, 197, 253);
}

.disabled\:bg-blue-300:disabled {
  --bs-btn-active-bg: rgb(147, 197, 253);
  --bs-alert-bg: rgb(147, 197, 253);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-300:disabled {
  --bs-border-color: rgb(147, 197, 253);
  border-color: var(--bs-border-color);
}

.text-blue-400 {
  --bs-alert-color: rgb(96, 165, 250);
  --bs-btn-color: rgb(96, 165, 250);
  color: var(--bs-btn-color);
}

.fill-blue-400 {
  color: rgb(96, 165, 250);
}

.stroke-blue-400 {
  color: rgb(96, 165, 250);
}

.accent-blue-400 {
  accent-color: rgb(96, 165, 250);
}

.bg-blue-400 {
  --bs-btn-active-bg: rgb(96, 165, 250);
  --bs-alert-bg: rgb(96, 165, 250);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-400 {
  --bs-border-color: rgb(96, 165, 250);
  --bs-alert-border: rgb(96, 165, 250);
  border-color: var(--bs-border-color);
}

.decoration-blue-400 {
  text-decoration-color: rgb(96, 165, 250);
}

.hover\:text-blue-400:hover {
  color: rgb(96, 165, 250);
}

.hover\:bg-blue-400:hover {
  --bs-btn-active-bg: rgb(96, 165, 250);
  --bs-alert-bg: rgb(96, 165, 250);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-400:hover {
  --bs-border-color: rgb(96, 165, 250);
  --bs-alert-border-color: rgb(96, 165, 250);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-400 {
  text-decoration-color: rgb(96, 165, 250);
}

.focus\:text-blue-400:focus {
  color: rgb(96, 165, 250);
}

.focus\:bg-blue-400:focus {
  --bs-btn-active-bg: rgb(96, 165, 250);
  --bs-alert-bg: rgb(96, 165, 250);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-400:focus {
  --bs-border-color: rgb(96, 165, 250);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-400 {
  text-decoration-color: rgb(96, 165, 250);
}

.active\:text-blue-400:active {
  color: rgb(96, 165, 250);
}

.active\:bg-blue-400:active {
  --bs-btn-active-bg: rgb(96, 165, 250);
  --bs-alert-bg: rgb(96, 165, 250);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-400:active {
  --bs-border-color: rgb(96, 165, 250);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-400:disabled {
  color: rgb(96, 165, 250);
}

.disabled\:bg-blue-400:disabled {
  --bs-btn-active-bg: rgb(96, 165, 250);
  --bs-alert-bg: rgb(96, 165, 250);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-400:disabled {
  --bs-border-color: rgb(96, 165, 250);
  border-color: var(--bs-border-color);
}

.text-blue-500 {
  --bs-alert-color: rgb(59, 130, 246);
  --bs-btn-color: rgb(59, 130, 246);
  color: var(--bs-btn-color);
}

.fill-blue-500 {
  color: rgb(59, 130, 246);
}

.stroke-blue-500 {
  color: rgb(59, 130, 246);
}

.accent-blue-500 {
  accent-color: rgb(59, 130, 246);
}

.bg-blue-500 {
  --bs-btn-active-bg: rgb(59, 130, 246);
  --bs-alert-bg: rgb(59, 130, 246);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-500 {
  --bs-border-color: rgb(59, 130, 246);
  --bs-alert-border: rgb(59, 130, 246);
  border-color: var(--bs-border-color);
}

.decoration-blue-500 {
  text-decoration-color: rgb(59, 130, 246);
}

.hover\:text-blue-500:hover {
  color: rgb(59, 130, 246);
}

.hover\:bg-blue-500:hover {
  --bs-btn-active-bg: rgb(59, 130, 246);
  --bs-alert-bg: rgb(59, 130, 246);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-500:hover {
  --bs-border-color: rgb(59, 130, 246);
  --bs-alert-border-color: rgb(59, 130, 246);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-500 {
  text-decoration-color: rgb(59, 130, 246);
}

.focus\:text-blue-500:focus {
  color: rgb(59, 130, 246);
}

.focus\:bg-blue-500:focus {
  --bs-btn-active-bg: rgb(59, 130, 246);
  --bs-alert-bg: rgb(59, 130, 246);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-500:focus {
  --bs-border-color: rgb(59, 130, 246);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-500 {
  text-decoration-color: rgb(59, 130, 246);
}

.active\:text-blue-500:active {
  color: rgb(59, 130, 246);
}

.active\:bg-blue-500:active {
  --bs-btn-active-bg: rgb(59, 130, 246);
  --bs-alert-bg: rgb(59, 130, 246);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-500:active {
  --bs-border-color: rgb(59, 130, 246);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-500:disabled {
  color: rgb(59, 130, 246);
}

.disabled\:bg-blue-500:disabled {
  --bs-btn-active-bg: rgb(59, 130, 246);
  --bs-alert-bg: rgb(59, 130, 246);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-500:disabled {
  --bs-border-color: rgb(59, 130, 246);
  border-color: var(--bs-border-color);
}

.text-blue-600 {
  --bs-alert-color: rgb(37, 99, 235);
  --bs-btn-color: rgb(37, 99, 235);
  color: var(--bs-btn-color);
}

.fill-blue-600 {
  color: rgb(37, 99, 235);
}

.stroke-blue-600 {
  color: rgb(37, 99, 235);
}

.accent-blue-600 {
  accent-color: rgb(37, 99, 235);
}

.bg-blue-600 {
  --bs-btn-active-bg: rgb(37, 99, 235);
  --bs-alert-bg: rgb(37, 99, 235);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-600 {
  --bs-border-color: rgb(37, 99, 235);
  --bs-alert-border: rgb(37, 99, 235);
  border-color: var(--bs-border-color);
}

.decoration-blue-600 {
  text-decoration-color: rgb(37, 99, 235);
}

.hover\:text-blue-600:hover {
  color: rgb(37, 99, 235);
}

.hover\:bg-blue-600:hover {
  --bs-btn-active-bg: rgb(37, 99, 235);
  --bs-alert-bg: rgb(37, 99, 235);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-600:hover {
  --bs-border-color: rgb(37, 99, 235);
  --bs-alert-border-color: rgb(37, 99, 235);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-600 {
  text-decoration-color: rgb(37, 99, 235);
}

.focus\:text-blue-600:focus {
  color: rgb(37, 99, 235);
}

.focus\:bg-blue-600:focus {
  --bs-btn-active-bg: rgb(37, 99, 235);
  --bs-alert-bg: rgb(37, 99, 235);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-600:focus {
  --bs-border-color: rgb(37, 99, 235);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-600 {
  text-decoration-color: rgb(37, 99, 235);
}

.active\:text-blue-600:active {
  color: rgb(37, 99, 235);
}

.active\:bg-blue-600:active {
  --bs-btn-active-bg: rgb(37, 99, 235);
  --bs-alert-bg: rgb(37, 99, 235);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-600:active {
  --bs-border-color: rgb(37, 99, 235);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-600:disabled {
  color: rgb(37, 99, 235);
}

.disabled\:bg-blue-600:disabled {
  --bs-btn-active-bg: rgb(37, 99, 235);
  --bs-alert-bg: rgb(37, 99, 235);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-600:disabled {
  --bs-border-color: rgb(37, 99, 235);
  border-color: var(--bs-border-color);
}

.text-blue-700 {
  --bs-alert-color: rgb(29, 78, 216);
  --bs-btn-color: rgb(29, 78, 216);
  color: var(--bs-btn-color);
}

.fill-blue-700 {
  color: rgb(29, 78, 216);
}

.stroke-blue-700 {
  color: rgb(29, 78, 216);
}

.accent-blue-700 {
  accent-color: rgb(29, 78, 216);
}

.bg-blue-700 {
  --bs-btn-active-bg: rgb(29, 78, 216);
  --bs-alert-bg: rgb(29, 78, 216);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-700 {
  --bs-border-color: rgb(29, 78, 216);
  --bs-alert-border: rgb(29, 78, 216);
  border-color: var(--bs-border-color);
}

.decoration-blue-700 {
  text-decoration-color: rgb(29, 78, 216);
}

.hover\:text-blue-700:hover {
  color: rgb(29, 78, 216);
}

.hover\:bg-blue-700:hover {
  --bs-btn-active-bg: rgb(29, 78, 216);
  --bs-alert-bg: rgb(29, 78, 216);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-700:hover {
  --bs-border-color: rgb(29, 78, 216);
  --bs-alert-border-color: rgb(29, 78, 216);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-700 {
  text-decoration-color: rgb(29, 78, 216);
}

.focus\:text-blue-700:focus {
  color: rgb(29, 78, 216);
}

.focus\:bg-blue-700:focus {
  --bs-btn-active-bg: rgb(29, 78, 216);
  --bs-alert-bg: rgb(29, 78, 216);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-700:focus {
  --bs-border-color: rgb(29, 78, 216);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-700 {
  text-decoration-color: rgb(29, 78, 216);
}

.active\:text-blue-700:active {
  color: rgb(29, 78, 216);
}

.active\:bg-blue-700:active {
  --bs-btn-active-bg: rgb(29, 78, 216);
  --bs-alert-bg: rgb(29, 78, 216);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-700:active {
  --bs-border-color: rgb(29, 78, 216);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-700:disabled {
  color: rgb(29, 78, 216);
}

.disabled\:bg-blue-700:disabled {
  --bs-btn-active-bg: rgb(29, 78, 216);
  --bs-alert-bg: rgb(29, 78, 216);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-700:disabled {
  --bs-border-color: rgb(29, 78, 216);
  border-color: var(--bs-border-color);
}

.text-blue-800 {
  --bs-alert-color: rgb(30, 64, 175);
  --bs-btn-color: rgb(30, 64, 175);
  color: var(--bs-btn-color);
}

.fill-blue-800 {
  color: rgb(30, 64, 175);
}

.stroke-blue-800 {
  color: rgb(30, 64, 175);
}

.accent-blue-800 {
  accent-color: rgb(30, 64, 175);
}

.bg-blue-800 {
  --bs-btn-active-bg: rgb(30, 64, 175);
  --bs-alert-bg: rgb(30, 64, 175);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-800 {
  --bs-border-color: rgb(30, 64, 175);
  --bs-alert-border: rgb(30, 64, 175);
  border-color: var(--bs-border-color);
}

.decoration-blue-800 {
  text-decoration-color: rgb(30, 64, 175);
}

.hover\:text-blue-800:hover {
  color: rgb(30, 64, 175);
}

.hover\:bg-blue-800:hover {
  --bs-btn-active-bg: rgb(30, 64, 175);
  --bs-alert-bg: rgb(30, 64, 175);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-800:hover {
  --bs-border-color: rgb(30, 64, 175);
  --bs-alert-border-color: rgb(30, 64, 175);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-800 {
  text-decoration-color: rgb(30, 64, 175);
}

.focus\:text-blue-800:focus {
  color: rgb(30, 64, 175);
}

.focus\:bg-blue-800:focus {
  --bs-btn-active-bg: rgb(30, 64, 175);
  --bs-alert-bg: rgb(30, 64, 175);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-800:focus {
  --bs-border-color: rgb(30, 64, 175);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-800 {
  text-decoration-color: rgb(30, 64, 175);
}

.active\:text-blue-800:active {
  color: rgb(30, 64, 175);
}

.active\:bg-blue-800:active {
  --bs-btn-active-bg: rgb(30, 64, 175);
  --bs-alert-bg: rgb(30, 64, 175);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-800:active {
  --bs-border-color: rgb(30, 64, 175);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-800:disabled {
  color: rgb(30, 64, 175);
}

.disabled\:bg-blue-800:disabled {
  --bs-btn-active-bg: rgb(30, 64, 175);
  --bs-alert-bg: rgb(30, 64, 175);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-800:disabled {
  --bs-border-color: rgb(30, 64, 175);
  border-color: var(--bs-border-color);
}

.text-blue-900 {
  --bs-alert-color: rgb(30, 58, 138);
  --bs-btn-color: rgb(30, 58, 138);
  color: var(--bs-btn-color);
}

.fill-blue-900 {
  color: rgb(30, 58, 138);
}

.stroke-blue-900 {
  color: rgb(30, 58, 138);
}

.accent-blue-900 {
  accent-color: rgb(30, 58, 138);
}

.bg-blue-900 {
  --bs-btn-active-bg: rgb(30, 58, 138);
  --bs-alert-bg: rgb(30, 58, 138);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-900 {
  --bs-border-color: rgb(30, 58, 138);
  --bs-alert-border: rgb(30, 58, 138);
  border-color: var(--bs-border-color);
}

.decoration-blue-900 {
  text-decoration-color: rgb(30, 58, 138);
}

.hover\:text-blue-900:hover {
  color: rgb(30, 58, 138);
}

.hover\:bg-blue-900:hover {
  --bs-btn-active-bg: rgb(30, 58, 138);
  --bs-alert-bg: rgb(30, 58, 138);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-900:hover {
  --bs-border-color: rgb(30, 58, 138);
  --bs-alert-border-color: rgb(30, 58, 138);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-900 {
  text-decoration-color: rgb(30, 58, 138);
}

.focus\:text-blue-900:focus {
  color: rgb(30, 58, 138);
}

.focus\:bg-blue-900:focus {
  --bs-btn-active-bg: rgb(30, 58, 138);
  --bs-alert-bg: rgb(30, 58, 138);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-900:focus {
  --bs-border-color: rgb(30, 58, 138);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-900 {
  text-decoration-color: rgb(30, 58, 138);
}

.active\:text-blue-900:active {
  color: rgb(30, 58, 138);
}

.active\:bg-blue-900:active {
  --bs-btn-active-bg: rgb(30, 58, 138);
  --bs-alert-bg: rgb(30, 58, 138);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-900:active {
  --bs-border-color: rgb(30, 58, 138);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-900:disabled {
  color: rgb(30, 58, 138);
}

.disabled\:bg-blue-900:disabled {
  --bs-btn-active-bg: rgb(30, 58, 138);
  --bs-alert-bg: rgb(30, 58, 138);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-900:disabled {
  --bs-border-color: rgb(30, 58, 138);
  border-color: var(--bs-border-color);
}

.text-blue-950 {
  --bs-alert-color: rgb(23, 37, 84);
  --bs-btn-color: rgb(23, 37, 84);
  color: var(--bs-btn-color);
}

.fill-blue-950 {
  color: rgb(23, 37, 84);
}

.stroke-blue-950 {
  color: rgb(23, 37, 84);
}

.accent-blue-950 {
  accent-color: rgb(23, 37, 84);
}

.bg-blue-950 {
  --bs-btn-active-bg: rgb(23, 37, 84);
  --bs-alert-bg: rgb(23, 37, 84);
  background-color: var(--bs-btn-active-bg);
}

.border-blue-950 {
  --bs-border-color: rgb(23, 37, 84);
  --bs-alert-border: rgb(23, 37, 84);
  border-color: var(--bs-border-color);
}

.decoration-blue-950 {
  text-decoration-color: rgb(23, 37, 84);
}

.hover\:text-blue-950:hover {
  color: rgb(23, 37, 84);
}

.hover\:bg-blue-950:hover {
  --bs-btn-active-bg: rgb(23, 37, 84);
  --bs-alert-bg: rgb(23, 37, 84);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-blue-950:hover {
  --bs-border-color: rgb(23, 37, 84);
  --bs-alert-border-color: rgb(23, 37, 84);
  border-color: var(--bs-border-color);
}

.hover\:decoration-blue-950 {
  text-decoration-color: rgb(23, 37, 84);
}

.focus\:text-blue-950:focus {
  color: rgb(23, 37, 84);
}

.focus\:bg-blue-950:focus {
  --bs-btn-active-bg: rgb(23, 37, 84);
  --bs-alert-bg: rgb(23, 37, 84);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-blue-950:focus {
  --bs-border-color: rgb(23, 37, 84);
  border-color: var(--bs-border-color);
}

.focus\:decoration-blue-950 {
  text-decoration-color: rgb(23, 37, 84);
}

.active\:text-blue-950:active {
  color: rgb(23, 37, 84);
}

.active\:bg-blue-950:active {
  --bs-btn-active-bg: rgb(23, 37, 84);
  --bs-alert-bg: rgb(23, 37, 84);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-blue-950:active {
  --bs-border-color: rgb(23, 37, 84);
  border-color: var(--bs-border-color);
}

.disabled\:text-blue-950:disabled {
  color: rgb(23, 37, 84);
}

.disabled\:bg-blue-950:disabled {
  --bs-btn-active-bg: rgb(23, 37, 84);
  --bs-alert-bg: rgb(23, 37, 84);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-blue-950:disabled {
  --bs-border-color: rgb(23, 37, 84);
  border-color: var(--bs-border-color);
}

.text-indigo-50 {
  --bs-alert-color: rgb(238, 242, 255);
  --bs-btn-color: rgb(238, 242, 255);
  color: var(--bs-btn-color);
}

.fill-indigo-50 {
  color: rgb(238, 242, 255);
}

.stroke-indigo-50 {
  color: rgb(238, 242, 255);
}

.accent-indigo-50 {
  accent-color: rgb(238, 242, 255);
}

.bg-indigo-50 {
  --bs-btn-active-bg: rgb(238, 242, 255);
  --bs-alert-bg: rgb(238, 242, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-50 {
  --bs-border-color: rgb(238, 242, 255);
  --bs-alert-border: rgb(238, 242, 255);
  border-color: var(--bs-border-color);
}

.decoration-indigo-50 {
  text-decoration-color: rgb(238, 242, 255);
}

.hover\:text-indigo-50:hover {
  color: rgb(238, 242, 255);
}

.hover\:bg-indigo-50:hover {
  --bs-btn-active-bg: rgb(238, 242, 255);
  --bs-alert-bg: rgb(238, 242, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-50:hover {
  --bs-border-color: rgb(238, 242, 255);
  --bs-alert-border-color: rgb(238, 242, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-50 {
  text-decoration-color: rgb(238, 242, 255);
}

.focus\:text-indigo-50:focus {
  color: rgb(238, 242, 255);
}

.focus\:bg-indigo-50:focus {
  --bs-btn-active-bg: rgb(238, 242, 255);
  --bs-alert-bg: rgb(238, 242, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-50:focus {
  --bs-border-color: rgb(238, 242, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-50 {
  text-decoration-color: rgb(238, 242, 255);
}

.active\:text-indigo-50:active {
  color: rgb(238, 242, 255);
}

.active\:bg-indigo-50:active {
  --bs-btn-active-bg: rgb(238, 242, 255);
  --bs-alert-bg: rgb(238, 242, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-50:active {
  --bs-border-color: rgb(238, 242, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-50:disabled {
  color: rgb(238, 242, 255);
}

.disabled\:bg-indigo-50:disabled {
  --bs-btn-active-bg: rgb(238, 242, 255);
  --bs-alert-bg: rgb(238, 242, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-50:disabled {
  --bs-border-color: rgb(238, 242, 255);
  border-color: var(--bs-border-color);
}

.text-indigo-100 {
  --bs-alert-color: rgb(224, 231, 255);
  --bs-btn-color: rgb(224, 231, 255);
  color: var(--bs-btn-color);
}

.fill-indigo-100 {
  color: rgb(224, 231, 255);
}

.stroke-indigo-100 {
  color: rgb(224, 231, 255);
}

.accent-indigo-100 {
  accent-color: rgb(224, 231, 255);
}

.bg-indigo-100 {
  --bs-btn-active-bg: rgb(224, 231, 255);
  --bs-alert-bg: rgb(224, 231, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-100 {
  --bs-border-color: rgb(224, 231, 255);
  --bs-alert-border: rgb(224, 231, 255);
  border-color: var(--bs-border-color);
}

.decoration-indigo-100 {
  text-decoration-color: rgb(224, 231, 255);
}

.hover\:text-indigo-100:hover {
  color: rgb(224, 231, 255);
}

.hover\:bg-indigo-100:hover {
  --bs-btn-active-bg: rgb(224, 231, 255);
  --bs-alert-bg: rgb(224, 231, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-100:hover {
  --bs-border-color: rgb(224, 231, 255);
  --bs-alert-border-color: rgb(224, 231, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-100 {
  text-decoration-color: rgb(224, 231, 255);
}

.focus\:text-indigo-100:focus {
  color: rgb(224, 231, 255);
}

.focus\:bg-indigo-100:focus {
  --bs-btn-active-bg: rgb(224, 231, 255);
  --bs-alert-bg: rgb(224, 231, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-100:focus {
  --bs-border-color: rgb(224, 231, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-100 {
  text-decoration-color: rgb(224, 231, 255);
}

.active\:text-indigo-100:active {
  color: rgb(224, 231, 255);
}

.active\:bg-indigo-100:active {
  --bs-btn-active-bg: rgb(224, 231, 255);
  --bs-alert-bg: rgb(224, 231, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-100:active {
  --bs-border-color: rgb(224, 231, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-100:disabled {
  color: rgb(224, 231, 255);
}

.disabled\:bg-indigo-100:disabled {
  --bs-btn-active-bg: rgb(224, 231, 255);
  --bs-alert-bg: rgb(224, 231, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-100:disabled {
  --bs-border-color: rgb(224, 231, 255);
  border-color: var(--bs-border-color);
}

.text-indigo-200 {
  --bs-alert-color: rgb(199, 210, 254);
  --bs-btn-color: rgb(199, 210, 254);
  color: var(--bs-btn-color);
}

.fill-indigo-200 {
  color: rgb(199, 210, 254);
}

.stroke-indigo-200 {
  color: rgb(199, 210, 254);
}

.accent-indigo-200 {
  accent-color: rgb(199, 210, 254);
}

.bg-indigo-200 {
  --bs-btn-active-bg: rgb(199, 210, 254);
  --bs-alert-bg: rgb(199, 210, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-200 {
  --bs-border-color: rgb(199, 210, 254);
  --bs-alert-border: rgb(199, 210, 254);
  border-color: var(--bs-border-color);
}

.decoration-indigo-200 {
  text-decoration-color: rgb(199, 210, 254);
}

.hover\:text-indigo-200:hover {
  color: rgb(199, 210, 254);
}

.hover\:bg-indigo-200:hover {
  --bs-btn-active-bg: rgb(199, 210, 254);
  --bs-alert-bg: rgb(199, 210, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-200:hover {
  --bs-border-color: rgb(199, 210, 254);
  --bs-alert-border-color: rgb(199, 210, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-200 {
  text-decoration-color: rgb(199, 210, 254);
}

.focus\:text-indigo-200:focus {
  color: rgb(199, 210, 254);
}

.focus\:bg-indigo-200:focus {
  --bs-btn-active-bg: rgb(199, 210, 254);
  --bs-alert-bg: rgb(199, 210, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-200:focus {
  --bs-border-color: rgb(199, 210, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-200 {
  text-decoration-color: rgb(199, 210, 254);
}

.active\:text-indigo-200:active {
  color: rgb(199, 210, 254);
}

.active\:bg-indigo-200:active {
  --bs-btn-active-bg: rgb(199, 210, 254);
  --bs-alert-bg: rgb(199, 210, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-200:active {
  --bs-border-color: rgb(199, 210, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-200:disabled {
  color: rgb(199, 210, 254);
}

.disabled\:bg-indigo-200:disabled {
  --bs-btn-active-bg: rgb(199, 210, 254);
  --bs-alert-bg: rgb(199, 210, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-200:disabled {
  --bs-border-color: rgb(199, 210, 254);
  border-color: var(--bs-border-color);
}

.text-indigo-300 {
  --bs-alert-color: rgb(165, 180, 252);
  --bs-btn-color: rgb(165, 180, 252);
  color: var(--bs-btn-color);
}

.fill-indigo-300 {
  color: rgb(165, 180, 252);
}

.stroke-indigo-300 {
  color: rgb(165, 180, 252);
}

.accent-indigo-300 {
  accent-color: rgb(165, 180, 252);
}

.bg-indigo-300 {
  --bs-btn-active-bg: rgb(165, 180, 252);
  --bs-alert-bg: rgb(165, 180, 252);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-300 {
  --bs-border-color: rgb(165, 180, 252);
  --bs-alert-border: rgb(165, 180, 252);
  border-color: var(--bs-border-color);
}

.decoration-indigo-300 {
  text-decoration-color: rgb(165, 180, 252);
}

.hover\:text-indigo-300:hover {
  color: rgb(165, 180, 252);
}

.hover\:bg-indigo-300:hover {
  --bs-btn-active-bg: rgb(165, 180, 252);
  --bs-alert-bg: rgb(165, 180, 252);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-300:hover {
  --bs-border-color: rgb(165, 180, 252);
  --bs-alert-border-color: rgb(165, 180, 252);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-300 {
  text-decoration-color: rgb(165, 180, 252);
}

.focus\:text-indigo-300:focus {
  color: rgb(165, 180, 252);
}

.focus\:bg-indigo-300:focus {
  --bs-btn-active-bg: rgb(165, 180, 252);
  --bs-alert-bg: rgb(165, 180, 252);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-300:focus {
  --bs-border-color: rgb(165, 180, 252);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-300 {
  text-decoration-color: rgb(165, 180, 252);
}

.active\:text-indigo-300:active {
  color: rgb(165, 180, 252);
}

.active\:bg-indigo-300:active {
  --bs-btn-active-bg: rgb(165, 180, 252);
  --bs-alert-bg: rgb(165, 180, 252);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-300:active {
  --bs-border-color: rgb(165, 180, 252);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-300:disabled {
  color: rgb(165, 180, 252);
}

.disabled\:bg-indigo-300:disabled {
  --bs-btn-active-bg: rgb(165, 180, 252);
  --bs-alert-bg: rgb(165, 180, 252);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-300:disabled {
  --bs-border-color: rgb(165, 180, 252);
  border-color: var(--bs-border-color);
}

.text-indigo-400 {
  --bs-alert-color: rgb(129, 140, 248);
  --bs-btn-color: rgb(129, 140, 248);
  color: var(--bs-btn-color);
}

.fill-indigo-400 {
  color: rgb(129, 140, 248);
}

.stroke-indigo-400 {
  color: rgb(129, 140, 248);
}

.accent-indigo-400 {
  accent-color: rgb(129, 140, 248);
}

.bg-indigo-400 {
  --bs-btn-active-bg: rgb(129, 140, 248);
  --bs-alert-bg: rgb(129, 140, 248);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-400 {
  --bs-border-color: rgb(129, 140, 248);
  --bs-alert-border: rgb(129, 140, 248);
  border-color: var(--bs-border-color);
}

.decoration-indigo-400 {
  text-decoration-color: rgb(129, 140, 248);
}

.hover\:text-indigo-400:hover {
  color: rgb(129, 140, 248);
}

.hover\:bg-indigo-400:hover {
  --bs-btn-active-bg: rgb(129, 140, 248);
  --bs-alert-bg: rgb(129, 140, 248);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-400:hover {
  --bs-border-color: rgb(129, 140, 248);
  --bs-alert-border-color: rgb(129, 140, 248);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-400 {
  text-decoration-color: rgb(129, 140, 248);
}

.focus\:text-indigo-400:focus {
  color: rgb(129, 140, 248);
}

.focus\:bg-indigo-400:focus {
  --bs-btn-active-bg: rgb(129, 140, 248);
  --bs-alert-bg: rgb(129, 140, 248);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-400:focus {
  --bs-border-color: rgb(129, 140, 248);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-400 {
  text-decoration-color: rgb(129, 140, 248);
}

.active\:text-indigo-400:active {
  color: rgb(129, 140, 248);
}

.active\:bg-indigo-400:active {
  --bs-btn-active-bg: rgb(129, 140, 248);
  --bs-alert-bg: rgb(129, 140, 248);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-400:active {
  --bs-border-color: rgb(129, 140, 248);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-400:disabled {
  color: rgb(129, 140, 248);
}

.disabled\:bg-indigo-400:disabled {
  --bs-btn-active-bg: rgb(129, 140, 248);
  --bs-alert-bg: rgb(129, 140, 248);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-400:disabled {
  --bs-border-color: rgb(129, 140, 248);
  border-color: var(--bs-border-color);
}

.text-indigo-500 {
  --bs-alert-color: rgb(99, 102, 241);
  --bs-btn-color: rgb(99, 102, 241);
  color: var(--bs-btn-color);
}

.fill-indigo-500 {
  color: rgb(99, 102, 241);
}

.stroke-indigo-500 {
  color: rgb(99, 102, 241);
}

.accent-indigo-500 {
  accent-color: rgb(99, 102, 241);
}

.bg-indigo-500 {
  --bs-btn-active-bg: rgb(99, 102, 241);
  --bs-alert-bg: rgb(99, 102, 241);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-500 {
  --bs-border-color: rgb(99, 102, 241);
  --bs-alert-border: rgb(99, 102, 241);
  border-color: var(--bs-border-color);
}

.decoration-indigo-500 {
  text-decoration-color: rgb(99, 102, 241);
}

.hover\:text-indigo-500:hover {
  color: rgb(99, 102, 241);
}

.hover\:bg-indigo-500:hover {
  --bs-btn-active-bg: rgb(99, 102, 241);
  --bs-alert-bg: rgb(99, 102, 241);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-500:hover {
  --bs-border-color: rgb(99, 102, 241);
  --bs-alert-border-color: rgb(99, 102, 241);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-500 {
  text-decoration-color: rgb(99, 102, 241);
}

.focus\:text-indigo-500:focus {
  color: rgb(99, 102, 241);
}

.focus\:bg-indigo-500:focus {
  --bs-btn-active-bg: rgb(99, 102, 241);
  --bs-alert-bg: rgb(99, 102, 241);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-500:focus {
  --bs-border-color: rgb(99, 102, 241);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-500 {
  text-decoration-color: rgb(99, 102, 241);
}

.active\:text-indigo-500:active {
  color: rgb(99, 102, 241);
}

.active\:bg-indigo-500:active {
  --bs-btn-active-bg: rgb(99, 102, 241);
  --bs-alert-bg: rgb(99, 102, 241);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-500:active {
  --bs-border-color: rgb(99, 102, 241);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-500:disabled {
  color: rgb(99, 102, 241);
}

.disabled\:bg-indigo-500:disabled {
  --bs-btn-active-bg: rgb(99, 102, 241);
  --bs-alert-bg: rgb(99, 102, 241);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-500:disabled {
  --bs-border-color: rgb(99, 102, 241);
  border-color: var(--bs-border-color);
}

.text-indigo-600 {
  --bs-alert-color: rgb(79, 70, 229);
  --bs-btn-color: rgb(79, 70, 229);
  color: var(--bs-btn-color);
}

.fill-indigo-600 {
  color: rgb(79, 70, 229);
}

.stroke-indigo-600 {
  color: rgb(79, 70, 229);
}

.accent-indigo-600 {
  accent-color: rgb(79, 70, 229);
}

.bg-indigo-600 {
  --bs-btn-active-bg: rgb(79, 70, 229);
  --bs-alert-bg: rgb(79, 70, 229);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-600 {
  --bs-border-color: rgb(79, 70, 229);
  --bs-alert-border: rgb(79, 70, 229);
  border-color: var(--bs-border-color);
}

.decoration-indigo-600 {
  text-decoration-color: rgb(79, 70, 229);
}

.hover\:text-indigo-600:hover {
  color: rgb(79, 70, 229);
}

.hover\:bg-indigo-600:hover {
  --bs-btn-active-bg: rgb(79, 70, 229);
  --bs-alert-bg: rgb(79, 70, 229);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-600:hover {
  --bs-border-color: rgb(79, 70, 229);
  --bs-alert-border-color: rgb(79, 70, 229);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-600 {
  text-decoration-color: rgb(79, 70, 229);
}

.focus\:text-indigo-600:focus {
  color: rgb(79, 70, 229);
}

.focus\:bg-indigo-600:focus {
  --bs-btn-active-bg: rgb(79, 70, 229);
  --bs-alert-bg: rgb(79, 70, 229);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-600:focus {
  --bs-border-color: rgb(79, 70, 229);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-600 {
  text-decoration-color: rgb(79, 70, 229);
}

.active\:text-indigo-600:active {
  color: rgb(79, 70, 229);
}

.active\:bg-indigo-600:active {
  --bs-btn-active-bg: rgb(79, 70, 229);
  --bs-alert-bg: rgb(79, 70, 229);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-600:active {
  --bs-border-color: rgb(79, 70, 229);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-600:disabled {
  color: rgb(79, 70, 229);
}

.disabled\:bg-indigo-600:disabled {
  --bs-btn-active-bg: rgb(79, 70, 229);
  --bs-alert-bg: rgb(79, 70, 229);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-600:disabled {
  --bs-border-color: rgb(79, 70, 229);
  border-color: var(--bs-border-color);
}

.text-indigo-700 {
  --bs-alert-color: rgb(67, 56, 202);
  --bs-btn-color: rgb(67, 56, 202);
  color: var(--bs-btn-color);
}

.fill-indigo-700 {
  color: rgb(67, 56, 202);
}

.stroke-indigo-700 {
  color: rgb(67, 56, 202);
}

.accent-indigo-700 {
  accent-color: rgb(67, 56, 202);
}

.bg-indigo-700 {
  --bs-btn-active-bg: rgb(67, 56, 202);
  --bs-alert-bg: rgb(67, 56, 202);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-700 {
  --bs-border-color: rgb(67, 56, 202);
  --bs-alert-border: rgb(67, 56, 202);
  border-color: var(--bs-border-color);
}

.decoration-indigo-700 {
  text-decoration-color: rgb(67, 56, 202);
}

.hover\:text-indigo-700:hover {
  color: rgb(67, 56, 202);
}

.hover\:bg-indigo-700:hover {
  --bs-btn-active-bg: rgb(67, 56, 202);
  --bs-alert-bg: rgb(67, 56, 202);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-700:hover {
  --bs-border-color: rgb(67, 56, 202);
  --bs-alert-border-color: rgb(67, 56, 202);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-700 {
  text-decoration-color: rgb(67, 56, 202);
}

.focus\:text-indigo-700:focus {
  color: rgb(67, 56, 202);
}

.focus\:bg-indigo-700:focus {
  --bs-btn-active-bg: rgb(67, 56, 202);
  --bs-alert-bg: rgb(67, 56, 202);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-700:focus {
  --bs-border-color: rgb(67, 56, 202);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-700 {
  text-decoration-color: rgb(67, 56, 202);
}

.active\:text-indigo-700:active {
  color: rgb(67, 56, 202);
}

.active\:bg-indigo-700:active {
  --bs-btn-active-bg: rgb(67, 56, 202);
  --bs-alert-bg: rgb(67, 56, 202);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-700:active {
  --bs-border-color: rgb(67, 56, 202);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-700:disabled {
  color: rgb(67, 56, 202);
}

.disabled\:bg-indigo-700:disabled {
  --bs-btn-active-bg: rgb(67, 56, 202);
  --bs-alert-bg: rgb(67, 56, 202);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-700:disabled {
  --bs-border-color: rgb(67, 56, 202);
  border-color: var(--bs-border-color);
}

.text-indigo-800 {
  --bs-alert-color: rgb(55, 48, 163);
  --bs-btn-color: rgb(55, 48, 163);
  color: var(--bs-btn-color);
}

.fill-indigo-800 {
  color: rgb(55, 48, 163);
}

.stroke-indigo-800 {
  color: rgb(55, 48, 163);
}

.accent-indigo-800 {
  accent-color: rgb(55, 48, 163);
}

.bg-indigo-800 {
  --bs-btn-active-bg: rgb(55, 48, 163);
  --bs-alert-bg: rgb(55, 48, 163);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-800 {
  --bs-border-color: rgb(55, 48, 163);
  --bs-alert-border: rgb(55, 48, 163);
  border-color: var(--bs-border-color);
}

.decoration-indigo-800 {
  text-decoration-color: rgb(55, 48, 163);
}

.hover\:text-indigo-800:hover {
  color: rgb(55, 48, 163);
}

.hover\:bg-indigo-800:hover {
  --bs-btn-active-bg: rgb(55, 48, 163);
  --bs-alert-bg: rgb(55, 48, 163);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-800:hover {
  --bs-border-color: rgb(55, 48, 163);
  --bs-alert-border-color: rgb(55, 48, 163);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-800 {
  text-decoration-color: rgb(55, 48, 163);
}

.focus\:text-indigo-800:focus {
  color: rgb(55, 48, 163);
}

.focus\:bg-indigo-800:focus {
  --bs-btn-active-bg: rgb(55, 48, 163);
  --bs-alert-bg: rgb(55, 48, 163);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-800:focus {
  --bs-border-color: rgb(55, 48, 163);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-800 {
  text-decoration-color: rgb(55, 48, 163);
}

.active\:text-indigo-800:active {
  color: rgb(55, 48, 163);
}

.active\:bg-indigo-800:active {
  --bs-btn-active-bg: rgb(55, 48, 163);
  --bs-alert-bg: rgb(55, 48, 163);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-800:active {
  --bs-border-color: rgb(55, 48, 163);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-800:disabled {
  color: rgb(55, 48, 163);
}

.disabled\:bg-indigo-800:disabled {
  --bs-btn-active-bg: rgb(55, 48, 163);
  --bs-alert-bg: rgb(55, 48, 163);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-800:disabled {
  --bs-border-color: rgb(55, 48, 163);
  border-color: var(--bs-border-color);
}

.text-indigo-900 {
  --bs-alert-color: rgb(49, 46, 129);
  --bs-btn-color: rgb(49, 46, 129);
  color: var(--bs-btn-color);
}

.fill-indigo-900 {
  color: rgb(49, 46, 129);
}

.stroke-indigo-900 {
  color: rgb(49, 46, 129);
}

.accent-indigo-900 {
  accent-color: rgb(49, 46, 129);
}

.bg-indigo-900 {
  --bs-btn-active-bg: rgb(49, 46, 129);
  --bs-alert-bg: rgb(49, 46, 129);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-900 {
  --bs-border-color: rgb(49, 46, 129);
  --bs-alert-border: rgb(49, 46, 129);
  border-color: var(--bs-border-color);
}

.decoration-indigo-900 {
  text-decoration-color: rgb(49, 46, 129);
}

.hover\:text-indigo-900:hover {
  color: rgb(49, 46, 129);
}

.hover\:bg-indigo-900:hover {
  --bs-btn-active-bg: rgb(49, 46, 129);
  --bs-alert-bg: rgb(49, 46, 129);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-900:hover {
  --bs-border-color: rgb(49, 46, 129);
  --bs-alert-border-color: rgb(49, 46, 129);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-900 {
  text-decoration-color: rgb(49, 46, 129);
}

.focus\:text-indigo-900:focus {
  color: rgb(49, 46, 129);
}

.focus\:bg-indigo-900:focus {
  --bs-btn-active-bg: rgb(49, 46, 129);
  --bs-alert-bg: rgb(49, 46, 129);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-900:focus {
  --bs-border-color: rgb(49, 46, 129);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-900 {
  text-decoration-color: rgb(49, 46, 129);
}

.active\:text-indigo-900:active {
  color: rgb(49, 46, 129);
}

.active\:bg-indigo-900:active {
  --bs-btn-active-bg: rgb(49, 46, 129);
  --bs-alert-bg: rgb(49, 46, 129);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-900:active {
  --bs-border-color: rgb(49, 46, 129);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-900:disabled {
  color: rgb(49, 46, 129);
}

.disabled\:bg-indigo-900:disabled {
  --bs-btn-active-bg: rgb(49, 46, 129);
  --bs-alert-bg: rgb(49, 46, 129);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-900:disabled {
  --bs-border-color: rgb(49, 46, 129);
  border-color: var(--bs-border-color);
}

.text-indigo-950 {
  --bs-alert-color: rgb(30, 27, 75);
  --bs-btn-color: rgb(30, 27, 75);
  color: var(--bs-btn-color);
}

.fill-indigo-950 {
  color: rgb(30, 27, 75);
}

.stroke-indigo-950 {
  color: rgb(30, 27, 75);
}

.accent-indigo-950 {
  accent-color: rgb(30, 27, 75);
}

.bg-indigo-950 {
  --bs-btn-active-bg: rgb(30, 27, 75);
  --bs-alert-bg: rgb(30, 27, 75);
  background-color: var(--bs-btn-active-bg);
}

.border-indigo-950 {
  --bs-border-color: rgb(30, 27, 75);
  --bs-alert-border: rgb(30, 27, 75);
  border-color: var(--bs-border-color);
}

.decoration-indigo-950 {
  text-decoration-color: rgb(30, 27, 75);
}

.hover\:text-indigo-950:hover {
  color: rgb(30, 27, 75);
}

.hover\:bg-indigo-950:hover {
  --bs-btn-active-bg: rgb(30, 27, 75);
  --bs-alert-bg: rgb(30, 27, 75);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-indigo-950:hover {
  --bs-border-color: rgb(30, 27, 75);
  --bs-alert-border-color: rgb(30, 27, 75);
  border-color: var(--bs-border-color);
}

.hover\:decoration-indigo-950 {
  text-decoration-color: rgb(30, 27, 75);
}

.focus\:text-indigo-950:focus {
  color: rgb(30, 27, 75);
}

.focus\:bg-indigo-950:focus {
  --bs-btn-active-bg: rgb(30, 27, 75);
  --bs-alert-bg: rgb(30, 27, 75);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-indigo-950:focus {
  --bs-border-color: rgb(30, 27, 75);
  border-color: var(--bs-border-color);
}

.focus\:decoration-indigo-950 {
  text-decoration-color: rgb(30, 27, 75);
}

.active\:text-indigo-950:active {
  color: rgb(30, 27, 75);
}

.active\:bg-indigo-950:active {
  --bs-btn-active-bg: rgb(30, 27, 75);
  --bs-alert-bg: rgb(30, 27, 75);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-indigo-950:active {
  --bs-border-color: rgb(30, 27, 75);
  border-color: var(--bs-border-color);
}

.disabled\:text-indigo-950:disabled {
  color: rgb(30, 27, 75);
}

.disabled\:bg-indigo-950:disabled {
  --bs-btn-active-bg: rgb(30, 27, 75);
  --bs-alert-bg: rgb(30, 27, 75);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-indigo-950:disabled {
  --bs-border-color: rgb(30, 27, 75);
  border-color: var(--bs-border-color);
}

.text-violet-50 {
  --bs-alert-color: rgb(245, 243, 255);
  --bs-btn-color: rgb(245, 243, 255);
  color: var(--bs-btn-color);
}

.fill-violet-50 {
  color: rgb(245, 243, 255);
}

.stroke-violet-50 {
  color: rgb(245, 243, 255);
}

.accent-violet-50 {
  accent-color: rgb(245, 243, 255);
}

.bg-violet-50 {
  --bs-btn-active-bg: rgb(245, 243, 255);
  --bs-alert-bg: rgb(245, 243, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-50 {
  --bs-border-color: rgb(245, 243, 255);
  --bs-alert-border: rgb(245, 243, 255);
  border-color: var(--bs-border-color);
}

.decoration-violet-50 {
  text-decoration-color: rgb(245, 243, 255);
}

.hover\:text-violet-50:hover {
  color: rgb(245, 243, 255);
}

.hover\:bg-violet-50:hover {
  --bs-btn-active-bg: rgb(245, 243, 255);
  --bs-alert-bg: rgb(245, 243, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-50:hover {
  --bs-border-color: rgb(245, 243, 255);
  --bs-alert-border-color: rgb(245, 243, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-50 {
  text-decoration-color: rgb(245, 243, 255);
}

.focus\:text-violet-50:focus {
  color: rgb(245, 243, 255);
}

.focus\:bg-violet-50:focus {
  --bs-btn-active-bg: rgb(245, 243, 255);
  --bs-alert-bg: rgb(245, 243, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-50:focus {
  --bs-border-color: rgb(245, 243, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-50 {
  text-decoration-color: rgb(245, 243, 255);
}

.active\:text-violet-50:active {
  color: rgb(245, 243, 255);
}

.active\:bg-violet-50:active {
  --bs-btn-active-bg: rgb(245, 243, 255);
  --bs-alert-bg: rgb(245, 243, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-50:active {
  --bs-border-color: rgb(245, 243, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-50:disabled {
  color: rgb(245, 243, 255);
}

.disabled\:bg-violet-50:disabled {
  --bs-btn-active-bg: rgb(245, 243, 255);
  --bs-alert-bg: rgb(245, 243, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-50:disabled {
  --bs-border-color: rgb(245, 243, 255);
  border-color: var(--bs-border-color);
}

.text-violet-100 {
  --bs-alert-color: rgb(237, 233, 254);
  --bs-btn-color: rgb(237, 233, 254);
  color: var(--bs-btn-color);
}

.fill-violet-100 {
  color: rgb(237, 233, 254);
}

.stroke-violet-100 {
  color: rgb(237, 233, 254);
}

.accent-violet-100 {
  accent-color: rgb(237, 233, 254);
}

.bg-violet-100 {
  --bs-btn-active-bg: rgb(237, 233, 254);
  --bs-alert-bg: rgb(237, 233, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-100 {
  --bs-border-color: rgb(237, 233, 254);
  --bs-alert-border: rgb(237, 233, 254);
  border-color: var(--bs-border-color);
}

.decoration-violet-100 {
  text-decoration-color: rgb(237, 233, 254);
}

.hover\:text-violet-100:hover {
  color: rgb(237, 233, 254);
}

.hover\:bg-violet-100:hover {
  --bs-btn-active-bg: rgb(237, 233, 254);
  --bs-alert-bg: rgb(237, 233, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-100:hover {
  --bs-border-color: rgb(237, 233, 254);
  --bs-alert-border-color: rgb(237, 233, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-100 {
  text-decoration-color: rgb(237, 233, 254);
}

.focus\:text-violet-100:focus {
  color: rgb(237, 233, 254);
}

.focus\:bg-violet-100:focus {
  --bs-btn-active-bg: rgb(237, 233, 254);
  --bs-alert-bg: rgb(237, 233, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-100:focus {
  --bs-border-color: rgb(237, 233, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-100 {
  text-decoration-color: rgb(237, 233, 254);
}

.active\:text-violet-100:active {
  color: rgb(237, 233, 254);
}

.active\:bg-violet-100:active {
  --bs-btn-active-bg: rgb(237, 233, 254);
  --bs-alert-bg: rgb(237, 233, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-100:active {
  --bs-border-color: rgb(237, 233, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-100:disabled {
  color: rgb(237, 233, 254);
}

.disabled\:bg-violet-100:disabled {
  --bs-btn-active-bg: rgb(237, 233, 254);
  --bs-alert-bg: rgb(237, 233, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-100:disabled {
  --bs-border-color: rgb(237, 233, 254);
  border-color: var(--bs-border-color);
}

.text-violet-200 {
  --bs-alert-color: rgb(221, 214, 254);
  --bs-btn-color: rgb(221, 214, 254);
  color: var(--bs-btn-color);
}

.fill-violet-200 {
  color: rgb(221, 214, 254);
}

.stroke-violet-200 {
  color: rgb(221, 214, 254);
}

.accent-violet-200 {
  accent-color: rgb(221, 214, 254);
}

.bg-violet-200 {
  --bs-btn-active-bg: rgb(221, 214, 254);
  --bs-alert-bg: rgb(221, 214, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-200 {
  --bs-border-color: rgb(221, 214, 254);
  --bs-alert-border: rgb(221, 214, 254);
  border-color: var(--bs-border-color);
}

.decoration-violet-200 {
  text-decoration-color: rgb(221, 214, 254);
}

.hover\:text-violet-200:hover {
  color: rgb(221, 214, 254);
}

.hover\:bg-violet-200:hover {
  --bs-btn-active-bg: rgb(221, 214, 254);
  --bs-alert-bg: rgb(221, 214, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-200:hover {
  --bs-border-color: rgb(221, 214, 254);
  --bs-alert-border-color: rgb(221, 214, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-200 {
  text-decoration-color: rgb(221, 214, 254);
}

.focus\:text-violet-200:focus {
  color: rgb(221, 214, 254);
}

.focus\:bg-violet-200:focus {
  --bs-btn-active-bg: rgb(221, 214, 254);
  --bs-alert-bg: rgb(221, 214, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-200:focus {
  --bs-border-color: rgb(221, 214, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-200 {
  text-decoration-color: rgb(221, 214, 254);
}

.active\:text-violet-200:active {
  color: rgb(221, 214, 254);
}

.active\:bg-violet-200:active {
  --bs-btn-active-bg: rgb(221, 214, 254);
  --bs-alert-bg: rgb(221, 214, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-200:active {
  --bs-border-color: rgb(221, 214, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-200:disabled {
  color: rgb(221, 214, 254);
}

.disabled\:bg-violet-200:disabled {
  --bs-btn-active-bg: rgb(221, 214, 254);
  --bs-alert-bg: rgb(221, 214, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-200:disabled {
  --bs-border-color: rgb(221, 214, 254);
  border-color: var(--bs-border-color);
}

.text-violet-300 {
  --bs-alert-color: rgb(196, 181, 253);
  --bs-btn-color: rgb(196, 181, 253);
  color: var(--bs-btn-color);
}

.fill-violet-300 {
  color: rgb(196, 181, 253);
}

.stroke-violet-300 {
  color: rgb(196, 181, 253);
}

.accent-violet-300 {
  accent-color: rgb(196, 181, 253);
}

.bg-violet-300 {
  --bs-btn-active-bg: rgb(196, 181, 253);
  --bs-alert-bg: rgb(196, 181, 253);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-300 {
  --bs-border-color: rgb(196, 181, 253);
  --bs-alert-border: rgb(196, 181, 253);
  border-color: var(--bs-border-color);
}

.decoration-violet-300 {
  text-decoration-color: rgb(196, 181, 253);
}

.hover\:text-violet-300:hover {
  color: rgb(196, 181, 253);
}

.hover\:bg-violet-300:hover {
  --bs-btn-active-bg: rgb(196, 181, 253);
  --bs-alert-bg: rgb(196, 181, 253);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-300:hover {
  --bs-border-color: rgb(196, 181, 253);
  --bs-alert-border-color: rgb(196, 181, 253);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-300 {
  text-decoration-color: rgb(196, 181, 253);
}

.focus\:text-violet-300:focus {
  color: rgb(196, 181, 253);
}

.focus\:bg-violet-300:focus {
  --bs-btn-active-bg: rgb(196, 181, 253);
  --bs-alert-bg: rgb(196, 181, 253);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-300:focus {
  --bs-border-color: rgb(196, 181, 253);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-300 {
  text-decoration-color: rgb(196, 181, 253);
}

.active\:text-violet-300:active {
  color: rgb(196, 181, 253);
}

.active\:bg-violet-300:active {
  --bs-btn-active-bg: rgb(196, 181, 253);
  --bs-alert-bg: rgb(196, 181, 253);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-300:active {
  --bs-border-color: rgb(196, 181, 253);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-300:disabled {
  color: rgb(196, 181, 253);
}

.disabled\:bg-violet-300:disabled {
  --bs-btn-active-bg: rgb(196, 181, 253);
  --bs-alert-bg: rgb(196, 181, 253);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-300:disabled {
  --bs-border-color: rgb(196, 181, 253);
  border-color: var(--bs-border-color);
}

.text-violet-400 {
  --bs-alert-color: rgb(167, 139, 250);
  --bs-btn-color: rgb(167, 139, 250);
  color: var(--bs-btn-color);
}

.fill-violet-400 {
  color: rgb(167, 139, 250);
}

.stroke-violet-400 {
  color: rgb(167, 139, 250);
}

.accent-violet-400 {
  accent-color: rgb(167, 139, 250);
}

.bg-violet-400 {
  --bs-btn-active-bg: rgb(167, 139, 250);
  --bs-alert-bg: rgb(167, 139, 250);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-400 {
  --bs-border-color: rgb(167, 139, 250);
  --bs-alert-border: rgb(167, 139, 250);
  border-color: var(--bs-border-color);
}

.decoration-violet-400 {
  text-decoration-color: rgb(167, 139, 250);
}

.hover\:text-violet-400:hover {
  color: rgb(167, 139, 250);
}

.hover\:bg-violet-400:hover {
  --bs-btn-active-bg: rgb(167, 139, 250);
  --bs-alert-bg: rgb(167, 139, 250);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-400:hover {
  --bs-border-color: rgb(167, 139, 250);
  --bs-alert-border-color: rgb(167, 139, 250);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-400 {
  text-decoration-color: rgb(167, 139, 250);
}

.focus\:text-violet-400:focus {
  color: rgb(167, 139, 250);
}

.focus\:bg-violet-400:focus {
  --bs-btn-active-bg: rgb(167, 139, 250);
  --bs-alert-bg: rgb(167, 139, 250);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-400:focus {
  --bs-border-color: rgb(167, 139, 250);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-400 {
  text-decoration-color: rgb(167, 139, 250);
}

.active\:text-violet-400:active {
  color: rgb(167, 139, 250);
}

.active\:bg-violet-400:active {
  --bs-btn-active-bg: rgb(167, 139, 250);
  --bs-alert-bg: rgb(167, 139, 250);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-400:active {
  --bs-border-color: rgb(167, 139, 250);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-400:disabled {
  color: rgb(167, 139, 250);
}

.disabled\:bg-violet-400:disabled {
  --bs-btn-active-bg: rgb(167, 139, 250);
  --bs-alert-bg: rgb(167, 139, 250);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-400:disabled {
  --bs-border-color: rgb(167, 139, 250);
  border-color: var(--bs-border-color);
}

.text-violet-500 {
  --bs-alert-color: rgb(139, 92, 246);
  --bs-btn-color: rgb(139, 92, 246);
  color: var(--bs-btn-color);
}

.fill-violet-500 {
  color: rgb(139, 92, 246);
}

.stroke-violet-500 {
  color: rgb(139, 92, 246);
}

.accent-violet-500 {
  accent-color: rgb(139, 92, 246);
}

.bg-violet-500 {
  --bs-btn-active-bg: rgb(139, 92, 246);
  --bs-alert-bg: rgb(139, 92, 246);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-500 {
  --bs-border-color: rgb(139, 92, 246);
  --bs-alert-border: rgb(139, 92, 246);
  border-color: var(--bs-border-color);
}

.decoration-violet-500 {
  text-decoration-color: rgb(139, 92, 246);
}

.hover\:text-violet-500:hover {
  color: rgb(139, 92, 246);
}

.hover\:bg-violet-500:hover {
  --bs-btn-active-bg: rgb(139, 92, 246);
  --bs-alert-bg: rgb(139, 92, 246);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-500:hover {
  --bs-border-color: rgb(139, 92, 246);
  --bs-alert-border-color: rgb(139, 92, 246);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-500 {
  text-decoration-color: rgb(139, 92, 246);
}

.focus\:text-violet-500:focus {
  color: rgb(139, 92, 246);
}

.focus\:bg-violet-500:focus {
  --bs-btn-active-bg: rgb(139, 92, 246);
  --bs-alert-bg: rgb(139, 92, 246);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-500:focus {
  --bs-border-color: rgb(139, 92, 246);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-500 {
  text-decoration-color: rgb(139, 92, 246);
}

.active\:text-violet-500:active {
  color: rgb(139, 92, 246);
}

.active\:bg-violet-500:active {
  --bs-btn-active-bg: rgb(139, 92, 246);
  --bs-alert-bg: rgb(139, 92, 246);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-500:active {
  --bs-border-color: rgb(139, 92, 246);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-500:disabled {
  color: rgb(139, 92, 246);
}

.disabled\:bg-violet-500:disabled {
  --bs-btn-active-bg: rgb(139, 92, 246);
  --bs-alert-bg: rgb(139, 92, 246);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-500:disabled {
  --bs-border-color: rgb(139, 92, 246);
  border-color: var(--bs-border-color);
}

.text-violet-600 {
  --bs-alert-color: rgb(124, 58, 237);
  --bs-btn-color: rgb(124, 58, 237);
  color: var(--bs-btn-color);
}

.fill-violet-600 {
  color: rgb(124, 58, 237);
}

.stroke-violet-600 {
  color: rgb(124, 58, 237);
}

.accent-violet-600 {
  accent-color: rgb(124, 58, 237);
}

.bg-violet-600 {
  --bs-btn-active-bg: rgb(124, 58, 237);
  --bs-alert-bg: rgb(124, 58, 237);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-600 {
  --bs-border-color: rgb(124, 58, 237);
  --bs-alert-border: rgb(124, 58, 237);
  border-color: var(--bs-border-color);
}

.decoration-violet-600 {
  text-decoration-color: rgb(124, 58, 237);
}

.hover\:text-violet-600:hover {
  color: rgb(124, 58, 237);
}

.hover\:bg-violet-600:hover {
  --bs-btn-active-bg: rgb(124, 58, 237);
  --bs-alert-bg: rgb(124, 58, 237);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-600:hover {
  --bs-border-color: rgb(124, 58, 237);
  --bs-alert-border-color: rgb(124, 58, 237);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-600 {
  text-decoration-color: rgb(124, 58, 237);
}

.focus\:text-violet-600:focus {
  color: rgb(124, 58, 237);
}

.focus\:bg-violet-600:focus {
  --bs-btn-active-bg: rgb(124, 58, 237);
  --bs-alert-bg: rgb(124, 58, 237);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-600:focus {
  --bs-border-color: rgb(124, 58, 237);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-600 {
  text-decoration-color: rgb(124, 58, 237);
}

.active\:text-violet-600:active {
  color: rgb(124, 58, 237);
}

.active\:bg-violet-600:active {
  --bs-btn-active-bg: rgb(124, 58, 237);
  --bs-alert-bg: rgb(124, 58, 237);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-600:active {
  --bs-border-color: rgb(124, 58, 237);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-600:disabled {
  color: rgb(124, 58, 237);
}

.disabled\:bg-violet-600:disabled {
  --bs-btn-active-bg: rgb(124, 58, 237);
  --bs-alert-bg: rgb(124, 58, 237);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-600:disabled {
  --bs-border-color: rgb(124, 58, 237);
  border-color: var(--bs-border-color);
}

.text-violet-700 {
  --bs-alert-color: rgb(109, 40, 217);
  --bs-btn-color: rgb(109, 40, 217);
  color: var(--bs-btn-color);
}

.fill-violet-700 {
  color: rgb(109, 40, 217);
}

.stroke-violet-700 {
  color: rgb(109, 40, 217);
}

.accent-violet-700 {
  accent-color: rgb(109, 40, 217);
}

.bg-violet-700 {
  --bs-btn-active-bg: rgb(109, 40, 217);
  --bs-alert-bg: rgb(109, 40, 217);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-700 {
  --bs-border-color: rgb(109, 40, 217);
  --bs-alert-border: rgb(109, 40, 217);
  border-color: var(--bs-border-color);
}

.decoration-violet-700 {
  text-decoration-color: rgb(109, 40, 217);
}

.hover\:text-violet-700:hover {
  color: rgb(109, 40, 217);
}

.hover\:bg-violet-700:hover {
  --bs-btn-active-bg: rgb(109, 40, 217);
  --bs-alert-bg: rgb(109, 40, 217);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-700:hover {
  --bs-border-color: rgb(109, 40, 217);
  --bs-alert-border-color: rgb(109, 40, 217);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-700 {
  text-decoration-color: rgb(109, 40, 217);
}

.focus\:text-violet-700:focus {
  color: rgb(109, 40, 217);
}

.focus\:bg-violet-700:focus {
  --bs-btn-active-bg: rgb(109, 40, 217);
  --bs-alert-bg: rgb(109, 40, 217);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-700:focus {
  --bs-border-color: rgb(109, 40, 217);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-700 {
  text-decoration-color: rgb(109, 40, 217);
}

.active\:text-violet-700:active {
  color: rgb(109, 40, 217);
}

.active\:bg-violet-700:active {
  --bs-btn-active-bg: rgb(109, 40, 217);
  --bs-alert-bg: rgb(109, 40, 217);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-700:active {
  --bs-border-color: rgb(109, 40, 217);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-700:disabled {
  color: rgb(109, 40, 217);
}

.disabled\:bg-violet-700:disabled {
  --bs-btn-active-bg: rgb(109, 40, 217);
  --bs-alert-bg: rgb(109, 40, 217);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-700:disabled {
  --bs-border-color: rgb(109, 40, 217);
  border-color: var(--bs-border-color);
}

.text-violet-800 {
  --bs-alert-color: rgb(91, 33, 182);
  --bs-btn-color: rgb(91, 33, 182);
  color: var(--bs-btn-color);
}

.fill-violet-800 {
  color: rgb(91, 33, 182);
}

.stroke-violet-800 {
  color: rgb(91, 33, 182);
}

.accent-violet-800 {
  accent-color: rgb(91, 33, 182);
}

.bg-violet-800 {
  --bs-btn-active-bg: rgb(91, 33, 182);
  --bs-alert-bg: rgb(91, 33, 182);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-800 {
  --bs-border-color: rgb(91, 33, 182);
  --bs-alert-border: rgb(91, 33, 182);
  border-color: var(--bs-border-color);
}

.decoration-violet-800 {
  text-decoration-color: rgb(91, 33, 182);
}

.hover\:text-violet-800:hover {
  color: rgb(91, 33, 182);
}

.hover\:bg-violet-800:hover {
  --bs-btn-active-bg: rgb(91, 33, 182);
  --bs-alert-bg: rgb(91, 33, 182);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-800:hover {
  --bs-border-color: rgb(91, 33, 182);
  --bs-alert-border-color: rgb(91, 33, 182);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-800 {
  text-decoration-color: rgb(91, 33, 182);
}

.focus\:text-violet-800:focus {
  color: rgb(91, 33, 182);
}

.focus\:bg-violet-800:focus {
  --bs-btn-active-bg: rgb(91, 33, 182);
  --bs-alert-bg: rgb(91, 33, 182);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-800:focus {
  --bs-border-color: rgb(91, 33, 182);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-800 {
  text-decoration-color: rgb(91, 33, 182);
}

.active\:text-violet-800:active {
  color: rgb(91, 33, 182);
}

.active\:bg-violet-800:active {
  --bs-btn-active-bg: rgb(91, 33, 182);
  --bs-alert-bg: rgb(91, 33, 182);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-800:active {
  --bs-border-color: rgb(91, 33, 182);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-800:disabled {
  color: rgb(91, 33, 182);
}

.disabled\:bg-violet-800:disabled {
  --bs-btn-active-bg: rgb(91, 33, 182);
  --bs-alert-bg: rgb(91, 33, 182);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-800:disabled {
  --bs-border-color: rgb(91, 33, 182);
  border-color: var(--bs-border-color);
}

.text-violet-900 {
  --bs-alert-color: rgb(76, 29, 149);
  --bs-btn-color: rgb(76, 29, 149);
  color: var(--bs-btn-color);
}

.fill-violet-900 {
  color: rgb(76, 29, 149);
}

.stroke-violet-900 {
  color: rgb(76, 29, 149);
}

.accent-violet-900 {
  accent-color: rgb(76, 29, 149);
}

.bg-violet-900 {
  --bs-btn-active-bg: rgb(76, 29, 149);
  --bs-alert-bg: rgb(76, 29, 149);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-900 {
  --bs-border-color: rgb(76, 29, 149);
  --bs-alert-border: rgb(76, 29, 149);
  border-color: var(--bs-border-color);
}

.decoration-violet-900 {
  text-decoration-color: rgb(76, 29, 149);
}

.hover\:text-violet-900:hover {
  color: rgb(76, 29, 149);
}

.hover\:bg-violet-900:hover {
  --bs-btn-active-bg: rgb(76, 29, 149);
  --bs-alert-bg: rgb(76, 29, 149);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-900:hover {
  --bs-border-color: rgb(76, 29, 149);
  --bs-alert-border-color: rgb(76, 29, 149);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-900 {
  text-decoration-color: rgb(76, 29, 149);
}

.focus\:text-violet-900:focus {
  color: rgb(76, 29, 149);
}

.focus\:bg-violet-900:focus {
  --bs-btn-active-bg: rgb(76, 29, 149);
  --bs-alert-bg: rgb(76, 29, 149);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-900:focus {
  --bs-border-color: rgb(76, 29, 149);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-900 {
  text-decoration-color: rgb(76, 29, 149);
}

.active\:text-violet-900:active {
  color: rgb(76, 29, 149);
}

.active\:bg-violet-900:active {
  --bs-btn-active-bg: rgb(76, 29, 149);
  --bs-alert-bg: rgb(76, 29, 149);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-900:active {
  --bs-border-color: rgb(76, 29, 149);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-900:disabled {
  color: rgb(76, 29, 149);
}

.disabled\:bg-violet-900:disabled {
  --bs-btn-active-bg: rgb(76, 29, 149);
  --bs-alert-bg: rgb(76, 29, 149);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-900:disabled {
  --bs-border-color: rgb(76, 29, 149);
  border-color: var(--bs-border-color);
}

.text-violet-950 {
  --bs-alert-color: rgb(46, 16, 101);
  --bs-btn-color: rgb(46, 16, 101);
  color: var(--bs-btn-color);
}

.fill-violet-950 {
  color: rgb(46, 16, 101);
}

.stroke-violet-950 {
  color: rgb(46, 16, 101);
}

.accent-violet-950 {
  accent-color: rgb(46, 16, 101);
}

.bg-violet-950 {
  --bs-btn-active-bg: rgb(46, 16, 101);
  --bs-alert-bg: rgb(46, 16, 101);
  background-color: var(--bs-btn-active-bg);
}

.border-violet-950 {
  --bs-border-color: rgb(46, 16, 101);
  --bs-alert-border: rgb(46, 16, 101);
  border-color: var(--bs-border-color);
}

.decoration-violet-950 {
  text-decoration-color: rgb(46, 16, 101);
}

.hover\:text-violet-950:hover {
  color: rgb(46, 16, 101);
}

.hover\:bg-violet-950:hover {
  --bs-btn-active-bg: rgb(46, 16, 101);
  --bs-alert-bg: rgb(46, 16, 101);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-violet-950:hover {
  --bs-border-color: rgb(46, 16, 101);
  --bs-alert-border-color: rgb(46, 16, 101);
  border-color: var(--bs-border-color);
}

.hover\:decoration-violet-950 {
  text-decoration-color: rgb(46, 16, 101);
}

.focus\:text-violet-950:focus {
  color: rgb(46, 16, 101);
}

.focus\:bg-violet-950:focus {
  --bs-btn-active-bg: rgb(46, 16, 101);
  --bs-alert-bg: rgb(46, 16, 101);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-violet-950:focus {
  --bs-border-color: rgb(46, 16, 101);
  border-color: var(--bs-border-color);
}

.focus\:decoration-violet-950 {
  text-decoration-color: rgb(46, 16, 101);
}

.active\:text-violet-950:active {
  color: rgb(46, 16, 101);
}

.active\:bg-violet-950:active {
  --bs-btn-active-bg: rgb(46, 16, 101);
  --bs-alert-bg: rgb(46, 16, 101);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-violet-950:active {
  --bs-border-color: rgb(46, 16, 101);
  border-color: var(--bs-border-color);
}

.disabled\:text-violet-950:disabled {
  color: rgb(46, 16, 101);
}

.disabled\:bg-violet-950:disabled {
  --bs-btn-active-bg: rgb(46, 16, 101);
  --bs-alert-bg: rgb(46, 16, 101);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-violet-950:disabled {
  --bs-border-color: rgb(46, 16, 101);
  border-color: var(--bs-border-color);
}

.text-purple-50 {
  --bs-alert-color: rgb(250, 245, 255);
  --bs-btn-color: rgb(250, 245, 255);
  color: var(--bs-btn-color);
}

.fill-purple-50 {
  color: rgb(250, 245, 255);
}

.stroke-purple-50 {
  color: rgb(250, 245, 255);
}

.accent-purple-50 {
  accent-color: rgb(250, 245, 255);
}

.bg-purple-50 {
  --bs-btn-active-bg: rgb(250, 245, 255);
  --bs-alert-bg: rgb(250, 245, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-50 {
  --bs-border-color: rgb(250, 245, 255);
  --bs-alert-border: rgb(250, 245, 255);
  border-color: var(--bs-border-color);
}

.decoration-purple-50 {
  text-decoration-color: rgb(250, 245, 255);
}

.hover\:text-purple-50:hover {
  color: rgb(250, 245, 255);
}

.hover\:bg-purple-50:hover {
  --bs-btn-active-bg: rgb(250, 245, 255);
  --bs-alert-bg: rgb(250, 245, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-50:hover {
  --bs-border-color: rgb(250, 245, 255);
  --bs-alert-border-color: rgb(250, 245, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-50 {
  text-decoration-color: rgb(250, 245, 255);
}

.focus\:text-purple-50:focus {
  color: rgb(250, 245, 255);
}

.focus\:bg-purple-50:focus {
  --bs-btn-active-bg: rgb(250, 245, 255);
  --bs-alert-bg: rgb(250, 245, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-50:focus {
  --bs-border-color: rgb(250, 245, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-50 {
  text-decoration-color: rgb(250, 245, 255);
}

.active\:text-purple-50:active {
  color: rgb(250, 245, 255);
}

.active\:bg-purple-50:active {
  --bs-btn-active-bg: rgb(250, 245, 255);
  --bs-alert-bg: rgb(250, 245, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-50:active {
  --bs-border-color: rgb(250, 245, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-50:disabled {
  color: rgb(250, 245, 255);
}

.disabled\:bg-purple-50:disabled {
  --bs-btn-active-bg: rgb(250, 245, 255);
  --bs-alert-bg: rgb(250, 245, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-50:disabled {
  --bs-border-color: rgb(250, 245, 255);
  border-color: var(--bs-border-color);
}

.text-purple-100 {
  --bs-alert-color: rgb(243, 232, 255);
  --bs-btn-color: rgb(243, 232, 255);
  color: var(--bs-btn-color);
}

.fill-purple-100 {
  color: rgb(243, 232, 255);
}

.stroke-purple-100 {
  color: rgb(243, 232, 255);
}

.accent-purple-100 {
  accent-color: rgb(243, 232, 255);
}

.bg-purple-100 {
  --bs-btn-active-bg: rgb(243, 232, 255);
  --bs-alert-bg: rgb(243, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-100 {
  --bs-border-color: rgb(243, 232, 255);
  --bs-alert-border: rgb(243, 232, 255);
  border-color: var(--bs-border-color);
}

.decoration-purple-100 {
  text-decoration-color: rgb(243, 232, 255);
}

.hover\:text-purple-100:hover {
  color: rgb(243, 232, 255);
}

.hover\:bg-purple-100:hover {
  --bs-btn-active-bg: rgb(243, 232, 255);
  --bs-alert-bg: rgb(243, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-100:hover {
  --bs-border-color: rgb(243, 232, 255);
  --bs-alert-border-color: rgb(243, 232, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-100 {
  text-decoration-color: rgb(243, 232, 255);
}

.focus\:text-purple-100:focus {
  color: rgb(243, 232, 255);
}

.focus\:bg-purple-100:focus {
  --bs-btn-active-bg: rgb(243, 232, 255);
  --bs-alert-bg: rgb(243, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-100:focus {
  --bs-border-color: rgb(243, 232, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-100 {
  text-decoration-color: rgb(243, 232, 255);
}

.active\:text-purple-100:active {
  color: rgb(243, 232, 255);
}

.active\:bg-purple-100:active {
  --bs-btn-active-bg: rgb(243, 232, 255);
  --bs-alert-bg: rgb(243, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-100:active {
  --bs-border-color: rgb(243, 232, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-100:disabled {
  color: rgb(243, 232, 255);
}

.disabled\:bg-purple-100:disabled {
  --bs-btn-active-bg: rgb(243, 232, 255);
  --bs-alert-bg: rgb(243, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-100:disabled {
  --bs-border-color: rgb(243, 232, 255);
  border-color: var(--bs-border-color);
}

.text-purple-200 {
  --bs-alert-color: rgb(233, 213, 255);
  --bs-btn-color: rgb(233, 213, 255);
  color: var(--bs-btn-color);
}

.fill-purple-200 {
  color: rgb(233, 213, 255);
}

.stroke-purple-200 {
  color: rgb(233, 213, 255);
}

.accent-purple-200 {
  accent-color: rgb(233, 213, 255);
}

.bg-purple-200 {
  --bs-btn-active-bg: rgb(233, 213, 255);
  --bs-alert-bg: rgb(233, 213, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-200 {
  --bs-border-color: rgb(233, 213, 255);
  --bs-alert-border: rgb(233, 213, 255);
  border-color: var(--bs-border-color);
}

.decoration-purple-200 {
  text-decoration-color: rgb(233, 213, 255);
}

.hover\:text-purple-200:hover {
  color: rgb(233, 213, 255);
}

.hover\:bg-purple-200:hover {
  --bs-btn-active-bg: rgb(233, 213, 255);
  --bs-alert-bg: rgb(233, 213, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-200:hover {
  --bs-border-color: rgb(233, 213, 255);
  --bs-alert-border-color: rgb(233, 213, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-200 {
  text-decoration-color: rgb(233, 213, 255);
}

.focus\:text-purple-200:focus {
  color: rgb(233, 213, 255);
}

.focus\:bg-purple-200:focus {
  --bs-btn-active-bg: rgb(233, 213, 255);
  --bs-alert-bg: rgb(233, 213, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-200:focus {
  --bs-border-color: rgb(233, 213, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-200 {
  text-decoration-color: rgb(233, 213, 255);
}

.active\:text-purple-200:active {
  color: rgb(233, 213, 255);
}

.active\:bg-purple-200:active {
  --bs-btn-active-bg: rgb(233, 213, 255);
  --bs-alert-bg: rgb(233, 213, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-200:active {
  --bs-border-color: rgb(233, 213, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-200:disabled {
  color: rgb(233, 213, 255);
}

.disabled\:bg-purple-200:disabled {
  --bs-btn-active-bg: rgb(233, 213, 255);
  --bs-alert-bg: rgb(233, 213, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-200:disabled {
  --bs-border-color: rgb(233, 213, 255);
  border-color: var(--bs-border-color);
}

.text-purple-300 {
  --bs-alert-color: rgb(216, 180, 254);
  --bs-btn-color: rgb(216, 180, 254);
  color: var(--bs-btn-color);
}

.fill-purple-300 {
  color: rgb(216, 180, 254);
}

.stroke-purple-300 {
  color: rgb(216, 180, 254);
}

.accent-purple-300 {
  accent-color: rgb(216, 180, 254);
}

.bg-purple-300 {
  --bs-btn-active-bg: rgb(216, 180, 254);
  --bs-alert-bg: rgb(216, 180, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-300 {
  --bs-border-color: rgb(216, 180, 254);
  --bs-alert-border: rgb(216, 180, 254);
  border-color: var(--bs-border-color);
}

.decoration-purple-300 {
  text-decoration-color: rgb(216, 180, 254);
}

.hover\:text-purple-300:hover {
  color: rgb(216, 180, 254);
}

.hover\:bg-purple-300:hover {
  --bs-btn-active-bg: rgb(216, 180, 254);
  --bs-alert-bg: rgb(216, 180, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-300:hover {
  --bs-border-color: rgb(216, 180, 254);
  --bs-alert-border-color: rgb(216, 180, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-300 {
  text-decoration-color: rgb(216, 180, 254);
}

.focus\:text-purple-300:focus {
  color: rgb(216, 180, 254);
}

.focus\:bg-purple-300:focus {
  --bs-btn-active-bg: rgb(216, 180, 254);
  --bs-alert-bg: rgb(216, 180, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-300:focus {
  --bs-border-color: rgb(216, 180, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-300 {
  text-decoration-color: rgb(216, 180, 254);
}

.active\:text-purple-300:active {
  color: rgb(216, 180, 254);
}

.active\:bg-purple-300:active {
  --bs-btn-active-bg: rgb(216, 180, 254);
  --bs-alert-bg: rgb(216, 180, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-300:active {
  --bs-border-color: rgb(216, 180, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-300:disabled {
  color: rgb(216, 180, 254);
}

.disabled\:bg-purple-300:disabled {
  --bs-btn-active-bg: rgb(216, 180, 254);
  --bs-alert-bg: rgb(216, 180, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-300:disabled {
  --bs-border-color: rgb(216, 180, 254);
  border-color: var(--bs-border-color);
}

.text-purple-400 {
  --bs-alert-color: rgb(192, 132, 252);
  --bs-btn-color: rgb(192, 132, 252);
  color: var(--bs-btn-color);
}

.fill-purple-400 {
  color: rgb(192, 132, 252);
}

.stroke-purple-400 {
  color: rgb(192, 132, 252);
}

.accent-purple-400 {
  accent-color: rgb(192, 132, 252);
}

.bg-purple-400 {
  --bs-btn-active-bg: rgb(192, 132, 252);
  --bs-alert-bg: rgb(192, 132, 252);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-400 {
  --bs-border-color: rgb(192, 132, 252);
  --bs-alert-border: rgb(192, 132, 252);
  border-color: var(--bs-border-color);
}

.decoration-purple-400 {
  text-decoration-color: rgb(192, 132, 252);
}

.hover\:text-purple-400:hover {
  color: rgb(192, 132, 252);
}

.hover\:bg-purple-400:hover {
  --bs-btn-active-bg: rgb(192, 132, 252);
  --bs-alert-bg: rgb(192, 132, 252);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-400:hover {
  --bs-border-color: rgb(192, 132, 252);
  --bs-alert-border-color: rgb(192, 132, 252);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-400 {
  text-decoration-color: rgb(192, 132, 252);
}

.focus\:text-purple-400:focus {
  color: rgb(192, 132, 252);
}

.focus\:bg-purple-400:focus {
  --bs-btn-active-bg: rgb(192, 132, 252);
  --bs-alert-bg: rgb(192, 132, 252);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-400:focus {
  --bs-border-color: rgb(192, 132, 252);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-400 {
  text-decoration-color: rgb(192, 132, 252);
}

.active\:text-purple-400:active {
  color: rgb(192, 132, 252);
}

.active\:bg-purple-400:active {
  --bs-btn-active-bg: rgb(192, 132, 252);
  --bs-alert-bg: rgb(192, 132, 252);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-400:active {
  --bs-border-color: rgb(192, 132, 252);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-400:disabled {
  color: rgb(192, 132, 252);
}

.disabled\:bg-purple-400:disabled {
  --bs-btn-active-bg: rgb(192, 132, 252);
  --bs-alert-bg: rgb(192, 132, 252);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-400:disabled {
  --bs-border-color: rgb(192, 132, 252);
  border-color: var(--bs-border-color);
}

.text-purple-500 {
  --bs-alert-color: rgb(168, 85, 247);
  --bs-btn-color: rgb(168, 85, 247);
  color: var(--bs-btn-color);
}

.fill-purple-500 {
  color: rgb(168, 85, 247);
}

.stroke-purple-500 {
  color: rgb(168, 85, 247);
}

.accent-purple-500 {
  accent-color: rgb(168, 85, 247);
}

.bg-purple-500 {
  --bs-btn-active-bg: rgb(168, 85, 247);
  --bs-alert-bg: rgb(168, 85, 247);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-500 {
  --bs-border-color: rgb(168, 85, 247);
  --bs-alert-border: rgb(168, 85, 247);
  border-color: var(--bs-border-color);
}

.decoration-purple-500 {
  text-decoration-color: rgb(168, 85, 247);
}

.hover\:text-purple-500:hover {
  color: rgb(168, 85, 247);
}

.hover\:bg-purple-500:hover {
  --bs-btn-active-bg: rgb(168, 85, 247);
  --bs-alert-bg: rgb(168, 85, 247);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-500:hover {
  --bs-border-color: rgb(168, 85, 247);
  --bs-alert-border-color: rgb(168, 85, 247);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-500 {
  text-decoration-color: rgb(168, 85, 247);
}

.focus\:text-purple-500:focus {
  color: rgb(168, 85, 247);
}

.focus\:bg-purple-500:focus {
  --bs-btn-active-bg: rgb(168, 85, 247);
  --bs-alert-bg: rgb(168, 85, 247);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-500:focus {
  --bs-border-color: rgb(168, 85, 247);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-500 {
  text-decoration-color: rgb(168, 85, 247);
}

.active\:text-purple-500:active {
  color: rgb(168, 85, 247);
}

.active\:bg-purple-500:active {
  --bs-btn-active-bg: rgb(168, 85, 247);
  --bs-alert-bg: rgb(168, 85, 247);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-500:active {
  --bs-border-color: rgb(168, 85, 247);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-500:disabled {
  color: rgb(168, 85, 247);
}

.disabled\:bg-purple-500:disabled {
  --bs-btn-active-bg: rgb(168, 85, 247);
  --bs-alert-bg: rgb(168, 85, 247);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-500:disabled {
  --bs-border-color: rgb(168, 85, 247);
  border-color: var(--bs-border-color);
}

.text-purple-600 {
  --bs-alert-color: rgb(147, 51, 234);
  --bs-btn-color: rgb(147, 51, 234);
  color: var(--bs-btn-color);
}

.fill-purple-600 {
  color: rgb(147, 51, 234);
}

.stroke-purple-600 {
  color: rgb(147, 51, 234);
}

.accent-purple-600 {
  accent-color: rgb(147, 51, 234);
}

.bg-purple-600 {
  --bs-btn-active-bg: rgb(147, 51, 234);
  --bs-alert-bg: rgb(147, 51, 234);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-600 {
  --bs-border-color: rgb(147, 51, 234);
  --bs-alert-border: rgb(147, 51, 234);
  border-color: var(--bs-border-color);
}

.decoration-purple-600 {
  text-decoration-color: rgb(147, 51, 234);
}

.hover\:text-purple-600:hover {
  color: rgb(147, 51, 234);
}

.hover\:bg-purple-600:hover {
  --bs-btn-active-bg: rgb(147, 51, 234);
  --bs-alert-bg: rgb(147, 51, 234);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-600:hover {
  --bs-border-color: rgb(147, 51, 234);
  --bs-alert-border-color: rgb(147, 51, 234);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-600 {
  text-decoration-color: rgb(147, 51, 234);
}

.focus\:text-purple-600:focus {
  color: rgb(147, 51, 234);
}

.focus\:bg-purple-600:focus {
  --bs-btn-active-bg: rgb(147, 51, 234);
  --bs-alert-bg: rgb(147, 51, 234);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-600:focus {
  --bs-border-color: rgb(147, 51, 234);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-600 {
  text-decoration-color: rgb(147, 51, 234);
}

.active\:text-purple-600:active {
  color: rgb(147, 51, 234);
}

.active\:bg-purple-600:active {
  --bs-btn-active-bg: rgb(147, 51, 234);
  --bs-alert-bg: rgb(147, 51, 234);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-600:active {
  --bs-border-color: rgb(147, 51, 234);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-600:disabled {
  color: rgb(147, 51, 234);
}

.disabled\:bg-purple-600:disabled {
  --bs-btn-active-bg: rgb(147, 51, 234);
  --bs-alert-bg: rgb(147, 51, 234);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-600:disabled {
  --bs-border-color: rgb(147, 51, 234);
  border-color: var(--bs-border-color);
}

.text-purple-700 {
  --bs-alert-color: rgb(126, 34, 206);
  --bs-btn-color: rgb(126, 34, 206);
  color: var(--bs-btn-color);
}

.fill-purple-700 {
  color: rgb(126, 34, 206);
}

.stroke-purple-700 {
  color: rgb(126, 34, 206);
}

.accent-purple-700 {
  accent-color: rgb(126, 34, 206);
}

.bg-purple-700 {
  --bs-btn-active-bg: rgb(126, 34, 206);
  --bs-alert-bg: rgb(126, 34, 206);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-700 {
  --bs-border-color: rgb(126, 34, 206);
  --bs-alert-border: rgb(126, 34, 206);
  border-color: var(--bs-border-color);
}

.decoration-purple-700 {
  text-decoration-color: rgb(126, 34, 206);
}

.hover\:text-purple-700:hover {
  color: rgb(126, 34, 206);
}

.hover\:bg-purple-700:hover {
  --bs-btn-active-bg: rgb(126, 34, 206);
  --bs-alert-bg: rgb(126, 34, 206);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-700:hover {
  --bs-border-color: rgb(126, 34, 206);
  --bs-alert-border-color: rgb(126, 34, 206);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-700 {
  text-decoration-color: rgb(126, 34, 206);
}

.focus\:text-purple-700:focus {
  color: rgb(126, 34, 206);
}

.focus\:bg-purple-700:focus {
  --bs-btn-active-bg: rgb(126, 34, 206);
  --bs-alert-bg: rgb(126, 34, 206);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-700:focus {
  --bs-border-color: rgb(126, 34, 206);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-700 {
  text-decoration-color: rgb(126, 34, 206);
}

.active\:text-purple-700:active {
  color: rgb(126, 34, 206);
}

.active\:bg-purple-700:active {
  --bs-btn-active-bg: rgb(126, 34, 206);
  --bs-alert-bg: rgb(126, 34, 206);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-700:active {
  --bs-border-color: rgb(126, 34, 206);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-700:disabled {
  color: rgb(126, 34, 206);
}

.disabled\:bg-purple-700:disabled {
  --bs-btn-active-bg: rgb(126, 34, 206);
  --bs-alert-bg: rgb(126, 34, 206);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-700:disabled {
  --bs-border-color: rgb(126, 34, 206);
  border-color: var(--bs-border-color);
}

.text-purple-800 {
  --bs-alert-color: rgb(107, 33, 168);
  --bs-btn-color: rgb(107, 33, 168);
  color: var(--bs-btn-color);
}

.fill-purple-800 {
  color: rgb(107, 33, 168);
}

.stroke-purple-800 {
  color: rgb(107, 33, 168);
}

.accent-purple-800 {
  accent-color: rgb(107, 33, 168);
}

.bg-purple-800 {
  --bs-btn-active-bg: rgb(107, 33, 168);
  --bs-alert-bg: rgb(107, 33, 168);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-800 {
  --bs-border-color: rgb(107, 33, 168);
  --bs-alert-border: rgb(107, 33, 168);
  border-color: var(--bs-border-color);
}

.decoration-purple-800 {
  text-decoration-color: rgb(107, 33, 168);
}

.hover\:text-purple-800:hover {
  color: rgb(107, 33, 168);
}

.hover\:bg-purple-800:hover {
  --bs-btn-active-bg: rgb(107, 33, 168);
  --bs-alert-bg: rgb(107, 33, 168);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-800:hover {
  --bs-border-color: rgb(107, 33, 168);
  --bs-alert-border-color: rgb(107, 33, 168);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-800 {
  text-decoration-color: rgb(107, 33, 168);
}

.focus\:text-purple-800:focus {
  color: rgb(107, 33, 168);
}

.focus\:bg-purple-800:focus {
  --bs-btn-active-bg: rgb(107, 33, 168);
  --bs-alert-bg: rgb(107, 33, 168);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-800:focus {
  --bs-border-color: rgb(107, 33, 168);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-800 {
  text-decoration-color: rgb(107, 33, 168);
}

.active\:text-purple-800:active {
  color: rgb(107, 33, 168);
}

.active\:bg-purple-800:active {
  --bs-btn-active-bg: rgb(107, 33, 168);
  --bs-alert-bg: rgb(107, 33, 168);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-800:active {
  --bs-border-color: rgb(107, 33, 168);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-800:disabled {
  color: rgb(107, 33, 168);
}

.disabled\:bg-purple-800:disabled {
  --bs-btn-active-bg: rgb(107, 33, 168);
  --bs-alert-bg: rgb(107, 33, 168);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-800:disabled {
  --bs-border-color: rgb(107, 33, 168);
  border-color: var(--bs-border-color);
}

.text-purple-900 {
  --bs-alert-color: rgb(88, 28, 135);
  --bs-btn-color: rgb(88, 28, 135);
  color: var(--bs-btn-color);
}

.fill-purple-900 {
  color: rgb(88, 28, 135);
}

.stroke-purple-900 {
  color: rgb(88, 28, 135);
}

.accent-purple-900 {
  accent-color: rgb(88, 28, 135);
}

.bg-purple-900 {
  --bs-btn-active-bg: rgb(88, 28, 135);
  --bs-alert-bg: rgb(88, 28, 135);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-900 {
  --bs-border-color: rgb(88, 28, 135);
  --bs-alert-border: rgb(88, 28, 135);
  border-color: var(--bs-border-color);
}

.decoration-purple-900 {
  text-decoration-color: rgb(88, 28, 135);
}

.hover\:text-purple-900:hover {
  color: rgb(88, 28, 135);
}

.hover\:bg-purple-900:hover {
  --bs-btn-active-bg: rgb(88, 28, 135);
  --bs-alert-bg: rgb(88, 28, 135);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-900:hover {
  --bs-border-color: rgb(88, 28, 135);
  --bs-alert-border-color: rgb(88, 28, 135);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-900 {
  text-decoration-color: rgb(88, 28, 135);
}

.focus\:text-purple-900:focus {
  color: rgb(88, 28, 135);
}

.focus\:bg-purple-900:focus {
  --bs-btn-active-bg: rgb(88, 28, 135);
  --bs-alert-bg: rgb(88, 28, 135);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-900:focus {
  --bs-border-color: rgb(88, 28, 135);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-900 {
  text-decoration-color: rgb(88, 28, 135);
}

.active\:text-purple-900:active {
  color: rgb(88, 28, 135);
}

.active\:bg-purple-900:active {
  --bs-btn-active-bg: rgb(88, 28, 135);
  --bs-alert-bg: rgb(88, 28, 135);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-900:active {
  --bs-border-color: rgb(88, 28, 135);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-900:disabled {
  color: rgb(88, 28, 135);
}

.disabled\:bg-purple-900:disabled {
  --bs-btn-active-bg: rgb(88, 28, 135);
  --bs-alert-bg: rgb(88, 28, 135);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-900:disabled {
  --bs-border-color: rgb(88, 28, 135);
  border-color: var(--bs-border-color);
}

.text-purple-950 {
  --bs-alert-color: rgb(59, 7, 100);
  --bs-btn-color: rgb(59, 7, 100);
  color: var(--bs-btn-color);
}

.fill-purple-950 {
  color: rgb(59, 7, 100);
}

.stroke-purple-950 {
  color: rgb(59, 7, 100);
}

.accent-purple-950 {
  accent-color: rgb(59, 7, 100);
}

.bg-purple-950 {
  --bs-btn-active-bg: rgb(59, 7, 100);
  --bs-alert-bg: rgb(59, 7, 100);
  background-color: var(--bs-btn-active-bg);
}

.border-purple-950 {
  --bs-border-color: rgb(59, 7, 100);
  --bs-alert-border: rgb(59, 7, 100);
  border-color: var(--bs-border-color);
}

.decoration-purple-950 {
  text-decoration-color: rgb(59, 7, 100);
}

.hover\:text-purple-950:hover {
  color: rgb(59, 7, 100);
}

.hover\:bg-purple-950:hover {
  --bs-btn-active-bg: rgb(59, 7, 100);
  --bs-alert-bg: rgb(59, 7, 100);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-purple-950:hover {
  --bs-border-color: rgb(59, 7, 100);
  --bs-alert-border-color: rgb(59, 7, 100);
  border-color: var(--bs-border-color);
}

.hover\:decoration-purple-950 {
  text-decoration-color: rgb(59, 7, 100);
}

.focus\:text-purple-950:focus {
  color: rgb(59, 7, 100);
}

.focus\:bg-purple-950:focus {
  --bs-btn-active-bg: rgb(59, 7, 100);
  --bs-alert-bg: rgb(59, 7, 100);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-purple-950:focus {
  --bs-border-color: rgb(59, 7, 100);
  border-color: var(--bs-border-color);
}

.focus\:decoration-purple-950 {
  text-decoration-color: rgb(59, 7, 100);
}

.active\:text-purple-950:active {
  color: rgb(59, 7, 100);
}

.active\:bg-purple-950:active {
  --bs-btn-active-bg: rgb(59, 7, 100);
  --bs-alert-bg: rgb(59, 7, 100);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-purple-950:active {
  --bs-border-color: rgb(59, 7, 100);
  border-color: var(--bs-border-color);
}

.disabled\:text-purple-950:disabled {
  color: rgb(59, 7, 100);
}

.disabled\:bg-purple-950:disabled {
  --bs-btn-active-bg: rgb(59, 7, 100);
  --bs-alert-bg: rgb(59, 7, 100);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-purple-950:disabled {
  --bs-border-color: rgb(59, 7, 100);
  border-color: var(--bs-border-color);
}

.text-fuchsia-50 {
  --bs-alert-color: rgb(253, 244, 255);
  --bs-btn-color: rgb(253, 244, 255);
  color: var(--bs-btn-color);
}

.fill-fuchsia-50 {
  color: rgb(253, 244, 255);
}

.stroke-fuchsia-50 {
  color: rgb(253, 244, 255);
}

.accent-fuchsia-50 {
  accent-color: rgb(253, 244, 255);
}

.bg-fuchsia-50 {
  --bs-btn-active-bg: rgb(253, 244, 255);
  --bs-alert-bg: rgb(253, 244, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-50 {
  --bs-border-color: rgb(253, 244, 255);
  --bs-alert-border: rgb(253, 244, 255);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-50 {
  text-decoration-color: rgb(253, 244, 255);
}

.hover\:text-fuchsia-50:hover {
  color: rgb(253, 244, 255);
}

.hover\:bg-fuchsia-50:hover {
  --bs-btn-active-bg: rgb(253, 244, 255);
  --bs-alert-bg: rgb(253, 244, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-50:hover {
  --bs-border-color: rgb(253, 244, 255);
  --bs-alert-border-color: rgb(253, 244, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-50 {
  text-decoration-color: rgb(253, 244, 255);
}

.focus\:text-fuchsia-50:focus {
  color: rgb(253, 244, 255);
}

.focus\:bg-fuchsia-50:focus {
  --bs-btn-active-bg: rgb(253, 244, 255);
  --bs-alert-bg: rgb(253, 244, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-50:focus {
  --bs-border-color: rgb(253, 244, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-50 {
  text-decoration-color: rgb(253, 244, 255);
}

.active\:text-fuchsia-50:active {
  color: rgb(253, 244, 255);
}

.active\:bg-fuchsia-50:active {
  --bs-btn-active-bg: rgb(253, 244, 255);
  --bs-alert-bg: rgb(253, 244, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-50:active {
  --bs-border-color: rgb(253, 244, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-50:disabled {
  color: rgb(253, 244, 255);
}

.disabled\:bg-fuchsia-50:disabled {
  --bs-btn-active-bg: rgb(253, 244, 255);
  --bs-alert-bg: rgb(253, 244, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-50:disabled {
  --bs-border-color: rgb(253, 244, 255);
  border-color: var(--bs-border-color);
}

.text-fuchsia-100 {
  --bs-alert-color: rgb(250, 232, 255);
  --bs-btn-color: rgb(250, 232, 255);
  color: var(--bs-btn-color);
}

.fill-fuchsia-100 {
  color: rgb(250, 232, 255);
}

.stroke-fuchsia-100 {
  color: rgb(250, 232, 255);
}

.accent-fuchsia-100 {
  accent-color: rgb(250, 232, 255);
}

.bg-fuchsia-100 {
  --bs-btn-active-bg: rgb(250, 232, 255);
  --bs-alert-bg: rgb(250, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-100 {
  --bs-border-color: rgb(250, 232, 255);
  --bs-alert-border: rgb(250, 232, 255);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-100 {
  text-decoration-color: rgb(250, 232, 255);
}

.hover\:text-fuchsia-100:hover {
  color: rgb(250, 232, 255);
}

.hover\:bg-fuchsia-100:hover {
  --bs-btn-active-bg: rgb(250, 232, 255);
  --bs-alert-bg: rgb(250, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-100:hover {
  --bs-border-color: rgb(250, 232, 255);
  --bs-alert-border-color: rgb(250, 232, 255);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-100 {
  text-decoration-color: rgb(250, 232, 255);
}

.focus\:text-fuchsia-100:focus {
  color: rgb(250, 232, 255);
}

.focus\:bg-fuchsia-100:focus {
  --bs-btn-active-bg: rgb(250, 232, 255);
  --bs-alert-bg: rgb(250, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-100:focus {
  --bs-border-color: rgb(250, 232, 255);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-100 {
  text-decoration-color: rgb(250, 232, 255);
}

.active\:text-fuchsia-100:active {
  color: rgb(250, 232, 255);
}

.active\:bg-fuchsia-100:active {
  --bs-btn-active-bg: rgb(250, 232, 255);
  --bs-alert-bg: rgb(250, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-100:active {
  --bs-border-color: rgb(250, 232, 255);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-100:disabled {
  color: rgb(250, 232, 255);
}

.disabled\:bg-fuchsia-100:disabled {
  --bs-btn-active-bg: rgb(250, 232, 255);
  --bs-alert-bg: rgb(250, 232, 255);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-100:disabled {
  --bs-border-color: rgb(250, 232, 255);
  border-color: var(--bs-border-color);
}

.text-fuchsia-200 {
  --bs-alert-color: rgb(245, 208, 254);
  --bs-btn-color: rgb(245, 208, 254);
  color: var(--bs-btn-color);
}

.fill-fuchsia-200 {
  color: rgb(245, 208, 254);
}

.stroke-fuchsia-200 {
  color: rgb(245, 208, 254);
}

.accent-fuchsia-200 {
  accent-color: rgb(245, 208, 254);
}

.bg-fuchsia-200 {
  --bs-btn-active-bg: rgb(245, 208, 254);
  --bs-alert-bg: rgb(245, 208, 254);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-200 {
  --bs-border-color: rgb(245, 208, 254);
  --bs-alert-border: rgb(245, 208, 254);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-200 {
  text-decoration-color: rgb(245, 208, 254);
}

.hover\:text-fuchsia-200:hover {
  color: rgb(245, 208, 254);
}

.hover\:bg-fuchsia-200:hover {
  --bs-btn-active-bg: rgb(245, 208, 254);
  --bs-alert-bg: rgb(245, 208, 254);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-200:hover {
  --bs-border-color: rgb(245, 208, 254);
  --bs-alert-border-color: rgb(245, 208, 254);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-200 {
  text-decoration-color: rgb(245, 208, 254);
}

.focus\:text-fuchsia-200:focus {
  color: rgb(245, 208, 254);
}

.focus\:bg-fuchsia-200:focus {
  --bs-btn-active-bg: rgb(245, 208, 254);
  --bs-alert-bg: rgb(245, 208, 254);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-200:focus {
  --bs-border-color: rgb(245, 208, 254);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-200 {
  text-decoration-color: rgb(245, 208, 254);
}

.active\:text-fuchsia-200:active {
  color: rgb(245, 208, 254);
}

.active\:bg-fuchsia-200:active {
  --bs-btn-active-bg: rgb(245, 208, 254);
  --bs-alert-bg: rgb(245, 208, 254);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-200:active {
  --bs-border-color: rgb(245, 208, 254);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-200:disabled {
  color: rgb(245, 208, 254);
}

.disabled\:bg-fuchsia-200:disabled {
  --bs-btn-active-bg: rgb(245, 208, 254);
  --bs-alert-bg: rgb(245, 208, 254);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-200:disabled {
  --bs-border-color: rgb(245, 208, 254);
  border-color: var(--bs-border-color);
}

.text-fuchsia-300 {
  --bs-alert-color: rgb(240, 171, 252);
  --bs-btn-color: rgb(240, 171, 252);
  color: var(--bs-btn-color);
}

.fill-fuchsia-300 {
  color: rgb(240, 171, 252);
}

.stroke-fuchsia-300 {
  color: rgb(240, 171, 252);
}

.accent-fuchsia-300 {
  accent-color: rgb(240, 171, 252);
}

.bg-fuchsia-300 {
  --bs-btn-active-bg: rgb(240, 171, 252);
  --bs-alert-bg: rgb(240, 171, 252);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-300 {
  --bs-border-color: rgb(240, 171, 252);
  --bs-alert-border: rgb(240, 171, 252);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-300 {
  text-decoration-color: rgb(240, 171, 252);
}

.hover\:text-fuchsia-300:hover {
  color: rgb(240, 171, 252);
}

.hover\:bg-fuchsia-300:hover {
  --bs-btn-active-bg: rgb(240, 171, 252);
  --bs-alert-bg: rgb(240, 171, 252);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-300:hover {
  --bs-border-color: rgb(240, 171, 252);
  --bs-alert-border-color: rgb(240, 171, 252);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-300 {
  text-decoration-color: rgb(240, 171, 252);
}

.focus\:text-fuchsia-300:focus {
  color: rgb(240, 171, 252);
}

.focus\:bg-fuchsia-300:focus {
  --bs-btn-active-bg: rgb(240, 171, 252);
  --bs-alert-bg: rgb(240, 171, 252);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-300:focus {
  --bs-border-color: rgb(240, 171, 252);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-300 {
  text-decoration-color: rgb(240, 171, 252);
}

.active\:text-fuchsia-300:active {
  color: rgb(240, 171, 252);
}

.active\:bg-fuchsia-300:active {
  --bs-btn-active-bg: rgb(240, 171, 252);
  --bs-alert-bg: rgb(240, 171, 252);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-300:active {
  --bs-border-color: rgb(240, 171, 252);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-300:disabled {
  color: rgb(240, 171, 252);
}

.disabled\:bg-fuchsia-300:disabled {
  --bs-btn-active-bg: rgb(240, 171, 252);
  --bs-alert-bg: rgb(240, 171, 252);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-300:disabled {
  --bs-border-color: rgb(240, 171, 252);
  border-color: var(--bs-border-color);
}

.text-fuchsia-400 {
  --bs-alert-color: rgb(232, 121, 249);
  --bs-btn-color: rgb(232, 121, 249);
  color: var(--bs-btn-color);
}

.fill-fuchsia-400 {
  color: rgb(232, 121, 249);
}

.stroke-fuchsia-400 {
  color: rgb(232, 121, 249);
}

.accent-fuchsia-400 {
  accent-color: rgb(232, 121, 249);
}

.bg-fuchsia-400 {
  --bs-btn-active-bg: rgb(232, 121, 249);
  --bs-alert-bg: rgb(232, 121, 249);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-400 {
  --bs-border-color: rgb(232, 121, 249);
  --bs-alert-border: rgb(232, 121, 249);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-400 {
  text-decoration-color: rgb(232, 121, 249);
}

.hover\:text-fuchsia-400:hover {
  color: rgb(232, 121, 249);
}

.hover\:bg-fuchsia-400:hover {
  --bs-btn-active-bg: rgb(232, 121, 249);
  --bs-alert-bg: rgb(232, 121, 249);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-400:hover {
  --bs-border-color: rgb(232, 121, 249);
  --bs-alert-border-color: rgb(232, 121, 249);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-400 {
  text-decoration-color: rgb(232, 121, 249);
}

.focus\:text-fuchsia-400:focus {
  color: rgb(232, 121, 249);
}

.focus\:bg-fuchsia-400:focus {
  --bs-btn-active-bg: rgb(232, 121, 249);
  --bs-alert-bg: rgb(232, 121, 249);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-400:focus {
  --bs-border-color: rgb(232, 121, 249);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-400 {
  text-decoration-color: rgb(232, 121, 249);
}

.active\:text-fuchsia-400:active {
  color: rgb(232, 121, 249);
}

.active\:bg-fuchsia-400:active {
  --bs-btn-active-bg: rgb(232, 121, 249);
  --bs-alert-bg: rgb(232, 121, 249);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-400:active {
  --bs-border-color: rgb(232, 121, 249);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-400:disabled {
  color: rgb(232, 121, 249);
}

.disabled\:bg-fuchsia-400:disabled {
  --bs-btn-active-bg: rgb(232, 121, 249);
  --bs-alert-bg: rgb(232, 121, 249);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-400:disabled {
  --bs-border-color: rgb(232, 121, 249);
  border-color: var(--bs-border-color);
}

.text-fuchsia-500 {
  --bs-alert-color: rgb(217, 70, 239);
  --bs-btn-color: rgb(217, 70, 239);
  color: var(--bs-btn-color);
}

.fill-fuchsia-500 {
  color: rgb(217, 70, 239);
}

.stroke-fuchsia-500 {
  color: rgb(217, 70, 239);
}

.accent-fuchsia-500 {
  accent-color: rgb(217, 70, 239);
}

.bg-fuchsia-500 {
  --bs-btn-active-bg: rgb(217, 70, 239);
  --bs-alert-bg: rgb(217, 70, 239);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-500 {
  --bs-border-color: rgb(217, 70, 239);
  --bs-alert-border: rgb(217, 70, 239);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-500 {
  text-decoration-color: rgb(217, 70, 239);
}

.hover\:text-fuchsia-500:hover {
  color: rgb(217, 70, 239);
}

.hover\:bg-fuchsia-500:hover {
  --bs-btn-active-bg: rgb(217, 70, 239);
  --bs-alert-bg: rgb(217, 70, 239);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-500:hover {
  --bs-border-color: rgb(217, 70, 239);
  --bs-alert-border-color: rgb(217, 70, 239);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-500 {
  text-decoration-color: rgb(217, 70, 239);
}

.focus\:text-fuchsia-500:focus {
  color: rgb(217, 70, 239);
}

.focus\:bg-fuchsia-500:focus {
  --bs-btn-active-bg: rgb(217, 70, 239);
  --bs-alert-bg: rgb(217, 70, 239);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-500:focus {
  --bs-border-color: rgb(217, 70, 239);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-500 {
  text-decoration-color: rgb(217, 70, 239);
}

.active\:text-fuchsia-500:active {
  color: rgb(217, 70, 239);
}

.active\:bg-fuchsia-500:active {
  --bs-btn-active-bg: rgb(217, 70, 239);
  --bs-alert-bg: rgb(217, 70, 239);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-500:active {
  --bs-border-color: rgb(217, 70, 239);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-500:disabled {
  color: rgb(217, 70, 239);
}

.disabled\:bg-fuchsia-500:disabled {
  --bs-btn-active-bg: rgb(217, 70, 239);
  --bs-alert-bg: rgb(217, 70, 239);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-500:disabled {
  --bs-border-color: rgb(217, 70, 239);
  border-color: var(--bs-border-color);
}

.text-fuchsia-600 {
  --bs-alert-color: rgb(192, 38, 211);
  --bs-btn-color: rgb(192, 38, 211);
  color: var(--bs-btn-color);
}

.fill-fuchsia-600 {
  color: rgb(192, 38, 211);
}

.stroke-fuchsia-600 {
  color: rgb(192, 38, 211);
}

.accent-fuchsia-600 {
  accent-color: rgb(192, 38, 211);
}

.bg-fuchsia-600 {
  --bs-btn-active-bg: rgb(192, 38, 211);
  --bs-alert-bg: rgb(192, 38, 211);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-600 {
  --bs-border-color: rgb(192, 38, 211);
  --bs-alert-border: rgb(192, 38, 211);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-600 {
  text-decoration-color: rgb(192, 38, 211);
}

.hover\:text-fuchsia-600:hover {
  color: rgb(192, 38, 211);
}

.hover\:bg-fuchsia-600:hover {
  --bs-btn-active-bg: rgb(192, 38, 211);
  --bs-alert-bg: rgb(192, 38, 211);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-600:hover {
  --bs-border-color: rgb(192, 38, 211);
  --bs-alert-border-color: rgb(192, 38, 211);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-600 {
  text-decoration-color: rgb(192, 38, 211);
}

.focus\:text-fuchsia-600:focus {
  color: rgb(192, 38, 211);
}

.focus\:bg-fuchsia-600:focus {
  --bs-btn-active-bg: rgb(192, 38, 211);
  --bs-alert-bg: rgb(192, 38, 211);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-600:focus {
  --bs-border-color: rgb(192, 38, 211);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-600 {
  text-decoration-color: rgb(192, 38, 211);
}

.active\:text-fuchsia-600:active {
  color: rgb(192, 38, 211);
}

.active\:bg-fuchsia-600:active {
  --bs-btn-active-bg: rgb(192, 38, 211);
  --bs-alert-bg: rgb(192, 38, 211);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-600:active {
  --bs-border-color: rgb(192, 38, 211);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-600:disabled {
  color: rgb(192, 38, 211);
}

.disabled\:bg-fuchsia-600:disabled {
  --bs-btn-active-bg: rgb(192, 38, 211);
  --bs-alert-bg: rgb(192, 38, 211);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-600:disabled {
  --bs-border-color: rgb(192, 38, 211);
  border-color: var(--bs-border-color);
}

.text-fuchsia-700 {
  --bs-alert-color: rgb(162, 28, 175);
  --bs-btn-color: rgb(162, 28, 175);
  color: var(--bs-btn-color);
}

.fill-fuchsia-700 {
  color: rgb(162, 28, 175);
}

.stroke-fuchsia-700 {
  color: rgb(162, 28, 175);
}

.accent-fuchsia-700 {
  accent-color: rgb(162, 28, 175);
}

.bg-fuchsia-700 {
  --bs-btn-active-bg: rgb(162, 28, 175);
  --bs-alert-bg: rgb(162, 28, 175);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-700 {
  --bs-border-color: rgb(162, 28, 175);
  --bs-alert-border: rgb(162, 28, 175);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-700 {
  text-decoration-color: rgb(162, 28, 175);
}

.hover\:text-fuchsia-700:hover {
  color: rgb(162, 28, 175);
}

.hover\:bg-fuchsia-700:hover {
  --bs-btn-active-bg: rgb(162, 28, 175);
  --bs-alert-bg: rgb(162, 28, 175);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-700:hover {
  --bs-border-color: rgb(162, 28, 175);
  --bs-alert-border-color: rgb(162, 28, 175);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-700 {
  text-decoration-color: rgb(162, 28, 175);
}

.focus\:text-fuchsia-700:focus {
  color: rgb(162, 28, 175);
}

.focus\:bg-fuchsia-700:focus {
  --bs-btn-active-bg: rgb(162, 28, 175);
  --bs-alert-bg: rgb(162, 28, 175);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-700:focus {
  --bs-border-color: rgb(162, 28, 175);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-700 {
  text-decoration-color: rgb(162, 28, 175);
}

.active\:text-fuchsia-700:active {
  color: rgb(162, 28, 175);
}

.active\:bg-fuchsia-700:active {
  --bs-btn-active-bg: rgb(162, 28, 175);
  --bs-alert-bg: rgb(162, 28, 175);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-700:active {
  --bs-border-color: rgb(162, 28, 175);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-700:disabled {
  color: rgb(162, 28, 175);
}

.disabled\:bg-fuchsia-700:disabled {
  --bs-btn-active-bg: rgb(162, 28, 175);
  --bs-alert-bg: rgb(162, 28, 175);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-700:disabled {
  --bs-border-color: rgb(162, 28, 175);
  border-color: var(--bs-border-color);
}

.text-fuchsia-800 {
  --bs-alert-color: rgb(134, 25, 143);
  --bs-btn-color: rgb(134, 25, 143);
  color: var(--bs-btn-color);
}

.fill-fuchsia-800 {
  color: rgb(134, 25, 143);
}

.stroke-fuchsia-800 {
  color: rgb(134, 25, 143);
}

.accent-fuchsia-800 {
  accent-color: rgb(134, 25, 143);
}

.bg-fuchsia-800 {
  --bs-btn-active-bg: rgb(134, 25, 143);
  --bs-alert-bg: rgb(134, 25, 143);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-800 {
  --bs-border-color: rgb(134, 25, 143);
  --bs-alert-border: rgb(134, 25, 143);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-800 {
  text-decoration-color: rgb(134, 25, 143);
}

.hover\:text-fuchsia-800:hover {
  color: rgb(134, 25, 143);
}

.hover\:bg-fuchsia-800:hover {
  --bs-btn-active-bg: rgb(134, 25, 143);
  --bs-alert-bg: rgb(134, 25, 143);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-800:hover {
  --bs-border-color: rgb(134, 25, 143);
  --bs-alert-border-color: rgb(134, 25, 143);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-800 {
  text-decoration-color: rgb(134, 25, 143);
}

.focus\:text-fuchsia-800:focus {
  color: rgb(134, 25, 143);
}

.focus\:bg-fuchsia-800:focus {
  --bs-btn-active-bg: rgb(134, 25, 143);
  --bs-alert-bg: rgb(134, 25, 143);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-800:focus {
  --bs-border-color: rgb(134, 25, 143);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-800 {
  text-decoration-color: rgb(134, 25, 143);
}

.active\:text-fuchsia-800:active {
  color: rgb(134, 25, 143);
}

.active\:bg-fuchsia-800:active {
  --bs-btn-active-bg: rgb(134, 25, 143);
  --bs-alert-bg: rgb(134, 25, 143);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-800:active {
  --bs-border-color: rgb(134, 25, 143);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-800:disabled {
  color: rgb(134, 25, 143);
}

.disabled\:bg-fuchsia-800:disabled {
  --bs-btn-active-bg: rgb(134, 25, 143);
  --bs-alert-bg: rgb(134, 25, 143);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-800:disabled {
  --bs-border-color: rgb(134, 25, 143);
  border-color: var(--bs-border-color);
}

.text-fuchsia-900 {
  --bs-alert-color: rgb(112, 26, 117);
  --bs-btn-color: rgb(112, 26, 117);
  color: var(--bs-btn-color);
}

.fill-fuchsia-900 {
  color: rgb(112, 26, 117);
}

.stroke-fuchsia-900 {
  color: rgb(112, 26, 117);
}

.accent-fuchsia-900 {
  accent-color: rgb(112, 26, 117);
}

.bg-fuchsia-900 {
  --bs-btn-active-bg: rgb(112, 26, 117);
  --bs-alert-bg: rgb(112, 26, 117);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-900 {
  --bs-border-color: rgb(112, 26, 117);
  --bs-alert-border: rgb(112, 26, 117);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-900 {
  text-decoration-color: rgb(112, 26, 117);
}

.hover\:text-fuchsia-900:hover {
  color: rgb(112, 26, 117);
}

.hover\:bg-fuchsia-900:hover {
  --bs-btn-active-bg: rgb(112, 26, 117);
  --bs-alert-bg: rgb(112, 26, 117);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-900:hover {
  --bs-border-color: rgb(112, 26, 117);
  --bs-alert-border-color: rgb(112, 26, 117);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-900 {
  text-decoration-color: rgb(112, 26, 117);
}

.focus\:text-fuchsia-900:focus {
  color: rgb(112, 26, 117);
}

.focus\:bg-fuchsia-900:focus {
  --bs-btn-active-bg: rgb(112, 26, 117);
  --bs-alert-bg: rgb(112, 26, 117);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-900:focus {
  --bs-border-color: rgb(112, 26, 117);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-900 {
  text-decoration-color: rgb(112, 26, 117);
}

.active\:text-fuchsia-900:active {
  color: rgb(112, 26, 117);
}

.active\:bg-fuchsia-900:active {
  --bs-btn-active-bg: rgb(112, 26, 117);
  --bs-alert-bg: rgb(112, 26, 117);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-900:active {
  --bs-border-color: rgb(112, 26, 117);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-900:disabled {
  color: rgb(112, 26, 117);
}

.disabled\:bg-fuchsia-900:disabled {
  --bs-btn-active-bg: rgb(112, 26, 117);
  --bs-alert-bg: rgb(112, 26, 117);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-900:disabled {
  --bs-border-color: rgb(112, 26, 117);
  border-color: var(--bs-border-color);
}

.text-fuchsia-950 {
  --bs-alert-color: rgb(74, 4, 78);
  --bs-btn-color: rgb(74, 4, 78);
  color: var(--bs-btn-color);
}

.fill-fuchsia-950 {
  color: rgb(74, 4, 78);
}

.stroke-fuchsia-950 {
  color: rgb(74, 4, 78);
}

.accent-fuchsia-950 {
  accent-color: rgb(74, 4, 78);
}

.bg-fuchsia-950 {
  --bs-btn-active-bg: rgb(74, 4, 78);
  --bs-alert-bg: rgb(74, 4, 78);
  background-color: var(--bs-btn-active-bg);
}

.border-fuchsia-950 {
  --bs-border-color: rgb(74, 4, 78);
  --bs-alert-border: rgb(74, 4, 78);
  border-color: var(--bs-border-color);
}

.decoration-fuchsia-950 {
  text-decoration-color: rgb(74, 4, 78);
}

.hover\:text-fuchsia-950:hover {
  color: rgb(74, 4, 78);
}

.hover\:bg-fuchsia-950:hover {
  --bs-btn-active-bg: rgb(74, 4, 78);
  --bs-alert-bg: rgb(74, 4, 78);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-fuchsia-950:hover {
  --bs-border-color: rgb(74, 4, 78);
  --bs-alert-border-color: rgb(74, 4, 78);
  border-color: var(--bs-border-color);
}

.hover\:decoration-fuchsia-950 {
  text-decoration-color: rgb(74, 4, 78);
}

.focus\:text-fuchsia-950:focus {
  color: rgb(74, 4, 78);
}

.focus\:bg-fuchsia-950:focus {
  --bs-btn-active-bg: rgb(74, 4, 78);
  --bs-alert-bg: rgb(74, 4, 78);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-fuchsia-950:focus {
  --bs-border-color: rgb(74, 4, 78);
  border-color: var(--bs-border-color);
}

.focus\:decoration-fuchsia-950 {
  text-decoration-color: rgb(74, 4, 78);
}

.active\:text-fuchsia-950:active {
  color: rgb(74, 4, 78);
}

.active\:bg-fuchsia-950:active {
  --bs-btn-active-bg: rgb(74, 4, 78);
  --bs-alert-bg: rgb(74, 4, 78);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-fuchsia-950:active {
  --bs-border-color: rgb(74, 4, 78);
  border-color: var(--bs-border-color);
}

.disabled\:text-fuchsia-950:disabled {
  color: rgb(74, 4, 78);
}

.disabled\:bg-fuchsia-950:disabled {
  --bs-btn-active-bg: rgb(74, 4, 78);
  --bs-alert-bg: rgb(74, 4, 78);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-fuchsia-950:disabled {
  --bs-border-color: rgb(74, 4, 78);
  border-color: var(--bs-border-color);
}

.text-pink-50 {
  --bs-alert-color: rgb(253, 242, 248);
  --bs-btn-color: rgb(253, 242, 248);
  color: var(--bs-btn-color);
}

.fill-pink-50 {
  color: rgb(253, 242, 248);
}

.stroke-pink-50 {
  color: rgb(253, 242, 248);
}

.accent-pink-50 {
  accent-color: rgb(253, 242, 248);
}

.bg-pink-50 {
  --bs-btn-active-bg: rgb(253, 242, 248);
  --bs-alert-bg: rgb(253, 242, 248);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-50 {
  --bs-border-color: rgb(253, 242, 248);
  --bs-alert-border: rgb(253, 242, 248);
  border-color: var(--bs-border-color);
}

.decoration-pink-50 {
  text-decoration-color: rgb(253, 242, 248);
}

.hover\:text-pink-50:hover {
  color: rgb(253, 242, 248);
}

.hover\:bg-pink-50:hover {
  --bs-btn-active-bg: rgb(253, 242, 248);
  --bs-alert-bg: rgb(253, 242, 248);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-50:hover {
  --bs-border-color: rgb(253, 242, 248);
  --bs-alert-border-color: rgb(253, 242, 248);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-50 {
  text-decoration-color: rgb(253, 242, 248);
}

.focus\:text-pink-50:focus {
  color: rgb(253, 242, 248);
}

.focus\:bg-pink-50:focus {
  --bs-btn-active-bg: rgb(253, 242, 248);
  --bs-alert-bg: rgb(253, 242, 248);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-50:focus {
  --bs-border-color: rgb(253, 242, 248);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-50 {
  text-decoration-color: rgb(253, 242, 248);
}

.active\:text-pink-50:active {
  color: rgb(253, 242, 248);
}

.active\:bg-pink-50:active {
  --bs-btn-active-bg: rgb(253, 242, 248);
  --bs-alert-bg: rgb(253, 242, 248);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-50:active {
  --bs-border-color: rgb(253, 242, 248);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-50:disabled {
  color: rgb(253, 242, 248);
}

.disabled\:bg-pink-50:disabled {
  --bs-btn-active-bg: rgb(253, 242, 248);
  --bs-alert-bg: rgb(253, 242, 248);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-50:disabled {
  --bs-border-color: rgb(253, 242, 248);
  border-color: var(--bs-border-color);
}

.text-pink-100 {
  --bs-alert-color: rgb(252, 231, 243);
  --bs-btn-color: rgb(252, 231, 243);
  color: var(--bs-btn-color);
}

.fill-pink-100 {
  color: rgb(252, 231, 243);
}

.stroke-pink-100 {
  color: rgb(252, 231, 243);
}

.accent-pink-100 {
  accent-color: rgb(252, 231, 243);
}

.bg-pink-100 {
  --bs-btn-active-bg: rgb(252, 231, 243);
  --bs-alert-bg: rgb(252, 231, 243);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-100 {
  --bs-border-color: rgb(252, 231, 243);
  --bs-alert-border: rgb(252, 231, 243);
  border-color: var(--bs-border-color);
}

.decoration-pink-100 {
  text-decoration-color: rgb(252, 231, 243);
}

.hover\:text-pink-100:hover {
  color: rgb(252, 231, 243);
}

.hover\:bg-pink-100:hover {
  --bs-btn-active-bg: rgb(252, 231, 243);
  --bs-alert-bg: rgb(252, 231, 243);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-100:hover {
  --bs-border-color: rgb(252, 231, 243);
  --bs-alert-border-color: rgb(252, 231, 243);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-100 {
  text-decoration-color: rgb(252, 231, 243);
}

.focus\:text-pink-100:focus {
  color: rgb(252, 231, 243);
}

.focus\:bg-pink-100:focus {
  --bs-btn-active-bg: rgb(252, 231, 243);
  --bs-alert-bg: rgb(252, 231, 243);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-100:focus {
  --bs-border-color: rgb(252, 231, 243);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-100 {
  text-decoration-color: rgb(252, 231, 243);
}

.active\:text-pink-100:active {
  color: rgb(252, 231, 243);
}

.active\:bg-pink-100:active {
  --bs-btn-active-bg: rgb(252, 231, 243);
  --bs-alert-bg: rgb(252, 231, 243);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-100:active {
  --bs-border-color: rgb(252, 231, 243);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-100:disabled {
  color: rgb(252, 231, 243);
}

.disabled\:bg-pink-100:disabled {
  --bs-btn-active-bg: rgb(252, 231, 243);
  --bs-alert-bg: rgb(252, 231, 243);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-100:disabled {
  --bs-border-color: rgb(252, 231, 243);
  border-color: var(--bs-border-color);
}

.text-pink-200 {
  --bs-alert-color: rgb(251, 207, 232);
  --bs-btn-color: rgb(251, 207, 232);
  color: var(--bs-btn-color);
}

.fill-pink-200 {
  color: rgb(251, 207, 232);
}

.stroke-pink-200 {
  color: rgb(251, 207, 232);
}

.accent-pink-200 {
  accent-color: rgb(251, 207, 232);
}

.bg-pink-200 {
  --bs-btn-active-bg: rgb(251, 207, 232);
  --bs-alert-bg: rgb(251, 207, 232);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-200 {
  --bs-border-color: rgb(251, 207, 232);
  --bs-alert-border: rgb(251, 207, 232);
  border-color: var(--bs-border-color);
}

.decoration-pink-200 {
  text-decoration-color: rgb(251, 207, 232);
}

.hover\:text-pink-200:hover {
  color: rgb(251, 207, 232);
}

.hover\:bg-pink-200:hover {
  --bs-btn-active-bg: rgb(251, 207, 232);
  --bs-alert-bg: rgb(251, 207, 232);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-200:hover {
  --bs-border-color: rgb(251, 207, 232);
  --bs-alert-border-color: rgb(251, 207, 232);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-200 {
  text-decoration-color: rgb(251, 207, 232);
}

.focus\:text-pink-200:focus {
  color: rgb(251, 207, 232);
}

.focus\:bg-pink-200:focus {
  --bs-btn-active-bg: rgb(251, 207, 232);
  --bs-alert-bg: rgb(251, 207, 232);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-200:focus {
  --bs-border-color: rgb(251, 207, 232);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-200 {
  text-decoration-color: rgb(251, 207, 232);
}

.active\:text-pink-200:active {
  color: rgb(251, 207, 232);
}

.active\:bg-pink-200:active {
  --bs-btn-active-bg: rgb(251, 207, 232);
  --bs-alert-bg: rgb(251, 207, 232);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-200:active {
  --bs-border-color: rgb(251, 207, 232);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-200:disabled {
  color: rgb(251, 207, 232);
}

.disabled\:bg-pink-200:disabled {
  --bs-btn-active-bg: rgb(251, 207, 232);
  --bs-alert-bg: rgb(251, 207, 232);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-200:disabled {
  --bs-border-color: rgb(251, 207, 232);
  border-color: var(--bs-border-color);
}

.text-pink-300 {
  --bs-alert-color: rgb(249, 168, 212);
  --bs-btn-color: rgb(249, 168, 212);
  color: var(--bs-btn-color);
}

.fill-pink-300 {
  color: rgb(249, 168, 212);
}

.stroke-pink-300 {
  color: rgb(249, 168, 212);
}

.accent-pink-300 {
  accent-color: rgb(249, 168, 212);
}

.bg-pink-300 {
  --bs-btn-active-bg: rgb(249, 168, 212);
  --bs-alert-bg: rgb(249, 168, 212);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-300 {
  --bs-border-color: rgb(249, 168, 212);
  --bs-alert-border: rgb(249, 168, 212);
  border-color: var(--bs-border-color);
}

.decoration-pink-300 {
  text-decoration-color: rgb(249, 168, 212);
}

.hover\:text-pink-300:hover {
  color: rgb(249, 168, 212);
}

.hover\:bg-pink-300:hover {
  --bs-btn-active-bg: rgb(249, 168, 212);
  --bs-alert-bg: rgb(249, 168, 212);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-300:hover {
  --bs-border-color: rgb(249, 168, 212);
  --bs-alert-border-color: rgb(249, 168, 212);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-300 {
  text-decoration-color: rgb(249, 168, 212);
}

.focus\:text-pink-300:focus {
  color: rgb(249, 168, 212);
}

.focus\:bg-pink-300:focus {
  --bs-btn-active-bg: rgb(249, 168, 212);
  --bs-alert-bg: rgb(249, 168, 212);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-300:focus {
  --bs-border-color: rgb(249, 168, 212);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-300 {
  text-decoration-color: rgb(249, 168, 212);
}

.active\:text-pink-300:active {
  color: rgb(249, 168, 212);
}

.active\:bg-pink-300:active {
  --bs-btn-active-bg: rgb(249, 168, 212);
  --bs-alert-bg: rgb(249, 168, 212);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-300:active {
  --bs-border-color: rgb(249, 168, 212);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-300:disabled {
  color: rgb(249, 168, 212);
}

.disabled\:bg-pink-300:disabled {
  --bs-btn-active-bg: rgb(249, 168, 212);
  --bs-alert-bg: rgb(249, 168, 212);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-300:disabled {
  --bs-border-color: rgb(249, 168, 212);
  border-color: var(--bs-border-color);
}

.text-pink-400 {
  --bs-alert-color: rgb(244, 114, 182);
  --bs-btn-color: rgb(244, 114, 182);
  color: var(--bs-btn-color);
}

.fill-pink-400 {
  color: rgb(244, 114, 182);
}

.stroke-pink-400 {
  color: rgb(244, 114, 182);
}

.accent-pink-400 {
  accent-color: rgb(244, 114, 182);
}

.bg-pink-400 {
  --bs-btn-active-bg: rgb(244, 114, 182);
  --bs-alert-bg: rgb(244, 114, 182);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-400 {
  --bs-border-color: rgb(244, 114, 182);
  --bs-alert-border: rgb(244, 114, 182);
  border-color: var(--bs-border-color);
}

.decoration-pink-400 {
  text-decoration-color: rgb(244, 114, 182);
}

.hover\:text-pink-400:hover {
  color: rgb(244, 114, 182);
}

.hover\:bg-pink-400:hover {
  --bs-btn-active-bg: rgb(244, 114, 182);
  --bs-alert-bg: rgb(244, 114, 182);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-400:hover {
  --bs-border-color: rgb(244, 114, 182);
  --bs-alert-border-color: rgb(244, 114, 182);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-400 {
  text-decoration-color: rgb(244, 114, 182);
}

.focus\:text-pink-400:focus {
  color: rgb(244, 114, 182);
}

.focus\:bg-pink-400:focus {
  --bs-btn-active-bg: rgb(244, 114, 182);
  --bs-alert-bg: rgb(244, 114, 182);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-400:focus {
  --bs-border-color: rgb(244, 114, 182);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-400 {
  text-decoration-color: rgb(244, 114, 182);
}

.active\:text-pink-400:active {
  color: rgb(244, 114, 182);
}

.active\:bg-pink-400:active {
  --bs-btn-active-bg: rgb(244, 114, 182);
  --bs-alert-bg: rgb(244, 114, 182);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-400:active {
  --bs-border-color: rgb(244, 114, 182);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-400:disabled {
  color: rgb(244, 114, 182);
}

.disabled\:bg-pink-400:disabled {
  --bs-btn-active-bg: rgb(244, 114, 182);
  --bs-alert-bg: rgb(244, 114, 182);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-400:disabled {
  --bs-border-color: rgb(244, 114, 182);
  border-color: var(--bs-border-color);
}

.text-pink-500 {
  --bs-alert-color: rgb(236, 72, 153);
  --bs-btn-color: rgb(236, 72, 153);
  color: var(--bs-btn-color);
}

.fill-pink-500 {
  color: rgb(236, 72, 153);
}

.stroke-pink-500 {
  color: rgb(236, 72, 153);
}

.accent-pink-500 {
  accent-color: rgb(236, 72, 153);
}

.bg-pink-500 {
  --bs-btn-active-bg: rgb(236, 72, 153);
  --bs-alert-bg: rgb(236, 72, 153);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-500 {
  --bs-border-color: rgb(236, 72, 153);
  --bs-alert-border: rgb(236, 72, 153);
  border-color: var(--bs-border-color);
}

.decoration-pink-500 {
  text-decoration-color: rgb(236, 72, 153);
}

.hover\:text-pink-500:hover {
  color: rgb(236, 72, 153);
}

.hover\:bg-pink-500:hover {
  --bs-btn-active-bg: rgb(236, 72, 153);
  --bs-alert-bg: rgb(236, 72, 153);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-500:hover {
  --bs-border-color: rgb(236, 72, 153);
  --bs-alert-border-color: rgb(236, 72, 153);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-500 {
  text-decoration-color: rgb(236, 72, 153);
}

.focus\:text-pink-500:focus {
  color: rgb(236, 72, 153);
}

.focus\:bg-pink-500:focus {
  --bs-btn-active-bg: rgb(236, 72, 153);
  --bs-alert-bg: rgb(236, 72, 153);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-500:focus {
  --bs-border-color: rgb(236, 72, 153);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-500 {
  text-decoration-color: rgb(236, 72, 153);
}

.active\:text-pink-500:active {
  color: rgb(236, 72, 153);
}

.active\:bg-pink-500:active {
  --bs-btn-active-bg: rgb(236, 72, 153);
  --bs-alert-bg: rgb(236, 72, 153);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-500:active {
  --bs-border-color: rgb(236, 72, 153);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-500:disabled {
  color: rgb(236, 72, 153);
}

.disabled\:bg-pink-500:disabled {
  --bs-btn-active-bg: rgb(236, 72, 153);
  --bs-alert-bg: rgb(236, 72, 153);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-500:disabled {
  --bs-border-color: rgb(236, 72, 153);
  border-color: var(--bs-border-color);
}

.text-pink-600 {
  --bs-alert-color: rgb(219, 39, 119);
  --bs-btn-color: rgb(219, 39, 119);
  color: var(--bs-btn-color);
}

.fill-pink-600 {
  color: rgb(219, 39, 119);
}

.stroke-pink-600 {
  color: rgb(219, 39, 119);
}

.accent-pink-600 {
  accent-color: rgb(219, 39, 119);
}

.bg-pink-600 {
  --bs-btn-active-bg: rgb(219, 39, 119);
  --bs-alert-bg: rgb(219, 39, 119);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-600 {
  --bs-border-color: rgb(219, 39, 119);
  --bs-alert-border: rgb(219, 39, 119);
  border-color: var(--bs-border-color);
}

.decoration-pink-600 {
  text-decoration-color: rgb(219, 39, 119);
}

.hover\:text-pink-600:hover {
  color: rgb(219, 39, 119);
}

.hover\:bg-pink-600:hover {
  --bs-btn-active-bg: rgb(219, 39, 119);
  --bs-alert-bg: rgb(219, 39, 119);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-600:hover {
  --bs-border-color: rgb(219, 39, 119);
  --bs-alert-border-color: rgb(219, 39, 119);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-600 {
  text-decoration-color: rgb(219, 39, 119);
}

.focus\:text-pink-600:focus {
  color: rgb(219, 39, 119);
}

.focus\:bg-pink-600:focus {
  --bs-btn-active-bg: rgb(219, 39, 119);
  --bs-alert-bg: rgb(219, 39, 119);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-600:focus {
  --bs-border-color: rgb(219, 39, 119);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-600 {
  text-decoration-color: rgb(219, 39, 119);
}

.active\:text-pink-600:active {
  color: rgb(219, 39, 119);
}

.active\:bg-pink-600:active {
  --bs-btn-active-bg: rgb(219, 39, 119);
  --bs-alert-bg: rgb(219, 39, 119);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-600:active {
  --bs-border-color: rgb(219, 39, 119);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-600:disabled {
  color: rgb(219, 39, 119);
}

.disabled\:bg-pink-600:disabled {
  --bs-btn-active-bg: rgb(219, 39, 119);
  --bs-alert-bg: rgb(219, 39, 119);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-600:disabled {
  --bs-border-color: rgb(219, 39, 119);
  border-color: var(--bs-border-color);
}

.text-pink-700 {
  --bs-alert-color: rgb(190, 24, 93);
  --bs-btn-color: rgb(190, 24, 93);
  color: var(--bs-btn-color);
}

.fill-pink-700 {
  color: rgb(190, 24, 93);
}

.stroke-pink-700 {
  color: rgb(190, 24, 93);
}

.accent-pink-700 {
  accent-color: rgb(190, 24, 93);
}

.bg-pink-700 {
  --bs-btn-active-bg: rgb(190, 24, 93);
  --bs-alert-bg: rgb(190, 24, 93);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-700 {
  --bs-border-color: rgb(190, 24, 93);
  --bs-alert-border: rgb(190, 24, 93);
  border-color: var(--bs-border-color);
}

.decoration-pink-700 {
  text-decoration-color: rgb(190, 24, 93);
}

.hover\:text-pink-700:hover {
  color: rgb(190, 24, 93);
}

.hover\:bg-pink-700:hover {
  --bs-btn-active-bg: rgb(190, 24, 93);
  --bs-alert-bg: rgb(190, 24, 93);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-700:hover {
  --bs-border-color: rgb(190, 24, 93);
  --bs-alert-border-color: rgb(190, 24, 93);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-700 {
  text-decoration-color: rgb(190, 24, 93);
}

.focus\:text-pink-700:focus {
  color: rgb(190, 24, 93);
}

.focus\:bg-pink-700:focus {
  --bs-btn-active-bg: rgb(190, 24, 93);
  --bs-alert-bg: rgb(190, 24, 93);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-700:focus {
  --bs-border-color: rgb(190, 24, 93);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-700 {
  text-decoration-color: rgb(190, 24, 93);
}

.active\:text-pink-700:active {
  color: rgb(190, 24, 93);
}

.active\:bg-pink-700:active {
  --bs-btn-active-bg: rgb(190, 24, 93);
  --bs-alert-bg: rgb(190, 24, 93);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-700:active {
  --bs-border-color: rgb(190, 24, 93);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-700:disabled {
  color: rgb(190, 24, 93);
}

.disabled\:bg-pink-700:disabled {
  --bs-btn-active-bg: rgb(190, 24, 93);
  --bs-alert-bg: rgb(190, 24, 93);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-700:disabled {
  --bs-border-color: rgb(190, 24, 93);
  border-color: var(--bs-border-color);
}

.text-pink-800 {
  --bs-alert-color: rgb(157, 23, 77);
  --bs-btn-color: rgb(157, 23, 77);
  color: var(--bs-btn-color);
}

.fill-pink-800 {
  color: rgb(157, 23, 77);
}

.stroke-pink-800 {
  color: rgb(157, 23, 77);
}

.accent-pink-800 {
  accent-color: rgb(157, 23, 77);
}

.bg-pink-800 {
  --bs-btn-active-bg: rgb(157, 23, 77);
  --bs-alert-bg: rgb(157, 23, 77);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-800 {
  --bs-border-color: rgb(157, 23, 77);
  --bs-alert-border: rgb(157, 23, 77);
  border-color: var(--bs-border-color);
}

.decoration-pink-800 {
  text-decoration-color: rgb(157, 23, 77);
}

.hover\:text-pink-800:hover {
  color: rgb(157, 23, 77);
}

.hover\:bg-pink-800:hover {
  --bs-btn-active-bg: rgb(157, 23, 77);
  --bs-alert-bg: rgb(157, 23, 77);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-800:hover {
  --bs-border-color: rgb(157, 23, 77);
  --bs-alert-border-color: rgb(157, 23, 77);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-800 {
  text-decoration-color: rgb(157, 23, 77);
}

.focus\:text-pink-800:focus {
  color: rgb(157, 23, 77);
}

.focus\:bg-pink-800:focus {
  --bs-btn-active-bg: rgb(157, 23, 77);
  --bs-alert-bg: rgb(157, 23, 77);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-800:focus {
  --bs-border-color: rgb(157, 23, 77);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-800 {
  text-decoration-color: rgb(157, 23, 77);
}

.active\:text-pink-800:active {
  color: rgb(157, 23, 77);
}

.active\:bg-pink-800:active {
  --bs-btn-active-bg: rgb(157, 23, 77);
  --bs-alert-bg: rgb(157, 23, 77);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-800:active {
  --bs-border-color: rgb(157, 23, 77);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-800:disabled {
  color: rgb(157, 23, 77);
}

.disabled\:bg-pink-800:disabled {
  --bs-btn-active-bg: rgb(157, 23, 77);
  --bs-alert-bg: rgb(157, 23, 77);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-800:disabled {
  --bs-border-color: rgb(157, 23, 77);
  border-color: var(--bs-border-color);
}

.text-pink-900 {
  --bs-alert-color: rgb(131, 24, 67);
  --bs-btn-color: rgb(131, 24, 67);
  color: var(--bs-btn-color);
}

.fill-pink-900 {
  color: rgb(131, 24, 67);
}

.stroke-pink-900 {
  color: rgb(131, 24, 67);
}

.accent-pink-900 {
  accent-color: rgb(131, 24, 67);
}

.bg-pink-900 {
  --bs-btn-active-bg: rgb(131, 24, 67);
  --bs-alert-bg: rgb(131, 24, 67);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-900 {
  --bs-border-color: rgb(131, 24, 67);
  --bs-alert-border: rgb(131, 24, 67);
  border-color: var(--bs-border-color);
}

.decoration-pink-900 {
  text-decoration-color: rgb(131, 24, 67);
}

.hover\:text-pink-900:hover {
  color: rgb(131, 24, 67);
}

.hover\:bg-pink-900:hover {
  --bs-btn-active-bg: rgb(131, 24, 67);
  --bs-alert-bg: rgb(131, 24, 67);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-900:hover {
  --bs-border-color: rgb(131, 24, 67);
  --bs-alert-border-color: rgb(131, 24, 67);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-900 {
  text-decoration-color: rgb(131, 24, 67);
}

.focus\:text-pink-900:focus {
  color: rgb(131, 24, 67);
}

.focus\:bg-pink-900:focus {
  --bs-btn-active-bg: rgb(131, 24, 67);
  --bs-alert-bg: rgb(131, 24, 67);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-900:focus {
  --bs-border-color: rgb(131, 24, 67);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-900 {
  text-decoration-color: rgb(131, 24, 67);
}

.active\:text-pink-900:active {
  color: rgb(131, 24, 67);
}

.active\:bg-pink-900:active {
  --bs-btn-active-bg: rgb(131, 24, 67);
  --bs-alert-bg: rgb(131, 24, 67);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-900:active {
  --bs-border-color: rgb(131, 24, 67);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-900:disabled {
  color: rgb(131, 24, 67);
}

.disabled\:bg-pink-900:disabled {
  --bs-btn-active-bg: rgb(131, 24, 67);
  --bs-alert-bg: rgb(131, 24, 67);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-900:disabled {
  --bs-border-color: rgb(131, 24, 67);
  border-color: var(--bs-border-color);
}

.text-pink-950 {
  --bs-alert-color: rgb(80, 7, 36);
  --bs-btn-color: rgb(80, 7, 36);
  color: var(--bs-btn-color);
}

.fill-pink-950 {
  color: rgb(80, 7, 36);
}

.stroke-pink-950 {
  color: rgb(80, 7, 36);
}

.accent-pink-950 {
  accent-color: rgb(80, 7, 36);
}

.bg-pink-950 {
  --bs-btn-active-bg: rgb(80, 7, 36);
  --bs-alert-bg: rgb(80, 7, 36);
  background-color: var(--bs-btn-active-bg);
}

.border-pink-950 {
  --bs-border-color: rgb(80, 7, 36);
  --bs-alert-border: rgb(80, 7, 36);
  border-color: var(--bs-border-color);
}

.decoration-pink-950 {
  text-decoration-color: rgb(80, 7, 36);
}

.hover\:text-pink-950:hover {
  color: rgb(80, 7, 36);
}

.hover\:bg-pink-950:hover {
  --bs-btn-active-bg: rgb(80, 7, 36);
  --bs-alert-bg: rgb(80, 7, 36);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-pink-950:hover {
  --bs-border-color: rgb(80, 7, 36);
  --bs-alert-border-color: rgb(80, 7, 36);
  border-color: var(--bs-border-color);
}

.hover\:decoration-pink-950 {
  text-decoration-color: rgb(80, 7, 36);
}

.focus\:text-pink-950:focus {
  color: rgb(80, 7, 36);
}

.focus\:bg-pink-950:focus {
  --bs-btn-active-bg: rgb(80, 7, 36);
  --bs-alert-bg: rgb(80, 7, 36);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-pink-950:focus {
  --bs-border-color: rgb(80, 7, 36);
  border-color: var(--bs-border-color);
}

.focus\:decoration-pink-950 {
  text-decoration-color: rgb(80, 7, 36);
}

.active\:text-pink-950:active {
  color: rgb(80, 7, 36);
}

.active\:bg-pink-950:active {
  --bs-btn-active-bg: rgb(80, 7, 36);
  --bs-alert-bg: rgb(80, 7, 36);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-pink-950:active {
  --bs-border-color: rgb(80, 7, 36);
  border-color: var(--bs-border-color);
}

.disabled\:text-pink-950:disabled {
  color: rgb(80, 7, 36);
}

.disabled\:bg-pink-950:disabled {
  --bs-btn-active-bg: rgb(80, 7, 36);
  --bs-alert-bg: rgb(80, 7, 36);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-pink-950:disabled {
  --bs-border-color: rgb(80, 7, 36);
  border-color: var(--bs-border-color);
}

.text-rose-50 {
  --bs-alert-color: rgb(255, 241, 242);
  --bs-btn-color: rgb(255, 241, 242);
  color: var(--bs-btn-color);
}

.fill-rose-50 {
  color: rgb(255, 241, 242);
}

.stroke-rose-50 {
  color: rgb(255, 241, 242);
}

.accent-rose-50 {
  accent-color: rgb(255, 241, 242);
}

.bg-rose-50 {
  --bs-btn-active-bg: rgb(255, 241, 242);
  --bs-alert-bg: rgb(255, 241, 242);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-50 {
  --bs-border-color: rgb(255, 241, 242);
  --bs-alert-border: rgb(255, 241, 242);
  border-color: var(--bs-border-color);
}

.decoration-rose-50 {
  text-decoration-color: rgb(255, 241, 242);
}

.hover\:text-rose-50:hover {
  color: rgb(255, 241, 242);
}

.hover\:bg-rose-50:hover {
  --bs-btn-active-bg: rgb(255, 241, 242);
  --bs-alert-bg: rgb(255, 241, 242);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-50:hover {
  --bs-border-color: rgb(255, 241, 242);
  --bs-alert-border-color: rgb(255, 241, 242);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-50 {
  text-decoration-color: rgb(255, 241, 242);
}

.focus\:text-rose-50:focus {
  color: rgb(255, 241, 242);
}

.focus\:bg-rose-50:focus {
  --bs-btn-active-bg: rgb(255, 241, 242);
  --bs-alert-bg: rgb(255, 241, 242);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-50:focus {
  --bs-border-color: rgb(255, 241, 242);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-50 {
  text-decoration-color: rgb(255, 241, 242);
}

.active\:text-rose-50:active {
  color: rgb(255, 241, 242);
}

.active\:bg-rose-50:active {
  --bs-btn-active-bg: rgb(255, 241, 242);
  --bs-alert-bg: rgb(255, 241, 242);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-50:active {
  --bs-border-color: rgb(255, 241, 242);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-50:disabled {
  color: rgb(255, 241, 242);
}

.disabled\:bg-rose-50:disabled {
  --bs-btn-active-bg: rgb(255, 241, 242);
  --bs-alert-bg: rgb(255, 241, 242);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-50:disabled {
  --bs-border-color: rgb(255, 241, 242);
  border-color: var(--bs-border-color);
}

.text-rose-100 {
  --bs-alert-color: rgb(255, 228, 230);
  --bs-btn-color: rgb(255, 228, 230);
  color: var(--bs-btn-color);
}

.fill-rose-100 {
  color: rgb(255, 228, 230);
}

.stroke-rose-100 {
  color: rgb(255, 228, 230);
}

.accent-rose-100 {
  accent-color: rgb(255, 228, 230);
}

.bg-rose-100 {
  --bs-btn-active-bg: rgb(255, 228, 230);
  --bs-alert-bg: rgb(255, 228, 230);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-100 {
  --bs-border-color: rgb(255, 228, 230);
  --bs-alert-border: rgb(255, 228, 230);
  border-color: var(--bs-border-color);
}

.decoration-rose-100 {
  text-decoration-color: rgb(255, 228, 230);
}

.hover\:text-rose-100:hover {
  color: rgb(255, 228, 230);
}

.hover\:bg-rose-100:hover {
  --bs-btn-active-bg: rgb(255, 228, 230);
  --bs-alert-bg: rgb(255, 228, 230);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-100:hover {
  --bs-border-color: rgb(255, 228, 230);
  --bs-alert-border-color: rgb(255, 228, 230);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-100 {
  text-decoration-color: rgb(255, 228, 230);
}

.focus\:text-rose-100:focus {
  color: rgb(255, 228, 230);
}

.focus\:bg-rose-100:focus {
  --bs-btn-active-bg: rgb(255, 228, 230);
  --bs-alert-bg: rgb(255, 228, 230);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-100:focus {
  --bs-border-color: rgb(255, 228, 230);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-100 {
  text-decoration-color: rgb(255, 228, 230);
}

.active\:text-rose-100:active {
  color: rgb(255, 228, 230);
}

.active\:bg-rose-100:active {
  --bs-btn-active-bg: rgb(255, 228, 230);
  --bs-alert-bg: rgb(255, 228, 230);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-100:active {
  --bs-border-color: rgb(255, 228, 230);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-100:disabled {
  color: rgb(255, 228, 230);
}

.disabled\:bg-rose-100:disabled {
  --bs-btn-active-bg: rgb(255, 228, 230);
  --bs-alert-bg: rgb(255, 228, 230);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-100:disabled {
  --bs-border-color: rgb(255, 228, 230);
  border-color: var(--bs-border-color);
}

.text-rose-200 {
  --bs-alert-color: rgb(254, 205, 211);
  --bs-btn-color: rgb(254, 205, 211);
  color: var(--bs-btn-color);
}

.fill-rose-200 {
  color: rgb(254, 205, 211);
}

.stroke-rose-200 {
  color: rgb(254, 205, 211);
}

.accent-rose-200 {
  accent-color: rgb(254, 205, 211);
}

.bg-rose-200 {
  --bs-btn-active-bg: rgb(254, 205, 211);
  --bs-alert-bg: rgb(254, 205, 211);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-200 {
  --bs-border-color: rgb(254, 205, 211);
  --bs-alert-border: rgb(254, 205, 211);
  border-color: var(--bs-border-color);
}

.decoration-rose-200 {
  text-decoration-color: rgb(254, 205, 211);
}

.hover\:text-rose-200:hover {
  color: rgb(254, 205, 211);
}

.hover\:bg-rose-200:hover {
  --bs-btn-active-bg: rgb(254, 205, 211);
  --bs-alert-bg: rgb(254, 205, 211);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-200:hover {
  --bs-border-color: rgb(254, 205, 211);
  --bs-alert-border-color: rgb(254, 205, 211);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-200 {
  text-decoration-color: rgb(254, 205, 211);
}

.focus\:text-rose-200:focus {
  color: rgb(254, 205, 211);
}

.focus\:bg-rose-200:focus {
  --bs-btn-active-bg: rgb(254, 205, 211);
  --bs-alert-bg: rgb(254, 205, 211);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-200:focus {
  --bs-border-color: rgb(254, 205, 211);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-200 {
  text-decoration-color: rgb(254, 205, 211);
}

.active\:text-rose-200:active {
  color: rgb(254, 205, 211);
}

.active\:bg-rose-200:active {
  --bs-btn-active-bg: rgb(254, 205, 211);
  --bs-alert-bg: rgb(254, 205, 211);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-200:active {
  --bs-border-color: rgb(254, 205, 211);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-200:disabled {
  color: rgb(254, 205, 211);
}

.disabled\:bg-rose-200:disabled {
  --bs-btn-active-bg: rgb(254, 205, 211);
  --bs-alert-bg: rgb(254, 205, 211);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-200:disabled {
  --bs-border-color: rgb(254, 205, 211);
  border-color: var(--bs-border-color);
}

.text-rose-300 {
  --bs-alert-color: rgb(253, 164, 175);
  --bs-btn-color: rgb(253, 164, 175);
  color: var(--bs-btn-color);
}

.fill-rose-300 {
  color: rgb(253, 164, 175);
}

.stroke-rose-300 {
  color: rgb(253, 164, 175);
}

.accent-rose-300 {
  accent-color: rgb(253, 164, 175);
}

.bg-rose-300 {
  --bs-btn-active-bg: rgb(253, 164, 175);
  --bs-alert-bg: rgb(253, 164, 175);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-300 {
  --bs-border-color: rgb(253, 164, 175);
  --bs-alert-border: rgb(253, 164, 175);
  border-color: var(--bs-border-color);
}

.decoration-rose-300 {
  text-decoration-color: rgb(253, 164, 175);
}

.hover\:text-rose-300:hover {
  color: rgb(253, 164, 175);
}

.hover\:bg-rose-300:hover {
  --bs-btn-active-bg: rgb(253, 164, 175);
  --bs-alert-bg: rgb(253, 164, 175);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-300:hover {
  --bs-border-color: rgb(253, 164, 175);
  --bs-alert-border-color: rgb(253, 164, 175);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-300 {
  text-decoration-color: rgb(253, 164, 175);
}

.focus\:text-rose-300:focus {
  color: rgb(253, 164, 175);
}

.focus\:bg-rose-300:focus {
  --bs-btn-active-bg: rgb(253, 164, 175);
  --bs-alert-bg: rgb(253, 164, 175);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-300:focus {
  --bs-border-color: rgb(253, 164, 175);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-300 {
  text-decoration-color: rgb(253, 164, 175);
}

.active\:text-rose-300:active {
  color: rgb(253, 164, 175);
}

.active\:bg-rose-300:active {
  --bs-btn-active-bg: rgb(253, 164, 175);
  --bs-alert-bg: rgb(253, 164, 175);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-300:active {
  --bs-border-color: rgb(253, 164, 175);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-300:disabled {
  color: rgb(253, 164, 175);
}

.disabled\:bg-rose-300:disabled {
  --bs-btn-active-bg: rgb(253, 164, 175);
  --bs-alert-bg: rgb(253, 164, 175);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-300:disabled {
  --bs-border-color: rgb(253, 164, 175);
  border-color: var(--bs-border-color);
}

.text-rose-400 {
  --bs-alert-color: rgb(251, 113, 133);
  --bs-btn-color: rgb(251, 113, 133);
  color: var(--bs-btn-color);
}

.fill-rose-400 {
  color: rgb(251, 113, 133);
}

.stroke-rose-400 {
  color: rgb(251, 113, 133);
}

.accent-rose-400 {
  accent-color: rgb(251, 113, 133);
}

.bg-rose-400 {
  --bs-btn-active-bg: rgb(251, 113, 133);
  --bs-alert-bg: rgb(251, 113, 133);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-400 {
  --bs-border-color: rgb(251, 113, 133);
  --bs-alert-border: rgb(251, 113, 133);
  border-color: var(--bs-border-color);
}

.decoration-rose-400 {
  text-decoration-color: rgb(251, 113, 133);
}

.hover\:text-rose-400:hover {
  color: rgb(251, 113, 133);
}

.hover\:bg-rose-400:hover {
  --bs-btn-active-bg: rgb(251, 113, 133);
  --bs-alert-bg: rgb(251, 113, 133);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-400:hover {
  --bs-border-color: rgb(251, 113, 133);
  --bs-alert-border-color: rgb(251, 113, 133);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-400 {
  text-decoration-color: rgb(251, 113, 133);
}

.focus\:text-rose-400:focus {
  color: rgb(251, 113, 133);
}

.focus\:bg-rose-400:focus {
  --bs-btn-active-bg: rgb(251, 113, 133);
  --bs-alert-bg: rgb(251, 113, 133);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-400:focus {
  --bs-border-color: rgb(251, 113, 133);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-400 {
  text-decoration-color: rgb(251, 113, 133);
}

.active\:text-rose-400:active {
  color: rgb(251, 113, 133);
}

.active\:bg-rose-400:active {
  --bs-btn-active-bg: rgb(251, 113, 133);
  --bs-alert-bg: rgb(251, 113, 133);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-400:active {
  --bs-border-color: rgb(251, 113, 133);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-400:disabled {
  color: rgb(251, 113, 133);
}

.disabled\:bg-rose-400:disabled {
  --bs-btn-active-bg: rgb(251, 113, 133);
  --bs-alert-bg: rgb(251, 113, 133);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-400:disabled {
  --bs-border-color: rgb(251, 113, 133);
  border-color: var(--bs-border-color);
}

.text-rose-500 {
  --bs-alert-color: rgb(244, 63, 94);
  --bs-btn-color: rgb(244, 63, 94);
  color: var(--bs-btn-color);
}

.fill-rose-500 {
  color: rgb(244, 63, 94);
}

.stroke-rose-500 {
  color: rgb(244, 63, 94);
}

.accent-rose-500 {
  accent-color: rgb(244, 63, 94);
}

.bg-rose-500 {
  --bs-btn-active-bg: rgb(244, 63, 94);
  --bs-alert-bg: rgb(244, 63, 94);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-500 {
  --bs-border-color: rgb(244, 63, 94);
  --bs-alert-border: rgb(244, 63, 94);
  border-color: var(--bs-border-color);
}

.decoration-rose-500 {
  text-decoration-color: rgb(244, 63, 94);
}

.hover\:text-rose-500:hover {
  color: rgb(244, 63, 94);
}

.hover\:bg-rose-500:hover {
  --bs-btn-active-bg: rgb(244, 63, 94);
  --bs-alert-bg: rgb(244, 63, 94);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-500:hover {
  --bs-border-color: rgb(244, 63, 94);
  --bs-alert-border-color: rgb(244, 63, 94);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-500 {
  text-decoration-color: rgb(244, 63, 94);
}

.focus\:text-rose-500:focus {
  color: rgb(244, 63, 94);
}

.focus\:bg-rose-500:focus {
  --bs-btn-active-bg: rgb(244, 63, 94);
  --bs-alert-bg: rgb(244, 63, 94);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-500:focus {
  --bs-border-color: rgb(244, 63, 94);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-500 {
  text-decoration-color: rgb(244, 63, 94);
}

.active\:text-rose-500:active {
  color: rgb(244, 63, 94);
}

.active\:bg-rose-500:active {
  --bs-btn-active-bg: rgb(244, 63, 94);
  --bs-alert-bg: rgb(244, 63, 94);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-500:active {
  --bs-border-color: rgb(244, 63, 94);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-500:disabled {
  color: rgb(244, 63, 94);
}

.disabled\:bg-rose-500:disabled {
  --bs-btn-active-bg: rgb(244, 63, 94);
  --bs-alert-bg: rgb(244, 63, 94);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-500:disabled {
  --bs-border-color: rgb(244, 63, 94);
  border-color: var(--bs-border-color);
}

.text-rose-600 {
  --bs-alert-color: rgb(225, 29, 72);
  --bs-btn-color: rgb(225, 29, 72);
  color: var(--bs-btn-color);
}

.fill-rose-600 {
  color: rgb(225, 29, 72);
}

.stroke-rose-600 {
  color: rgb(225, 29, 72);
}

.accent-rose-600 {
  accent-color: rgb(225, 29, 72);
}

.bg-rose-600 {
  --bs-btn-active-bg: rgb(225, 29, 72);
  --bs-alert-bg: rgb(225, 29, 72);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-600 {
  --bs-border-color: rgb(225, 29, 72);
  --bs-alert-border: rgb(225, 29, 72);
  border-color: var(--bs-border-color);
}

.decoration-rose-600 {
  text-decoration-color: rgb(225, 29, 72);
}

.hover\:text-rose-600:hover {
  color: rgb(225, 29, 72);
}

.hover\:bg-rose-600:hover {
  --bs-btn-active-bg: rgb(225, 29, 72);
  --bs-alert-bg: rgb(225, 29, 72);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-600:hover {
  --bs-border-color: rgb(225, 29, 72);
  --bs-alert-border-color: rgb(225, 29, 72);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-600 {
  text-decoration-color: rgb(225, 29, 72);
}

.focus\:text-rose-600:focus {
  color: rgb(225, 29, 72);
}

.focus\:bg-rose-600:focus {
  --bs-btn-active-bg: rgb(225, 29, 72);
  --bs-alert-bg: rgb(225, 29, 72);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-600:focus {
  --bs-border-color: rgb(225, 29, 72);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-600 {
  text-decoration-color: rgb(225, 29, 72);
}

.active\:text-rose-600:active {
  color: rgb(225, 29, 72);
}

.active\:bg-rose-600:active {
  --bs-btn-active-bg: rgb(225, 29, 72);
  --bs-alert-bg: rgb(225, 29, 72);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-600:active {
  --bs-border-color: rgb(225, 29, 72);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-600:disabled {
  color: rgb(225, 29, 72);
}

.disabled\:bg-rose-600:disabled {
  --bs-btn-active-bg: rgb(225, 29, 72);
  --bs-alert-bg: rgb(225, 29, 72);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-600:disabled {
  --bs-border-color: rgb(225, 29, 72);
  border-color: var(--bs-border-color);
}

.text-rose-700 {
  --bs-alert-color: rgb(190, 18, 60);
  --bs-btn-color: rgb(190, 18, 60);
  color: var(--bs-btn-color);
}

.fill-rose-700 {
  color: rgb(190, 18, 60);
}

.stroke-rose-700 {
  color: rgb(190, 18, 60);
}

.accent-rose-700 {
  accent-color: rgb(190, 18, 60);
}

.bg-rose-700 {
  --bs-btn-active-bg: rgb(190, 18, 60);
  --bs-alert-bg: rgb(190, 18, 60);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-700 {
  --bs-border-color: rgb(190, 18, 60);
  --bs-alert-border: rgb(190, 18, 60);
  border-color: var(--bs-border-color);
}

.decoration-rose-700 {
  text-decoration-color: rgb(190, 18, 60);
}

.hover\:text-rose-700:hover {
  color: rgb(190, 18, 60);
}

.hover\:bg-rose-700:hover {
  --bs-btn-active-bg: rgb(190, 18, 60);
  --bs-alert-bg: rgb(190, 18, 60);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-700:hover {
  --bs-border-color: rgb(190, 18, 60);
  --bs-alert-border-color: rgb(190, 18, 60);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-700 {
  text-decoration-color: rgb(190, 18, 60);
}

.focus\:text-rose-700:focus {
  color: rgb(190, 18, 60);
}

.focus\:bg-rose-700:focus {
  --bs-btn-active-bg: rgb(190, 18, 60);
  --bs-alert-bg: rgb(190, 18, 60);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-700:focus {
  --bs-border-color: rgb(190, 18, 60);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-700 {
  text-decoration-color: rgb(190, 18, 60);
}

.active\:text-rose-700:active {
  color: rgb(190, 18, 60);
}

.active\:bg-rose-700:active {
  --bs-btn-active-bg: rgb(190, 18, 60);
  --bs-alert-bg: rgb(190, 18, 60);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-700:active {
  --bs-border-color: rgb(190, 18, 60);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-700:disabled {
  color: rgb(190, 18, 60);
}

.disabled\:bg-rose-700:disabled {
  --bs-btn-active-bg: rgb(190, 18, 60);
  --bs-alert-bg: rgb(190, 18, 60);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-700:disabled {
  --bs-border-color: rgb(190, 18, 60);
  border-color: var(--bs-border-color);
}

.text-rose-800 {
  --bs-alert-color: rgb(159, 18, 57);
  --bs-btn-color: rgb(159, 18, 57);
  color: var(--bs-btn-color);
}

.fill-rose-800 {
  color: rgb(159, 18, 57);
}

.stroke-rose-800 {
  color: rgb(159, 18, 57);
}

.accent-rose-800 {
  accent-color: rgb(159, 18, 57);
}

.bg-rose-800 {
  --bs-btn-active-bg: rgb(159, 18, 57);
  --bs-alert-bg: rgb(159, 18, 57);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-800 {
  --bs-border-color: rgb(159, 18, 57);
  --bs-alert-border: rgb(159, 18, 57);
  border-color: var(--bs-border-color);
}

.decoration-rose-800 {
  text-decoration-color: rgb(159, 18, 57);
}

.hover\:text-rose-800:hover {
  color: rgb(159, 18, 57);
}

.hover\:bg-rose-800:hover {
  --bs-btn-active-bg: rgb(159, 18, 57);
  --bs-alert-bg: rgb(159, 18, 57);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-800:hover {
  --bs-border-color: rgb(159, 18, 57);
  --bs-alert-border-color: rgb(159, 18, 57);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-800 {
  text-decoration-color: rgb(159, 18, 57);
}

.focus\:text-rose-800:focus {
  color: rgb(159, 18, 57);
}

.focus\:bg-rose-800:focus {
  --bs-btn-active-bg: rgb(159, 18, 57);
  --bs-alert-bg: rgb(159, 18, 57);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-800:focus {
  --bs-border-color: rgb(159, 18, 57);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-800 {
  text-decoration-color: rgb(159, 18, 57);
}

.active\:text-rose-800:active {
  color: rgb(159, 18, 57);
}

.active\:bg-rose-800:active {
  --bs-btn-active-bg: rgb(159, 18, 57);
  --bs-alert-bg: rgb(159, 18, 57);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-800:active {
  --bs-border-color: rgb(159, 18, 57);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-800:disabled {
  color: rgb(159, 18, 57);
}

.disabled\:bg-rose-800:disabled {
  --bs-btn-active-bg: rgb(159, 18, 57);
  --bs-alert-bg: rgb(159, 18, 57);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-800:disabled {
  --bs-border-color: rgb(159, 18, 57);
  border-color: var(--bs-border-color);
}

.text-rose-900 {
  --bs-alert-color: rgb(136, 19, 55);
  --bs-btn-color: rgb(136, 19, 55);
  color: var(--bs-btn-color);
}

.fill-rose-900 {
  color: rgb(136, 19, 55);
}

.stroke-rose-900 {
  color: rgb(136, 19, 55);
}

.accent-rose-900 {
  accent-color: rgb(136, 19, 55);
}

.bg-rose-900 {
  --bs-btn-active-bg: rgb(136, 19, 55);
  --bs-alert-bg: rgb(136, 19, 55);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-900 {
  --bs-border-color: rgb(136, 19, 55);
  --bs-alert-border: rgb(136, 19, 55);
  border-color: var(--bs-border-color);
}

.decoration-rose-900 {
  text-decoration-color: rgb(136, 19, 55);
}

.hover\:text-rose-900:hover {
  color: rgb(136, 19, 55);
}

.hover\:bg-rose-900:hover {
  --bs-btn-active-bg: rgb(136, 19, 55);
  --bs-alert-bg: rgb(136, 19, 55);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-900:hover {
  --bs-border-color: rgb(136, 19, 55);
  --bs-alert-border-color: rgb(136, 19, 55);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-900 {
  text-decoration-color: rgb(136, 19, 55);
}

.focus\:text-rose-900:focus {
  color: rgb(136, 19, 55);
}

.focus\:bg-rose-900:focus {
  --bs-btn-active-bg: rgb(136, 19, 55);
  --bs-alert-bg: rgb(136, 19, 55);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-900:focus {
  --bs-border-color: rgb(136, 19, 55);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-900 {
  text-decoration-color: rgb(136, 19, 55);
}

.active\:text-rose-900:active {
  color: rgb(136, 19, 55);
}

.active\:bg-rose-900:active {
  --bs-btn-active-bg: rgb(136, 19, 55);
  --bs-alert-bg: rgb(136, 19, 55);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-900:active {
  --bs-border-color: rgb(136, 19, 55);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-900:disabled {
  color: rgb(136, 19, 55);
}

.disabled\:bg-rose-900:disabled {
  --bs-btn-active-bg: rgb(136, 19, 55);
  --bs-alert-bg: rgb(136, 19, 55);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-900:disabled {
  --bs-border-color: rgb(136, 19, 55);
  border-color: var(--bs-border-color);
}

.text-rose-950 {
  --bs-alert-color: rgb(76, 5, 25);
  --bs-btn-color: rgb(76, 5, 25);
  color: var(--bs-btn-color);
}

.fill-rose-950 {
  color: rgb(76, 5, 25);
}

.stroke-rose-950 {
  color: rgb(76, 5, 25);
}

.accent-rose-950 {
  accent-color: rgb(76, 5, 25);
}

.bg-rose-950 {
  --bs-btn-active-bg: rgb(76, 5, 25);
  --bs-alert-bg: rgb(76, 5, 25);
  background-color: var(--bs-btn-active-bg);
}

.border-rose-950 {
  --bs-border-color: rgb(76, 5, 25);
  --bs-alert-border: rgb(76, 5, 25);
  border-color: var(--bs-border-color);
}

.decoration-rose-950 {
  text-decoration-color: rgb(76, 5, 25);
}

.hover\:text-rose-950:hover {
  color: rgb(76, 5, 25);
}

.hover\:bg-rose-950:hover {
  --bs-btn-active-bg: rgb(76, 5, 25);
  --bs-alert-bg: rgb(76, 5, 25);
  background-color: var(--bs-btn-active-bg);
}

.hover\:border-rose-950:hover {
  --bs-border-color: rgb(76, 5, 25);
  --bs-alert-border-color: rgb(76, 5, 25);
  border-color: var(--bs-border-color);
}

.hover\:decoration-rose-950 {
  text-decoration-color: rgb(76, 5, 25);
}

.focus\:text-rose-950:focus {
  color: rgb(76, 5, 25);
}

.focus\:bg-rose-950:focus {
  --bs-btn-active-bg: rgb(76, 5, 25);
  --bs-alert-bg: rgb(76, 5, 25);
  background-color: var(--bs-btn-active-bg);
}

.focus\:border-rose-950:focus {
  --bs-border-color: rgb(76, 5, 25);
  border-color: var(--bs-border-color);
}

.focus\:decoration-rose-950 {
  text-decoration-color: rgb(76, 5, 25);
}

.active\:text-rose-950:active {
  color: rgb(76, 5, 25);
}

.active\:bg-rose-950:active {
  --bs-btn-active-bg: rgb(76, 5, 25);
  --bs-alert-bg: rgb(76, 5, 25);
  background-color: var(--bs-btn-active-bg);
}

.active\:border-rose-950:active {
  --bs-border-color: rgb(76, 5, 25);
  border-color: var(--bs-border-color);
}

.disabled\:text-rose-950:disabled {
  color: rgb(76, 5, 25);
}

.disabled\:bg-rose-950:disabled {
  --bs-btn-active-bg: rgb(76, 5, 25);
  --bs-alert-bg: rgb(76, 5, 25);
  background-color: var(--bs-btn-active-bg);
}

.disabled\:border-rose-950:disabled {
  --bs-border-color: rgb(76, 5, 25);
  border-color: var(--bs-border-color);
}

.hover\:text-white:hover {
  color: #fff;
}

.focus\:text-white:focus {
  color: #fff;
}

.active\:text-white:active {
  color: #fff;
}

.disabled\:text-white:disabled {
  color: #fff;
}

.hover\:text-black:hover {
  color: #000;
}

.focus\:text-black:focus {
  color: #000;
}

.active\:text-black:active {
  color: #000;
}

.disabled\:text-black:disabled {
  color: #000;
}

.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.normal-nums {
  font-variant-numeric: normal;
}

.ordinal {
  font-variant-numeric: ordinal;
}

.slashed-zero {
  font-variant-numeric: slashed-zero;
}

.lining-nums {
  font-variant-numeric: lining-nums;
}

.oldstyle-nums {
  font-variant-numeric: oldstyle-nums;
}

.proportional-nums {
  font-variant-numeric: proportional-nums;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.diagonal-fractions {
  font-variant-numeric: diagonal-fractions;
}

.stacked-fractions {
  font-variant-numeric: stacked-fractions;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-normal {
  letter-spacing: 0em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.line-clamp-none {
  overflow: visible;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-sm {
  border-radius: 0.125rem;
  /* 2px */
}

rounded {
  border-radius: 0.25rem;
  /* 4px */
}

.rounded-md {
  border-radius: 0.375rem;
  /* 6px */
}

.rounded-lg {
  border-radius: 0.5rem;
  /* 8px */
}

.rounded-xl {
  border-radius: 0.75rem;
  /* 12px */
}

.rounded-2xl {
  border-radius: 1rem;
  /* 16px */
}

.rounded-3xl {
  border-radius: 1.5rem;
  /* 24px */
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-s-none {
  border-start-start-radius: 0px;
  border-end-start-radius: 0px;
}

.rounded-s-sm {
  border-start-start-radius: 0.125rem;
  /* 2px */
  border-end-start-radius: 0.125rem;
  /* 2px */
}

.rounded-s {
  border-start-start-radius: 0.25rem;
  /* 4px */
  border-end-start-radius: 0.25rem;
  /* 4px */
}

.rounded-s-md {
  border-start-start-radius: 0.375rem;
  /* 6px */
  border-end-start-radius: 0.375rem;
  /* 6px */
}

.rounded-s-lg {
  border-start-start-radius: 0.5rem;
  /* 8px */
  border-end-start-radius: 0.5rem;
  /* 8px */
}

.rounded-s-xl {
  border-start-start-radius: 0.75rem;
  /* 12px */
  border-end-start-radius: 0.75rem;
  /* 12px */
}

.rounded-s-2xl {
  border-start-start-radius: 1rem;
  /* 16px */
  border-end-start-radius: 1rem;
  /* 16px */
}

.rounded-s-3xl {
  border-start-start-radius: 1.5rem;
  /* 24px */
  border-end-start-radius: 1.5rem;
  /* 24px */
}

.rounded-s-full {
  border-start-start-radius: 9999px;
  border-end-start-radius: 9999px;
}

.rounded-e-none {
  border-start-end-radius: 0px;
  border-end-end-radius: 0px;
}

.rounded-e-sm {
  border-start-end-radius: 0.125rem;
  /* 2px */
  border-end-end-radius: 0.125rem;
  /* 2px */
}

.rounded-e {
  border-start-end-radius: 0.25rem;
  /* 4px */
  border-end-end-radius: 0.25rem;
  /* 4px */
}

.rounded-e-md {
  border-start-end-radius: 0.375rem;
  /* 6px */
  border-end-end-radius: 0.375rem;
  /* 6px */
}

.rounded-e-lg {
  border-start-end-radius: 0.5rem;
  /* 8px */
  border-end-end-radius: 0.5rem;
  /* 8px */
}

.rounded-e-xl {
  border-start-end-radius: 0.75rem;
  /* 12px */
  border-end-end-radius: 0.75rem;
  /* 12px */
}

.rounded-e-2xl {
  border-start-end-radius: 1rem;
  /* 16px */
  border-end-end-radius: 1rem;
  /* 16px */
}

.rounded-e-3xl {
  border-start-end-radius: 1.5rem;
  /* 24px */
  border-end-end-radius: 1.5rem;
  /* 24px */
}

.rounded-e-full {
  border-start-end-radius: 9999px;
  border-end-end-radius: 9999px;
}

.rounded-t-none {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.rounded-t-sm {
  border-top-left-radius: 0.125rem;
  /* 2px */
  border-top-right-radius: 0.125rem;
  /* 2px */
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  /* 4px */
  border-top-right-radius: 0.25rem;
  /* 4px */
}

.rounded-t-md {
  border-top-left-radius: 0.375rem;
  /* 6px */
  border-top-right-radius: 0.375rem;
  /* 6px */
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  /* 8px */
  border-top-right-radius: 0.5rem;
  /* 8px */
}

.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  /* 12px */
  border-top-right-radius: 0.75rem;
  /* 12px */
}

.rounded-t-2xl {
  border-top-left-radius: 1rem;
  /* 16px */
  border-top-right-radius: 1rem;
  /* 16px */
}

.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  /* 24px */
  border-top-right-radius: 1.5rem;
  /* 24px */
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-r-sm {
  border-top-right-radius: 0.125rem;
  /* 2px */
  border-bottom-right-radius: 0.125rem;
  /* 2px */
}

.rounded-r {
  border-top-right-radius: 0.25rem;
  /* 4px */
  border-bottom-right-radius: 0.25rem;
  /* 4px */
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  /* 6px */
  border-bottom-right-radius: 0.375rem;
  /* 6px */
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  /* 8px */
  border-bottom-right-radius: 0.5rem;
  /* 8px */
}

.rounded-r-xl {
  border-top-right-radius: 0.75rem;
  /* 12px */
  border-bottom-right-radius: 0.75rem;
  /* 12px */
}

.rounded-r-2xl {
  border-top-right-radius: 1rem;
  /* 16px */
  border-bottom-right-radius: 1rem;
  /* 16px */
}

.rounded-r-3xl {
  border-top-right-radius: 1.5rem;
  /* 24px */
  border-bottom-right-radius: 1.5rem;
  /* 24px */
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-b-sm {
  border-bottom-right-radius: 0.125rem;
  /* 2px */
  border-bottom-left-radius: 0.125rem;
  /* 2px */
}

.rounded-b {
  border-bottom-right-radius: 0.25rem;
  /* 4px */
  border-bottom-left-radius: 0.25rem;
  /* 4px */
}

.rounded-b-md {
  border-bottom-right-radius: 0.375rem;
  /* 6px */
  border-bottom-left-radius: 0.375rem;
  /* 6px */
}

.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  /* 8px */
  border-bottom-left-radius: 0.5rem;
  /* 8px */
}

.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  /* 12px */
  border-bottom-left-radius: 0.75rem;
  /* 12px */
}

.rounded-b-2xl {
  border-bottom-right-radius: 1rem;
  /* 16px */
  border-bottom-left-radius: 1rem;
  /* 16px */
}

.rounded-b-3xl {
  border-bottom-right-radius: 1.5rem;
  /* 24px */
  border-bottom-left-radius: 1.5rem;
  /* 24px */
}

.rounded-b-full {
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-l-sm {
  border-top-left-radius: 0.125rem;
  /* 2px */
  border-bottom-left-radius: 0.125rem;
  /* 2px */
}

.rounded-l {
  border-top-left-radius: 0.25rem;
  /* 4px */
  border-bottom-left-radius: 0.25rem;
  /* 4px */
}

.rounded-l-md {
  border-top-left-radius: 0.375rem;
  /* 6px */
  border-bottom-left-radius: 0.375rem;
  /* 6px */
}

.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  /* 8px */
  border-bottom-left-radius: 0.5rem;
  /* 8px */
}

.rounded-l-xl {
  border-top-left-radius: 0.75rem;
  /* 12px */
  border-bottom-left-radius: 0.75rem;
  /* 12px */
}

.rounded-l-2xl {
  border-top-left-radius: 1rem;
  /* 16px */
  border-bottom-left-radius: 1rem;
  /* 16px */
}

.rounded-l-3xl {
  border-top-left-radius: 1.5rem;
  /* 24px */
  border-bottom-left-radius: 1.5rem;
  /* 24px */
}

.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-ss-none {
  border-start-start-radius: 0px;
}

.rounded-ss-sm {
  border-start-start-radius: 0.125rem;
  /* 2px */
}

.rounded-ss {
  border-start-start-radius: 0.25rem;
  /* 4px */
}

.rounded-ss-md {
  border-start-start-radius: 0.375rem;
  /* 6px */
}

.rounded-ss-lg {
  border-start-start-radius: 0.5rem;
  /* 8px */
}

.rounded-ss-xl {
  border-start-start-radius: 0.75rem;
  /* 12px */
}

.rounded-ss-2xl {
  border-start-start-radius: 1rem;
  /* 16px */
}

.rounded-ss-3xl {
  border-start-start-radius: 1.5rem;
  /* 24px */
}

.rounded-ss-full {
  border-start-start-radius: 9999px;
}

.rounded-se-none {
  border-start-end-radius: 0px;
}

.rounded-se-sm {
  border-start-end-radius: 0.125rem;
  /* 2px */
}

.rounded-se {
  border-start-end-radius: 0.25rem;
  /* 4px */
}

.rounded-se-md {
  border-start-end-radius: 0.375rem;
  /* 6px */
}

.rounded-se-lg {
  border-start-end-radius: 0.5rem;
  /* 8px */
}

.rounded-se-xl {
  border-start-end-radius: 0.75rem;
  /* 12px */
}

.rounded-se-2xl {
  border-start-end-radius: 1rem;
  /* 16px */
}

.rounded-se-3xl {
  border-start-end-radius: 1.5rem;
  /* 24px */
}

.rounded-se-full {
  border-start-end-radius: 9999px;
}

.rounded-ee-none {
  border-end-end-radius: 0px;
}

.rounded-ee-sm {
  border-end-end-radius: 0.125rem;
  /* 2px */
}

.rounded-ee {
  border-end-end-radius: 0.25rem;
  /* 4px */
}

.rounded-ee-md {
  border-end-end-radius: 0.375rem;
  /* 6px */
}

.rounded-ee-lg {
  border-end-end-radius: 0.5rem;
  /* 8px */
}

.rounded-ee-xl {
  border-end-end-radius: 0.75rem;
  /* 12px */
}

.rounded-ee-2xl {
  border-end-end-radius: 1rem;
  /* 16px */
}

.rounded-ee-3xl {
  border-end-end-radius: 1.5rem;
  /* 24px */
}

.rounded-ee-full {
  border-end-end-radius: 9999px;
}

.rounded-es-none {
  border-end-start-radius: 0px;
}

.rounded-es-sm {
  border-end-start-radius: 0.125rem;
  /* 2px */
}

.rounded-es {
  border-end-start-radius: 0.25rem;
  /* 4px */
}

.rounded-es-md {
  border-end-start-radius: 0.375rem;
  /* 6px */
}

.rounded-es-lg {
  border-end-start-radius: 0.5rem;
  /* 8px */
}

.rounded-es-xl {
  border-end-start-radius: 0.75rem;
  /* 12px */
}

.rounded-es-2xl {
  border-end-start-radius: 1rem;
  /* 16px */
}

.rounded-es-3xl {
  border-end-start-radius: 1.5rem;
  /* 24px */
}

.rounded-es-full {
  border-end-start-radius: 9999px;
}

.rounded-tl-none {
  border-top-left-radius: 0px;
}

.rounded-tl-sm {
  border-top-left-radius: 0.125rem;
  /* 2px */
}

.rounded-tl {
  border-top-left-radius: 0.25rem;
  /* 4px */
}

.rounded-tl-md {
  border-top-left-radius: 0.375rem;
  /* 6px */
}

.rounded-tl-lg {
  border-top-left-radius: 0.5rem;
  /* 8px */
}

.rounded-tl-xl {
  border-top-left-radius: 0.75rem;
  /* 12px */
}

.rounded-tl-2xl {
  border-top-left-radius: 1rem;
  /* 16px */
}

.rounded-tl-3xl {
  border-top-left-radius: 1.5rem;
  /* 24px */
}

.rounded-tl-full {
  border-top-left-radius: 9999px;
}

.rounded-tr-none {
  border-top-right-radius: 0px;
}

.rounded-tr-sm {
  border-top-right-radius: 0.125rem;
  /* 2px */
}

.rounded-tr {
  border-top-right-radius: 0.25rem;
  /* 4px */
}

.rounded-tr-md {
  border-top-right-radius: 0.375rem;
  /* 6px */
}

.rounded-tr-lg {
  border-top-right-radius: 0.5rem;
  /* 8px */
}

.rounded-tr-xl {
  border-top-right-radius: 0.75rem;
  /* 12px */
}

.rounded-tr-2xl {
  border-top-right-radius: 1rem;
  /* 16px */
}

.rounded-tr-3xl {
  border-top-right-radius: 1.5rem;
  /* 24px */
}

.rounded-tr-full {
  border-top-right-radius: 9999px;
}

.rounded-br-none {
  border-bottom-right-radius: 0px;
}

.rounded-br-sm {
  border-bottom-right-radius: 0.125rem;
  /* 2px */
}

.rounded-br {
  border-bottom-right-radius: 0.25rem;
  /* 4px */
}

.rounded-br-md {
  border-bottom-right-radius: 0.375rem;
  /* 6px */
}

.rounded-br-lg {
  border-bottom-right-radius: 0.5rem;
  /* 8px */
}

.rounded-br-xl {
  border-bottom-right-radius: 0.75rem;
  /* 12px */
}

.rounded-br-2xl {
  border-bottom-right-radius: 1rem;
  /* 16px */
}

.rounded-br-3xl {
  border-bottom-right-radius: 1.5rem;
  /* 24px */
}

.rounded-br-full {
  border-bottom-right-radius: 9999px;
}

.rounded-bl-none {
  border-bottom-left-radius: 0px;
}

.rounded-bl-sm {
  border-bottom-left-radius: 0.125rem;
  /* 2px */
}

.rounded-bl {
  border-bottom-left-radius: 0.25rem;
  /* 4px */
}

.rounded-bl-md {
  border-bottom-left-radius: 0.375rem;
  /* 6px */
}

.rounded-bl-lg {
  border-bottom-left-radius: 0.5rem;
  /* 8px */
}

.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem;
  /* 12px */
}

.rounded-bl-2xl {
  border-bottom-left-radius: 1rem;
  /* 16px */
}

.rounded-bl-3xl {
  border-bottom-left-radius: 1.5rem;
  /* 24px */
}

.rounded-bl-full {
  border-bottom-left-radius: 9999px;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.resize {
  resize: both;
}

a {
  text-decoration: none;
}

.btn {
  border-radius: 0;
}
.btn.btn-primary {
  color: #fff;
}
.btn.btn-primary:focus, .btn.btn-primary:hover {
  color: #fff;
}
.btn.btn-secondary {
  color: #fff;
}
.btn.btn-secondary.bg-opt-20 {
  background-color: rgba(0, 82, 103, 0.2);
  border-color: rgba(0, 82, 103, 0.2);
  color: #005267;
}

.gt_white_content {
  width: 195px !important;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1 ;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  z-index: 1065;
}
.select2-container.select2-container--open {
  z-index: 1069;
}

.select2-container[dir=ltr] {
  width: 100% !important;
}

.select2-container.select2-container--focus .select2-selection {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 50px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0.8rem;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  color: #fff !important;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: #F6F8FD;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-dropdown.select2-dropdown--below {
  box-shadow: 0 7px 15px 2px rgba(0, 0, 0, 0.07);
}

.select2-dropdown.select2-dropdown--above {
  box-shadow: 0 -11px 15px 2px rgba(0, 0, 0, 0.07);
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #6c757d;
}

.select2-results__option {
  transition: all 0.2s linear;
  padding: 0.5rem 1rem;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
  animation: fadeIn;
  animation-duration: 0.3s;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 0.5rem;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border-color: transparent !important;
  border-radius: 8px;
  color: #6c757d;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #2B6685 !important;;
  border-radius: 10px;
}

[select2-theme=light] .select2-container--default .select2-selection--single {
  background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  line-height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  position: absolute;
  top: 1px;
  right: 8px;
  width: 20px;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  display: block;
  font-weight: 900;
  font-size: 18px;
  color: #adb5bd;
  transition: all 0.2s linear;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
  transform: rotate(-180deg);
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default .select2-selection--multiple {
  background-color: #2B6685;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: text;
  padding: 0.5rem 0.8rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: 2b6685;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0.15rem 0.3rem;
  color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #dc3545;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
  transition: all 0.2s linear;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #921925;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(43, 102, 133, 0.5);
  color: #fff;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #2B6685;
  color: #fff;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #fff;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.alert {
  display: flex;
  padding: 1;
}

.alert .close:focus,
.alert .close:hover {
  opacity: 1;
}

.alert .alert-icon {
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.alert .alert-message {
  box-sizing: border-box;
  padding: 0.95rem;
  padding-right: 2rem;
  width: 100%;
}

.alert.alert-outline,
.alert.alert-outline-coloured {
  --bs-alert-bg: #fff;
  --bs-alert-color: var(--bs-dark);
  background: var(--bs-alert-bg);
  color: var(--bs-alert-color);
}

.alert.alert-outline hr,
.alert.alert-outline-coloured hr {
  border-top-color: #ced4da;
}

.alert.alert-outline .close:focus,
.alert.alert-outline .close:hover,
.alert.alert-outline-coloured .close:focus,
.alert.alert-outline-coloured .close:hover {
  color: #343a40;
}

.alert.alert-outline .alert-message,
.alert.alert-outline-coloured .alert-message {
  border: 1px solid #ced4da;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0.2rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0.2rem;
}

.alert.alert-outline .alert-message:not(:nth-child(2)),
.alert.alert-outline-coloured .alert-message:not(:nth-child(2)) {
  border-bottom-left-radius: 0;
  border-left: 0;
  border-top-left-radius: 0;
}

.alert.alert-outline .alert-icon,
.alert.alert-outline-coloured .alert-icon {
  --bs-alert-color: var(--bs-dark);
  border-bottom-left-radius: 0.2rem;
  border-top-left-radius: 0.2rem;
  color: var(--bs-alert-color);
}

.alert.alert-outline.alert-primary .alert-icon,
.alert.alert-outline-coloured.alert-primary .alert-icon {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.alert.alert-outline.alert-primary .alert-message,
.alert.alert-outline-coloured.alert-primary .alert-message {
  border-color: var(--bs-primary);
}

.alert.alert-outline.alert-secondary .alert-icon,
.alert.alert-outline-coloured.alert-secondary .alert-icon {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}

.alert.alert-outline.alert-secondary .alert-message,
.alert.alert-outline-coloured.alert-secondary .alert-message {
  border-color: var(--bs-secondary);
}

.alert.alert-outline.alert-success .alert-icon,
.alert.alert-outline-coloured.alert-success .alert-icon {
  background-color: var(--bs-success);
  color: var(--bs-white);
}

.alert.alert-outline.alert-success .alert-message,
.alert.alert-outline-coloured.alert-success .alert-message {
  border-color: var(--bs-success);
}

.alert.alert-outline.alert-info .alert-icon,
.alert.alert-outline-coloured.alert-info .alert-icon {
  background-color: var(--bs-info);
  color: var(--bs-white);
}

.alert.alert-outline.alert-info .alert-message,
.alert.alert-outline-coloured.alert-info .alert-message {
  border-color: var(--bs-info);
}

.alert.alert-outline.alert-warning .alert-icon,
.alert.alert-outline-coloured.alert-warning .alert-icon {
  background-color: var(--bs-warning);
  color: var(--bs-white);
}

.alert.alert-outline.alert-warning .alert-message,
.alert.alert-outline-coloured.alert-warning .alert-message {
  border-color: var(--bs-warning);
}

.alert.alert-outline.alert-danger .alert-icon,
.alert.alert-outline-coloured.alert-danger .alert-icon {
  background-color: var(--bs-danger);
  color: var(--bs-white);
}

.alert.alert-outline.alert-danger .alert-message,
.alert.alert-outline-coloured.alert-danger .alert-message {
  border-color: var(--bs-danger);
}

.alert.alert-outline.alert-light .alert-icon,
.alert.alert-outline-coloured.alert-light .alert-icon {
  background-color: var(--bs-white);
  color: var(--bs-dark);
}

.alert.alert-outline.alert-light .alert-message,
.alert.alert-outline-coloured.alert-light .alert-message {
  border-color: var(--bs-white);
  color: var(--bs-dark);
}

.alert.alert-outline.alert-dark .alert-icon,
.alert.alert-outline-coloured.alert-dark .alert-icon {
  background-color: var(--bs-dark);
  color: var(--bs-white);
}

.alert.alert-outline.alert-dark .alert-message,
.alert.alert-outline-coloured.alert-dark .alert-message {
  border-color: var(--bs-dark);
}

body {
  background-color: #F6F8FD;
}

.content-wrapper {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .content-wrapper {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .content-wrapper {
    margin-top: 130px;
  }
}

.section-title {
  font-size: 21px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.section-title span {
  color: #2B6685;
}

.nav {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 1rem;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.nav::-webkit-scrollbar {
  display: none;
}
.nav .nav-item {
  position: relative;
  white-space: pre;
  display: flex;
}
.nav .nav-item .nav-link {
  padding: 0;
  padding-bottom: 0.8rem;
  color: #7F7F7F;
  position: relative;
  border: 0;
  background-color: transparent;
}
.nav .nav-item .nav-link.active {
  color: #2B6685;
  font-weight: 500;
}
.nav .nav-item .nav-link.active::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color:#2B6685;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.accordion .accordion-item {
  border-radius: 20px !important;
  border: 0 !important;
  margin-bottom: 1rem !important;
}
.accordion .accordion-item .accordion-button {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 1.25rem !important;
  color: #31353B !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.accordion .accordion-item .accordion-button.collapsed {
  border-radius: 20px !important;
}
.accordion .accordion-item .accordion-collapse {
  --bs-accordion-border-radius: 20px !important;
  --bs-accordion-border-radius: 20px !important;
  border-bottom-right-radius: var(--bs-accordion-border-radius) !important;
  border-bottom-left-radius: var(--bs-accordion-border-radius) !important;
  background-color: #2B6685 !important;
  color: #fff !important;
}
.accordion .accordion-item .accordion-collapse .accordion-body span {
  color: white !important;
}

.input-password {
  position: relative;
}
.input-password .form-control {
  padding-right: 2.5rem;
}
.input-password .input-password-eye-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: #6c757d;
  transition: all 0.3s linear;
}
.input-password .input-password-eye-icon::before {
  content: "\f06e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
}
.input-password .input-password-eye-icon.show::before {
  content: "\f070";
}
.input-password .input-password-eye-icon:hover {
  color: #2B6685;
}

.form-control {
  outline: none;
  box-shadow: none;
  border: 1px solid #2B6685;
  padding: 1rem 0.8rem;
  border-radius: 10px;
}
.form-control::placeholder {
  color: #aaa;
}
.form-control:focus {
  box-shadow: none;
}

.input-group .input-group-text {
  border-radius: 10px;
  border-color: #E5E7E9;
  transition: border-color 0.15s ease-in-out;
}
.input-group .input-group-text.focused {
  border-color: #cad69f;
}
.input-group .form-control {
  border-left: 0;
}

.error-message-input {
  display: block;
  color: var(--bs-danger);
  font-size: 14px;
  font-weight: 500;
}
.error-message-input span {
  display: block;
  margin-top: 5px;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
.sidebar-opened.active {
  overflow-y: hidden;
}

.gt_white_content .gt_languages {
  max-height: unset !important;
}

:root {
  --bs-body-font-family: "Work Sans", sans-serif;
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1067;
  background-color: #fff;
  padding: 0;
  box-shadow: 0px 3px 4px rgba(114, 114, 114, 0.15);
}
.navbar .top-nav {
  width: 100%;
  padding: 0.5rem 0;
  background: linear-gradient(90deg, #2B6685 6.32%, #D8B049 94.65%);
  font-size: 14px;
  padding: 0.5rem 0;
  display: none;
}
@media screen and (min-width: 1200px) {
  .navbar .top-nav {
    display: block;
  }
}
.navbar .top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .top-nav .nav-right-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.navbar .top-nav .nav-right-menu .gt_switcher-popup span {
  color: #fff !important;
}
.navbar .navbar-inner {
  width: 100%;
}
.navbar .navbar-inner .container {
  padding: 0;
}
.navbar .navbar-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
}
.navbar .navbar-content .navbar-brand {
  display: inline-block;
  width: 150px;
  margin-right: 0;
}
@media screen and (min-width: 576px) {
  .navbar .navbar-content .navbar-brand {
    width: 90px;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-brand {
    width: 150px;
    margin-right: 1rem;
  }
}
.navbar .navbar-content .navbar-brand img {
  width: 150px;
}
.navbar .navbar-content .navbar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background-color: #fff;
  z-index: 1010;
  box-shadow: -2px 2px 3px rgba(133, 133, 133, 0.15);
  transition: right 0.3s linear;
}
.navbar .navbar-content .navbar-menu .btn-toggle-navbar-menu {
  width: 30px;
  height: 30px;
  background-color: #ebebeb;
  color: #212529;
  border-radius: 0;
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-menu .btn-toggle-navbar-menu {
    display: none;
  }
}
.navbar .navbar-content .navbar-menu .navbar-menu-content {
  width: 100%;
  margin-left: 10px;
  max-height: 90vh;
  overflow-y: auto;

  display: block;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
}

.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item {
  width: 100%;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .menu-link {
  color: #212121;
  font-weight: 500;
  white-space: nowrap;         /* cegah teks turun */
  padding: 0.5rem 1rem;        /* pindahkan padding ke link */
  display: inline-block;
}
.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .other-menu {
  position: static;
  top: 0;
  left: 100%;
  width: 100%;
  background: var(--bs-primary);
  margin: 0;
  padding: 0;
  /* border-radius: 10px; */
  /* padding: .5rem; */
  visibility: visible;
  opacity: 1;
  transition: opacity .2s linear;
  border-left: 1px solid #f1f1f1;
}


@media screen and (min-width: 768px){
  .navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .other-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    background: var(--bs-primary);
    margin: 0;
    padding: 0;
    /* border-radius: 10px; */
    /* padding: .5rem; */
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s linear;
    /* border: 1px solid #f1f1f1; */
  }

}

.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu li.position-relative:hover .other-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .other-menu li:last-child a {
 margin-bottom: 0;
}
.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .other-menu a {
  color: #fff;
  font-size: 14px;
  /* padding: .5rem; */
  /* margin-bottom: .5rem; */
  display: block;
}

.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu {
  /* padding: 0.8rem; */
  border-radius: 5px;
  background-color: #f1f1f1;
  position: relative;
}

.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu li {
  padding: .4rem .8rem;
}

.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .sub-menu-item {
  color: #212121;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  /* margin-bottom: 15px; */
}
.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .sub-menu-item:hover {
  color: #2B6685;
}
.navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .sub-menu-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #2B6685;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  }
  .navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .sub-menu-item {
    color: #fff;
  }
  .navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .sub-menu .sub-menu-item:hover {
    color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item {

    padding: 0;
    width: auto;
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-menu .navbar-menu-content {
    display: flex;
    overflow-y: unset;
    max-height: unset;
  }
}

@media screen and (max-width: 1400px) {
  .navbar .navbar-content .navbar-menu .navbar-menu-content {
    font-size: 14px;
  }
  .navbar .navbar-content .navbar-menu .navbar-menu-content .menu-item .menu-link {
    padding: 0.5rem 0.5rem;
  }
}

.navbar .navbar-content .navbar-menu.show {
  right: 0;
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-menu {
    position: unset;
    box-shadow: none;
    flex: 1;
  }
}
.navbar .navbar-content .navbar-search {
  display: flex;
  margin-left: auto;
  width: 294px;
}
.navbar .navbar-content .navbar-search .search-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2B6685;
  color: #fff;
  margin-left: auto;
}
.navbar .navbar-content .navbar-search .search-icon i {
  font-size: 15px;
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-search .search-icon {
    width: 38px;
    height: 38px;
    justify-content: start;
    border-radius: 20px 0 0 20px;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 1px solid rgb(229, 231, 233);
    border-right: 0;
    color: #2B6685;
    margin-left: 0;
  }
}
.navbar .navbar-content .navbar-search .search-content {
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: #f8f8f8;
  padding: 0.8rem 1rem;
  transition: top 0.3s linear;
  z-index: -1;
  box-shadow: 0px 3px 4px rgba(114, 114, 114, 0.15);
}
.navbar .navbar-content .navbar-search .search-content .form-control {
  border: 0;
  box-shadow: none;
  outline: none;
}
.navbar .navbar-content .navbar-search .search-content .form-control::placeholder {
  color: #b1b1b1;
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-search .search-content .form-control {
    padding: 0.5rem 0;
    background-color: transparent;
    font-size: 14px;
  }
}
.navbar .navbar-content .navbar-search .search-content.show {
  top: 55px;
}
@media screen and (min-width: 768px) {
  .navbar .navbar-content .navbar-search .search-content.show {
    top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-search .search-content {
    height: 38px;
    position: unset;
    z-index: 1;
    box-shadow: none;
    padding: 0;
    border-radius: 0 20px 20px 0;
    border: 1px solid rgba(114, 114, 114, 0.15);
    border-left: 0;
    overflow: hidden;
    background-color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .navbar .navbar-content .navbar-search {
    width: 230px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-search {
    width: 295px;
  }
}
.navbar .navbar-content .navbar-right {
  display: flex;
  gap: 0.5rem;
}
.navbar .navbar-content .navbar-right .btn-toggle-navbar-menu {
  background-color: #2B6685;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content .navbar-right .btn-toggle-navbar-menu {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-content {
    gap: 1rem;
  }
}
.navbar .nav-dropdown {
  display: inline-block;
}
.navbar .nav-dropdown .nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  background-color: #2b6685;
  border-radius: 20px;
  padding: 0.3rem;
}
.navbar .nav-dropdown .nav-dropdown-btn .nav-dropdown-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .nav-dropdown .nav-dropdown-btn .nav-dropdown-img img {
  height: 100%;
}
.navbar .nav-dropdown .nav-dropdown-btn .nav-dropdown-title {
  color: #fff;
  padding-right: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  flex: 1;
}
.navbar .nav-dropdown .nav-dropdown-content {
  min-width: 200px;
  background-color: #2b6685;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 100%;
  right: 10px;
  display: none;
  transition: all 0.2s linear;
}
.navbar .nav-dropdown .nav-dropdown-content .nav-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0.6rem 0;
  padding-top: 0.8rem;
}
.navbar .nav-dropdown .nav-dropdown-content .nav-dropdown-menu .nav-dropdown-item {
  width: 100%;
  margin-bottom: 10px;
  padding: 0 0.6rem;
}
.navbar .nav-dropdown .nav-dropdown-content .nav-dropdown-menu .nav-dropdown-item .nav-dropdown-item-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  font-weight: 500;
  font-size: 16px;
}
.navbar .nav-dropdown .nav-dropdown-content .nav-dropdown-menu .nav-dropdown-item:last-child {
  margin-bottom: 0;
}

.logo-SMEsta{
    width: 50px;
}

.product-item {
  width: 100%;
  max-width: 190px;
  position: relative;
}
.product-item .product-header {
  position: relative;
  width: 100%;
}
.product-item .product-header .product-img {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7e9;
}
.product-item .product-header .product-img img {
  height: 100%;
}
.product-item .product-header .product-whatsapp {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 25px;
  background-color: #f6f8fd;
  color: #2B6685;
  position: absolute;
  bottom: -20px;
  right: 15px;
  box-shadow: 0 0 3px rgba(211, 211, 211, 0.8);
}
.product-item .product-header .product-whatsapp i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item .product-body {
  padding-top: 2rem;
}
.product-item .product-body .product-merchant {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.product-item .product-body .product-merchant .merchant-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-item .product-body .product-merchant .merchant-img img {
  height: 100%;
}
.product-item .product-body .product-merchant .merchant-info {
  flex: 1;
  width: 100%;
}
.product-item .product-body .product-merchant .merchant-info h6, .product-item .product-body .product-merchant .merchant-info .h6 {
  font-size: 14px;
}
.product-item .product-body .product-merchant .merchant-info span {
  font-size: 12px;
}
.footer .footer-content {
  background-color: rgb(237, 243, 244);
  padding: 0.8rem 0;
}
.footer .footer-content .footer-list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer .footer-content .footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer-content .footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.footer .footer-content .footer-list .footer-logo {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 0.8rem;
}
.footer .footer-content .footer-list .footer-info p {
  font-size: 16px;
}
.footer .footer-content .footer-list .footer-info span {
  font-size: 14px;
}
.footer .footer-content .footer-list .footer-logo {
  margin-bottom: 1rem;
}
.footer .footer-content .footer-list .footer-logo .logo-img {
  width: 180px;
}
@media screen and (min-width: 992px) {
  .footer .footer-content .footer-list .footer-logo .logo-img {
    width: 250px;
  }
}
.footer .footer-content .footer-list .footer-logo .logo-img img {
  width: 100%;
}
.footer .footer-content .footer-list .footer-item {
  width: 100%;
  margin-bottom: 1rem;
}
.footer .footer-content .footer-list .footer-item #language_translator_footer {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer .footer-content .footer-list .footer-item {
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer-content .footer-list .footer-item {
    width: 290px;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer-content .footer-list .footer-item {
    width: 310px;
  }
}
.footer .footer-content .footer-list .footer-item .item-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer-content .footer-list .footer-item .item-menu li {
  margin-bottom: 0.2rem;
}
.footer .footer-content .footer-list .footer-item .item-menu li:first-child {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.footer .footer-content .footer-list .footer-item .item-menu li a {
    display: flex;
    align-items: center;
    gap: 8px; /* jarak ikon & teks seragam */
    text-decoration: none;
}

.footer .footer-content .footer-list .footer-item .item-menu li i {
    min-width: 20px; /* biar semua ikon sejajar */
    text-align: center;
}


@media screen and (min-width: 768px) {
  .footer .footer-content .footer-list .footer-item .item-menu li:first-child {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}
.footer .footer-content .footer-list .footer-item .item-menu li a {
  color: #212121;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .footer .footer-content .footer-list .footer-item .item-menu li a {
    font-size: 16px;
  }
}
.footer .footer-content .footer-list .footer-item .item-menu li a .icon {
  color: #7F7F7F;
  font-size: 18px;
  margin-right: 0.3rem;
}
.footer .footer-copyright {
  padding: 0.5rem;
  background: linear-gradient(90deg, #2B6685 6.32%, #D8B049 94.65%);
}
.footer .footer-copyright span {
  display: block;
  white-space: pre-wrap;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.icon-follow-us{
    width: 18px;
}

.event-item {
  position: relative;
}
.event-item .event-banner {
  width: 100%;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-item .event-banner img {
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .event-item .event-banner {
    height: 260px;
  }
}
.event-item .event-body {
  padding: 0.8rem 0;
}
.event-item .event-body h5, .event-item .event-body .h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .event-item .event-body h5, .event-item .event-body .h5 {
    font-size: 18px;
  }
}
.event-item .event-body .detail {
  display: block;
  font-size: 11px;
  color: #7F7F7F;
  margin-bottom: 0.8rem;
}
.event-item .event-body .detail span {
  color: #005267;
}
@media screen and (min-width: 768px) {
  .event-item .event-body .detail {
    font-size: 14px;
  }
}
.event-item .event-body .author {
  font-size: 12px;
  color: #7F7F7F;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.event-item .event-body .author span {
  color: #005267;
}
@media screen and (min-width: 768px) {
  .event-item .event-body .author {
    font-size: 14px;
  }
}

.training-item {
  position: relative;
  padding: 0.8rem;
  background-color: #fff;
}
.training-item h5, .training-item .h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.training-item .detail {
  font-size: 11px;
  color: #7F7F7F;
}
.training-item .detail span {
  color: #005267;
}
.training-item .author {
  font-size: 12px;
  color: #7F7F7F;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1rem 0;
}
.training-item .author span {
  color: #005267;
}
.training-item .training-body {
  padding: 1rem 0;
}

body.on-loading {
  overflow: hidden;
}

.loading-page {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: bblur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -10;
  visibility: hidden;
}

body.on-loading .loading-page {
  z-index: 1070;
  visibility: visible;
}

.product-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .product-content {
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .product-content {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .product-content {
    gap: 1.2rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1400px) {
  .product-content {
    gap: 1.2rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.section-superriority {
  position: relative;
  background-color: rgb(237, 243, 244);
  padding: 0.8rem;
}
.section-superriority .container {
  position: relative;
  z-index: 1;
}
.section-superriority::before {
  content: "";
  width: 150px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/keunggulan/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .section-superriority::before {
    width: 395px;
    height: 185px;
    background-position: top;
  }
}
.section-superriority .superriority-content .slick-prev {
  left: 0;
}
.section-superriority .superriority-content .slick-arrow {
  z-index: 100;
}
.section-superriority .superriority-content .slick-arrow.slick-disabled::before {
  color: white;
}
.section-superriority .superriority-content .slick-arrow::before {
  color: #676767;
  font-size: 40px;
}
.section-superriority .superriority-content .slick-next {
  right: 20px;
}
.section-superriority .superriority-content .superriority-item {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.section-superriority .superriority-content .superriority-item span {
  flex: 1;
  display: block;
  text-align: center;
}
.section-superriority .superriority-content .superriority-item .logo {
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-superriority .superriority-content .superriority-item .logo img {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .section-superriority .superriority-content .superriority-item {
    width: 330px;
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .section-superriority .superriority-content .superriority-item {
    width: 300px;
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .section-superriority .superriority-content .superriority-item {
    width: 245px;
    font-size: 16px;
    margin-bottom: 0;
  }
}

.section-services {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #2B6685 6.32%, #D8B049 94.65%);
  margin-bottom: 2rem;
}
.section-services .container {
  padding: 0.8rem;
}
.section-services .service-content {
  width: 100%;
}
.section-services .service-content .service-item {
  padding: 0.5rem 1.5rem;
  color: #fff;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .section-services .service-content .service-item {
    min-width: 200px;
  }
  .section-services .service-content .service-item i {
    font-size: 30px;
  }
  .section-services .service-content .service-item span {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .section-services .service-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.icon-services{
    width: 30px;
}

.slider {
  padding-top: 10px;
  min-height: 230px;
}
@media screen and (min-width: 768px) {
  .slider {
    min-height: 430;
  }
}
.slider .slider-content {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}
.slider .slider-content .slider-item {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  position: relative;
}
.slider .slider-content .slider-item .slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 1rem;
  opacity: 0;
  transition: all 0.2s linear;
}
.slider .slider-content .slider-item .slider-overlay .slider-category span {
  display: inline;
  background-color: #b30202;
  font-size: 9px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .slider .slider-content .slider-item .slider-overlay .slider-category span {
    font-size: 14px;
  }
}
.slider .slider-content .slider-item .slider-overlay .slider-title span {
  display: inline;
  background-color: #fff;
  color: #212529;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .slider .slider-content .slider-item .slider-overlay .slider-title span {
    font-size: 20px;
  }
}
.slider .slider-content .slider-item .slider-overlay .slider-subtitle span {
  display: inline;
  background-color: #fff;
  color: #212529;
  font-size: 12px;
  display: none;
}
@media screen and (min-width: 768px) {
  .slider .slider-content .slider-item .slider-overlay .slider-subtitle span {
    display: inline;
  }
}
.slider .slider-content .slider-item .slider-img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .slider .slider-content .slider-item .slider-img {
    width: 100%;
    min-height: 300px;
    border-radius: 5px;
  }
}
.slider .slider-content .slider-item.slick-active {
  padding: 0;
}
.slider .slider-content .slider-item.slick-active .slider-overlay {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .slider .slider-content .slider-item {
    width: 690px;
    min-height: 430px;
  }
}
@media screen and (min-width: 992px) {
  .slider .slider-content .slider-item {
    width: 720px;
    padding: 0.3rem 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .slider .slider-content .slider-item {
    width: 800px;
  }
}

.category-filter {
  width: 100%;
}
.category-filter .btn {
  border: 0;
  background: linear-gradient(90deg, #94ac3f 8.62%, #667d14 88.79%);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  text-align: center;
  color: #fff;
  min-width: 240px;
  margin-right: 1rem;
}
.category-filter .btn:hover, .category-filter .btn:focus {
  color: #fff;
}
.category-filter .btn:nth-child(6n+2) {
  background: linear-gradient(270deg, #005267 6.9%, #4db7d2 86.21%);
}
.category-filter .btn:nth-child(6n+3) {
  background: linear-gradient(90deg, #f2994a 18.97%, #d4731e 87.93%);
}
.category-filter .btn:nth-child(6n+4) {
  background: linear-gradient(90deg, #bb6bd9 20.26%, #9e00d9 79.31%);
}
.category-filter .btn:nth-child(6n+5) {
  background: linear-gradient(90deg, #eb5757 17.24%, #b30202 81.9%);
}
.category-filter .btn:nth-child(6n+6) {
  background: linear-gradient(90deg, #FFD700 20%, #DAA520 80%);
}
.category-filter .slick-arrow {
  z-index: 10;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  height: 40px;
  width: 40px;
  box-shadow: 0 0 3px rgba(211, 211, 211, 0.7);
  border-radius: 50%;
  background-color: white;
  display: block;
  z-index: 100;
  color: #005267;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-filter .slick-arrow::before {
  color: #D8B049;
  font-size: 40px;
  opacity: 1;
  margin-top: 5px;
}

.partner {
  position: relative;
}
.partner .slick-prev {
  left: 0;
}
.partner .slick-arrow {
  z-index: 100;
}
.partner .slick-arrow.slick-disabled::before {
  color: #D8B049;
}
.partner .slick-arrow::before {
  color: #D8B049;
  font-size: 40px;
}
.partner .slick-next {
  right: 20px;
}
.partner .partner-item {
  width: 180px;
  display: flex !important;
  align-items: center;
  height: 180px;
  padding: 0.8rem;
}
@media screen and (min-width: 1200px) {
  .partner .partner-item {
    width: 215px;
    height: 215px;
  }
}
.partner .partner-item img {
  width: 100%;
}

.company-product-list {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .company-product-list {
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .company-product-list {
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.company-product-list .product-item {
  background-color: #fff;
  border-radius: 10px;
}
.company-product-list .product-item .product-img {
  border-radius: 10px 10px 0 0;
  border: 0;
}
.company-product-list .product-item .product-body {
  padding: 0.8rem;
  padding-top: 1.8rem;
  min-height: 100px;
}

.text-align-justify {
  text-align: justify;
}

.auth-inner {
  min-height: 500px;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  align-items: end;
}
.auth-inner .auth-bg {
  display: none;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: -1;
  padding-top: 3rem;
}
.auth-inner .auth-bg img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .auth-inner .auth-bg {
    max-width: 1100px;
    display: flex;
    align-items: end;
    justify-content: center;
  }
}
.auth-inner .auth-wrapper {
  width: 100%;
  max-width: 530px;
}
.auth-inner .auth-wrapper .auth-logo {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.auth-inner .auth-wrapper .auth-logo img {
  width: 450px;
}
.auth-inner .auth-wrapper .auth-card {
  box-shadow: 0 0 10px 0px rgba(133, 129, 129, 0.15);
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .auth-inner .auth-wrapper .auth-card {
    padding: 3rem;
  }
}
@media screen and (min-width: 576px) {
  .auth-inner .auth-wrapper {
    max-width: 420px;
  }
}
@media screen and (min-width: 768px) {
  .auth-inner .auth-wrapper {
    max-width: 480px;
  }
}
@media screen and (min-width: 992px) {
  .auth-inner .auth-wrapper {
    max-width: 480px;
  }
}

.registration-success {
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 992px) {
  .registration-success {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
  }
}
.registration-success .logo-mobile {
  display: block;
}
@media screen and (min-width: 992px) {
  .registration-success .logo-mobile {
    display: none;
  }
}
.registration-success .vector {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .registration-success .vector {
    width: 40%;
    padding: 20px;
  }
}
.registration-success .content {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .registration-success .content {
    width: 60%;
    padding: 20px;
  }
}
.registration-success .content .logo-desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .registration-success .content .logo-desktop {
    display: block;
  }
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.service-header .header-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service-header .header-left .service-title {
    font-weight: 700;
  }
}
@media screen and (min-width: 1200px) {
  .service-header .header-left .service-title {
    font-size: 65px;
    font-weight: 700;
  }
}
@media screen and (min-width: 576px) {
  .service-header .header-left {
    width: 190px;
  }
}
@media screen and (min-width: 992px) {
  .service-header .header-left {
    width: 250px;
    padding-right: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .service-header .header-left {
    width: 500px;
  }
}
.service-header .header-right {
  width: 100%;
  flex: 1;
}
.service-header .header-right .header-banner {
  padding: 0.5rem;
  position: relative;
}
.service-header .header-right .header-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-right: 80px solid transparent;
  border-top: 80px solid #2B6685;
  border-bottom: 80px solid transparent;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .service-header .header-right .header-banner::before {
    border-width: 140px;
  }
}
.service-header .header-right .header-banner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-top: 80px solid transparent;
  border-bottom: 80px solid #2B6685;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .service-header .header-right .header-banner::after {
    border-width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .service-header .header-right .header-banner {
    padding: 0.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .service-header .header-right .header-banner {
    padding: 1rem;
  }
}

.event-ukm-slider {
  position: relative;
}
.event-ukm-slider .slick-track {
  display: flex;
  gap: 0.8rem;
}
.event-ukm-slider .event-item {
  width: 170px;
}
@media screen and (min-width: 576px) {
  .event-ukm-slider .event-item {
    width: 190px;
  }
  .event-ukm-slider .event-item .event-banner {
    height: 190px;
  }
}
@media screen and (min-width: 768px) {
  .event-ukm-slider .event-item {
    width: 230px;
  }
  .event-ukm-slider .event-item .event-banner {
    height: 230px;
  }
}
@media screen and (min-width: 1200px) {
  .event-ukm-slider .event-item {
    width: 310px;
  }
  .event-ukm-slider .event-item .event-banner {
    height: 310px;
  }
}

.event-ukm {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 576px) {
  .event-ukm {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .event-ukm {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.training-ukm {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 576px) {
  .training-ukm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .training-ukm {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .training-ukm {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.accordion-image {
  width: 100%;
  position: relative;
  padding: 1.5rem;
}
.accordion-image::before {
  content: "";
  width: 100%;
  height: 100%;
  max-width: 280px;
  max-height: 280px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(279.43deg, #9FB7B5 33.04%, #BBC9B4 55.95%);
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .accordion-image::before {
    max-width: 400px;
    max-height: 400px;
  }
}
@media screen and (min-width: 768px) {
  .accordion-image::before {
    max-width: 150px;
    max-height: 150px;
  }
}
@media screen and (min-width: 992px) {
  .accordion-image::before {
    max-width: 240px;
    max-height: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .accordion-image::before {
    max-width: 270px;
    max-height: 270px;
  }
}
@media screen and (min-width: 1400px) {
  .accordion-image::before {
    max-width: 320px;
    max-height: 320px;
  }
}
.accordion-image img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.government-assistance {
  position: relative;
  padding: 0.8rem;
}
.government-assistance .container {
  position: relative;
  z-index: 1;
}
.government-assistance::before {
  content: "";
  width: 150px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/keunggulan/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .government-assistance::before {
    width: 395px;
    height: 185px;
    background-position: top;
  }
}
.government-assistance .superriority-item {
  width: 180px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  margin-right: 3rem;
  text-align: center;
}
.government-assistance .superriority-item .logo {
  width: 100%;
  /* height: 240px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.government-assistance .superriority-item label {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.government-assistance .superriority-item span {
  flex: 1;
  display: block;
  text-align: center;
}
.government-assistance .superriority-item img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .government-assistance .superriority-item {
    width: 330px;
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .government-assistance .superriority-item {
    width: 300px;
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .government-assistance .superriority-item {
    width: 245px;
    /* height: 290px; */
    font-size: 16px;
    margin-bottom: 0;
  }
  .government-assistance .superriority-item img {
    width: 240px;
    margin-bottom: 1rem;
  }
  .government-assistance .superriority-item span {
    margin-top: auto;
  }
}

.event-pembiayaan {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 576px) {
  .event-pembiayaan {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .event-pembiayaan {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .event-pembiayaan {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.training-list {
  position: relative;
  margin-bottom: 50px;
}
.training-list .slick-track {
  display: flex;
  gap: 0.8rem;
}
.training-list .training-list-item {
  width: 400px;
}
.training-list .training-list-item .training-list-content {
  display: flex;
}
.training-list .training-list-item .training-list-content .logo {
  height: 100px;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.training-list .training-list-item .training-list-content .logo img {
  width: 100%;
}
.training-list .training-list-item .training-list-content .text {
  width: 80%;
}
.training-list .training-list-item .training-list-content .text small, .training-list .training-list-item .training-list-content .text .small {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-training .order-filter {
  display: flex;
  width: 100%;
}
.filter-training .order-filter .order-btn {
  width: 50%;
  border: 1px solid #2B6685;
  color: #2B6685;
}
.filter-training .order-filter .order-btn.active {
  background-color: #2B6685;
  color: white;
}

.filter-training .order-filter .order-btn:hover {
  background-color: #2B6685;
  color: #fff;
}


.filter-training .order-filter .order-btn.left {
  border-radius: 10px 0px 0px 10px;
}
.filter-training .order-filter .order-btn.right {
  border-radius: 0px 10px 10px 0px;
}

.training-filter-list .training-filter-item {
    display: flex; /* Menggunakan flex untuk mengatur elemen dalam card */
  width: 100%;
  /* height: 400px; */
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .training-filter-list .training-filter-item {
    display: flex;
    width: 100%;
    /* height: 200px; */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
}
.training-filter-list .training-filter-item .banner {
  width: 100%;
  /* height: 190px; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  margin-right: 30px;
}
@media screen and (min-width: 1200px) {
  .training-filter-list .training-filter-item .banner {
    min-width: 300px;
    max-width: 400px;
    height: 100%;
    margin-right: 30px;
  }
}
/* .training-filter-list .training-filter-item .banner img {
  width: 100%;
  border-radius: 10px;
} */


.training-filter-list .training-filter-item .banner img {
    width: 100%; /* Gambar akan memiliki lebar 100% dari elemen .banner */
    height: 100%; /* Gambar akan memiliki tinggi 100% dari elemen .banner */
    object-fit: cover; /* Untuk menjaga aspek gambar */
    border-radius: 10px; /* Contoh: Untuk memberi sudut elemen gambar */
}
.training-filter-list .training-filter-item .text .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
/* Sisipkan kode CSS berikut untuk mengatur teks */
.training-filter-list .training-filter-item .text {
    flex: 1; /* Membuat elemen teks mengisi sisa ruang dalam card */
    overflow: hidden; /* Mengatur overflow menjadi hidden */
    display: flex;
    flex-direction: column;
  }


  /* Sisipkan kode CSS berikut untuk mengatur deskripsi */
  /* .training-filter-list .training-filter-item .text .description {
    display: -webkit-box;
    -webkit-line-clamp: 14;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    margin-bottom: auto;

  } */

  @media screen and (max-width: 1199px) {
    .training-filter-list .training-filter-item {
      display: block; /* Mengubah kembali menjadi blok pada mobile */
      /* Anda juga bisa menambahkan pengaturan lain yang sesuai untuk mobile di sini */
    }
}

.detail-ukm-training .training-banner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #E5E7E9;
}
.detail-ukm-training .training-banner img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .detail-ukm-training .training-banner {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #E5E7E9;
  }
  .detail-ukm-training .training-banner img {
    height: 100%;
    width: auto;
  }
}

.training-poster-item {
  position: relative;
}
.training-poster-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
.training-poster-item .training-poster-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.training-card-item {
  text-decoration: none;
}
.training-card-item .card-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
.training-card-item .card-body {
  color: #fff;
  z-index: 1;
}

.merchant {
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .merchant {
    padding-top: 50px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }
}
.merchant .photo {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .merchant .photo {
    width: 40%;
    padding-right: 20px;
  }
}
.merchant .photo .preview-photo {
  height: 200px;
  width: 100%;
  border: 1px solid #f1f1f1;
}
@media screen and (min-width: 992px) {
  .merchant .photo .preview-photo {
    height: 550px;
  }
}
@media screen and (min-width: 768px) {
  .merchant .photo .preview-photo {
    height: 400px;
  }
}
.merchant .photo .preview-photo .preview-photo-item {
  height: 200px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  .merchant .photo .preview-photo .preview-photo-item {
    height: 550px;
  }
}
@media screen and (min-width: 768px) {
  .merchant .photo .preview-photo .preview-photo-item {
    height: 400px;
  }
}
.merchant .photo .preview-photo .preview-photo-item img {
  height: 100%;
}
.merchant .photo .list-photo {
  display: none;
}
@media screen and (min-width: 992px) {
  .merchant .photo .list-photo {
    display: block;
  }
}
.merchant .photo .list-photo .list-photo-item {
  width: 100px;
  height: 100px;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}
.merchant .description {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .merchant .description {
    width: 60%;
    padding-left: 20px;
  }
}

.other-option {
  margin-bottom: 30px;
}

.news {
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .news {
    /* padding-top: 50px; */
    margin-bottom: 30px;
  }
}
.news .news-recommendation {
  margin-bottom: 40px;
}
.news .news-recommendation .news-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .news .news-recommendation .news-recommendation-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .news .news-recommendation .news-recommendation-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .news .news-recommendation .news-recommendation-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.news .news-recommendation .news-recommendation-grid .news-recommendation-item {
  width: 100%;
  height: 100%;
}
.news .news-recommendation .news-recommendation-grid .news-recommendation-item .banner {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #E5E7E9;
}
.news .news-recommendation .news-recommendation-grid .news-recommendation-item .banner img {
  width: 100%;
}
.news .news-recommendation .news-recommendation-grid .news-recommendation-item .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.news .news-recommendation .news-recommendation-grid .news-recommendation-item .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.news .list-news-bottom {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom {
    display: flex;
    width: 100%;
  }
}
.news .list-news-bottom .latest-news {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .latest-news {
    width: 70%;
    margin-right: 10px;
  }
}
.news .list-news-bottom .latest-news .latest-news-item {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .news .list-news-bottom .latest-news .latest-news-item {
    flex-wrap: unset;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
  }
}
.news .list-news-bottom .latest-news .latest-news-item .text {
  width: 100%;
  margin-right: 0px;
  order: 1;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .latest-news .latest-news-item .text {
    width: 70%;
    margin-right: 20px;
    order: 0;
  }
}
.news .list-news-bottom .latest-news .latest-news-item .text .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.news .list-news-bottom .latest-news .latest-news-item .text .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.news .list-news-bottom .latest-news .latest-news-item .text .icon {
  color: #7F7F7F;
}
.news .list-news-bottom .latest-news .latest-news-item .banner {
  width: 100%;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 0px;
  margin-bottom: 20px;
  order: 0;
  border: 1px solid #E5E7E9;
}
.news .list-news-bottom .latest-news .latest-news-item .banner img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .latest-news .latest-news-item .banner {
    order: 1;
    width: 30%;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    margin-left: 20px;
    border: 1px solid #E5E7E9;
  }
}
.news .list-news-bottom .last-read {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .last-read {
    width: 30%;
    margin-left: 10px;
  }
}
.news .list-news-bottom .last-read .last-read-content {
  padding: 15px;
  border: 1px solid #E5E7E9;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .last-read .last-read-content {
    margin-left: 10px;
    padding: 20px;
    border: 1px solid #E5E7E9;
    border-radius: 10px;
  }
}
.news .list-news-bottom .last-read .last-read-content .last-read-item {
  display: inline-block;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .last-read .last-read-content .last-read-item {
    display: flex;
    margin-bottom: 20px;
  }
}
.news .list-news-bottom .last-read .last-read-content .last-read-item .banner {
  width: 100%;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
}
.news .list-news-bottom .last-read .last-read-content .last-read-item .banner img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .last-read .last-read-content .last-read-item .banner {
    width: 30%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
  }
}
.news .list-news-bottom .last-read .last-read-content .last-read-item .text {
  width: 100%;
  margin-left: 10px;
}
.news .list-news-bottom .last-read .last-read-content .last-read-item .text .title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .news .list-news-bottom .last-read .last-read-content .last-read-item .text {
    width: 70%;
    margin-left: 10px;
  }
}

.detail-news {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 30px;
}
@media screen and (min-width: 1200px) {
  .detail-news {
    padding-top: 50px;
    margin-bottom: 30px;
    display: flex;
    width: 100%;
  }
}
.detail-news .detail-news-content {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .detail-news .detail-news-content {
    width: 70%;
    margin-right: 10px;
  }
}
.detail-news .detail-news-content .news-detail-banner {
  width: 100%;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #E5E7E9;
}
@media screen and (min-width: 1200px) {
  .detail-news .detail-news-content .news-detail-banner {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #E5E7E9;
  }
}
.detail-news .detail-news-content .news-detail-banner img {
  width: 100%;
}
.detail-news .last-read {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .detail-news .last-read {
    width: 30%;
    margin-left: 10px;
  }
}
.detail-news .last-read .last-read-content {
  padding: 15px;
  border: 1px solid #E5E7E9;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .detail-news .last-read .last-read-content {
    margin-left: 10px;
    padding: 20px;
    border: 1px solid #E5E7E9;
    border-radius: 10px;
  }
}
.detail-news .last-read .last-read-content .last-read-item {
  display: inline-block;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .detail-news .last-read .last-read-content .last-read-item {
    display: flex;
    margin-bottom: 20px;
  }
}
.detail-news .last-read .last-read-content .last-read-item .banner {
  width: 100%;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
}
.detail-news .last-read .last-read-content .last-read-item .banner img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .detail-news .last-read .last-read-content .last-read-item .banner {
    width: 30%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
  }
}
.detail-news .last-read .last-read-content .last-read-item .text {
  width: 100%;
  margin-left: 10px;
}
.detail-news .last-read .last-read-content .last-read-item .text .title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .detail-news .last-read .last-read-content .last-read-item .text {
    width: 70%;
    margin-left: 10px;
  }
}

.editor-style img {
  width: 100%;
  height: auto;
}

.editor-style video {
  width: 100%;
  height: auto;
}

.search-page {
  width: 100%;
  position: relative;
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .search-page {
    padding: 0;
  }
}
.search-page .search-page-input {
  display: flex;
  margin-left: auto;
  width: 100%;
  position: relative;
}
.search-page .search-page-input .search-icon {
  width: 60px;
  justify-content: start;
  border-radius: 20px 0 0 20px;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border: 1px solid rgb(229, 231, 233);
  border-right: 0;
  color: #2B6685;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-page .search-page-input .search-icon i {
  font-size: 15px;
}
.search-page .search-page-input .search-content {
  width: 100%;
  transition: top 0.3s linear;
  border: 1px solid #E5E7E9;
  border-left: 0;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
.search-page .search-page-input .search-content .form-control {
  border: 0;
  box-shadow: none;
  outline: none;
  padding-left: 0;
}
.search-page .search-page-input .search-content .form-control::placeholder {
  color: #b1b1b1;
}
@media screen and (min-width: 1400px) {
  .search-page .search-page-input .search-content .form-control {
    padding: 0.5rem 0;
    background-color: transparent;
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .search-page::before {
    content: "";
    display: block;
    position: absolute;
    left: 5rem;
    top: 9rem;
    z-index: -1;
    background-color: #005267;
    width: calc(100% - 5rem);
    height: 310px;
  }
  .search-page {
    display: flex;
  }
}
.search-page .search-page-filter {
  width: 100%;
  max-height: 100%;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1068;
  transition: 0.3s linear;
}
@media screen and (min-width: 992px) {
  .search-page .search-page-filter {
    width: 396px;
    padding-left: 5rem;
    overflow: unset;
    position: unset;
    top: unset;
    right: unset;
    z-index: unset;
  }
  .search-page .search-page-filter .search-page-filter-content {
    position: sticky;
    top: 120px;
  }
}
.search-page .search-page-filter.show {
  right: 0;
}
.search-page .search-page-content {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .search-page .search-page-content {
    flex: 1;
    padding-left: 2rem;
    padding-right: 5rem;
  }
}
.search-page .search-page-content .search-page-recommendation {
  position: relative;
}
.search-page .search-page-content .item-search-content {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .search-page .search-page-content .item-search-content {
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .search-page .search-page-content .item-search-content {
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1400px) {
  .search-page .search-page-content .item-search-content {
    gap: 1.5rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1600px) {
  .search-page .search-page-content .item-search-content {
    gap: 1.5rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.search-page .search-page-content .product-item {
  background-color: #fff;
  border-radius: 10px;
}
.search-page .search-page-content .product-item .product-img {
  border-radius: 10px 10px 0 0;
  border: 0;
}
.search-page .search-page-content .product-item .product-body {
  padding: 0.8rem;
  padding-top: 1.8rem;
  min-height: 100px;
}
.search-page .suggestion-search-page {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(211, 211, 211, 0.8);
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  width: 100%;
  display: none;
  z-index: 1070;
  max-height: 280px;
  overflow-y: auto;
}
.search-page .suggestion-search-page li a {
  border-bottom: 1px solid #eee;
  display: block;
  padding: 0.25rem 0;
}
.search-page .suggestion-search-page li:last-child a {
  border-bottom-color: transparent;
}
.search-page .suggestion-search-page.show {
  display: block;
}

.gallery {
  padding-top: 30px;
}
@media screen and (min-width: 1200px) {
  .gallery {
    padding-top: 0px;
  }
}
.gallery .gallery-photo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .gallery .gallery-photo {
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .gallery .gallery-photo {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .gallery .gallery-photo {
    gap: 1.2rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.gallery .gallery-photo .gallery-item {
  width: 100%;
  height: 330px;
}
.gallery .gallery-photo .gallery-item .banner {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.gallery .gallery-photo .gallery-item .banner img {
  height: 100%;
}
.gallery .gallery-photo .gallery-item .body h6, .gallery .gallery-photo .gallery-item .body .h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery .gallery-video {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .gallery .gallery-video {
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .gallery .gallery-video {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .gallery .gallery-video {
    gap: 1.2rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.gallery .gallery-video .gallery-item {
  width: 100%;
  height: 330px;
}
.gallery .gallery-video .gallery-item .banner {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.gallery .gallery-video .gallery-item .banner img {
  height: 100%;
}
.gallery .gallery-video .gallery-item .banner .banner-animation {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  transition: 0.5s;
}
@media screen and (min-width: 1200px) {
  .gallery .gallery-video .gallery-item .banner .banner-animation {
    position: absolute;
    right: 0;
    bottom: -100%;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    transition: 0.5s;
  }
}
.gallery .gallery-video .gallery-item .banner .banner-animation .icon {
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #005267;
}
.gallery .gallery-video .gallery-item .banner:hover .banner-animation {
  bottom: 0;
  display: block;
  width: 100%;
  height: 200px;
}
.gallery .gallery-video .gallery-item .body h6, .gallery .gallery-video .gallery-item .body .h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.what-is-smesta {
  margin: 50px 0px 50px 0px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .what-is-smesta {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.what-is-smesta .vector {
  width: 100%;
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .what-is-smesta .vector {
    width: 30%;
    padding: 20px;
    text-align: center;
  }
}
.what-is-smesta .vector img {
  width: 80%;
}
@media screen and (min-width: 992px) {
  .what-is-smesta .vector img {
    width: 100%;
  }
}
.what-is-smesta .content {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .what-is-smesta .content {
    width: 70%;
    padding: 20px;
  }
}

.need-help {
  margin: 50px 0px 50px 0px;
}
.need-help .iframe-maps {
  height: 300px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .need-help .iframe-maps {
    height: 300px;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .need-help .iframe-maps {
    height: 450px;
    width: 100%;
  }
}
.need-help .card-need-help {
  height: 50px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .need-help .card-need-help {
    height: 50px;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .need-help .card-need-help {
    height: 65px;
    display: flex;
  }
}
.need-help .card-need-help .icon {
  width: 50px;
  height: 50px;
  background-color: #2B6685;
  border-radius: 100%;
  color: #ffffff;
  font-size: 20px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .need-help .card-need-help .icon {
    width: 50px;
    height: 50px;
    background-color: #2B6685;
    border-radius: 100%;
    color: #ffffff;
    font-size: 28px;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .need-help .card-need-help .icon {
    width: 65px;
    height: 65px;
    background-color: #2B6685;
    border-radius: 100%;
    color: #ffffff;
    font-size: 30px;
    display: flex;
  }
}
.need-help .card-need-help .icon i {
  margin: auto;
}
.need-help .card-need-help .text {
  padding-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
}
.need-help .card-need-help .text h1, .need-help .card-need-help .text .h1 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .need-help .card-need-help .text h1, .need-help .card-need-help .text .h1 {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .need-help .card-need-help .text h1, .need-help .card-need-help .text .h1 {
    font-size: 20px;
  }
}

.service-cargo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .service-cargo {
    gap: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .service-cargo {
    gap: 2.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .service-cargo {
    gap: 2.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 10%;
    margin-right: 10%;
  }
}
.service-cargo .service-cargo-items {
  text-align: justify;
}
.service-cargo .service-cargo-items .icon {
  text-align: justify;
  height: 100px;
  width: 100px;
  border: 5px solid #2B6685;
  background-color: #F6F8FD;
  color: #2B6685;
  border-radius: 100%;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .service-cargo .service-cargo-items .icon {
    text-align: justify;
    height: 100px;
    width: 100px;
    border: 5px solid #2B6685;
    background-color: #F6F8FD;
    color: #2B6685;
    border-radius: 100%;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .service-cargo .service-cargo-items .icon {
    text-align: justify;
    height: 100px;
    width: 100px;
    border: 5px solid #2B6685;
    background-color: #F6F8FD;
    color: #2B6685;
    border-radius: 100%;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
    margin-bottom: 10px;
  }
}
.service-cargo .service-cargo-items .icon:hover {
  border: 5px solid #2B6685;
  background-color: #2B6685;
  color: #F6F8FD;
}

.superiority {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .superiority {
    display: flex;
    width: 100%;
  }
}
.superiority .vector {
  width: 100%;
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .superiority .vector {
    width: 40%;
    padding: 20px;
    text-align: center;
  }
}
.superiority .vector img {
  width: 80%;
}
@media screen and (min-width: 992px) {
  .superiority .vector img {
    width: 80%;
  }
}
.superiority .content {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .superiority .content {
    width: 60%;
    padding: 20px;
  }
}

.text-andalin {
  display: flex;
  text-align: justify;
  gap: 50px;
}

.contact {
  display: flex;
}

.testimony-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .testimony-container {
    gap: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .testimony-container {
    gap: 2.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .testimony-container {
    gap: 2.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 10%;
    margin-right: 10%;
  }
}
.testimony-container .testimony .img-wrapper {
  width: 200px;
  height: 200px;
  margin: auto;
}
.testimony-container .testimony .img-wrapper img {
  width: 200px;
  height: 200px;
  border: 5px solid rgba(196, 197, 192, 0.3019607843);
  background-color: #F6F8FD;
  color: #9b9c98;
  border-radius: 100%;
  margin: auto;
}

.faq {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .faq {
    padding-top: 50px;
    margin-bottom: 30px;
  }
}

.what-is-asean-access {
  margin: 50px 0px 50px 0px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .what-is-asean-access {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.what-is-asean-access .vector {
  width: 100%;
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .what-is-asean-access .vector {
    width: 30%;
    padding: 20px;
    text-align: center;
  }
}
.what-is-asean-access .vector img {
  width: 80%;
}
@media screen and (min-width: 992px) {
  .what-is-asean-access .vector img {
    width: 100%;
  }
}
.what-is-asean-access .content {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .what-is-asean-access .content {
    width: 70%;
    padding: 20px;
  }
}

.asean-access {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .asean-access {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.asean-access .access-info {
  width: 50%;
}
.asean-access .access-info .icon {
  text-align: justify;
  height: 100px;
  width: 100px;
  border: 5px solid #2B6685;
  background-color: #F6F8FD;
  color: #2B6685;
  border-radius: 100%;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .asean-access .access-info .icon {
    text-align: justify;
    height: 100px;
    width: 100px;
    border: 5px solid #2B6685;
    background-color: #F6F8FD;
    color: #2B6685;
    border-radius: 100%;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .asean-access .access-info .icon {
    text-align: justify;
    height: 100px;
    width: 100px;
    border: 5px solid #2B6685;
    background-color: #F6F8FD;
    color: #2B6685;
    border-radius: 100%;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
    margin-bottom: 10px;
  }
}
.asean-access .access-info .icon:hover {
  border: 5px solid #2B6685;
  background-color: #2B6685;
  color: #F6F8FD;
}

.catalog-ukm {
  position: relative;
  margin-bottom: 50px;
}
.catalog-ukm .catalog-book {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.5fr));
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .catalog-ukm .catalog-book {
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .catalog-ukm .catalog-book {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .catalog-ukm .catalog-book {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.catalog-ukm .catalog-book .catalog-content:first-child .shiny::before {
  animation-delay: 0.3s;
}
.catalog-ukm .catalog-book .catalog-content:nth-child(2) .shiny::before {
  animation-delay: 3.5s;
}
.catalog-ukm .catalog-book .catalog-content:nth-child(3) .shiny::before {
  animation-delay: 1.7s;
}
.catalog-ukm .catalog-book .catalog-content:last-child .shiny::before {
  animation-delay: 2.5s;
}
.catalog-ukm .catalog-book .catalog-content:hover {
  transform: scale(0.97);
  transition: 0.3s all ease-in;
}
.catalog-ukm .catalog-book .catalog-content {
  transition: 0.3s all ease-out;
  height: fit-content;
  padding: 10px 29px;
  display: flex;
  justify-content: center;
}
.catalog-ukm .catalog-book .catalog-content .shiny {
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.7) inset, 5px 3px 10px 0.5px rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  position: relative;
  border: 0.3px solid rgba(0, 0, 0, 0.469);
  display: flex;
  justify-content: center;
  max-width: 55%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .catalog-ukm .catalog-book .catalog-content .shiny {
    max-width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .catalog-ukm .catalog-book .catalog-content .shiny {
    max-width: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  .catalog-ukm .catalog-book .catalog-content .shiny {
    max-width: fit-content;
  }
}
.catalog-ukm .catalog-book .catalog-content .shiny::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  animation-name: myAnimation;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  filter: blur(30px);
  user-select: none;
  width: 70px;
  left: -180px;
}
.catalog-ukm .catalog-book .catalog-content .catalog-img {
  border-radius: 5px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.catalog-ukm .catalog-book .catalog-content .catalog-img img {
  width: 100%;
}
.catalog-ukm .shelf {
  max-width: 100%;
  position: absolute;
  bottom: -8px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .catalog-ukm .shelf {
    bottom: -20px;
  }
}
@media screen and (min-width: 992px) {
  .catalog-ukm .shelf {
    bottom: -40px;
  }
}
@media screen and (min-width: 1200px) {
  .catalog-ukm .shelf {
    bottom: -40px;
  }
}

@keyframes myAnimation {
  from {
    transform: skew(-45deg);
    transition: 0.5s all ease-in;
    left: -180px;
  }
  to {
    transform: skew(-45deg);
    left: 400px;
    transition: 0.5s all ease-out;
  }
}
.button-search-filter {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .button-search-filter {
    display: none;
  }
}

.background-recomendation {
  display: none;
}

@media screen and (min-width: 1200px) {
  .background-recomendation {
    display: block;
    position: absolute;
    z-index: -100;
    top: 180px;
    right: 0px;
    width: 76%;
    height: 300px;
  }
}
.search {
  padding-bottom: 50px;
  display: flex;
}
.search .search-filter {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 2000;
  width: 100%;
  height: 100%;
  transition: right 0.3s linear;
}
.search .search-filter .navbar-search {
  display: none;
}
.search .search-filter .navbar-search .search-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2B6685;
  color: #fff;
  margin-left: auto;
}
.search .search-filter .navbar-search .search-icon i {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .search .search-filter .navbar-search .search-icon {
    width: 38px;
    height: 38px;
    justify-content: start;
    border-radius: 20px 0 0 20px;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 1px solid rgb(229, 231, 233);
    border-right: 0;
    color: #000;
    margin-left: 0;
  }
}
.search .search-filter .navbar-search .search-content {
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: #f8f8f8;
  padding: 0.8rem 1rem;
  transition: top 0.3s linear;
  z-index: -1;
  box-shadow: 0px 3px 4px rgba(114, 114, 114, 0.15);
}
.search .search-filter .navbar-search .search-content .form-control {
  border: 0;
  box-shadow: none;
  outline: none;
}
.search .search-filter .navbar-search .search-content .form-control::placeholder {
  color: #b1b1b1;
}
@media screen and (min-width: 768px) {
  .search .search-filter .navbar-search .search-content .form-control {
    padding: 0.5rem 0;
    background-color: transparent;
    font-size: 14px;
  }
}
.search .search-filter .navbar-search .search-content.show {
  top: 70px;
}
@media screen and (min-width: 768px) {
  .search .search-filter .navbar-search .search-content {
    height: 38px;
    position: unset;
    z-index: 1;
    box-shadow: none;
    padding: 0;
    border-radius: 0 20px 20px 0;
    border: 1px solid rgba(114, 114, 114, 0.15);
    border-left: 0;
    overflow: hidden;
    background-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .search .search-filter .navbar-search {
    display: flex;
    width: 100%;
  }
}
.search .search-filter .button-search-filter {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  background-color: #ebebeb;
  color: #212529;
}
.search .search-filter.show {
  right: 0;
  display: block;
}
@media screen and (min-width: 1200px) {
  .search .search-filter {
    position: unset;
    box-shadow: none;
    flex: 1;
  }
}
@media screen and (min-width: 1200px) {
  .search .search-filter {
    width: 25%;
    position: relative;
    z-index: 0;
    padding-right: 15px;
    right: 0;
  }
}
.search .search-result {
  width: 100%;
  padding-left: 0px;
}
.search .search-result .recomendation {
  margin-bottom: 30px;
}
.search .search-result .recomendation .product-item {
  position: relative;
}
.search .search-result .recomendation .product-item .product-header {
  position: relative;
  width: 100%;
}
.search .search-result .recomendation .product-item .product-header .product-img {
  width: 100%;
  height: 180px;
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7E9;
}
.search .search-result .recomendation .product-item .product-header .product-img img {
  height: 100%;
}
.search .search-result .recomendation .product-item .product-header .product-whatsapp {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 25px;
  background-color: #F6F8FD;
  color: #2B6685;
  position: absolute;
  bottom: -20px;
  right: 15px;
}
.search .search-result .recomendation .product-item .product-body {
  padding: 30px 15px 15px 15px;
}
.search .search-result .recomendation .product-item .product-body .product-merchant {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.search .search-result .recomendation .product-item .product-body .product-merchant .merchant-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .search .search-result .recomendation .product-item .product-body {
    padding: 20px 0px;
  }
}
@media screen and (min-width: 768px) {
  .search .search-result .recomendation .product-item {
    width: 25%;
    background: white;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .search .search-result .recomendation {
    margin-bottom: 70px;
    position: relative;
  }
}
.search .search-result .product-profile-company {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .search .search-result .product-profile-company {
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .search .search-result .product-profile-company {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.search .search-result .product-profile-company .product-item {
  position: relative;
}
.search .search-result .product-profile-company .product-item .product-header {
  position: relative;
  width: 100%;
}
.search .search-result .product-profile-company .product-item .product-header .product-img {
  width: 100%;
  height: 180px;
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7E9;
}
.search .search-result .product-profile-company .product-item .product-header .product-img img {
  height: 100%;
}
.search .search-result .product-profile-company .product-item .product-header .product-whatsapp {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 25px;
  background-color: #F6F8FD;
  color: #2B6685;
  position: absolute;
  bottom: -20px;
  right: 15px;
}
.search .search-result .product-profile-company .product-item .product-body {
  padding: 10px 15px 15px 15px;
}
.search .search-result .product-profile-company .product-item .product-body .badge {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search .search-result .product-profile-company .product-item .product-body .product-merchant {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.search .search-result .product-profile-company .product-item .product-body .product-merchant .merchant-info {
  color: black;
}
.search .search-result .product-profile-company .product-item .product-body .product-merchant .merchant-info label {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 50px;
}
.search .search-result .product-profile-company .product-item .product-body .product-merchant .merchant-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .search .search-result .product-profile-company .product-item .product-body {
    padding: 20px 0px;
  }
}
@media screen and (min-width: 768px) {
  .search .search-result .product-profile-company .product-item {
    width: 100%;
    background: white;
    border-radius: 10px;
  }
}
.search .search-result .product-content-search {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .search .search-result .product-content-search {
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .search .search-result .product-content-search {
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.search .search-result .product-content-search .product-item-search {
  position: relative;
}
.search .search-result .product-content-search .product-item-search .product-header {
  position: relative;
  width: 100%;
}
.search .search-result .product-content-search .product-item-search .product-header .product-img {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7E9;
}
.search .search-result .product-content-search .product-item-search .product-header .product-img img {
  height: 100%;
}
.search .search-result .product-content-search .product-item-search .product-header .product-whatsapp {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 25px;
  background-color: #F6F8FD;
  color: #2B6685;
  position: absolute;
  bottom: -20px;
  right: 15px;
}
.search .search-result .product-content-search .product-item-search .product-body {
  padding: 2rem 0rem;
}
.search .search-result .product-content-search .product-item-search .product-body .product-merchant {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.search .search-result .product-content-search .product-item-search .product-body .product-merchant .merchant-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .search .search-result .product-content-search .product-item-search {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .search .search-result {
    width: 75%;
    padding-left: 15px;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .search {
    padding-top: 10px;
  }
}

.service-slider-item {
  position: relative;
  display: flex !important;
  align-items: center;
  min-height: 65px;
}

/* .service-slider-item .service-slider-item-dropdown {
  position: absolute;
  top: 100%;
  left: 100%;
  background-color: var(--bs-primary);
  border: 1px solid #f1f1f1;
  padding: .5rem;
  width: 100%;
} */

.btn-load-more{
    text-align: center;
    margin: 40px 0;
    border-radius: 4px;
}

.btn-load-more-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.select2-container .select2-search--inline .select2-search__field::placeholder {
  color: #fff !important;
  opacity: 1;
}

.col-calender-event{
    flex: 0 0 auto;
    width: 100%;
}
